don't rely on feature id column name.
This commit is contained in:
parent
10cffb9174
commit
18ef498140
2 changed files with 46 additions and 49 deletions
|
@ -193,8 +193,8 @@ featureset_ptr postgis_datasource::features(const query& q) const
|
|||
{
|
||||
PoolGuard<shared_ptr<Connection>,shared_ptr<Pool<Connection,ConnectionCreator> > > guard(conn,pool);
|
||||
std::ostringstream s;
|
||||
// can we rely on 'gid' name???
|
||||
s << "select ogc_fid,asbinary("<<geometryColumn_<<") as geom";
|
||||
|
||||
s << "select asbinary("<<geometryColumn_<<") as geom";
|
||||
std::set<std::string> const& props=q.property_names();
|
||||
std::set<std::string>::const_iterator pos=props.begin();
|
||||
while (pos!=props.end())
|
||||
|
|
|
@ -32,7 +32,7 @@ using boost::bad_lexical_cast;
|
|||
using std::string;
|
||||
|
||||
postgis_featureset::postgis_featureset(boost::shared_ptr<ResultSet> const& rs,
|
||||
unsigned num_attrs=0)
|
||||
unsigned num_attrs=0)
|
||||
: rs_(rs),
|
||||
num_attrs_(num_attrs),
|
||||
totalGeomSize_(0),
|
||||
|
@ -42,66 +42,63 @@ feature_ptr postgis_featureset::next()
|
|||
{
|
||||
if (rs_->next())
|
||||
{
|
||||
const char* buf = rs_->getValue(0);
|
||||
int id = int4net(buf);
|
||||
feature_ptr feature(new Feature(id));
|
||||
int size=rs_->getFieldLength(1);
|
||||
const char *data=rs_->getValue(1);
|
||||
feature_ptr feature(new Feature(count_));
|
||||
int size=rs_->getFieldLength(0);
|
||||
const char *data=rs_->getValue(0);
|
||||
geometry_ptr geom=geometry_utils::from_wkb(data,size,-1);
|
||||
totalGeomSize_+=size;
|
||||
totalGeomSize_+=size;
|
||||
|
||||
if (geom)
|
||||
{
|
||||
feature->set_geometry(geom);
|
||||
unsigned start=2;
|
||||
for (unsigned pos=0;pos<num_attrs_;++pos)
|
||||
{
|
||||
std::string name = rs_->getFieldName(start + pos);
|
||||
const char* buf=rs_->getValue(start + pos);
|
||||
//int field_size = rs_->getFieldLength(start + pos);
|
||||
int oid = rs_->getTypeOID(start + pos);
|
||||
|
||||
for (unsigned pos=1;pos<num_attrs_;++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==1042 || oid==1043) //bpchar or varchar
|
||||
{
|
||||
boost::put(*feature,name,buf);
|
||||
}
|
||||
else
|
||||
{
|
||||
boost::put(*feature,name,0);
|
||||
}
|
||||
}
|
||||
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==1042 || oid==1043) //bpchar or varchar
|
||||
{
|
||||
boost::put(*feature,name,buf);
|
||||
}
|
||||
else
|
||||
{
|
||||
boost::put(*feature,name,0);
|
||||
}
|
||||
}
|
||||
++count_;
|
||||
}
|
||||
return feature;
|
||||
return feature;
|
||||
}
|
||||
else
|
||||
{
|
||||
rs_->close();
|
||||
std::clog << "totalGeomSize="<<totalGeomSize_<<" bytes"<<std::endl;
|
||||
std::clog << "count="<<count_<<std::endl;
|
||||
return feature_ptr();
|
||||
return feature_ptr();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue