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

#include <ResultSetGeoSerialization.h>

Static Public Member Functions

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

Detailed Description

template<>
struct GeoWktSerializer< kPOLYGON >

Definition at line 265 of file ResultSetGeoSerialization.h.

Member Function Documentation

static TargetValue GeoWktSerializer< kPOLYGON >::serialize ( const SQLTypeInfo geo_ti,
std::array< VarlenDatumPtr, 2 > &  vals 
)
inlinestatic

Definition at line 266 of file ResultSetGeoSerialization.h.

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

267  {
268  if (!geo_ti.get_notnull() && (vals[0]->is_null || vals[1]->is_null)) {
269  // May need to generate "POLYGON EMPTY" instead of NULL
270  return NullableString("NULL");
271  }
272  std::vector<int32_t> ring_sizes_vec;
273  unpack_geo_vector(ring_sizes_vec, vals[1]->pointer, vals[1]->length);
275  geo_ti, vals[0]->pointer, vals[0]->length),
276  ring_sizes_vec);
277  return NullableString(poly.getWktString());
278  };
std::shared_ptr< std::vector< double > > decompress_coords< double, SQLTypeInfo >(const SQLTypeInfo &geo_ti, const int8_t *coords, const size_t coords_sz)
boost::variant< std::string, void * > NullableString
Definition: TargetValue.h:179
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: