GPUdb C++ API  Version 6.2.0.3
admin_verify_db.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_VERIFY_DB_H__
7 #define __ADMIN_VERIFY_DB_H__
8 
9 namespace gpudb
10 {
11 
21  {
22 
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
57  AdminVerifyDbRequest(const std::map<std::string, std::string>& options_):
58  options( options_ )
59  {
60  }
61 
62  std::map<std::string, std::string> options;
63  };
64 }
65 
66 namespace avro
67 {
68  template<> struct codec_traits<gpudb::AdminVerifyDbRequest>
69  {
70  static void encode(Encoder& e, const gpudb::AdminVerifyDbRequest& v)
71  {
72  ::avro::encode(e, v.options);
73  }
74 
75  static void decode(Decoder& d, gpudb::AdminVerifyDbRequest& v)
76  {
77  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
78  {
79  const std::vector<size_t> fo = rd->fieldOrder();
80 
81  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
82  {
83  switch (*it)
84  {
85  case 0:
86  ::avro::decode(d, v.options);
87  break;
88 
89  default:
90  break;
91  }
92  }
93  }
94  else
95  {
96  ::avro::decode(d, v.options);
97  }
98  }
99  };
100 }
101 
102 namespace gpudb
103 {
104 
114  {
115 
121  verifiedOk(bool()),
122  errorList(std::vector<std::string>())
123  {
124  }
125 
127  std::vector<std::string> errorList;
128  };
129 }
130 
131 namespace avro
132 {
133  template<> struct codec_traits<gpudb::AdminVerifyDbResponse>
134  {
135  static void encode(Encoder& e, const gpudb::AdminVerifyDbResponse& v)
136  {
137  ::avro::encode(e, v.verifiedOk);
138  ::avro::encode(e, v.errorList);
139  }
140 
141  static void decode(Decoder& d, gpudb::AdminVerifyDbResponse& v)
142  {
143  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
144  {
145  const std::vector<size_t> fo = rd->fieldOrder();
146 
147  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
148  {
149  switch (*it)
150  {
151  case 0:
152  ::avro::decode(d, v.verifiedOk);
153  break;
154 
155  case 1:
156  ::avro::decode(d, v.errorList);
157  break;
158 
159  default:
160  break;
161  }
162  }
163  }
164  else
165  {
166  ::avro::decode(d, v.verifiedOk);
167  ::avro::decode(d, v.errorList);
168  }
169  }
170  };
171 }
172 
173 #endif
A set of output parameters for adminVerifyDb(const AdminVerifyDbRequest&) const.
AdminVerifyDbResponse()
Constructs an AdminVerifyDbResponse object with default parameter values.
AdminVerifyDbRequest(const std::map< std::string, std::string > &options_)
Constructs an AdminVerifyDbRequest object with the specified parameters.
A set of input parameters for adminVerifyDb(const AdminVerifyDbRequest&) const.
std::vector< std::string > errorList
std::map< std::string, std::string > options
AdminVerifyDbRequest()
Constructs an AdminVerifyDbRequest object with default parameter values.