GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
aggregate_min_max_geometry.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 __AGGREGATE_MIN_MAX_GEOMETRY_H__
7 #define __AGGREGATE_MIN_MAX_GEOMETRY_H__
8 
9 namespace gpudb
10 {
11 
20  {
21 
27  tableName(std::string()),
28  columnName(std::string()),
29  options(std::map<std::string, std::string>())
30  {
31  }
32 
44  AggregateMinMaxGeometryRequest(const std::string& tableName_, const std::string& columnName_, const std::map<std::string, std::string>& options_):
45  tableName( tableName_ ),
46  columnName( columnName_ ),
47  options( options_ )
48  {
49  }
50 
51  std::string tableName;
52  std::string columnName;
53  std::map<std::string, std::string> options;
54  };
55 }
56 
57 namespace avro
58 {
59  template<> struct codec_traits<gpudb::AggregateMinMaxGeometryRequest>
60  {
61  static void encode(Encoder& e, const gpudb::AggregateMinMaxGeometryRequest& v)
62  {
63  ::avro::encode(e, v.tableName);
64  ::avro::encode(e, v.columnName);
65  ::avro::encode(e, v.options);
66  }
67 
68  static void decode(Decoder& d, gpudb::AggregateMinMaxGeometryRequest& v)
69  {
70  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
71  {
72  const std::vector<size_t> fo = rd->fieldOrder();
73 
74  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
75  {
76  switch (*it)
77  {
78  case 0:
79  ::avro::decode(d, v.tableName);
80  break;
81 
82  case 1:
83  ::avro::decode(d, v.columnName);
84  break;
85 
86  case 2:
87  ::avro::decode(d, v.options);
88  break;
89 
90  default:
91  break;
92  }
93  }
94  }
95  else
96  {
97  ::avro::decode(d, v.tableName);
98  ::avro::decode(d, v.columnName);
99  ::avro::decode(d, v.options);
100  }
101  }
102  };
103 }
104 
105 namespace gpudb
106 {
107 
116  {
117 
123  minX(double()),
124  maxX(double()),
125  minY(double()),
126  maxY(double()),
127  info(std::map<std::string, std::string>())
128  {
129  }
130 
131  double minX;
132  double maxX;
133  double minY;
134  double maxY;
135  std::map<std::string, std::string> info;
136  };
137 }
138 
139 namespace avro
140 {
141  template<> struct codec_traits<gpudb::AggregateMinMaxGeometryResponse>
142  {
143  static void encode(Encoder& e, const gpudb::AggregateMinMaxGeometryResponse& v)
144  {
145  ::avro::encode(e, v.minX);
146  ::avro::encode(e, v.maxX);
147  ::avro::encode(e, v.minY);
148  ::avro::encode(e, v.maxY);
149  ::avro::encode(e, v.info);
150  }
151 
152  static void decode(Decoder& d, gpudb::AggregateMinMaxGeometryResponse& 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.minX);
164  break;
165 
166  case 1:
167  ::avro::decode(d, v.maxX);
168  break;
169 
170  case 2:
171  ::avro::decode(d, v.minY);
172  break;
173 
174  case 3:
175  ::avro::decode(d, v.maxY);
176  break;
177 
178  case 4:
179  ::avro::decode(d, v.info);
180  break;
181 
182  default:
183  break;
184  }
185  }
186  }
187  else
188  {
189  ::avro::decode(d, v.minX);
190  ::avro::decode(d, v.maxX);
191  ::avro::decode(d, v.minY);
192  ::avro::decode(d, v.maxY);
193  ::avro::decode(d, v.info);
194  }
195  }
196  };
197 }
198 
199 #endif
AggregateMinMaxGeometryResponse()
Constructs an AggregateMinMaxGeometryResponse object with default parameter values.
std::map< std::string, std::string > info
A set of output parameters for const.
AggregateMinMaxGeometryRequest()
Constructs an AggregateMinMaxGeometryRequest object with default parameter values.
A set of input parameters for const.
AggregateMinMaxGeometryRequest(const std::string &tableName_, const std::string &columnName_, const std::map< std::string, std::string > &options_)
Constructs an AggregateMinMaxGeometryRequest object with the specified parameters.
std::map< std::string, std::string > options