2009-02-03 18:06:23 +01:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2009-02-03 18:06:23 +01:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-22 03:33:03 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2009-02-03 18:06:23 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2010-11-22 12:40:08 +01:00
|
|
|
// mapnik
|
2009-02-03 18:06:23 +01:00
|
|
|
#include <mapnik/global.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <mapnik/box2d.hpp>
|
2009-02-03 18:06:23 +01:00
|
|
|
#include <mapnik/geometry.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
|
|
|
#include <mapnik/wkb.hpp>
|
|
|
|
#include <mapnik/unicode.hpp>
|
2013-08-14 00:52:04 +02:00
|
|
|
#include <mapnik/value_types.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2009-02-03 18:06:23 +01:00
|
|
|
|
|
|
|
// ogr
|
|
|
|
#include "occi_featureset.hpp"
|
|
|
|
|
|
|
|
using mapnik::query;
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2009-02-03 18:06:23 +01:00
|
|
|
using mapnik::feature_ptr;
|
2010-11-03 14:19:15 +01:00
|
|
|
using mapnik::geometry_type;
|
2009-02-03 18:06:23 +01:00
|
|
|
using mapnik::geometry_utils;
|
|
|
|
using mapnik::transcoder;
|
|
|
|
using mapnik::datasource_exception;
|
2011-05-23 17:54:58 +02:00
|
|
|
using mapnik::feature_factory;
|
2009-02-03 18:06:23 +01:00
|
|
|
|
|
|
|
using oracle::occi::Connection;
|
|
|
|
using oracle::occi::Statement;
|
|
|
|
using oracle::occi::ResultSet;
|
|
|
|
using oracle::occi::StatelessConnectionPool;
|
|
|
|
using oracle::occi::MetaData;
|
|
|
|
using oracle::occi::SQLException;
|
|
|
|
using oracle::occi::Type;
|
|
|
|
using oracle::occi::Number;
|
2010-11-22 12:40:08 +01:00
|
|
|
using oracle::occi::Blob;
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2010-11-16 18:31:13 +01:00
|
|
|
occi_featureset::occi_featureset(StatelessConnectionPool* pool,
|
|
|
|
Connection* conn,
|
2012-01-17 20:22:21 +01:00
|
|
|
mapnik::context_ptr const& ctx,
|
2009-02-03 18:06:23 +01:00
|
|
|
std::string const& sqlstring,
|
|
|
|
std::string const& encoding,
|
2010-11-16 18:31:13 +01:00
|
|
|
bool use_connection_pool,
|
2012-04-08 02:20:56 +02:00
|
|
|
bool use_wkb,
|
2012-01-17 20:22:21 +01:00
|
|
|
unsigned prefetch_rows)
|
2013-03-06 13:27:00 +01:00
|
|
|
: rs_(NULL),
|
|
|
|
tr_(new transcoder(encoding)),
|
2012-01-17 20:22:21 +01:00
|
|
|
feature_id_(1),
|
2012-04-08 02:20:56 +02:00
|
|
|
ctx_(ctx),
|
|
|
|
use_wkb_(use_wkb)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2010-11-16 18:31:13 +01:00
|
|
|
if (use_connection_pool)
|
2011-10-22 03:33:03 +02:00
|
|
|
{
|
2010-11-16 18:31:13 +01:00
|
|
|
conn_.set_pool(pool);
|
2011-10-22 03:33:03 +02:00
|
|
|
}
|
2010-11-16 18:31:13 +01:00
|
|
|
else
|
2011-10-22 03:33:03 +02:00
|
|
|
{
|
2010-11-16 18:31:13 +01:00
|
|
|
conn_.set_connection(conn, false);
|
2011-10-22 03:33:03 +02:00
|
|
|
}
|
2010-11-16 18:31:13 +01:00
|
|
|
|
2009-02-03 18:06:23 +01:00
|
|
|
try
|
|
|
|
{
|
2013-03-06 13:27:00 +01:00
|
|
|
rs_ = conn_.execute_query(sqlstring, prefetch_rows);
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
|
|
|
catch (SQLException &ex)
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_ERROR(occi) << "OCCI Plugin: error processing " << sqlstring << " : " << ex.getMessage();
|
2013-03-06 13:27:00 +01:00
|
|
|
|
|
|
|
rs_ = NULL;
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
occi_featureset::~occi_featureset()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
feature_ptr occi_featureset::next()
|
|
|
|
{
|
2013-04-02 09:33:56 +02:00
|
|
|
while (rs_ != NULL && rs_->next() == oracle::occi::ResultSet::DATA_AVAILABLE)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2013-03-06 12:48:34 +01:00
|
|
|
feature_ptr feature(feature_factory::create(ctx_, feature_id_));
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
if (use_wkb_)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2013-02-19 11:54:15 +01:00
|
|
|
Blob blob = rs_->getBlob(1);
|
2012-04-08 02:20:56 +02:00
|
|
|
blob.open(oracle::occi::OCCI_LOB_READONLY);
|
|
|
|
|
2013-03-06 12:48:34 +01:00
|
|
|
unsigned int size = blob.length();
|
2012-04-08 02:20:56 +02:00
|
|
|
if (buffer_.size() < size)
|
|
|
|
{
|
|
|
|
buffer_.resize(size);
|
|
|
|
}
|
|
|
|
|
2013-03-06 12:48:34 +01:00
|
|
|
oracle::occi::Stream* instream = blob.getStream(1, 0);
|
2012-04-08 02:20:56 +02:00
|
|
|
instream->readBuffer(buffer_.data(), size);
|
|
|
|
blob.closeStream(instream);
|
|
|
|
blob.close();
|
|
|
|
|
2013-04-02 09:33:56 +02:00
|
|
|
if (! geometry_utils::from_wkb(feature->paths(), buffer_.data(), size))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2012-04-08 02:20:56 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
boost::scoped_ptr<SDOGeometry> geom(dynamic_cast<SDOGeometry*>(rs_->getObject(1)));
|
|
|
|
if (geom.get())
|
|
|
|
{
|
|
|
|
convert_geometry(geom.get(), feature);
|
|
|
|
}
|
2013-04-02 09:33:56 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
|
|
|
|
2009-02-05 12:17:27 +01:00
|
|
|
std::vector<MetaData> listOfColumns = rs_->getColumnListMetaData();
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2010-11-16 18:31:13 +01:00
|
|
|
for (unsigned int i = 1; i < listOfColumns.size(); ++i)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2010-11-22 12:40:08 +01:00
|
|
|
MetaData columnObj = listOfColumns[i];
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2010-11-22 12:40:08 +01:00
|
|
|
std::string fld_name = columnObj.getString(MetaData::ATTR_NAME);
|
|
|
|
int type_oid = columnObj.getInt(MetaData::ATTR_DATA_TYPE);
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
/*
|
2011-11-14 04:54:32 +01:00
|
|
|
int type_code = columnObj.getInt(MetaData::ATTR_TYPECODE);
|
|
|
|
if (type_code == OCCI_TYPECODE_OBJECT)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-22 12:40:08 +01:00
|
|
|
*/
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2010-11-22 12:40:08 +01:00
|
|
|
switch (type_oid)
|
|
|
|
{
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCIBOOL:
|
2013-02-19 11:54:15 +01:00
|
|
|
feature->put(fld_name, (rs_->getInt(i + 1) != 0));
|
|
|
|
break;
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCIINT:
|
|
|
|
case oracle::occi::OCCIUNSIGNED_INT:
|
2013-02-19 11:54:15 +01:00
|
|
|
feature->put(fld_name, static_cast<mapnik::value_integer>(rs_->getInt(i + 1)));
|
2011-10-22 03:33:03 +02:00
|
|
|
break;
|
|
|
|
case oracle::occi::OCCIFLOAT:
|
|
|
|
case oracle::occi::OCCIBFLOAT:
|
2013-02-19 11:54:15 +01:00
|
|
|
feature->put(fld_name, (double)rs_->getFloat(i + 1));
|
|
|
|
break;
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCIDOUBLE:
|
|
|
|
case oracle::occi::OCCIBDOUBLE:
|
|
|
|
case oracle::occi::OCCINUMBER:
|
|
|
|
case oracle::occi::OCCI_SQLT_NUM:
|
2013-02-26 17:41:14 +01:00
|
|
|
feature->put(fld_name, rs_->getDouble(i + 1));
|
|
|
|
break;
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCICHAR:
|
|
|
|
case oracle::occi::OCCISTRING:
|
|
|
|
case oracle::occi::OCCI_SQLT_AFC:
|
|
|
|
case oracle::occi::OCCI_SQLT_AVC:
|
|
|
|
case oracle::occi::OCCI_SQLT_CHR:
|
2013-02-19 11:54:15 +01:00
|
|
|
case oracle::occi::OCCI_SQLT_LNG:
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCI_SQLT_LVC:
|
|
|
|
case oracle::occi::OCCI_SQLT_STR:
|
|
|
|
case oracle::occi::OCCI_SQLT_VCS:
|
|
|
|
case oracle::occi::OCCI_SQLT_VNU:
|
|
|
|
case oracle::occi::OCCI_SQLT_VBI:
|
|
|
|
case oracle::occi::OCCI_SQLT_VST:
|
2013-02-19 11:54:15 +01:00
|
|
|
case oracle::occi::OCCIROWID:
|
|
|
|
case oracle::occi::OCCI_SQLT_RDD:
|
|
|
|
case oracle::occi::OCCI_SQLT_RID:
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCIDATE:
|
|
|
|
case oracle::occi::OCCI_SQLT_DAT:
|
|
|
|
case oracle::occi::OCCI_SQLT_DATE:
|
|
|
|
case oracle::occi::OCCI_SQLT_TIME:
|
|
|
|
case oracle::occi::OCCI_SQLT_TIME_TZ:
|
2013-02-19 11:54:15 +01:00
|
|
|
case oracle::occi::OCCITIMESTAMP:
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCI_SQLT_TIMESTAMP:
|
|
|
|
case oracle::occi::OCCI_SQLT_TIMESTAMP_LTZ:
|
|
|
|
case oracle::occi::OCCI_SQLT_TIMESTAMP_TZ:
|
2013-08-14 00:52:04 +02:00
|
|
|
feature->put(fld_name, static_cast<mapnik::value_unicode_string>(tr_->transcode(rs_->getString(i + 1).c_str())));
|
2013-02-19 11:54:15 +01:00
|
|
|
break;
|
|
|
|
case oracle::occi::OCCIINTERVALDS:
|
|
|
|
case oracle::occi::OCCIINTERVALYM:
|
2011-10-22 03:33:03 +02:00
|
|
|
case oracle::occi::OCCI_SQLT_INTERVAL_YM:
|
|
|
|
case oracle::occi::OCCI_SQLT_INTERVAL_DS:
|
|
|
|
case oracle::occi::OCCIANYDATA:
|
|
|
|
case oracle::occi::OCCIBLOB:
|
|
|
|
case oracle::occi::OCCIBFILE:
|
|
|
|
case oracle::occi::OCCIBYTES:
|
|
|
|
case oracle::occi::OCCICLOB:
|
|
|
|
case oracle::occi::OCCIVECTOR:
|
|
|
|
case oracle::occi::OCCIMETADATA:
|
|
|
|
case oracle::occi::OCCIPOBJECT:
|
|
|
|
case oracle::occi::OCCIREF:
|
|
|
|
case oracle::occi::OCCIREFANY:
|
|
|
|
case oracle::occi::OCCISTREAM:
|
|
|
|
case oracle::occi::OCCICURSOR:
|
|
|
|
case oracle::occi::OCCI_SQLT_FILE:
|
|
|
|
case oracle::occi::OCCI_SQLT_CFILE:
|
|
|
|
case oracle::occi::OCCI_SQLT_REF:
|
|
|
|
case oracle::occi::OCCI_SQLT_CLOB:
|
|
|
|
case oracle::occi::OCCI_SQLT_BLOB:
|
|
|
|
case oracle::occi::OCCI_SQLT_RSET:
|
2012-04-08 02:20:56 +02:00
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_WARN(occi) << "occi_featureset: Unsupported datatype "
|
|
|
|
<< occi_enums::resolve_datatype(type_oid)
|
|
|
|
<< " (type_oid=" << type_oid << ")";
|
2012-04-08 02:20:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-10-22 03:33:03 +02:00
|
|
|
default: // shouldn't get here
|
2012-04-08 02:20:56 +02:00
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_WARN(occi) << "occi_featureset: Unknown datatype "
|
|
|
|
<< "(type_oid=" << type_oid << ")";
|
2012-04-08 02:20:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2013-04-08 15:18:48 +02:00
|
|
|
++feature_id_;
|
|
|
|
|
2009-02-03 18:06:23 +01:00
|
|
|
return feature;
|
|
|
|
}
|
|
|
|
|
|
|
|
return feature_ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-06 13:53:16 +01:00
|
|
|
void occi_featureset::convert_geometry(SDOGeometry* geom, feature_ptr feature)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2011-10-22 03:33:03 +02:00
|
|
|
int gtype = (int)geom->getSdo_gtype();
|
2010-11-22 12:40:08 +01:00
|
|
|
int dimensions = gtype / 1000;
|
|
|
|
int lrsvalue = (gtype - dimensions * 1000) / 100;
|
2011-11-14 04:37:50 +01:00
|
|
|
int geomtype = (gtype - dimensions * 1000 - lrsvalue * 100);
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2009-02-05 12:17:27 +01:00
|
|
|
const std::vector<Number>& elem_info = geom->getSdo_elem_info();
|
|
|
|
const std::vector<Number>& ordinates = geom->getSdo_ordinates();
|
2011-10-22 03:33:03 +02:00
|
|
|
const int ordinates_size = (int)ordinates.size();
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2010-11-22 12:40:08 +01:00
|
|
|
switch (geomtype)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_POINT:
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
|
|
|
SDOPointType* sdopoint = geom->getSdo_point();
|
|
|
|
if (sdopoint && ! sdopoint->isNull())
|
2010-11-22 12:40:08 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
geometry_type* point = new geometry_type(mapnik::Point);
|
|
|
|
point->move_to(sdopoint->getX(), sdopoint->getY());
|
|
|
|
feature->add_geometry(point);
|
2010-11-22 12:40:08 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_LINE:
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
|
|
|
if (ordinates_size >= dimensions)
|
2010-11-22 12:40:08 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
const bool is_single_geom = true;
|
|
|
|
const bool is_point_type = false;
|
|
|
|
convert_ordinates(feature,
|
|
|
|
mapnik::LineString,
|
|
|
|
elem_info,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_single_geom,
|
2011-12-06 13:53:16 +01:00
|
|
|
is_point_type);
|
2010-11-22 12:40:08 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_POLYGON:
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
|
|
|
if (ordinates_size >= dimensions)
|
2010-11-22 12:40:08 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
const bool is_single_geom = true;
|
|
|
|
const bool is_point_type = false;
|
|
|
|
convert_ordinates(feature,
|
|
|
|
mapnik::Polygon,
|
|
|
|
elem_info,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_single_geom,
|
2011-12-06 13:53:16 +01:00
|
|
|
is_point_type);
|
2010-11-22 12:40:08 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_MULTIPOINT:
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
|
|
|
if (ordinates_size >= dimensions)
|
2010-11-22 12:40:08 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
const bool is_single_geom = false;
|
|
|
|
const bool is_point_type = true;
|
|
|
|
convert_ordinates(feature,
|
|
|
|
mapnik::Point,
|
|
|
|
elem_info,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_single_geom,
|
2011-12-06 13:53:16 +01:00
|
|
|
is_point_type);
|
2010-11-22 12:40:08 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_MULTILINE:
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
|
|
|
if (ordinates_size >= dimensions)
|
2010-11-22 12:40:08 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
const bool is_single_geom = false;
|
|
|
|
const bool is_point_type = false;
|
|
|
|
|
|
|
|
convert_ordinates(feature,
|
|
|
|
mapnik::LineString,
|
|
|
|
elem_info,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_single_geom,
|
2011-12-06 13:53:16 +01:00
|
|
|
is_point_type);
|
2010-11-22 12:40:08 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_MULTIPOLYGON:
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
|
|
|
if (ordinates_size >= dimensions)
|
2010-11-22 12:40:08 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
const bool is_single_geom = false;
|
|
|
|
const bool is_point_type = false;
|
|
|
|
|
|
|
|
convert_ordinates(feature,
|
|
|
|
mapnik::Polygon,
|
|
|
|
elem_info,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_single_geom,
|
2011-12-06 13:53:16 +01:00
|
|
|
is_point_type);
|
2010-11-22 12:40:08 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_COLLECTION:
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
|
|
|
if (ordinates_size >= dimensions)
|
2010-11-22 12:40:08 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
const bool is_single_geom = false;
|
|
|
|
const bool is_point_type = false;
|
|
|
|
|
|
|
|
convert_ordinates(feature,
|
|
|
|
mapnik::Polygon,
|
|
|
|
elem_info,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_single_geom,
|
2011-12-06 13:53:16 +01:00
|
|
|
is_point_type);
|
2010-11-22 12:40:08 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
|
|
|
break;
|
2010-11-22 12:40:08 +01:00
|
|
|
case SDO_GTYPE_UNKNOWN:
|
|
|
|
default:
|
2012-04-08 02:20:56 +02:00
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_WARN(occi) << "occi_featureset: Unknown oracle enum "
|
|
|
|
<< occi_enums::resolve_gtype(geomtype)
|
|
|
|
<< "(gtype=" << gtype << ")";
|
2012-04-08 02:20:56 +02:00
|
|
|
}
|
|
|
|
break;
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 03:33:03 +02:00
|
|
|
void occi_featureset::convert_ordinates(mapnik::feature_ptr feature,
|
2013-09-03 13:15:31 +02:00
|
|
|
const mapnik::geometry::types& geom_type,
|
2011-10-22 03:33:03 +02:00
|
|
|
const std::vector<Number>& elem_info,
|
|
|
|
const std::vector<Number>& ordinates,
|
|
|
|
const int dimensions,
|
|
|
|
const bool is_single_geom,
|
2011-12-06 13:53:16 +01:00
|
|
|
const bool is_point_geom)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2010-11-16 18:31:13 +01:00
|
|
|
const int elem_size = elem_info.size();
|
|
|
|
const int ord_size = ordinates.size();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2009-02-03 18:06:23 +01:00
|
|
|
if (elem_size >= 0)
|
|
|
|
{
|
2011-10-22 03:33:03 +02:00
|
|
|
int offset = elem_info[0];
|
|
|
|
int etype = elem_info[1];
|
|
|
|
int interp = elem_info[2];
|
2009-02-03 18:06:23 +01:00
|
|
|
|
2010-11-16 18:31:13 +01:00
|
|
|
if (! is_single_geom && elem_size > SDO_ELEM_INFO_SIZE)
|
2009-02-03 18:06:23 +01:00
|
|
|
{
|
2011-12-06 13:53:16 +01:00
|
|
|
geometry_type* geom = new geometry_type(geom_type);
|
2012-03-13 15:59:22 +01:00
|
|
|
|
2009-02-03 18:06:23 +01:00
|
|
|
for (int i = SDO_ELEM_INFO_SIZE; i < elem_size; i+=3)
|
|
|
|
{
|
2011-10-22 03:33:03 +02:00
|
|
|
int next_offset = elem_info[i];
|
|
|
|
int next_etype = elem_info[i + 1];
|
|
|
|
int next_interp = elem_info[i + 2];
|
2009-02-03 18:06:23 +01:00
|
|
|
bool is_linear_element = true;
|
|
|
|
bool is_unknown_etype = false;
|
2013-09-03 13:15:31 +02:00
|
|
|
mapnik::geometry::types gtype = mapnik::Point;
|
2009-02-03 18:06:23 +01:00
|
|
|
|
|
|
|
switch (etype)
|
|
|
|
{
|
|
|
|
case SDO_ETYPE_POINT:
|
2011-10-22 03:33:03 +02:00
|
|
|
if (interp == SDO_INTERPRETATION_POINT) {}
|
|
|
|
if (interp > SDO_INTERPRETATION_POINT) {}
|
2010-11-16 18:31:13 +01:00
|
|
|
gtype = mapnik::Point;
|
2009-02-03 18:06:23 +01:00
|
|
|
break;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2009-02-03 18:06:23 +01:00
|
|
|
case SDO_ETYPE_LINESTRING:
|
2011-10-22 03:33:03 +02:00
|
|
|
if (interp == SDO_INTERPRETATION_STRAIGHT) {}
|
|
|
|
if (interp == SDO_INTERPRETATION_CIRCULAR) {}
|
2010-11-16 18:31:13 +01:00
|
|
|
gtype = mapnik::LineString;
|
2009-02-03 18:06:23 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SDO_ETYPE_POLYGON:
|
|
|
|
case SDO_ETYPE_POLYGON_INTERIOR:
|
|
|
|
if (interp == SDO_INTERPRETATION_STRAIGHT) {}
|
|
|
|
if (interp == SDO_INTERPRETATION_CIRCULAR) {}
|
|
|
|
if (interp == SDO_INTERPRETATION_RECTANGLE) {}
|
|
|
|
if (interp == SDO_INTERPRETATION_CIRCLE) {}
|
2010-11-16 18:31:13 +01:00
|
|
|
gtype = mapnik::Polygon;
|
2009-02-03 18:06:23 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SDO_ETYPE_COMPOUND_LINESTRING:
|
|
|
|
case SDO_ETYPE_COMPOUND_POLYGON:
|
|
|
|
case SDO_ETYPE_COMPOUND_POLYGON_INTERIOR:
|
|
|
|
// interp = next ETYPE to consider
|
|
|
|
is_linear_element = false;
|
2010-11-16 18:31:13 +01:00
|
|
|
gtype = mapnik::Polygon;
|
2009-02-03 18:06:23 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SDO_ETYPE_UNKNOWN: // unknown
|
|
|
|
default:
|
|
|
|
is_unknown_etype = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_unknown_etype)
|
2011-10-22 03:33:03 +02:00
|
|
|
{
|
2009-02-03 18:06:23 +01:00
|
|
|
break;
|
2011-10-22 03:33:03 +02:00
|
|
|
}
|
2009-02-03 18:06:23 +01:00
|
|
|
|
|
|
|
if (is_linear_element)
|
|
|
|
{
|
2011-12-06 13:53:16 +01:00
|
|
|
if (geom)
|
2010-11-16 18:31:13 +01:00
|
|
|
{
|
2011-12-06 13:53:16 +01:00
|
|
|
feature->add_geometry(geom);
|
2010-11-16 18:31:13 +01:00
|
|
|
}
|
2012-02-02 02:37:35 +01:00
|
|
|
|
2011-12-06 13:53:16 +01:00
|
|
|
geom = new geometry_type(gtype);
|
2011-10-22 03:33:03 +02:00
|
|
|
fill_geometry_type(geom,
|
|
|
|
offset - 1,
|
|
|
|
next_offset - 1,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_point_geom);
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
offset = next_offset;
|
|
|
|
etype = next_etype;
|
|
|
|
interp = next_interp;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-11-16 18:31:13 +01:00
|
|
|
if (geom)
|
|
|
|
{
|
2011-10-22 03:33:03 +02:00
|
|
|
feature->add_geometry(geom);
|
2010-11-16 18:31:13 +01:00
|
|
|
geom = 0;
|
|
|
|
}
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-16 18:31:13 +01:00
|
|
|
geometry_type * geom = new geometry_type(geom_type);
|
2011-10-22 03:33:03 +02:00
|
|
|
fill_geometry_type(geom,
|
|
|
|
offset - 1,
|
|
|
|
ord_size,
|
|
|
|
ordinates,
|
|
|
|
dimensions,
|
|
|
|
is_point_geom);
|
|
|
|
|
|
|
|
feature->add_geometry(geom);
|
2009-02-03 18:06:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-22 03:33:03 +02:00
|
|
|
void occi_featureset::fill_geometry_type(geometry_type* geom,
|
|
|
|
const int real_offset,
|
|
|
|
const int next_offset,
|
|
|
|
const std::vector<Number>& ordinates,
|
|
|
|
const int dimensions,
|
|
|
|
const bool is_point_geom)
|
2009-02-05 12:17:27 +01:00
|
|
|
{
|
2011-10-22 03:33:03 +02:00
|
|
|
geom->move_to((double) ordinates[real_offset], (double) ordinates[real_offset + 1]);
|
2009-02-05 12:17:27 +01:00
|
|
|
|
|
|
|
if (is_point_geom)
|
2010-11-16 18:31:13 +01:00
|
|
|
{
|
2009-02-05 12:17:27 +01:00
|
|
|
for (int p = real_offset + dimensions; p < next_offset; p += dimensions)
|
2011-10-22 03:33:03 +02:00
|
|
|
{
|
|
|
|
geom->move_to((double) ordinates[p], (double) ordinates[p + 1]);
|
|
|
|
}
|
2010-11-16 18:31:13 +01:00
|
|
|
}
|
2009-02-05 12:17:27 +01:00
|
|
|
else
|
2010-11-16 18:31:13 +01:00
|
|
|
{
|
2009-02-05 12:17:27 +01:00
|
|
|
for (int p = real_offset + dimensions; p < next_offset; p += dimensions)
|
2011-10-22 03:33:03 +02:00
|
|
|
{
|
|
|
|
geom->line_to((double) ordinates[p], (double) ordinates[p + 1]);
|
|
|
|
}
|
2010-11-16 18:31:13 +01:00
|
|
|
}
|
2009-02-05 12:17:27 +01:00
|
|
|
}
|