GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
show_resource_groups.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 __SHOW_RESOURCE_GROUPS_H__
7 #define __SHOW_RESOURCE_GROUPS_H__
8 
9 namespace gpudb
10 {
11 
20  {
21 
27  names(std::vector<std::string>()),
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
63  ShowResourceGroupsRequest(const std::vector<std::string>& names_, const std::map<std::string, std::string>& options_):
64  names( names_ ),
65  options( options_ )
66  {
67  }
68 
69  std::vector<std::string> names;
70  std::map<std::string, std::string> options;
71  };
72 }
73 
74 namespace avro
75 {
76  template<> struct codec_traits<gpudb::ShowResourceGroupsRequest>
77  {
78  static void encode(Encoder& e, const gpudb::ShowResourceGroupsRequest& v)
79  {
80  ::avro::encode(e, v.names);
81  ::avro::encode(e, v.options);
82  }
83 
84  static void decode(Decoder& d, gpudb::ShowResourceGroupsRequest& v)
85  {
86  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
87  {
88  const std::vector<size_t> fo = rd->fieldOrder();
89 
90  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
91  {
92  switch (*it)
93  {
94  case 0:
95  ::avro::decode(d, v.names);
96  break;
97 
98  case 1:
99  ::avro::decode(d, v.options);
100  break;
101 
102  default:
103  break;
104  }
105  }
106  }
107  else
108  {
109  ::avro::decode(d, v.names);
110  ::avro::decode(d, v.options);
111  }
112  }
113  };
114 }
115 
116 namespace gpudb
117 {
118 
127  {
128 
134  groups(std::vector<std::map<std::string, std::string> >()),
135  info(std::map<std::string, std::string>())
136  {
137  }
138 
139  std::vector<std::map<std::string, std::string> > groups;
140  std::map<std::string, std::string> info;
141  };
142 }
143 
144 namespace avro
145 {
146  template<> struct codec_traits<gpudb::ShowResourceGroupsResponse>
147  {
148  static void encode(Encoder& e, const gpudb::ShowResourceGroupsResponse& v)
149  {
150  ::avro::encode(e, v.groups);
151  ::avro::encode(e, v.info);
152  }
153 
154  static void decode(Decoder& d, gpudb::ShowResourceGroupsResponse& v)
155  {
156  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
157  {
158  const std::vector<size_t> fo = rd->fieldOrder();
159 
160  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
161  {
162  switch (*it)
163  {
164  case 0:
165  ::avro::decode(d, v.groups);
166  break;
167 
168  case 1:
169  ::avro::decode(d, v.info);
170  break;
171 
172  default:
173  break;
174  }
175  }
176  }
177  else
178  {
179  ::avro::decode(d, v.groups);
180  ::avro::decode(d, v.info);
181  }
182  }
183  };
184 }
185 
186 #endif
std::map< std::string, std::string > info
std::vector< std::map< std::string, std::string > > groups
A set of output parameters for const.
std::vector< std::string > names
ShowResourceGroupsResponse()
Constructs a ShowResourceGroupsResponse object with default parameter values.
ShowResourceGroupsRequest()
Constructs a ShowResourceGroupsRequest object with default parameter values.
A set of input parameters for const.
ShowResourceGroupsRequest(const std::vector< std::string > &names_, const std::map< std::string, std::string > &options_)
Constructs a ShowResourceGroupsRequest object with the specified parameters.
std::map< std::string, std::string > options