2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
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>
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2006-10-05 11:00:36 +02:00
|
|
|
#include <mapnik/wkb.hpp>
|
2007-02-14 20:54:39 +01:00
|
|
|
#include <mapnik/unicode.hpp>
|
2013-01-08 23:17:31 +01:00
|
|
|
#include <mapnik/value_types.hpp>
|
2011-05-09 15:52:14 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2012-02-21 20:03:33 +01:00
|
|
|
#include <mapnik/util/conversions.hpp>
|
2012-12-07 23:06:13 +01:00
|
|
|
#include <mapnik/util/trim.hpp>
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <mapnik/global.hpp> // for int2net
|
2013-09-20 16:01:58 +02:00
|
|
|
|
2011-05-10 16:22:47 +02:00
|
|
|
// boost
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <boost/cstdint.hpp> // for boost::int16_t
|
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>
|
2013-09-25 07:57:01 +02:00
|
|
|
#include <memory>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
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;
|
2012-01-16 19:19:31 +01:00
|
|
|
using mapnik::context_ptr;
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
postgis_featureset::postgis_featureset(std::shared_ptr<IResultSet> const& rs,
|
2012-01-16 19:19:31 +01:00
|
|
|
context_ptr const& ctx,
|
2007-02-14 20:54:39 +01:00
|
|
|
std::string const& encoding,
|
2012-01-16 19:19:31 +01:00
|
|
|
bool key_field)
|
2005-06-14 17:06:59 +02:00
|
|
|
: rs_(rs),
|
2012-01-16 19:19:31 +01:00
|
|
|
ctx_(ctx),
|
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),
|
2012-03-28 22:10:48 +02:00
|
|
|
key_field_(key_field)
|
|
|
|
{
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2013-01-04 18:23:06 +01:00
|
|
|
std::string numeric2string(const char* buf);
|
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
feature_ptr postgis_featureset::next()
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2012-07-21 00:09:01 +02:00
|
|
|
while (rs_->next())
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2011-06-13 23:58:11 +02:00
|
|
|
// new feature
|
|
|
|
unsigned pos = 1;
|
2012-03-28 22:10:48 +02:00
|
|
|
feature_ptr feature;
|
2011-06-13 23:58:11 +02:00
|
|
|
|
2012-03-28 22:10:48 +02:00
|
|
|
if (key_field_)
|
|
|
|
{
|
2013-04-18 00:34:21 +02:00
|
|
|
std::string name = rs_->getFieldName(pos);
|
|
|
|
|
|
|
|
// null feature id is not acceptable
|
|
|
|
if (rs_->isNull(pos))
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_WARN(postgis) << "postgis_featureset: null value encountered for key_field: " << name;
|
|
|
|
continue;
|
|
|
|
}
|
2011-06-13 23:58:11 +02:00
|
|
|
// 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);
|
2012-03-28 22:10:48 +02:00
|
|
|
|
2012-12-17 19:03:07 +01:00
|
|
|
// validation happens of this type at initialization
|
2012-12-03 14:12:09 +01:00
|
|
|
mapnik::value_integer val;
|
2012-12-18 14:57:39 +01:00
|
|
|
|
2011-07-29 21:57:45 +02:00
|
|
|
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);
|
|
|
|
}
|
2012-03-28 22:10:48 +02:00
|
|
|
|
2012-01-16 19:19:31 +01:00
|
|
|
feature = feature_factory::create(ctx_, 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
|
2012-12-03 14:12:09 +01:00
|
|
|
feature->put<mapnik::value_integer>(name,val);
|
2011-06-13 23:58:11 +02:00
|
|
|
++pos;
|
2012-03-28 22:10:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-06-13 23:58:11 +02:00
|
|
|
// fallback to auto-incrementing id
|
2012-03-28 22:10:48 +02:00
|
|
|
feature = feature_factory::create(ctx_, feature_id_);
|
2011-06-13 23:58:11 +02:00
|
|
|
++feature_id_;
|
|
|
|
}
|
|
|
|
|
2013-05-15 16:07:17 +02:00
|
|
|
// null geometry is not acceptable
|
2013-05-15 15:32:52 +02:00
|
|
|
if (rs_->isNull(0))
|
2013-05-15 16:07:17 +02:00
|
|
|
{
|
|
|
|
MAPNIK_LOG_WARN(postgis) << "postgis_featureset: null value encountered for geometry";
|
2013-05-15 15:32:52 +02:00
|
|
|
continue;
|
2013-05-15 16:07:17 +02:00
|
|
|
}
|
2013-05-15 15:32:52 +02:00
|
|
|
|
2013-05-15 16:07:17 +02:00
|
|
|
// 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);
|
2013-05-15 16:07:17 +02:00
|
|
|
|
2013-05-15 16:12:28 +02:00
|
|
|
if (!geometry_utils::from_wkb(feature->paths(), data, size))
|
2012-07-21 00:09:01 +02:00
|
|
|
continue;
|
|
|
|
|
2012-03-28 22:10:48 +02:00
|
|
|
totalGeomSize_ += size;
|
2012-07-24 02:21:29 +02:00
|
|
|
unsigned num_attrs = ctx_->size() + 1;
|
2012-03-28 22:10:48 +02:00
|
|
|
for (; pos < num_attrs; ++pos)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2011-05-10 16:22:47 +02:00
|
|
|
std::string name = rs_->getFieldName(pos);
|
2012-02-02 02:37:35 +01:00
|
|
|
|
2013-04-12 01:05:29 +02:00
|
|
|
// NOTE: we intentionally do not store null here
|
|
|
|
// since it is equivalent to the attribute not existing
|
|
|
|
if (!rs_->isNull(pos))
|
2011-05-10 16:22:47 +02:00
|
|
|
{
|
2011-06-13 23:58:11 +02:00
|
|
|
const char* buf = rs_->getValue(pos);
|
2012-03-28 22:10:48 +02:00
|
|
|
const int oid = rs_->getTypeOID(pos);
|
|
|
|
switch (oid)
|
2011-05-10 16:22:47 +02:00
|
|
|
{
|
2012-03-28 22:10:48 +02:00
|
|
|
case 16: //bool
|
|
|
|
{
|
|
|
|
feature->put(name, (buf[0] != 0));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 23: //int4
|
|
|
|
{
|
2012-12-03 14:12:09 +01:00
|
|
|
feature->put<mapnik::value_integer>(name, int4net(buf));
|
2012-03-28 22:10:48 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 21: //int2
|
|
|
|
{
|
2012-12-03 14:12:09 +01:00
|
|
|
feature->put<mapnik::value_integer>(name, int2net(buf));
|
2012-03-28 22:10:48 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 20: //int8/BigInt
|
|
|
|
{
|
2012-12-03 14:12:09 +01:00
|
|
|
feature->put<mapnik::value_integer>(name, int8net(buf));
|
2012-03-28 22:10:48 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 700: //float4
|
|
|
|
{
|
|
|
|
float val;
|
|
|
|
float4net(val, buf);
|
2013-01-04 18:23:06 +01:00
|
|
|
feature->put(name, static_cast<double>(val));
|
2012-03-28 22:10:48 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 701: //float8
|
|
|
|
{
|
|
|
|
double val;
|
|
|
|
float8net(val, buf);
|
|
|
|
feature->put(name, val);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 25: //text
|
|
|
|
case 1043: //varchar
|
2012-09-05 11:58:21 +02:00
|
|
|
case 705: //literal
|
2012-03-28 22:10:48 +02:00
|
|
|
{
|
|
|
|
feature->put(name, tr_->transcode(buf));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 1042: //bpchar
|
|
|
|
{
|
2012-12-07 23:06:13 +01:00
|
|
|
std::string str = mapnik::util::trim_copy(buf);
|
2012-04-06 23:29:13 +02:00
|
|
|
feature->put(name, tr_->transcode(str.c_str()));
|
2012-03-28 22:10:48 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 1700: //numeric
|
|
|
|
{
|
|
|
|
double val;
|
2013-01-04 18:23:06 +01:00
|
|
|
std::string str = numeric2string(buf);
|
2012-03-28 22:10:48 +02:00
|
|
|
if (mapnik::util::string2double(str, val))
|
|
|
|
{
|
|
|
|
feature->put(name, val);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
2013-04-17 23:23:04 +02:00
|
|
|
MAPNIK_LOG_WARN(postgis) << "postgis_featureset: Unknown type_oid=" << oid;
|
2012-04-09 12:05:49 +02:00
|
|
|
|
2012-03-28 22:10:48 +02:00
|
|
|
break;
|
|
|
|
}
|
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
|
|
|
}
|
2012-07-21 00:09:01 +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();
|
|
|
|
}
|
2013-01-04 18:23:06 +01:00
|
|
|
|
|
|
|
std::string numeric2string(const char* buf)
|
|
|
|
{
|
|
|
|
boost::int16_t ndigits = int2net(buf);
|
|
|
|
boost::int16_t weight = int2net(buf+2);
|
|
|
|
boost::int16_t sign = int2net(buf+4);
|
|
|
|
boost::int16_t dscale = int2net(buf+6);
|
|
|
|
|
2013-09-20 16:01:58 +02:00
|
|
|
const std::unique_ptr<boost::int16_t[]> digits(new boost::int16_t[ndigits]);
|
2013-01-04 18:23:06 +01:00
|
|
|
for (int n=0; n < ndigits ;++n)
|
|
|
|
{
|
|
|
|
digits[n] = int2net(buf+8+n*2);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostringstream ss;
|
|
|
|
|
|
|
|
if (sign == 0x4000) ss << "-";
|
|
|
|
|
|
|
|
int i = std::max(weight,boost::int16_t(0));
|
|
|
|
int d = 0;
|
|
|
|
|
|
|
|
// Each numeric "digit" is actually a value between 0000 and 9999 stored in a 16 bit field.
|
|
|
|
// For example, the number 1234567809990001 is stored as four digits: [1234] [5678] [999] [1].
|
|
|
|
// Note that the last two digits show that the leading 0's are lost when the number is split.
|
|
|
|
// We must be careful to re-insert these 0's when building the string.
|
|
|
|
|
|
|
|
while ( i >= 0)
|
|
|
|
{
|
|
|
|
if (i <= weight && d < ndigits)
|
|
|
|
{
|
|
|
|
// All digits after the first must be padded to make the field 4 characters long
|
|
|
|
if (d != 0)
|
|
|
|
{
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
int dig = digits[d];
|
|
|
|
if (dig < 10)
|
|
|
|
{
|
|
|
|
ss << "000"; // 0000 - 0009
|
|
|
|
}
|
|
|
|
else if (dig < 100)
|
|
|
|
{
|
|
|
|
ss << "00"; // 0010 - 0099
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ss << "0"; // 0100 - 0999;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
switch(digits[d])
|
|
|
|
{
|
|
|
|
case 0 ... 9:
|
|
|
|
ss << "000"; // 0000 - 0009
|
|
|
|
break;
|
|
|
|
case 10 ... 99:
|
|
|
|
ss << "00"; // 0010 - 0099
|
|
|
|
break;
|
|
|
|
case 100 ... 999:
|
|
|
|
ss << "0"; // 0100 - 0999
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
ss << digits[d++];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (d == 0)
|
|
|
|
ss << "0";
|
|
|
|
else
|
|
|
|
ss << "0000";
|
|
|
|
}
|
|
|
|
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
if (dscale > 0)
|
|
|
|
{
|
|
|
|
ss << '.';
|
|
|
|
// dscale counts the number of decimal digits following the point, not the numeric digits
|
|
|
|
while (dscale > 0)
|
|
|
|
{
|
|
|
|
int value;
|
|
|
|
if (i <= weight && d < ndigits)
|
|
|
|
value = digits[d++];
|
|
|
|
else
|
|
|
|
value = 0;
|
|
|
|
|
|
|
|
// Output up to 4 decimal digits for this value
|
|
|
|
if (dscale > 0) {
|
|
|
|
ss << (value / 1000);
|
|
|
|
value %= 1000;
|
|
|
|
dscale--;
|
|
|
|
}
|
|
|
|
if (dscale > 0) {
|
|
|
|
ss << (value / 100);
|
|
|
|
value %= 100;
|
|
|
|
dscale--;
|
|
|
|
}
|
|
|
|
if (dscale > 0) {
|
|
|
|
ss << (value / 10);
|
|
|
|
value %= 10;
|
|
|
|
dscale--;
|
|
|
|
}
|
|
|
|
if (dscale > 0) {
|
|
|
|
ss << value;
|
|
|
|
dscale--;
|
|
|
|
}
|
|
|
|
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ss.str();
|
|
|
|
}
|