GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
show_statistics.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_STATISTICS_H__
7 #define __SHOW_STATISTICS_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
26  tableNames(std::vector<std::string>()),
27  options(std::map<std::string, std::string>())
28  {
29  }
30 
41  ShowStatisticsRequest(const std::vector<std::string>& tableNames_, const std::map<std::string, std::string>& options_):
42  tableNames( tableNames_ ),
43  options( options_ )
44  {
45  }
46 
47  std::vector<std::string> tableNames;
48  std::map<std::string, std::string> options;
49  };
50 }
51 
52 namespace avro
53 {
54  template<> struct codec_traits<gpudb::ShowStatisticsRequest>
55  {
56  static void encode(Encoder& e, const gpudb::ShowStatisticsRequest& v)
57  {
58  ::avro::encode(e, v.tableNames);
59  ::avro::encode(e, v.options);
60  }
61 
62  static void decode(Decoder& d, gpudb::ShowStatisticsRequest& v)
63  {
64  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
65  {
66  const std::vector<size_t> fo = rd->fieldOrder();
67 
68  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
69  {
70  switch (*it)
71  {
72  case 0:
73  ::avro::decode(d, v.tableNames);
74  break;
75 
76  case 1:
77  ::avro::decode(d, v.options);
78  break;
79 
80  default:
81  break;
82  }
83  }
84  }
85  else
86  {
87  ::avro::decode(d, v.tableNames);
88  ::avro::decode(d, v.options);
89  }
90  }
91  };
92 }
93 
94 namespace gpudb
95 {
96 
104  {
105 
111  tableNames(std::vector<std::string>()),
112  stastisticsMap(std::vector<std::vector<std::map<std::string, std::string> > >()),
113  info(std::map<std::string, std::string>())
114  {
115  }
116 
117  std::vector<std::string> tableNames;
118  std::vector<std::vector<std::map<std::string, std::string> > > stastisticsMap;
119  std::map<std::string, std::string> info;
120  };
121 }
122 
123 namespace avro
124 {
125  template<> struct codec_traits<gpudb::ShowStatisticsResponse>
126  {
127  static void encode(Encoder& e, const gpudb::ShowStatisticsResponse& v)
128  {
129  ::avro::encode(e, v.tableNames);
130  ::avro::encode(e, v.stastisticsMap);
131  ::avro::encode(e, v.info);
132  }
133 
134  static void decode(Decoder& d, gpudb::ShowStatisticsResponse& v)
135  {
136  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
137  {
138  const std::vector<size_t> fo = rd->fieldOrder();
139 
140  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
141  {
142  switch (*it)
143  {
144  case 0:
145  ::avro::decode(d, v.tableNames);
146  break;
147 
148  case 1:
149  ::avro::decode(d, v.stastisticsMap);
150  break;
151 
152  case 2:
153  ::avro::decode(d, v.info);
154  break;
155 
156  default:
157  break;
158  }
159  }
160  }
161  else
162  {
163  ::avro::decode(d, v.tableNames);
164  ::avro::decode(d, v.stastisticsMap);
165  ::avro::decode(d, v.info);
166  }
167  }
168  };
169 }
170 
171 #endif
A set of input parameters for const.
ShowStatisticsRequest(const std::vector< std::string > &tableNames_, const std::map< std::string, std::string > &options_)
Constructs a ShowStatisticsRequest object with the specified parameters.
std::vector< std::string > tableNames
std::vector< std::vector< std::map< std::string, std::string > > > stastisticsMap
ShowStatisticsRequest()
Constructs a ShowStatisticsRequest object with default parameter values.
ShowStatisticsResponse()
Constructs a ShowStatisticsResponse object with default parameter values.
std::map< std::string, std::string > options
A set of output parameters for const.
std::vector< std::string > tableNames
std::map< std::string, std::string > info