GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
admin_rebalance.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 __ADMIN_REBALANCE_H__
7 #define __ADMIN_REBALANCE_H__
8 
9 namespace gpudb
10 {
11 
26  {
27 
33  options(std::map<std::string, std::string>())
34  {
35  }
36 
138  AdminRebalanceRequest(const std::map<std::string, std::string>& options_):
139  options( options_ )
140  {
141  }
142 
143  std::map<std::string, std::string> options;
144  };
145 }
146 
147 namespace avro
148 {
149  template<> struct codec_traits<gpudb::AdminRebalanceRequest>
150  {
151  static void encode(Encoder& e, const gpudb::AdminRebalanceRequest& v)
152  {
153  ::avro::encode(e, v.options);
154  }
155 
156  static void decode(Decoder& d, gpudb::AdminRebalanceRequest& v)
157  {
158  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
159  {
160  const std::vector<size_t> fo = rd->fieldOrder();
161 
162  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
163  {
164  switch (*it)
165  {
166  case 0:
167  ::avro::decode(d, v.options);
168  break;
169 
170  default:
171  break;
172  }
173  }
174  }
175  else
176  {
177  ::avro::decode(d, v.options);
178  }
179  }
180  };
181 }
182 
183 namespace gpudb
184 {
185 
200  {
201 
207  info(std::map<std::string, std::string>())
208  {
209  }
210 
211  std::map<std::string, std::string> info;
212  };
213 }
214 
215 namespace avro
216 {
217  template<> struct codec_traits<gpudb::AdminRebalanceResponse>
218  {
219  static void encode(Encoder& e, const gpudb::AdminRebalanceResponse& v)
220  {
221  ::avro::encode(e, v.info);
222  }
223 
224  static void decode(Decoder& d, gpudb::AdminRebalanceResponse& v)
225  {
226  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
227  {
228  const std::vector<size_t> fo = rd->fieldOrder();
229 
230  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
231  {
232  switch (*it)
233  {
234  case 0:
235  ::avro::decode(d, v.info);
236  break;
237 
238  default:
239  break;
240  }
241  }
242  }
243  else
244  {
245  ::avro::decode(d, v.info);
246  }
247  }
248  };
249 }
250 
251 #endif
std::map< std::string, std::string > info
AdminRebalanceResponse()
Constructs an AdminRebalanceResponse object with default parameter values.
A set of input parameters for const.
AdminRebalanceRequest()
Constructs an AdminRebalanceRequest object with default parameter values.
A set of output parameters for const.
std::map< std::string, std::string > options
AdminRebalanceRequest(const std::map< std::string, std::string > &options_)
Constructs an AdminRebalanceRequest object with the specified parameters.