GPUdb C++ API  Version 6.2.0.3
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  {
128  }
129 
130  double minX;
131  double maxX;
132  double minY;
133  double maxY;
134  };
135 }
136 
137 namespace avro
138 {
139  template<> struct codec_traits<gpudb::AggregateMinMaxGeometryResponse>
140  {
141  static void encode(Encoder& e, const gpudb::AggregateMinMaxGeometryResponse& v)
142  {
143  ::avro::encode(e, v.minX);
144  ::avro::encode(e, v.maxX);
145  ::avro::encode(e, v.minY);
146  ::avro::encode(e, v.maxY);
147  }
148 
149  static void decode(Decoder& d, gpudb::AggregateMinMaxGeometryResponse& v)
150  {
151  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
152  {
153  const std::vector<size_t> fo = rd->fieldOrder();
154 
155  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
156  {
157  switch (*it)
158  {
159  case 0:
160  ::avro::decode(d, v.minX);
161  break;
162 
163  case 1:
164  ::avro::decode(d, v.maxX);
165  break;
166 
167  case 2:
168  ::avro::decode(d, v.minY);
169  break;
170 
171  case 3:
172  ::avro::decode(d, v.maxY);
173  break;
174 
175  default:
176  break;
177  }
178  }
179  }
180  else
181  {
182  ::avro::decode(d, v.minX);
183  ::avro::decode(d, v.maxX);
184  ::avro::decode(d, v.minY);
185  ::avro::decode(d, v.maxY);
186  }
187  }
188  };
189 }
190 
191 #endif
AggregateMinMaxGeometryResponse()
Constructs an AggregateMinMaxGeometryResponse object with default parameter values.
A set of output parameters for aggregateMinMaxGeometry(const AggregateMinMaxGeometryRequest&) const...
AggregateMinMaxGeometryRequest()
Constructs an AggregateMinMaxGeometryRequest object with default parameter values.
A set of input parameters for aggregateMinMaxGeometry(const AggregateMinMaxGeometryRequest&) 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