GPUdb C++ API  Version 6.2.0.3
admin_show_jobs.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 __ADMIN_SHOW_JOBS_H__
7 #define __ADMIN_SHOW_JOBS_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
26  options(std::map<std::string, std::string>())
27  {
28  }
29 
45  AdminShowJobsRequest(const std::map<std::string, std::string>& options_):
46  options( options_ )
47  {
48  }
49 
50  std::map<std::string, std::string> options;
51  };
52 }
53 
54 namespace avro
55 {
56  template<> struct codec_traits<gpudb::AdminShowJobsRequest>
57  {
58  static void encode(Encoder& e, const gpudb::AdminShowJobsRequest& v)
59  {
60  ::avro::encode(e, v.options);
61  }
62 
63  static void decode(Decoder& d, gpudb::AdminShowJobsRequest& v)
64  {
65  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
66  {
67  const std::vector<size_t> fo = rd->fieldOrder();
68 
69  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
70  {
71  switch (*it)
72  {
73  case 0:
74  ::avro::decode(d, v.options);
75  break;
76 
77  default:
78  break;
79  }
80  }
81  }
82  else
83  {
84  ::avro::decode(d, v.options);
85  }
86  }
87  };
88 }
89 
90 namespace gpudb
91 {
92 
100  {
101 
107  jobId(std::vector<int32_t>()),
108  status(std::vector<std::string>()),
109  endpointName(std::vector<std::string>()),
110  timeReceived(std::vector<int64_t>()),
111  authId(std::vector<std::string>()),
112  userData(std::vector<std::string>())
113  {
114  }
115 
116  std::vector<int32_t> jobId;
117  std::vector<std::string> status;
118  std::vector<std::string> endpointName;
119  std::vector<int64_t> timeReceived;
120  std::vector<std::string> authId;
121  std::vector<std::string> userData;
122  };
123 }
124 
125 namespace avro
126 {
127  template<> struct codec_traits<gpudb::AdminShowJobsResponse>
128  {
129  static void encode(Encoder& e, const gpudb::AdminShowJobsResponse& v)
130  {
131  ::avro::encode(e, v.jobId);
132  ::avro::encode(e, v.status);
133  ::avro::encode(e, v.endpointName);
134  ::avro::encode(e, v.timeReceived);
135  ::avro::encode(e, v.authId);
136  ::avro::encode(e, v.userData);
137  }
138 
139  static void decode(Decoder& d, gpudb::AdminShowJobsResponse& v)
140  {
141  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
142  {
143  const std::vector<size_t> fo = rd->fieldOrder();
144 
145  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
146  {
147  switch (*it)
148  {
149  case 0:
150  ::avro::decode(d, v.jobId);
151  break;
152 
153  case 1:
154  ::avro::decode(d, v.status);
155  break;
156 
157  case 2:
158  ::avro::decode(d, v.endpointName);
159  break;
160 
161  case 3:
162  ::avro::decode(d, v.timeReceived);
163  break;
164 
165  case 4:
166  ::avro::decode(d, v.authId);
167  break;
168 
169  case 5:
170  ::avro::decode(d, v.userData);
171  break;
172 
173  default:
174  break;
175  }
176  }
177  }
178  else
179  {
180  ::avro::decode(d, v.jobId);
181  ::avro::decode(d, v.status);
182  ::avro::decode(d, v.endpointName);
183  ::avro::decode(d, v.timeReceived);
184  ::avro::decode(d, v.authId);
185  ::avro::decode(d, v.userData);
186  }
187  }
188  };
189 }
190 
191 #endif
std::vector< std::string > status
std::vector< int32_t > jobId
std::vector< std::string > userData
AdminShowJobsRequest()
Constructs an AdminShowJobsRequest object with default parameter values.
std::vector< std::string > authId
std::vector< std::string > endpointName
std::vector< int64_t > timeReceived
A set of output parameters for adminShowJobs(const AdminShowJobsRequest&) const.
AdminShowJobsResponse()
Constructs an AdminShowJobsResponse object with default parameter values.
AdminShowJobsRequest(const std::map< std::string, std::string > &options_)
Constructs an AdminShowJobsRequest object with the specified parameters.
A set of input parameters for adminShowJobs(const AdminShowJobsRequest&) const.
std::map< std::string, std::string > options