GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
admin_offline.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_OFFLINE_H__
7 #define __ADMIN_OFFLINE_H__
8 
9 namespace gpudb
10 {
11 
20  {
21 
27  offline(bool()),
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
53  AdminOfflineRequest(const bool offline_, const std::map<std::string, std::string>& options_):
54  offline( offline_ ),
55  options( options_ )
56  {
57  }
58 
59  bool offline;
60  std::map<std::string, std::string> options;
61  };
62 }
63 
64 namespace avro
65 {
66  template<> struct codec_traits<gpudb::AdminOfflineRequest>
67  {
68  static void encode(Encoder& e, const gpudb::AdminOfflineRequest& v)
69  {
70  ::avro::encode(e, v.offline);
71  ::avro::encode(e, v.options);
72  }
73 
74  static void decode(Decoder& d, gpudb::AdminOfflineRequest& v)
75  {
76  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
77  {
78  const std::vector<size_t> fo = rd->fieldOrder();
79 
80  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
81  {
82  switch (*it)
83  {
84  case 0:
85  ::avro::decode(d, v.offline);
86  break;
87 
88  case 1:
89  ::avro::decode(d, v.options);
90  break;
91 
92  default:
93  break;
94  }
95  }
96  }
97  else
98  {
99  ::avro::decode(d, v.offline);
100  ::avro::decode(d, v.options);
101  }
102  }
103  };
104 }
105 
106 namespace gpudb
107 {
108 
117  {
118 
124  isOffline(bool()),
125  info(std::map<std::string, std::string>())
126  {
127  }
128 
129  bool isOffline;
130  std::map<std::string, std::string> info;
131  };
132 }
133 
134 namespace avro
135 {
136  template<> struct codec_traits<gpudb::AdminOfflineResponse>
137  {
138  static void encode(Encoder& e, const gpudb::AdminOfflineResponse& v)
139  {
140  ::avro::encode(e, v.isOffline);
141  ::avro::encode(e, v.info);
142  }
143 
144  static void decode(Decoder& d, gpudb::AdminOfflineResponse& v)
145  {
146  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
147  {
148  const std::vector<size_t> fo = rd->fieldOrder();
149 
150  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
151  {
152  switch (*it)
153  {
154  case 0:
155  ::avro::decode(d, v.isOffline);
156  break;
157 
158  case 1:
159  ::avro::decode(d, v.info);
160  break;
161 
162  default:
163  break;
164  }
165  }
166  }
167  else
168  {
169  ::avro::decode(d, v.isOffline);
170  ::avro::decode(d, v.info);
171  }
172  }
173  };
174 }
175 
176 #endif
AdminOfflineRequest()
Constructs an AdminOfflineRequest object with default parameter values.
Definition: admin_offline.h:26
AdminOfflineResponse()
Constructs an AdminOfflineResponse object with default parameter values.
std::map< std::string, std::string > info
A set of output parameters for const.
std::map< std::string, std::string > options
Definition: admin_offline.h:60
AdminOfflineRequest(const bool offline_, const std::map< std::string, std::string > &options_)
Constructs an AdminOfflineRequest object with the specified parameters.
Definition: admin_offline.h:53
A set of input parameters for const.
Definition: admin_offline.h:19