mapnik/plugins/input/postgis/postgis.hpp

83 lines
2.5 KiB
C++
Raw Normal View History

2005-06-14 17:06:59 +02:00
/* This file is part of Mapnik (c++ mapping toolkit)
* Copyright (C) 2005 Artem Pavlenko
*
* Mapnik is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
//$Id: postgis.hpp 44 2005-04-22 18:53:54Z pavlenko $
#ifndef POSTGIS_HPP
#define POSTGIS_HPP
#include "datasource.hpp"
#include "envelope.hpp"
#include "feature.hpp"
2005-06-14 17:06:59 +02:00
#include "connection_manager.hpp"
#include <boost/lexical_cast.hpp>
#include <set>
using namespace mapnik;
class postgis_datasource : public datasource
2005-06-14 17:06:59 +02:00
{
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_;
std::string geometryColumn_;
int type_;
int srid_;
mapnik::Envelope<double> extent_;
layer_descriptor desc_;
ConnectionCreator<Connection> creator_;
static std::string name_;
public:
static std::string name();
int type() const;
featureset_ptr features(const query& q) const;
mapnik::Envelope<double> const& envelope() const;
layer_descriptor const& get_descriptor() const;
postgis_datasource(const parameters &params);
~postgis_datasource();
2005-06-14 17:06:59 +02:00
private:
static std::string table_from_sql(const std::string& sql);
postgis_datasource(const postgis_datasource&);
postgis_datasource& operator=(const postgis_datasource&);
2005-06-14 17:06:59 +02:00
};
class postgis_featureset : public Featureset
2005-06-14 17:06:59 +02:00
{
private:
boost::shared_ptr<ResultSet> rs_;
2005-06-14 17:06:59 +02:00
unsigned num_attrs_;
mutable int totalGeomSize_;
mutable int count_;
public:
postgis_featureset(const boost::shared_ptr<ResultSet>& rs,unsigned num_attrs);
2005-06-14 17:06:59 +02:00
void dispose();
feature_ptr next();
~postgis_featureset();
2005-06-14 17:06:59 +02:00
private:
postgis_featureset(const postgis_featureset&);
const postgis_featureset& operator=(const postgis_featureset&);
2005-06-14 17:06:59 +02:00
};
#endif //POSTGIS_HPP