GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
create_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 __CREATE_ROLE_H__
7 #define __CREATE_ROLE_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
25  name(std::string()),
26  options(std::map<std::string, std::string>())
27  {
28  }
29 
45  CreateRoleRequest(const std::string& name_, const std::map<std::string, std::string>& options_):
46  name( name_ ),
47  options( options_ )
48  {
49  }
50 
51  std::string name;
52  std::map<std::string, std::string> options;
53  };
54 }
55 
56 namespace avro
57 {
58  template<> struct codec_traits<gpudb::CreateRoleRequest>
59  {
60  static void encode(Encoder& e, const gpudb::CreateRoleRequest& v)
61  {
62  ::avro::encode(e, v.name);
63  ::avro::encode(e, v.options);
64  }
65 
66  static void decode(Decoder& d, gpudb::CreateRoleRequest& v)
67  {
68  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
69  {
70  const std::vector<size_t> fo = rd->fieldOrder();
71 
72  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
73  {
74  switch (*it)
75  {
76  case 0:
77  ::avro::decode(d, v.name);
78  break;
79 
80  case 1:
81  ::avro::decode(d, v.options);
82  break;
83 
84  default:
85  break;
86  }
87  }
88  }
89  else
90  {
91  ::avro::decode(d, v.name);
92  ::avro::decode(d, v.options);
93  }
94  }
95  };
96 }
97 
98 namespace gpudb
99 {
100 
108  {
109 
115  name(std::string()),
116  info(std::map<std::string, std::string>())
117  {
118  }
119 
120  std::string name;
121  std::map<std::string, std::string> info;
122  };
123 }
124 
125 namespace avro
126 {
127  template<> struct codec_traits<gpudb::CreateRoleResponse>
128  {
129  static void encode(Encoder& e, const gpudb::CreateRoleResponse& v)
130  {
131  ::avro::encode(e, v.name);
132  ::avro::encode(e, v.info);
133  }
134 
135  static void decode(Decoder& d, gpudb::CreateRoleResponse& v)
136  {
137  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
138  {
139  const std::vector<size_t> fo = rd->fieldOrder();
140 
141  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
142  {
143  switch (*it)
144  {
145  case 0:
146  ::avro::decode(d, v.name);
147  break;
148 
149  case 1:
150  ::avro::decode(d, v.info);
151  break;
152 
153  default:
154  break;
155  }
156  }
157  }
158  else
159  {
160  ::avro::decode(d, v.name);
161  ::avro::decode(d, v.info);
162  }
163  }
164  };
165 }
166 
167 #endif
A set of input parameters for const.
Definition: create_role.h:18
A set of output parameters for const.
Definition: create_role.h:107
std::map< std::string, std::string > options
Definition: create_role.h:52
CreateRoleResponse()
Constructs a CreateRoleResponse object with default parameter values.
Definition: create_role.h:114
CreateRoleRequest()
Constructs a CreateRoleRequest object with default parameter values.
Definition: create_role.h:24
CreateRoleRequest(const std::string &name_, const std::map< std::string, std::string > &options_)
Constructs a CreateRoleRequest object with the specified parameters.
Definition: create_role.h:45
std::map< std::string, std::string > info
Definition: create_role.h:121