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