GPUdb C++ API  Version 6.2.0.3
admin_show_shards.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_SHOW_SHARDS_H__
7 #define __ADMIN_SHOW_SHARDS_H__
8 
9 namespace gpudb
10 {
11 
21  {
22 
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
39  AdminShowShardsRequest(const std::map<std::string, std::string>& options_):
40  options( options_ )
41  {
42  }
43 
44  std::map<std::string, std::string> options;
45  };
46 }
47 
48 namespace avro
49 {
50  template<> struct codec_traits<gpudb::AdminShowShardsRequest>
51  {
52  static void encode(Encoder& e, const gpudb::AdminShowShardsRequest& v)
53  {
54  ::avro::encode(e, v.options);
55  }
56 
57  static void decode(Decoder& d, gpudb::AdminShowShardsRequest& v)
58  {
59  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
60  {
61  const std::vector<size_t> fo = rd->fieldOrder();
62 
63  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
64  {
65  switch (*it)
66  {
67  case 0:
68  ::avro::decode(d, v.options);
69  break;
70 
71  default:
72  break;
73  }
74  }
75  }
76  else
77  {
78  ::avro::decode(d, v.options);
79  }
80  }
81  };
82 }
83 
84 namespace gpudb
85 {
86 
96  {
97 
103  version(int64_t()),
104  rank(std::vector<int32_t>()),
105  tom(std::vector<int32_t>())
106  {
107  }
108 
109  int64_t version;
110  std::vector<int32_t> rank;
111  std::vector<int32_t> tom;
112  };
113 }
114 
115 namespace avro
116 {
117  template<> struct codec_traits<gpudb::AdminShowShardsResponse>
118  {
119  static void encode(Encoder& e, const gpudb::AdminShowShardsResponse& v)
120  {
121  ::avro::encode(e, v.version);
122  ::avro::encode(e, v.rank);
123  ::avro::encode(e, v.tom);
124  }
125 
126  static void decode(Decoder& d, gpudb::AdminShowShardsResponse& v)
127  {
128  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
129  {
130  const std::vector<size_t> fo = rd->fieldOrder();
131 
132  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
133  {
134  switch (*it)
135  {
136  case 0:
137  ::avro::decode(d, v.version);
138  break;
139 
140  case 1:
141  ::avro::decode(d, v.rank);
142  break;
143 
144  case 2:
145  ::avro::decode(d, v.tom);
146  break;
147 
148  default:
149  break;
150  }
151  }
152  }
153  else
154  {
155  ::avro::decode(d, v.version);
156  ::avro::decode(d, v.rank);
157  ::avro::decode(d, v.tom);
158  }
159  }
160  };
161 }
162 
163 #endif
AdminShowShardsRequest()
Constructs an AdminShowShardsRequest object with default parameter values.
std::map< std::string, std::string > options
A set of output parameters for adminShowShards(const AdminShowShardsRequest&) const.
AdminShowShardsRequest(const std::map< std::string, std::string > &options_)
Constructs an AdminShowShardsRequest object with the specified parameters.
A set of input parameters for adminShowShards(const AdminShowShardsRequest&) const.
AdminShowShardsResponse()
Constructs an AdminShowShardsResponse object with default parameter values.