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