OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GeoTargetValueSerializer< kMULTIPOLYGON > Struct Template Reference

#include <ResultSetGeoSerialization.h>

Static Public Member Functions

static TargetValue serialize (const SQLTypeInfo &geo_ti, std::array< VarlenDatumPtr, 3 > &vals)
 

Detailed Description

template<>
struct GeoTargetValueSerializer< kMULTIPOLYGON >

Definition at line 296 of file ResultSetGeoSerialization.h.

Member Function Documentation

static TargetValue GeoTargetValueSerializer< kMULTIPOLYGON >::serialize ( const SQLTypeInfo geo_ti,
std::array< VarlenDatumPtr, 3 > &  vals 
)
inlinestatic

Definition at line 297 of file ResultSetGeoSerialization.h.

References Geospatial::decompress_coords< double, SQLTypeInfo >(), SQLTypeInfo::get_notnull(), and Geospatial::unpack_geo_vector().

298  {
299  if (!geo_ti.get_notnull() &&
300  (vals[0]->is_null || vals[1]->is_null || vals[2]->is_null)) {
301  return GeoTargetValue(boost::optional<GeoMultiPolyTargetValue>{});
302  }
303  std::vector<int32_t> ring_sizes_vec;
304  unpack_geo_vector(ring_sizes_vec, vals[1]->pointer, vals[1]->length);
305  std::vector<int32_t> poly_rings_vec;
306  unpack_geo_vector(poly_rings_vec, vals[2]->pointer, vals[2]->length);
308  geo_ti, vals[0]->pointer, vals[0]->length),
309  ring_sizes_vec,
310  poly_rings_vec);
311  return GeoTargetValue(gtv);
312  }
std::shared_ptr< std::vector< double > > decompress_coords< double, SQLTypeInfo >(const SQLTypeInfo &geo_ti, const int8_t *coords, const size_t coords_sz)
boost::optional< boost::variant< GeoPointTargetValue, GeoMultiPointTargetValue, GeoLineStringTargetValue, GeoMultiLineStringTargetValue, GeoPolyTargetValue, GeoMultiPolyTargetValue >> GeoTargetValue
Definition: TargetValue.h:187
HOST DEVICE bool get_notnull() const
Definition: sqltypes.h:398
void unpack_geo_vector(std::vector< T > &output, const int8_t *input_ptr, const size_t sz)

+ Here is the call graph for this function:


The documentation for this struct was generated from the following file: