GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
alter_role.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 __ALTER_ROLE_H__
7 #define __ALTER_ROLE_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
25  name(std::string()),
26  action(std::string()),
27  value(std::string()),
28  options(std::map<std::string, std::string>())
29  {
30  }
31 
52  AlterRoleRequest(const std::string& name_, const std::string& action_, const std::string& value_, const std::map<std::string, std::string>& options_):
53  name( name_ ),
54  action( action_ ),
55  value( value_ ),
56  options( options_ )
57  {
58  }
59 
60  std::string name;
61  std::string action;
62  std::string value;
63  std::map<std::string, std::string> options;
64  };
65 }
66 
67 namespace avro
68 {
69  template<> struct codec_traits<gpudb::AlterRoleRequest>
70  {
71  static void encode(Encoder& e, const gpudb::AlterRoleRequest& v)
72  {
73  ::avro::encode(e, v.name);
74  ::avro::encode(e, v.action);
75  ::avro::encode(e, v.value);
76  ::avro::encode(e, v.options);
77  }
78 
79  static void decode(Decoder& d, gpudb::AlterRoleRequest& v)
80  {
81  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
82  {
83  const std::vector<size_t> fo = rd->fieldOrder();
84 
85  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
86  {
87  switch (*it)
88  {
89  case 0:
90  ::avro::decode(d, v.name);
91  break;
92 
93  case 1:
94  ::avro::decode(d, v.action);
95  break;
96 
97  case 2:
98  ::avro::decode(d, v.value);
99  break;
100 
101  case 3:
102  ::avro::decode(d, v.options);
103  break;
104 
105  default:
106  break;
107  }
108  }
109  }
110  else
111  {
112  ::avro::decode(d, v.name);
113  ::avro::decode(d, v.action);
114  ::avro::decode(d, v.value);
115  ::avro::decode(d, v.options);
116  }
117  }
118  };
119 }
120 
121 namespace gpudb
122 {
123 
131  {
132 
138  name(std::string()),
139  info(std::map<std::string, std::string>())
140  {
141  }
142 
143  std::string name;
144  std::map<std::string, std::string> info;
145  };
146 }
147 
148 namespace avro
149 {
150  template<> struct codec_traits<gpudb::AlterRoleResponse>
151  {
152  static void encode(Encoder& e, const gpudb::AlterRoleResponse& v)
153  {
154  ::avro::encode(e, v.name);
155  ::avro::encode(e, v.info);
156  }
157 
158  static void decode(Decoder& d, gpudb::AlterRoleResponse& v)
159  {
160  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
161  {
162  const std::vector<size_t> fo = rd->fieldOrder();
163 
164  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
165  {
166  switch (*it)
167  {
168  case 0:
169  ::avro::decode(d, v.name);
170  break;
171 
172  case 1:
173  ::avro::decode(d, v.info);
174  break;
175 
176  default:
177  break;
178  }
179  }
180  }
181  else
182  {
183  ::avro::decode(d, v.name);
184  ::avro::decode(d, v.info);
185  }
186  }
187  };
188 }
189 
190 #endif
A set of input parameters for const.
Definition: alter_role.h:18
AlterRoleRequest(const std::string &name_, const std::string &action_, const std::string &value_, const std::map< std::string, std::string > &options_)
Constructs an AlterRoleRequest object with the specified parameters.
Definition: alter_role.h:52
std::map< std::string, std::string > options
Definition: alter_role.h:63
AlterRoleResponse()
Constructs an AlterRoleResponse object with default parameter values.
Definition: alter_role.h:137
AlterRoleRequest()
Constructs an AlterRoleRequest object with default parameter values.
Definition: alter_role.h:24
std::map< std::string, std::string > info
Definition: alter_role.h:144
A set of output parameters for const.
Definition: alter_role.h:130