mapnik/plugins/input/postgis/postgisfs.cpp

114 lines
3.5 KiB
C++
Raw Normal View History

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
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 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
//$Id: postgisfs.cc 34 2005-04-04 13:27:23Z pavlenko $
2006-12-01 11:37:15 +01:00
#include <boost/algorithm/string.hpp>
#include <mapnik/global.hpp>
#include <mapnik/wkb.hpp>
2006-11-29 13:12:23 +01:00
#include "postgis.hpp"
2005-06-14 17:06:59 +02:00
using boost::lexical_cast;
using boost::bad_lexical_cast;
2006-12-01 11:37:15 +01:00
using boost::trim;
2005-06-14 17:06:59 +02:00
using std::string;
postgis_featureset::postgis_featureset(boost::shared_ptr<ResultSet> const& rs,
2006-10-09 11:45:45 +02:00
unsigned num_attrs=0)
2005-06-14 17:06:59 +02:00
: rs_(rs),
num_attrs_(num_attrs),
totalGeomSize_(0),
count_(0) {}
2005-06-14 17:06:59 +02:00
feature_ptr postgis_featureset::next()
2005-06-14 17:06:59 +02:00
{
if (rs_->next())
{
2006-10-09 11:45:45 +02:00
feature_ptr feature(new Feature(count_));
int size=rs_->getFieldLength(0);
const char *data=rs_->getValue(0);
2005-06-14 17:06:59 +02:00
geometry_ptr geom=geometry_utils::from_wkb(data,size,-1);
2006-10-09 11:45:45 +02:00
totalGeomSize_+=size;
2005-06-14 17:06:59 +02:00
if (geom)
{
feature->set_geometry(geom);
2006-10-09 11:45:45 +02:00
2006-10-09 22:09:46 +02:00
for (unsigned pos=1;pos<num_attrs_+1;++pos)
2006-10-09 11:45:45 +02:00
{
std::string name = rs_->getFieldName(pos);
const char* buf=rs_->getValue(pos);
int oid = rs_->getTypeOID(pos);
2006-10-09 11:45:45 +02:00
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);
}
2006-10-17 23:36:11 +02:00
else if (oid==25 || oid==1042 || oid==1043) // text or bpchar or varchar
2006-10-09 11:45:45 +02:00
{
2006-12-01 11:37:15 +01:00
std::string str(buf);
trim(str);
boost::put(*feature,name,str);
2006-10-09 11:45:45 +02:00
}
else
{
#ifdef MAPNIK_DEBUG
2006-10-17 23:36:11 +02:00
std::clog << "uknown OID = " << oid << " FIXME \n";
#endif
//boost::put(*feature,name,0);
2006-10-09 11:45:45 +02:00
}
}
2005-06-14 17:06:59 +02:00
++count_;
}
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
}
}
postgis_featureset::~postgis_featureset()
2005-06-14 17:06:59 +02:00
{
rs_->close();
}