GPUdb C++ API  Version 6.2.0.3
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  {
127  }
128 
129  std::vector<std::string> procNames;
130  std::vector<std::string> executionModes;
131  std::vector<std::map<std::string, std::vector<uint8_t> > > files;
132  std::vector<std::string> commands;
133  std::vector<std::vector<std::string> > args;
134  std::vector<std::map<std::string, std::string> > options;
135  };
136 }
137 
138 namespace avro
139 {
140  template<> struct codec_traits<gpudb::ShowProcResponse>
141  {
142  static void encode(Encoder& e, const gpudb::ShowProcResponse& v)
143  {
144  ::avro::encode(e, v.procNames);
145  ::avro::encode(e, v.executionModes);
146  ::avro::encode(e, v.files);
147  ::avro::encode(e, v.commands);
148  ::avro::encode(e, v.args);
149  ::avro::encode(e, v.options);
150  }
151 
152  static void decode(Decoder& d, gpudb::ShowProcResponse& v)
153  {
154  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
155  {
156  const std::vector<size_t> fo = rd->fieldOrder();
157 
158  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
159  {
160  switch (*it)
161  {
162  case 0:
163  ::avro::decode(d, v.procNames);
164  break;
165 
166  case 1:
167  ::avro::decode(d, v.executionModes);
168  break;
169 
170  case 2:
171  ::avro::decode(d, v.files);
172  break;
173 
174  case 3:
175  ::avro::decode(d, v.commands);
176  break;
177 
178  case 4:
179  ::avro::decode(d, v.args);
180  break;
181 
182  case 5:
183  ::avro::decode(d, v.options);
184  break;
185 
186  default:
187  break;
188  }
189  }
190  }
191  else
192  {
193  ::avro::decode(d, v.procNames);
194  ::avro::decode(d, v.executionModes);
195  ::avro::decode(d, v.files);
196  ::avro::decode(d, v.commands);
197  ::avro::decode(d, v.args);
198  ::avro::decode(d, v.options);
199  }
200  }
201  };
202 }
203 
204 #endif
std::vector< std::string > executionModes
Definition: show_proc.h:130
A set of input parameters for showProc(const ShowProcRequest&) 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:134
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:129
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:131
std::vector< std::vector< std::string > > args
Definition: show_proc.h:133
A set of output parameters for showProc(const ShowProcRequest&) 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:132