GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
visualize_video_heatmap.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 __VISUALIZE_VIDEO_HEATMAP_H__
7 #define __VISUALIZE_VIDEO_HEATMAP_H__
8 
9 namespace gpudb
10 {
11 
18  struct VisualizeVideoHeatmapRequest
19  {
20 
26  VisualizeVideoHeatmapRequest() :
27  tableNames(std::vector<std::string>()),
28  xColumnName(std::string()),
29  yColumnName(std::string()),
30  minX(double()),
31  maxX(double()),
32  minY(double()),
33  maxY(double()),
34  timeIntervals(std::vector<std::vector<double> >()),
35  width(int32_t()),
36  height(int32_t()),
37  projection(std::string()),
38  videoStyle(std::string()),
39  sessionKey(std::string()),
40  styleOptions(std::map<std::string, std::string>()),
41  options(std::map<std::string, std::string>())
42  {
43  }
44 
129  VisualizeVideoHeatmapRequest(const std::vector<std::string>& tableNames_, const std::string& xColumnName_, const std::string& yColumnName_, const double minX_, const double maxX_, const double minY_, const double maxY_, const std::vector<std::vector<double> >& timeIntervals_, const int32_t width_, const int32_t height_, const std::string& projection_, const std::string& videoStyle_, const std::string& sessionKey_, const std::map<std::string, std::string>& styleOptions_, const std::map<std::string, std::string>& options_):
130  tableNames( tableNames_ ),
131  xColumnName( xColumnName_ ),
132  yColumnName( yColumnName_ ),
133  minX( minX_ ),
134  maxX( maxX_ ),
135  minY( minY_ ),
136  maxY( maxY_ ),
137  timeIntervals( timeIntervals_ ),
138  width( width_ ),
139  height( height_ ),
140  projection( projection_ ),
141  videoStyle( videoStyle_ ),
142  sessionKey( sessionKey_ ),
143  styleOptions( styleOptions_ ),
144  options( options_ )
145  {
146  }
147 
148  std::vector<std::string> tableNames;
149  std::string xColumnName;
150  std::string yColumnName;
151  double minX;
152  double maxX;
153  double minY;
154  double maxY;
155  std::vector<std::vector<double> > timeIntervals;
156  int32_t width;
157  int32_t height;
158  std::string projection;
159  std::string videoStyle;
160  std::string sessionKey;
161  std::map<std::string, std::string> styleOptions;
162  std::map<std::string, std::string> options;
163  };
164 }
165 
170 namespace avro
171 {
172  template<> struct codec_traits<gpudb::VisualizeVideoHeatmapRequest>
173  {
174  static void encode(Encoder& e, const gpudb::VisualizeVideoHeatmapRequest& v)
175  {
176  ::avro::encode(e, v.tableNames);
177  ::avro::encode(e, v.xColumnName);
178  ::avro::encode(e, v.yColumnName);
179  ::avro::encode(e, v.minX);
180  ::avro::encode(e, v.maxX);
181  ::avro::encode(e, v.minY);
182  ::avro::encode(e, v.maxY);
183  ::avro::encode(e, v.timeIntervals);
184  ::avro::encode(e, v.width);
185  ::avro::encode(e, v.height);
186  ::avro::encode(e, v.projection);
187  ::avro::encode(e, v.videoStyle);
188  ::avro::encode(e, v.sessionKey);
189  ::avro::encode(e, v.styleOptions);
190  ::avro::encode(e, v.options);
191  }
192 
193  static void decode(Decoder& d, gpudb::VisualizeVideoHeatmapRequest& v)
194  {
195  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
196  {
197  const std::vector<size_t> fo = rd->fieldOrder();
198 
199  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
200  {
201  switch (*it)
202  {
203  case 0:
204  ::avro::decode(d, v.tableNames);
205  break;
206 
207  case 1:
208  ::avro::decode(d, v.xColumnName);
209  break;
210 
211  case 2:
212  ::avro::decode(d, v.yColumnName);
213  break;
214 
215  case 3:
216  ::avro::decode(d, v.minX);
217  break;
218 
219  case 4:
220  ::avro::decode(d, v.maxX);
221  break;
222 
223  case 5:
224  ::avro::decode(d, v.minY);
225  break;
226 
227  case 6:
228  ::avro::decode(d, v.maxY);
229  break;
230 
231  case 7:
232  ::avro::decode(d, v.timeIntervals);
233  break;
234 
235  case 8:
236  ::avro::decode(d, v.width);
237  break;
238 
239  case 9:
240  ::avro::decode(d, v.height);
241  break;
242 
243  case 10:
244  ::avro::decode(d, v.projection);
245  break;
246 
247  case 11:
248  ::avro::decode(d, v.videoStyle);
249  break;
250 
251  case 12:
252  ::avro::decode(d, v.sessionKey);
253  break;
254 
255  case 13:
256  ::avro::decode(d, v.styleOptions);
257  break;
258 
259  case 14:
260  ::avro::decode(d, v.options);
261  break;
262 
263  default:
264  break;
265  }
266  }
267  }
268  else
269  {
270  ::avro::decode(d, v.tableNames);
271  ::avro::decode(d, v.xColumnName);
272  ::avro::decode(d, v.yColumnName);
273  ::avro::decode(d, v.minX);
274  ::avro::decode(d, v.maxX);
275  ::avro::decode(d, v.minY);
276  ::avro::decode(d, v.maxY);
277  ::avro::decode(d, v.timeIntervals);
278  ::avro::decode(d, v.width);
279  ::avro::decode(d, v.height);
280  ::avro::decode(d, v.projection);
281  ::avro::decode(d, v.videoStyle);
282  ::avro::decode(d, v.sessionKey);
283  ::avro::decode(d, v.styleOptions);
284  ::avro::decode(d, v.options);
285  }
286  }
287  };
288 }
289 
290 namespace gpudb
291 {
292 
299  struct VisualizeVideoHeatmapResponse
300  {
301 
307  VisualizeVideoHeatmapResponse() :
308  width(double()),
309  height(double()),
310  bgColor(int64_t()),
311  numFrames(int32_t()),
312  sessionKey(std::string()),
313  data(std::vector<std::vector<uint8_t> >()),
314  info(std::map<std::string, std::string>())
315  {
316  }
317 
318  double width;
319  double height;
320  int64_t bgColor;
321  int32_t numFrames;
322  std::string sessionKey;
323  std::vector<std::vector<uint8_t> > data;
324  std::map<std::string, std::string> info;
325  };
326 }
327 
332 namespace avro
333 {
334  template<> struct codec_traits<gpudb::VisualizeVideoHeatmapResponse>
335  {
336  static void encode(Encoder& e, const gpudb::VisualizeVideoHeatmapResponse& v)
337  {
338  ::avro::encode(e, v.width);
339  ::avro::encode(e, v.height);
340  ::avro::encode(e, v.bgColor);
341  ::avro::encode(e, v.numFrames);
342  ::avro::encode(e, v.sessionKey);
343  ::avro::encode(e, v.data);
344  ::avro::encode(e, v.info);
345  }
346 
347  static void decode(Decoder& d, gpudb::VisualizeVideoHeatmapResponse& v)
348  {
349  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
350  {
351  const std::vector<size_t> fo = rd->fieldOrder();
352 
353  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
354  {
355  switch (*it)
356  {
357  case 0:
358  ::avro::decode(d, v.width);
359  break;
360 
361  case 1:
362  ::avro::decode(d, v.height);
363  break;
364 
365  case 2:
366  ::avro::decode(d, v.bgColor);
367  break;
368 
369  case 3:
370  ::avro::decode(d, v.numFrames);
371  break;
372 
373  case 4:
374  ::avro::decode(d, v.sessionKey);
375  break;
376 
377  case 5:
378  ::avro::decode(d, v.data);
379  break;
380 
381  case 6:
382  ::avro::decode(d, v.info);
383  break;
384 
385  default:
386  break;
387  }
388  }
389  }
390  else
391  {
392  ::avro::decode(d, v.width);
393  ::avro::decode(d, v.height);
394  ::avro::decode(d, v.bgColor);
395  ::avro::decode(d, v.numFrames);
396  ::avro::decode(d, v.sessionKey);
397  ::avro::decode(d, v.data);
398  ::avro::decode(d, v.info);
399  }
400  }
401  };
402 }
403 
404 #endif