226 lines
6.7 KiB
C++
226 lines
6.7 KiB
C++
/*****************************************************************************
|
|
*
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
*
|
|
* Copyright (C) 2006 Artem Pavlenko
|
|
*
|
|
* 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
|
|
*
|
|
*****************************************************************************/
|
|
|
|
//$Id: postgisfs.cc 34 2005-04-04 13:27:23Z pavlenko $
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
#include <boost/scoped_array.hpp>
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <mapnik/global.hpp>
|
|
#include <mapnik/wkb.hpp>
|
|
#include <mapnik/unicode.hpp>
|
|
#include "postgis.hpp"
|
|
#include <sstream>
|
|
|
|
using boost::lexical_cast;
|
|
using boost::bad_lexical_cast;
|
|
using boost::trim_copy;
|
|
using std::string;
|
|
using mapnik::Feature;
|
|
using mapnik::geometry2d;
|
|
using mapnik::byte;
|
|
using mapnik::geometry_utils;
|
|
|
|
|
|
std::string numeric2string(const char* buf)
|
|
{
|
|
int16_t ndigits = int2net(buf);
|
|
int16_t weight = int2net(buf+2);
|
|
int16_t sign = int2net(buf+4);
|
|
int16_t dscale = int2net(buf+6);
|
|
|
|
boost::scoped_array<int16_t> digits(new int16_t[ndigits]);
|
|
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,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) {
|
|
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;
|
|
}
|
|
}
|
|
ss << digits[d++];
|
|
} else
|
|
if (d == 0)
|
|
ss << "0";
|
|
else
|
|
ss << "0000";
|
|
i--;
|
|
}
|
|
if (dscale > 0)
|
|
{
|
|
ss << '.';
|
|
while ( i >= -dscale)
|
|
{
|
|
if (i <= weight && d < ndigits) {
|
|
// All the digits following the decimal point must be padded
|
|
switch(digits[d]) {
|
|
case 0 ... 9:
|
|
ss << "000";
|
|
break;
|
|
case 10 ... 99:
|
|
ss << "00";
|
|
break;
|
|
case 100 ... 999:
|
|
ss << "0";
|
|
break;
|
|
}
|
|
ss << digits[d++];
|
|
}
|
|
i--;
|
|
}
|
|
}
|
|
return ss.str();
|
|
}
|
|
|
|
postgis_featureset::postgis_featureset(boost::shared_ptr<IResultSet> const& rs,
|
|
std::string const& encoding,
|
|
bool multiple_geometries,
|
|
unsigned num_attrs=0)
|
|
: rs_(rs),
|
|
multiple_geometries_(multiple_geometries),
|
|
num_attrs_(num_attrs),
|
|
tr_(new transcoder(encoding)),
|
|
totalGeomSize_(0),
|
|
count_(0) {}
|
|
|
|
feature_ptr postgis_featureset::next()
|
|
{
|
|
if (rs_->next())
|
|
{
|
|
feature_ptr feature(new Feature(count_));
|
|
int size=rs_->getFieldLength(0);
|
|
const char *data = rs_->getValue(0);
|
|
geometry_utils::from_wkb(*feature,data,size,multiple_geometries_);
|
|
totalGeomSize_+=size;
|
|
|
|
for (unsigned pos=1;pos<num_attrs_+1;++pos)
|
|
{
|
|
std::string name = rs_->getFieldName(pos);
|
|
|
|
if (!rs_->isNull(pos))
|
|
{
|
|
const char* buf=rs_->getValue(pos);
|
|
int oid = rs_->getTypeOID(pos);
|
|
|
|
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);
|
|
boost::put(*feature,name,val);
|
|
}
|
|
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(string(buf)).c_str()); // bpchar
|
|
boost::put(*feature,name,ustr);
|
|
}
|
|
else if (oid == 1700) // numeric
|
|
{
|
|
std::string str = 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
|
|
{
|
|
#ifdef MAPNIK_DEBUG
|
|
std::clog << "uknown OID = " << oid << " FIXME \n";
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
++count_;
|
|
return feature;
|
|
}
|
|
else
|
|
{
|
|
rs_->close();
|
|
return feature_ptr();
|
|
}
|
|
}
|
|
|
|
|
|
postgis_featureset::~postgis_featureset()
|
|
{
|
|
rs_->close();
|
|
}
|