GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
visualize_video.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_H__
7 #define __VISUALIZE_VIDEO_H__
8 
9 namespace gpudb
10 {
11 
18  struct VisualizeVideoRequest
19  {
20 
26  VisualizeVideoRequest() :
27  tableNames(std::vector<std::string>()),
28  worldTableNames(std::vector<std::string>()),
29  trackIds(std::vector<std::vector<std::string> >()),
30  xColumnName(std::string()),
31  yColumnName(std::string()),
32  geometryColumnName(std::string()),
33  minX(double()),
34  maxX(double()),
35  minY(double()),
36  maxY(double()),
37  width(int32_t()),
38  height(int32_t()),
39  projection(std::string()),
40  bgColor(int64_t()),
41  timeIntervals(std::vector<std::vector<double> >()),
42  videoStyle(std::string()),
43  sessionKey(std::string()),
44  styleOptions(std::map<std::string, std::vector<std::string> >()),
45  options(std::map<std::string, std::string>())
46  {
47  }
48 
208  VisualizeVideoRequest(const std::vector<std::string>& tableNames_, const std::vector<std::string>& worldTableNames_, const std::vector<std::vector<std::string> >& trackIds_, const std::string& xColumnName_, const std::string& yColumnName_, const std::string& geometryColumnName_, const double minX_, const double maxX_, const double minY_, const double maxY_, const int32_t width_, const int32_t height_, const std::string& projection_, const int64_t bgColor_, const std::vector<std::vector<double> >& timeIntervals_, const std::string& videoStyle_, const std::string& sessionKey_, const std::map<std::string, std::vector<std::string> >& styleOptions_, const std::map<std::string, std::string>& options_):
209  tableNames( tableNames_ ),
210  worldTableNames( worldTableNames_ ),
211  trackIds( trackIds_ ),
212  xColumnName( xColumnName_ ),
213  yColumnName( yColumnName_ ),
214  geometryColumnName( geometryColumnName_ ),
215  minX( minX_ ),
216  maxX( maxX_ ),
217  minY( minY_ ),
218  maxY( maxY_ ),
219  width( width_ ),
220  height( height_ ),
221  projection( projection_ ),
222  bgColor( bgColor_ ),
223  timeIntervals( timeIntervals_ ),
224  videoStyle( videoStyle_ ),
225  sessionKey( sessionKey_ ),
226  styleOptions( styleOptions_ ),
227  options( options_ )
228  {
229  }
230 
231  std::vector<std::string> tableNames;
232  std::vector<std::string> worldTableNames;
233  std::vector<std::vector<std::string> > trackIds;
234  std::string xColumnName;
235  std::string yColumnName;
236  std::string geometryColumnName;
237  double minX;
238  double maxX;
239  double minY;
240  double maxY;
241  int32_t width;
242  int32_t height;
243  std::string projection;
244  int64_t bgColor;
245  std::vector<std::vector<double> > timeIntervals;
246  std::string videoStyle;
247  std::string sessionKey;
248  std::map<std::string, std::vector<std::string> > styleOptions;
249  std::map<std::string, std::string> options;
250  };
251 }
252 
257 namespace avro
258 {
259  template<> struct codec_traits<gpudb::VisualizeVideoRequest>
260  {
261  static void encode(Encoder& e, const gpudb::VisualizeVideoRequest& v)
262  {
263  ::avro::encode(e, v.tableNames);
264  ::avro::encode(e, v.worldTableNames);
265  ::avro::encode(e, v.trackIds);
266  ::avro::encode(e, v.xColumnName);
267  ::avro::encode(e, v.yColumnName);
268  ::avro::encode(e, v.geometryColumnName);
269  ::avro::encode(e, v.minX);
270  ::avro::encode(e, v.maxX);
271  ::avro::encode(e, v.minY);
272  ::avro::encode(e, v.maxY);
273  ::avro::encode(e, v.width);
274  ::avro::encode(e, v.height);
275  ::avro::encode(e, v.projection);
276  ::avro::encode(e, v.bgColor);
277  ::avro::encode(e, v.timeIntervals);
278  ::avro::encode(e, v.videoStyle);
279  ::avro::encode(e, v.sessionKey);
280  ::avro::encode(e, v.styleOptions);
281  ::avro::encode(e, v.options);
282  }
283 
284  static void decode(Decoder& d, gpudb::VisualizeVideoRequest& v)
285  {
286  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
287  {
288  const std::vector<size_t> fo = rd->fieldOrder();
289 
290  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
291  {
292  switch (*it)
293  {
294  case 0:
295  ::avro::decode(d, v.tableNames);
296  break;
297 
298  case 1:
299  ::avro::decode(d, v.worldTableNames);
300  break;
301 
302  case 2:
303  ::avro::decode(d, v.trackIds);
304  break;
305 
306  case 3:
307  ::avro::decode(d, v.xColumnName);
308  break;
309 
310  case 4:
311  ::avro::decode(d, v.yColumnName);
312  break;
313 
314  case 5:
315  ::avro::decode(d, v.geometryColumnName);
316  break;
317 
318  case 6:
319  ::avro::decode(d, v.minX);
320  break;
321 
322  case 7:
323  ::avro::decode(d, v.maxX);
324  break;
325 
326  case 8:
327  ::avro::decode(d, v.minY);
328  break;
329 
330  case 9:
331  ::avro::decode(d, v.maxY);
332  break;
333 
334  case 10:
335  ::avro::decode(d, v.width);
336  break;
337 
338  case 11:
339  ::avro::decode(d, v.height);
340  break;
341 
342  case 12:
343  ::avro::decode(d, v.projection);
344  break;
345 
346  case 13:
347  ::avro::decode(d, v.bgColor);
348  break;
349 
350  case 14:
351  ::avro::decode(d, v.timeIntervals);
352  break;
353 
354  case 15:
355  ::avro::decode(d, v.videoStyle);
356  break;
357 
358  case 16:
359  ::avro::decode(d, v.sessionKey);
360  break;
361 
362  case 17:
363  ::avro::decode(d, v.styleOptions);
364  break;
365 
366  case 18:
367  ::avro::decode(d, v.options);
368  break;
369 
370  default:
371  break;
372  }
373  }
374  }
375  else
376  {
377  ::avro::decode(d, v.tableNames);
378  ::avro::decode(d, v.worldTableNames);
379  ::avro::decode(d, v.trackIds);
380  ::avro::decode(d, v.xColumnName);
381  ::avro::decode(d, v.yColumnName);
382  ::avro::decode(d, v.geometryColumnName);
383  ::avro::decode(d, v.minX);
384  ::avro::decode(d, v.maxX);
385  ::avro::decode(d, v.minY);
386  ::avro::decode(d, v.maxY);
387  ::avro::decode(d, v.width);
388  ::avro::decode(d, v.height);
389  ::avro::decode(d, v.projection);
390  ::avro::decode(d, v.bgColor);
391  ::avro::decode(d, v.timeIntervals);
392  ::avro::decode(d, v.videoStyle);
393  ::avro::decode(d, v.sessionKey);
394  ::avro::decode(d, v.styleOptions);
395  ::avro::decode(d, v.options);
396  }
397  }
398  };
399 }
400 
401 namespace gpudb
402 {
403 
410  struct VisualizeVideoResponse
411  {
412 
418  VisualizeVideoResponse() :
419  width(double()),
420  height(double()),
421  bgColor(int64_t()),
422  numFrames(int32_t()),
423  sessionKey(std::string()),
424  data(std::vector<std::vector<uint8_t> >()),
425  info(std::map<std::string, std::string>())
426  {
427  }
428 
429  double width;
430  double height;
431  int64_t bgColor;
432  int32_t numFrames;
433  std::string sessionKey;
434  std::vector<std::vector<uint8_t> > data;
435  std::map<std::string, std::string> info;
436  };
437 }
438 
443 namespace avro
444 {
445  template<> struct codec_traits<gpudb::VisualizeVideoResponse>
446  {
447  static void encode(Encoder& e, const gpudb::VisualizeVideoResponse& v)
448  {
449  ::avro::encode(e, v.width);
450  ::avro::encode(e, v.height);
451  ::avro::encode(e, v.bgColor);
452  ::avro::encode(e, v.numFrames);
453  ::avro::encode(e, v.sessionKey);
454  ::avro::encode(e, v.data);
455  ::avro::encode(e, v.info);
456  }
457 
458  static void decode(Decoder& d, gpudb::VisualizeVideoResponse& v)
459  {
460  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
461  {
462  const std::vector<size_t> fo = rd->fieldOrder();
463 
464  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
465  {
466  switch (*it)
467  {
468  case 0:
469  ::avro::decode(d, v.width);
470  break;
471 
472  case 1:
473  ::avro::decode(d, v.height);
474  break;
475 
476  case 2:
477  ::avro::decode(d, v.bgColor);
478  break;
479 
480  case 3:
481  ::avro::decode(d, v.numFrames);
482  break;
483 
484  case 4:
485  ::avro::decode(d, v.sessionKey);
486  break;
487 
488  case 5:
489  ::avro::decode(d, v.data);
490  break;
491 
492  case 6:
493  ::avro::decode(d, v.info);
494  break;
495 
496  default:
497  break;
498  }
499  }
500  }
501  else
502  {
503  ::avro::decode(d, v.width);
504  ::avro::decode(d, v.height);
505  ::avro::decode(d, v.bgColor);
506  ::avro::decode(d, v.numFrames);
507  ::avro::decode(d, v.sessionKey);
508  ::avro::decode(d, v.data);
509  ::avro::decode(d, v.info);
510  }
511  }
512  };
513 }
514 
515 #endif