GPUdb C++ API  Version 6.2.0.3
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  {
112  }
113 
114  std::map<std::string, std::string> propertyMap;
115  };
116 }
117 
118 namespace avro
119 {
120  template<> struct codec_traits<gpudb::ShowSystemPropertiesResponse>
121  {
122  static void encode(Encoder& e, const gpudb::ShowSystemPropertiesResponse& v)
123  {
124  ::avro::encode(e, v.propertyMap);
125  }
126 
127  static void decode(Decoder& d, gpudb::ShowSystemPropertiesResponse& v)
128  {
129  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
130  {
131  const std::vector<size_t> fo = rd->fieldOrder();
132 
133  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
134  {
135  switch (*it)
136  {
137  case 0:
138  ::avro::decode(d, v.propertyMap);
139  break;
140 
141  default:
142  break;
143  }
144  }
145  }
146  else
147  {
148  ::avro::decode(d, v.propertyMap);
149  }
150  }
151  };
152 }
153 
154 #endif
ShowSystemPropertiesRequest(const std::map< std::string, std::string > &options_)
Constructs a ShowSystemPropertiesRequest object with the specified parameters.
A set of output parameters for showSystemProperties(const ShowSystemPropertiesRequest&) const...
A set of input parameters for showSystemProperties(const ShowSystemPropertiesRequest&) 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.