GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
grant_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 __GRANT_ROLE_H__
7 #define __GRANT_ROLE_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
25  role(std::string()),
26  member(std::string()),
27  options(std::map<std::string, std::string>())
28  {
29  }
30 
42  GrantRoleRequest(const std::string& role_, const std::string& member_, const std::map<std::string, std::string>& options_):
43  role( role_ ),
44  member( member_ ),
45  options( options_ )
46  {
47  }
48 
49  std::string role;
50  std::string member;
51  std::map<std::string, std::string> options;
52  };
53 }
54 
55 namespace avro
56 {
57  template<> struct codec_traits<gpudb::GrantRoleRequest>
58  {
59  static void encode(Encoder& e, const gpudb::GrantRoleRequest& v)
60  {
61  ::avro::encode(e, v.role);
62  ::avro::encode(e, v.member);
63  ::avro::encode(e, v.options);
64  }
65 
66  static void decode(Decoder& d, gpudb::GrantRoleRequest& 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.role);
78  break;
79 
80  case 1:
81  ::avro::decode(d, v.member);
82  break;
83 
84  case 2:
85  ::avro::decode(d, v.options);
86  break;
87 
88  default:
89  break;
90  }
91  }
92  }
93  else
94  {
95  ::avro::decode(d, v.role);
96  ::avro::decode(d, v.member);
97  ::avro::decode(d, v.options);
98  }
99  }
100  };
101 }
102 
103 namespace gpudb
104 {
105 
113  {
114 
119  role(std::string()),
120  member(std::string()),
121  info(std::map<std::string, std::string>())
122  {
123  }
124 
125  std::string role;
126  std::string member;
127  std::map<std::string, std::string> info;
128  };
129 }
130 
131 namespace avro
132 {
133  template<> struct codec_traits<gpudb::GrantRoleResponse>
134  {
135  static void encode(Encoder& e, const gpudb::GrantRoleResponse& v)
136  {
137  ::avro::encode(e, v.role);
138  ::avro::encode(e, v.member);
139  ::avro::encode(e, v.info);
140  }
141 
142  static void decode(Decoder& d, gpudb::GrantRoleResponse& v)
143  {
144  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
145  {
146  const std::vector<size_t> fo = rd->fieldOrder();
147 
148  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
149  {
150  switch (*it)
151  {
152  case 0:
153  ::avro::decode(d, v.role);
154  break;
155 
156  case 1:
157  ::avro::decode(d, v.member);
158  break;
159 
160  case 2:
161  ::avro::decode(d, v.info);
162  break;
163 
164  default:
165  break;
166  }
167  }
168  }
169  else
170  {
171  ::avro::decode(d, v.role);
172  ::avro::decode(d, v.member);
173  ::avro::decode(d, v.info);
174  }
175  }
176  };
177 }
178 
179 #endif
GrantRoleRequest()
Constructs a GrantRoleRequest object with default parameter values.
Definition: grant_role.h:24
std::map< std::string, std::string > options
Definition: grant_role.h:51
GrantRoleRequest(const std::string &role_, const std::string &member_, const std::map< std::string, std::string > &options_)
Constructs a GrantRoleRequest object with the specified parameters.
Definition: grant_role.h:42
A set of output parameters for const.
Definition: grant_role.h:112
std::map< std::string, std::string > info
Definition: grant_role.h:127
GrantRoleResponse()
Constructs a GrantRoleResponse object with default parameter values.
Definition: grant_role.h:118
A set of input parameters for const.
Definition: grant_role.h:18