GPUdb C++ API  Version 6.2.0.3
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 
40  CreateRoleRequest(const std::string& name_, const std::map<std::string, std::string>& options_):
41  name( name_ ),
42  options( options_ )
43  {
44  }
45 
46  std::string name;
47  std::map<std::string, std::string> options;
48  };
49 }
50 
51 namespace avro
52 {
53  template<> struct codec_traits<gpudb::CreateRoleRequest>
54  {
55  static void encode(Encoder& e, const gpudb::CreateRoleRequest& v)
56  {
57  ::avro::encode(e, v.name);
58  ::avro::encode(e, v.options);
59  }
60 
61  static void decode(Decoder& d, gpudb::CreateRoleRequest& v)
62  {
63  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
64  {
65  const std::vector<size_t> fo = rd->fieldOrder();
66 
67  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
68  {
69  switch (*it)
70  {
71  case 0:
72  ::avro::decode(d, v.name);
73  break;
74 
75  case 1:
76  ::avro::decode(d, v.options);
77  break;
78 
79  default:
80  break;
81  }
82  }
83  }
84  else
85  {
86  ::avro::decode(d, v.name);
87  ::avro::decode(d, v.options);
88  }
89  }
90  };
91 }
92 
93 namespace gpudb
94 {
95 
103  {
104 
110  name(std::string())
111  {
112  }
113 
114  std::string name;
115  };
116 }
117 
118 namespace avro
119 {
120  template<> struct codec_traits<gpudb::CreateRoleResponse>
121  {
122  static void encode(Encoder& e, const gpudb::CreateRoleResponse& v)
123  {
124  ::avro::encode(e, v.name);
125  }
126 
127  static void decode(Decoder& d, gpudb::CreateRoleResponse& v)
128  {
129  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
130  {
131  const std::vector<size_t> fo = rd->fieldOrder();
132 
133  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
134  {
135  switch (*it)
136  {
137  case 0:
138  ::avro::decode(d, v.name);
139  break;
140 
141  default:
142  break;
143  }
144  }
145  }
146  else
147  {
148  ::avro::decode(d, v.name);
149  }
150  }
151  };
152 }
153 
154 #endif
A set of input parameters for createRole(const CreateRoleRequest&) const.
Definition: create_role.h:18
A set of output parameters for createRole(const CreateRoleRequest&) const.
Definition: create_role.h:102
std::map< std::string, std::string > options
Definition: create_role.h:47
CreateRoleResponse()
Constructs a CreateRoleResponse object with default parameter values.
Definition: create_role.h:109
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:40