GPUdb C++ API  Version 6.2.0.3
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  {
126  }
127 
128  bool isOffline;
129  };
130 }
131 
132 namespace avro
133 {
134  template<> struct codec_traits<gpudb::AdminOfflineResponse>
135  {
136  static void encode(Encoder& e, const gpudb::AdminOfflineResponse& v)
137  {
138  ::avro::encode(e, v.isOffline);
139  }
140 
141  static void decode(Decoder& d, gpudb::AdminOfflineResponse& 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.isOffline);
153  break;
154 
155  default:
156  break;
157  }
158  }
159  }
160  else
161  {
162  ::avro::decode(d, v.isOffline);
163  }
164  }
165  };
166 }
167 
168 #endif
AdminOfflineRequest()
Constructs an AdminOfflineRequest object with default parameter values.
Definition: admin_offline.h:26
AdminOfflineResponse()
Constructs an AdminOfflineResponse object with default parameter values.
A set of output parameters for adminOffline(const AdminOfflineRequest&) 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 adminOffline(const AdminOfflineRequest&) const.
Definition: admin_offline.h:19