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