/***************************************************************************** * * 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: postgis.cc 44 2005-04-22 18:53:54Z pavlenko $ // mapnik #include #include #include "connection_manager.hpp" #include "postgis.hpp" // boost #include #include #include // stl #include #include #include #include #include #ifndef MAPNIK_BIG_ENDIAN #define WKB_ENCODING "NDR" #else #define WKB_ENCODING "XDR" #endif DATASOURCE_PLUGIN(postgis_datasource) const std::string postgis_datasource::GEOMETRY_COLUMNS="geometry_columns"; const std::string postgis_datasource::SPATIAL_REF_SYS="spatial_ref_system"; using std::clog; using std::endl; using boost::lexical_cast; using boost::bad_lexical_cast; using boost::shared_ptr; using mapnik::PoolGuard; using mapnik::attribute_descriptor; postgis_datasource::postgis_datasource(parameters const& params) : datasource (params), table_(*params.get("table","")), geometry_field_(*params.get("geometry_field","")), cursor_fetch_size_(*params_.get("cursor_size",0)), row_limit_(*params_.get("row_limit",0)), type_(datasource::Vector), extent_initialized_(false), desc_(*params.get("type"),"utf-8"), creator_(params.get("host"), params.get("port"), params.get("dbname"), params.get("user"), params.get("password")) { boost::optional initial_size = params_.get("inital_size",1); boost::optional max_size = params_.get("max_size",10); multiple_geometries_ = *params_.get("multiple_geometries",false); boost::optional ext = params_.get("extent"); if (ext) { boost::char_separator sep(","); boost::tokenizer > tok(*ext,sep); unsigned i = 0; bool success = false; double d[4]; for (boost::tokenizer >::iterator beg=tok.begin(); beg!=tok.end();++beg) { try { d[i] = boost::lexical_cast(boost::trim_copy(*beg)); } catch (boost::bad_lexical_cast & ex) { std::clog << *beg << " : " << ex.what() << "\n"; break; } if (i==3) { success = true; break; } ++i; } if (success) { extent_.init(d[0],d[1],d[2],d[3]); extent_initialized_ = true; } } ConnectionManager *mgr=ConnectionManager::instance(); mgr->registerPool(creator_, *initial_size, *max_size); shared_ptr > pool=mgr->getPool(creator_.id()); if (pool) { shared_ptr conn = pool->borrowObject(); if (conn && conn->isOK()) { PoolGuard, shared_ptr > > guard(conn,pool); desc_.set_encoding(conn->client_encoding()); std::string table_name=table_from_sql(table_); std::string schema_name=""; std::string::size_type idx=table_name.find_last_of('.'); if (idx!=std::string::npos) { schema_name=table_name.substr(0,idx); table_name=table_name.substr(idx+1); } else { table_name=table_name.substr(0); } std::ostringstream s; s << "select f_geometry_column,srid,type from "; s << GEOMETRY_COLUMNS <<" where f_table_name='" << table_name<<"'"; if (schema_name.length() > 0) s <<" and f_table_schema='"<< schema_name <<"'"; if (geometry_field_.length() > 0) s << " and f_geometry_column = '" << geometry_field_ << "'"; shared_ptr rs=conn->executeQuery(s.str()); if (rs->next()) { try { srid_ = lexical_cast(rs->getValue("srid")); } catch (bad_lexical_cast &ex) { clog << rs->getValue("srid") << ":" << ex.what() << endl; } geometryColumn_=rs->getValue("f_geometry_column"); std::string postgisType=rs->getValue("type"); } rs->close(); // collect attribute desc s.str(""); s << "select * from " << table_ << " limit 0"; rs=conn->executeQuery(s.str()); int count = rs->getNumFields(); for (int i=0;igetFieldName(i); int type_oid = rs->getTypeOID(i); switch (type_oid) { case 21: // int2 case 23: // int4 desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Integer)); break; case 700: // float4 case 701: // float8 case 1700: // numeric ?? desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Double)); case 1042: // bpchar case 1043: // varchar case 25: // text desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::String)); break; default: // shouldn't get here #ifdef MAPNIK_DEBUG clog << "unknown type_oid="< postgis_datasource::get_resultset(boost::shared_ptr const &conn, const std::string &sql) const { if (cursor_fetch_size_ > 0) { // cursor std::ostringstream csql; std::string cursor_name = conn->new_cursor_name(); csql << "DECLARE " << cursor_name << " BINARY INSENSITIVE NO SCROLL CURSOR WITH HOLD FOR " << sql << " FOR READ ONLY"; #ifdef MAPNIK_DEBUG std::clog << csql.str() << "\n"; #endif if (!conn->execute(csql.str())) { throw mapnik::datasource_exception( "PSQL Error: Creating cursor for data select." ); } return shared_ptr(new CursorResultSet(conn, cursor_name, cursor_fetch_size_)); } else { // no cursor #ifdef MAPNIK_DEBUG std::clog << sql << "\n"; #endif return conn->executeQuery(sql,1); } } featureset_ptr postgis_datasource::features(const query& q) const { Envelope const& box=q.get_bbox(); ConnectionManager *mgr=ConnectionManager::instance(); shared_ptr > pool=mgr->getPool(creator_.id()); if (pool) { shared_ptr conn = pool->borrowObject(); if (conn && conn->isOK()) { PoolGuard,shared_ptr > > guard(conn,pool); std::ostringstream s; s << "SELECT AsBinary(\""< const& props=q.property_names(); std::set::const_iterator pos=props.begin(); std::set::const_iterator end=props.end(); while (pos != end) { s <<",\""<<*pos<<"\""; ++pos; } s << " from " << table_ << " WHERE \""< 0) { s << " LIMIT " << row_limit_; } boost::shared_ptr rs = get_resultset(conn, s.str()); return featureset_ptr(new postgis_featureset(rs,desc_.get_encoding(),multiple_geometries_,props.size())); } } return featureset_ptr(); } featureset_ptr postgis_datasource::features_at_point(coord2d const& pt) const { ConnectionManager *mgr=ConnectionManager::instance(); shared_ptr > pool=mgr->getPool(creator_.id()); if (pool) { shared_ptr conn = pool->borrowObject(); if (conn && conn->isOK()) { PoolGuard,shared_ptr > > guard(conn,pool); std::ostringstream s; s << "SELECT AsBinary(\"" << geometryColumn_ << "\",'"<< WKB_ENCODING << "') AS geom"; std::vector::const_iterator itr = desc_.get_descriptors().begin(); std::vector::const_iterator end = desc_.get_descriptors().end(); unsigned size=0; while (itr != end) { s <<",\""<< itr->get_name() << "\""; ++itr; ++size; } s << " FROM " << table_ << " WHERE \""< 0) { s << " LIMIT " << row_limit_; } boost::shared_ptr rs = get_resultset(conn, s.str()); return featureset_ptr(new postgis_featureset(rs,desc_.get_encoding(),multiple_geometries_, size)); } } return featureset_ptr(); } Envelope postgis_datasource::envelope() const { if (extent_initialized_) return extent_; ConnectionManager *mgr=ConnectionManager::instance(); shared_ptr > pool=mgr->getPool(creator_.id()); if (pool) { shared_ptr conn = pool->borrowObject(); if (conn && conn->isOK()) { PoolGuard,shared_ptr > > guard(conn,pool); std::ostringstream s; std::string table_name = table_from_sql(table_); boost::optional estimate_extent = params_.get("estimate_extent"); if (estimate_extent && *estimate_extent == "true") { s << "select xmin(ext),ymin(ext),xmax(ext),ymax(ext)" << " from (select estimated_extent('" << table_name <<"','" << geometryColumn_ << "') as ext) as tmp"; } else { s << "select xmin(ext),ymin(ext),xmax(ext),ymax(ext)" << " from (select extent(" < rs=conn->executeQuery(s.str()); if (rs->next()) { try { double lox=lexical_cast(rs->getValue(0)); double loy=lexical_cast(rs->getValue(1)); double hix=lexical_cast(rs->getValue(2)); double hiy=lexical_cast(rs->getValue(3)); extent_.init(lox,loy,hix,hiy); extent_initialized_ = true; } catch (bad_lexical_cast &ex) { clog << ex.what() << endl; } } rs->close(); } } return extent_; } postgis_datasource::~postgis_datasource() {}