GPUdb C++ API  Version 6.2.0.3
admin_replace_tom.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_REPLACE_TOM_H__
7 #define __ADMIN_REPLACE_TOM_H__
8 
9 namespace gpudb
10 {
11 
18  struct AdminReplaceTomRequest
19  {
20 
26  AdminReplaceTomRequest() :
27  oldRankTom(int64_t()),
28  newRankTom(int64_t())
29  {
30  }
31 
41  AdminReplaceTomRequest(const int64_t oldRankTom_, const int64_t newRankTom_):
42  oldRankTom( oldRankTom_ ),
43  newRankTom( newRankTom_ )
44  {
45  }
46 
47  int64_t oldRankTom;
48  int64_t newRankTom;
49  };
50 }
51 
56 namespace avro
57 {
58  template<> struct codec_traits<gpudb::AdminReplaceTomRequest>
59  {
60  static void encode(Encoder& e, const gpudb::AdminReplaceTomRequest& v)
61  {
62  ::avro::encode(e, v.oldRankTom);
63  ::avro::encode(e, v.newRankTom);
64  }
65 
66  static void decode(Decoder& d, gpudb::AdminReplaceTomRequest& v)
67  {
68  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
69  {
70  const std::vector<size_t> fo = rd->fieldOrder();
71 
72  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
73  {
74  switch (*it)
75  {
76  case 0:
77  ::avro::decode(d, v.oldRankTom);
78  break;
79 
80  case 1:
81  ::avro::decode(d, v.newRankTom);
82  break;
83 
84  default:
85  break;
86  }
87  }
88  }
89  else
90  {
91  ::avro::decode(d, v.oldRankTom);
92  ::avro::decode(d, v.newRankTom);
93  }
94  }
95  };
96 }
97 
98 namespace gpudb
99 {
100 
107  struct AdminReplaceTomResponse
108  {
109 
115  AdminReplaceTomResponse() :
116  oldRankTom(int64_t()),
117  newRankTom(int64_t())
118  {
119  }
120 
121  int64_t oldRankTom;
122  int64_t newRankTom;
123  };
124 }
125 
130 namespace avro
131 {
132  template<> struct codec_traits<gpudb::AdminReplaceTomResponse>
133  {
134  static void encode(Encoder& e, const gpudb::AdminReplaceTomResponse& v)
135  {
136  ::avro::encode(e, v.oldRankTom);
137  ::avro::encode(e, v.newRankTom);
138  }
139 
140  static void decode(Decoder& d, gpudb::AdminReplaceTomResponse& v)
141  {
142  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
143  {
144  const std::vector<size_t> fo = rd->fieldOrder();
145 
146  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
147  {
148  switch (*it)
149  {
150  case 0:
151  ::avro::decode(d, v.oldRankTom);
152  break;
153 
154  case 1:
155  ::avro::decode(d, v.newRankTom);
156  break;
157 
158  default:
159  break;
160  }
161  }
162  }
163  else
164  {
165  ::avro::decode(d, v.oldRankTom);
166  ::avro::decode(d, v.newRankTom);
167  }
168  }
169  };
170 }
171 
172 #endif