GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
show_system_properties.h
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the GPUdb schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 #ifndef __SHOW_SYSTEM_PROPERTIES_H__
7 #define __SHOW_SYSTEM_PROPERTIES_H__
8 
9 namespace gpudb
10 {
11 
21  {
22 
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
46  ShowSystemPropertiesRequest(const std::map<std::string, std::string>& options_):
47  options( options_ )
48  {
49  }
50 
51  std::map<std::string, std::string> options;
52  };
53 }
54 
55 namespace avro
56 {
57  template<> struct codec_traits<gpudb::ShowSystemPropertiesRequest>
58  {
59  static void encode(Encoder& e, const gpudb::ShowSystemPropertiesRequest& v)
60  {
61  ::avro::encode(e, v.options);
62  }
63 
64  static void decode(Decoder& d, gpudb::ShowSystemPropertiesRequest& v)
65  {
66  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
67  {
68  const std::vector<size_t> fo = rd->fieldOrder();
69 
70  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
71  {
72  switch (*it)
73  {
74  case 0:
75  ::avro::decode(d, v.options);
76  break;
77 
78  default:
79  break;
80  }
81  }
82  }
83  else
84  {
85  ::avro::decode(d, v.options);
86  }
87  }
88  };
89 }
90 
91 namespace gpudb
92 {
93 
103  {
104 
110  propertyMap(std::map<std::string, std::string>()),
111  info(std::map<std::string, std::string>())
112  {
113  }
114 
115  std::map<std::string, std::string> propertyMap;
116  std::map<std::string, std::string> info;
117  };
118 }
119 
120 namespace avro
121 {
122  template<> struct codec_traits<gpudb::ShowSystemPropertiesResponse>
123  {
124  static void encode(Encoder& e, const gpudb::ShowSystemPropertiesResponse& v)
125  {
126  ::avro::encode(e, v.propertyMap);
127  ::avro::encode(e, v.info);
128  }
129 
130  static void decode(Decoder& d, gpudb::ShowSystemPropertiesResponse& v)
131  {
132  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
133  {
134  const std::vector<size_t> fo = rd->fieldOrder();
135 
136  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
137  {
138  switch (*it)
139  {
140  case 0:
141  ::avro::decode(d, v.propertyMap);
142  break;
143 
144  case 1:
145  ::avro::decode(d, v.info);
146  break;
147 
148  default:
149  break;
150  }
151  }
152  }
153  else
154  {
155  ::avro::decode(d, v.propertyMap);
156  ::avro::decode(d, v.info);
157  }
158  }
159  };
160 }
161 
162 #endif
ShowSystemPropertiesRequest(const std::map< std::string, std::string > &options_)
Constructs a ShowSystemPropertiesRequest object with the specified parameters.
A set of output parameters for const.
A set of input parameters for const.
std::map< std::string, std::string > options
std::map< std::string, std::string > propertyMap
ShowSystemPropertiesResponse()
Constructs a ShowSystemPropertiesResponse object with default parameter values.
ShowSystemPropertiesRequest()
Constructs a ShowSystemPropertiesRequest object with default parameter values.
std::map< std::string, std::string > info