2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2011-05-10 16:22:47 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02: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,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-10-23 21:23:04 +02:00
|
|
|
#include "postgis_featureset.hpp"
|
|
|
|
#include "resultset.hpp"
|
|
|
|
#include "cursorresultset.hpp"
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-05-10 16:22:47 +02:00
|
|
|
// mapnik
|
2006-10-05 11:00:36 +02:00
|
|
|
#include <mapnik/global.hpp>
|
|
|
|
#include <mapnik/wkb.hpp>
|
2007-02-14 20:54:39 +01:00
|
|
|
#include <mapnik/unicode.hpp>
|
2011-04-04 05:46:41 +02:00
|
|
|
#include <mapnik/sql_utils.hpp>
|
2011-05-09 15:52:14 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
|
2011-05-10 16:22:47 +02:00
|
|
|
// boost
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
|
2011-05-10 16:22:47 +02:00
|
|
|
// stl
|
2008-01-25 12:39:53 +01:00
|
|
|
#include <sstream>
|
2011-05-10 16:22:47 +02:00
|
|
|
#include <string>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
using boost::lexical_cast;
|
|
|
|
using boost::bad_lexical_cast;
|
2009-06-25 21:59:33 +02:00
|
|
|
using boost::trim_copy;
|
2010-11-03 14:19:15 +01:00
|
|
|
using mapnik::geometry_type;
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::byte;
|
|
|
|
using mapnik::geometry_utils;
|
2011-05-09 15:52:14 +02:00
|
|
|
using mapnik::feature_factory;
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2009-02-05 18:41:44 +01:00
|
|
|
postgis_featureset::postgis_featureset(boost::shared_ptr<IResultSet> const& rs,
|
2007-02-14 20:54:39 +01:00
|
|
|
std::string const& encoding,
|
2007-11-02 13:50:15 +01:00
|
|
|
bool multiple_geometries,
|
2011-06-13 23:58:11 +02:00
|
|
|
bool key_field=false,
|
2006-10-09 11:45:45 +02:00
|
|
|
unsigned num_attrs=0)
|
2005-06-14 17:06:59 +02:00
|
|
|
: rs_(rs),
|
2007-11-02 13:50:15 +01:00
|
|
|
multiple_geometries_(multiple_geometries),
|
2005-06-14 17:06:59 +02:00
|
|
|
num_attrs_(num_attrs),
|
2007-02-14 20:54:39 +01:00
|
|
|
tr_(new transcoder(encoding)),
|
2007-02-15 18:25:37 +01:00
|
|
|
totalGeomSize_(0),
|
2011-06-13 23:58:11 +02:00
|
|
|
feature_id_(1),
|
|
|
|
key_field_(key_field) {}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
feature_ptr postgis_featureset::next()
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
if (rs_->next())
|
|
|
|
{
|
2011-06-13 23:58:11 +02:00
|
|
|
// new feature
|
|
|
|
feature_ptr feature;
|
2011-04-29 22:00:45 +02:00
|
|
|
|
2011-06-13 23:58:11 +02:00
|
|
|
unsigned pos = 1;
|
|
|
|
|
|
|
|
if (key_field_) {
|
|
|
|
// create feature with user driven id from attribute
|
|
|
|
int oid = rs_->getTypeOID(pos);
|
2011-07-29 21:57:45 +02:00
|
|
|
const char* buf = rs_->getValue(pos);
|
|
|
|
std::string name = rs_->getFieldName(pos);
|
|
|
|
// validation happens of this type at bind()
|
|
|
|
int val;
|
|
|
|
if (oid == 20)
|
|
|
|
{
|
|
|
|
val = int8net(buf);
|
2011-06-13 23:58:11 +02:00
|
|
|
}
|
2011-07-29 21:57:45 +02:00
|
|
|
else if (oid == 21)
|
|
|
|
{
|
|
|
|
val = int2net(buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
val = int4net(buf);
|
|
|
|
}
|
|
|
|
feature = feature_factory::create(val);
|
2011-07-29 22:08:09 +02:00
|
|
|
// TODO - extend feature class to know
|
|
|
|
// that its id is also an attribute to avoid
|
|
|
|
// this duplication
|
|
|
|
boost::put(*feature,name,val);
|
2011-06-13 23:58:11 +02:00
|
|
|
++pos;
|
|
|
|
} else {
|
|
|
|
// fallback to auto-incrementing id
|
|
|
|
feature = feature_factory::create(feature_id_);
|
|
|
|
++feature_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse geometry
|
2010-11-19 00:42:33 +01:00
|
|
|
int size = rs_->getFieldLength(0);
|
2007-03-16 11:11:37 +01:00
|
|
|
const char *data = rs_->getValue(0);
|
2011-09-13 13:54:20 +02:00
|
|
|
geometry_utils::from_wkb(feature->paths(),data,size,multiple_geometries_);
|
2006-10-09 11:45:45 +02:00
|
|
|
totalGeomSize_+=size;
|
2011-04-02 05:45:50 +02:00
|
|
|
|
2011-06-13 23:58:11 +02:00
|
|
|
for ( ;pos<num_attrs_+1;++pos)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2011-05-10 16:22:47 +02:00
|
|
|
std::string name = rs_->getFieldName(pos);
|
2008-02-23 02:25:52 +01:00
|
|
|
|
2011-07-12 03:48:36 +02:00
|
|
|
if (rs_->isNull(pos))
|
|
|
|
{
|
|
|
|
boost::put(*feature,name,mapnik::value_null());
|
|
|
|
}
|
|
|
|
else
|
2011-05-10 16:22:47 +02:00
|
|
|
{
|
2011-06-13 23:58:11 +02:00
|
|
|
const char* buf = rs_->getValue(pos);
|
2011-05-10 16:22:47 +02:00
|
|
|
int oid = rs_->getTypeOID(pos);
|
2008-02-23 02:25:52 +01:00
|
|
|
|
2011-05-10 16:22:47 +02:00
|
|
|
if (oid==16) //bool
|
|
|
|
{
|
|
|
|
boost::put(*feature,name,buf[0] != 0);
|
|
|
|
}
|
|
|
|
else if (oid==23) //int4
|
|
|
|
{
|
|
|
|
int val = int4net(buf);
|
|
|
|
boost::put(*feature,name,val);
|
|
|
|
}
|
|
|
|
else if (oid==21) //int2
|
|
|
|
{
|
|
|
|
int val = int2net(buf);
|
|
|
|
boost::put(*feature,name,val);
|
|
|
|
}
|
|
|
|
else if (oid==20) //int8/BigInt
|
|
|
|
{
|
|
|
|
int val = int8net(buf);
|
|
|
|
boost::put(*feature,name,val);
|
|
|
|
}
|
|
|
|
else if (oid == 700) // float4
|
|
|
|
{
|
|
|
|
float val;
|
|
|
|
float4net(val,buf);
|
|
|
|
boost::put(*feature,name,val);
|
|
|
|
}
|
|
|
|
else if (oid == 701) // float8
|
|
|
|
{
|
|
|
|
double val;
|
|
|
|
float8net(val,buf);
|
2008-02-23 02:25:52 +01:00
|
|
|
boost::put(*feature,name,val);
|
2011-05-10 16:22:47 +02:00
|
|
|
}
|
|
|
|
else if (oid==25 || oid==1043) // text or varchar
|
|
|
|
{
|
|
|
|
UnicodeString ustr = tr_->transcode(buf);
|
|
|
|
boost::put(*feature,name,ustr);
|
|
|
|
}
|
|
|
|
else if (oid==1042)
|
|
|
|
{
|
|
|
|
UnicodeString ustr = tr_->transcode(trim_copy(std::string(buf)).c_str()); // bpchar
|
|
|
|
boost::put(*feature,name,ustr);
|
|
|
|
}
|
|
|
|
else if (oid == 1700) // numeric
|
|
|
|
{
|
|
|
|
std::string str = mapnik::numeric2string(buf);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
double val = boost::lexical_cast<double>(str);
|
|
|
|
boost::put(*feature,name,val);
|
|
|
|
}
|
|
|
|
catch (boost::bad_lexical_cast & ex)
|
|
|
|
{
|
|
|
|
std::clog << ex.what() << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-12-01 10:42:04 +01:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2011-05-10 16:22:47 +02:00
|
|
|
std::clog << "Postgis Plugin: uknown OID = " << oid << " FIXME " << std::endl;
|
2006-12-01 10:42:04 +01:00
|
|
|
#endif
|
2011-05-10 16:22:47 +02:00
|
|
|
}
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2006-10-09 11:45:45 +02:00
|
|
|
return feature;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rs_->close();
|
2006-10-09 11:45:45 +02:00
|
|
|
return feature_ptr();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
postgis_featureset::~postgis_featureset()
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
rs_->close();
|
|
|
|
}
|