GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
admin_add_ranks.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_ADD_RANKS_H__
7 #define __ADMIN_ADD_RANKS_H__
8 
9 namespace gpudb
10 {
11 
43  {
44 
50  hosts(std::vector<std::string>()),
51  configParams(std::vector<std::map<std::string, std::string> >()),
52  options(std::map<std::string, std::string>())
53  {
54  }
55 
93  AdminAddRanksRequest(const std::vector<std::string>& hosts_, const std::vector<std::map<std::string, std::string> >& configParams_, const std::map<std::string, std::string>& options_):
94  hosts( hosts_ ),
95  configParams( configParams_ ),
96  options( options_ )
97  {
98  }
99 
100  std::vector<std::string> hosts;
101  std::vector<std::map<std::string, std::string> > configParams;
102  std::map<std::string, std::string> options;
103  };
104 }
105 
106 namespace avro
107 {
108  template<> struct codec_traits<gpudb::AdminAddRanksRequest>
109  {
110  static void encode(Encoder& e, const gpudb::AdminAddRanksRequest& v)
111  {
112  ::avro::encode(e, v.hosts);
113  ::avro::encode(e, v.configParams);
114  ::avro::encode(e, v.options);
115  }
116 
117  static void decode(Decoder& d, gpudb::AdminAddRanksRequest& v)
118  {
119  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
120  {
121  const std::vector<size_t> fo = rd->fieldOrder();
122 
123  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
124  {
125  switch (*it)
126  {
127  case 0:
128  ::avro::decode(d, v.hosts);
129  break;
130 
131  case 1:
132  ::avro::decode(d, v.configParams);
133  break;
134 
135  case 2:
136  ::avro::decode(d, v.options);
137  break;
138 
139  default:
140  break;
141  }
142  }
143  }
144  else
145  {
146  ::avro::decode(d, v.hosts);
147  ::avro::decode(d, v.configParams);
148  ::avro::decode(d, v.options);
149  }
150  }
151  };
152 }
153 
154 namespace gpudb
155 {
156 
188  {
189 
195  addedRanks(std::vector<int32_t>()),
196  results(std::vector<std::string>()),
197  info(std::map<std::string, std::string>())
198  {
199  }
200 
201  std::vector<int32_t> addedRanks;
202  std::vector<std::string> results;
203  std::map<std::string, std::string> info;
204  };
205 }
206 
207 namespace avro
208 {
209  template<> struct codec_traits<gpudb::AdminAddRanksResponse>
210  {
211  static void encode(Encoder& e, const gpudb::AdminAddRanksResponse& v)
212  {
213  ::avro::encode(e, v.addedRanks);
214  ::avro::encode(e, v.results);
215  ::avro::encode(e, v.info);
216  }
217 
218  static void decode(Decoder& d, gpudb::AdminAddRanksResponse& v)
219  {
220  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
221  {
222  const std::vector<size_t> fo = rd->fieldOrder();
223 
224  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
225  {
226  switch (*it)
227  {
228  case 0:
229  ::avro::decode(d, v.addedRanks);
230  break;
231 
232  case 1:
233  ::avro::decode(d, v.results);
234  break;
235 
236  case 2:
237  ::avro::decode(d, v.info);
238  break;
239 
240  default:
241  break;
242  }
243  }
244  }
245  else
246  {
247  ::avro::decode(d, v.addedRanks);
248  ::avro::decode(d, v.results);
249  ::avro::decode(d, v.info);
250  }
251  }
252  };
253 }
254 
255 #endif
AdminAddRanksRequest(const std::vector< std::string > &hosts_, const std::vector< std::map< std::string, std::string > > &configParams_, const std::map< std::string, std::string > &options_)
Constructs an AdminAddRanksRequest object with the specified parameters.
std::vector< int32_t > addedRanks
std::map< std::string, std::string > options
std::vector< std::string > results
A set of output parameters for const.
std::map< std::string, std::string > info
AdminAddRanksRequest()
Constructs an AdminAddRanksRequest object with default parameter values.
AdminAddRanksResponse()
Constructs an AdminAddRanksResponse object with default parameter values.
A set of input parameters for const.
std::vector< std::string > hosts
std::vector< std::map< std::string, std::string > > configParams