8e071f84c7
(FIXME : label_spacing is still, too slow!!) 2. Re-use some agg objects. 3. placement_finder cleanups! 4. Added support for 'building_symbolizer' - extruded polygons
116 lines
3.5 KiB
C++
116 lines
3.5 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/algorithm/string.hpp>
|
|
#include <mapnik/global.hpp>
|
|
#include <mapnik/wkb.hpp>
|
|
#include <mapnik/unicode.hpp>
|
|
#include "postgis.hpp"
|
|
|
|
using boost::lexical_cast;
|
|
using boost::bad_lexical_cast;
|
|
using boost::trim;
|
|
using std::string;
|
|
using mapnik::Feature;
|
|
using mapnik::geometry2d;
|
|
using mapnik::byte;
|
|
using mapnik::geometry_utils;
|
|
|
|
postgis_featureset::postgis_featureset(boost::shared_ptr<ResultSet> const& rs,
|
|
std::string const& encoding,
|
|
unsigned num_attrs=0)
|
|
: rs_(rs),
|
|
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);
|
|
totalGeomSize_+=size;
|
|
|
|
for (unsigned pos=1;pos<num_attrs_+1;++pos)
|
|
{
|
|
std::string name = rs_->getFieldName(pos);
|
|
const char* buf=rs_->getValue(pos);
|
|
int oid = rs_->getTypeOID(pos);
|
|
|
|
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 == 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==1042 || oid==1043) // text or bpchar or varchar
|
|
{
|
|
std::string str(buf);
|
|
trim(str);
|
|
std::wstring wstr = tr_->transcode(str);
|
|
boost::put(*feature,name,wstr);
|
|
}
|
|
else
|
|
{
|
|
#ifdef MAPNIK_DEBUG
|
|
std::clog << "uknown OID = " << oid << " FIXME \n";
|
|
#endif
|
|
//boost::put(*feature,name,0);
|
|
}
|
|
}
|
|
++count_;
|
|
return feature;
|
|
}
|
|
else
|
|
{
|
|
rs_->close();
|
|
return feature_ptr();
|
|
}
|
|
}
|
|
|
|
|
|
postgis_featureset::~postgis_featureset()
|
|
{
|
|
rs_->close();
|
|
}
|