/***************************************************************************** * * 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.hpp 44 2005-04-22 18:53:54Z pavlenko $ #ifndef POSTGIS_HPP #define POSTGIS_HPP #include #include #include #include #include #include #include #include "connection_manager.hpp" using mapnik::transcoder; using mapnik::datasource; using mapnik::Envelope; using mapnik::layer_descriptor; using mapnik::featureset_ptr; using mapnik::feature_ptr; using mapnik::query; using mapnik::parameters; using mapnik::coord2d; class transcoder; class postgis_datasource : public datasource { static const std::string GEOMETRY_COLUMNS; static const std::string SPATIAL_REF_SYS; const std::string uri_; const std::string username_; const std::string password_; const std::string table_; const std::string geometry_field_; std::string geometryColumn_; int type_; int srid_; mutable bool extent_initialized_; mutable mapnik::Envelope extent_; layer_descriptor desc_; ConnectionCreator creator_; bool multiple_geometries_; static const std::string name_; public: static std::string name(); int type() const; featureset_ptr features(const query& q) const; featureset_ptr features_at_point(coord2d const& pt) const; mapnik::Envelope envelope() const; layer_descriptor get_descriptor() const; postgis_datasource(const parameters ¶ms); ~postgis_datasource(); private: static std::string table_from_sql(const std::string& sql); postgis_datasource(const postgis_datasource&); postgis_datasource& operator=(const postgis_datasource&); }; class postgis_featureset : public mapnik::Featureset { private: boost::shared_ptr rs_; bool multiple_geometries_; unsigned num_attrs_; boost::scoped_ptr tr_; mutable int totalGeomSize_; mutable int count_; public: postgis_featureset(boost::shared_ptr const& rs, std::string const& encoding, bool multiple_geometries, unsigned num_attrs); feature_ptr next(); ~postgis_featureset(); private: postgis_featureset(const postgis_featureset&); const postgis_featureset& operator=(const postgis_featureset&); }; #endif //POSTGIS_HPP