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