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
|
|
|
|
|
|
|
|
|
2005-06-17 14:40:51 +02:00
|
|
|
#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;
|
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
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;
|
2005-12-14 18:01:09 +01:00
|
|
|
postgis_datasource(const parameters ¶ms);
|
2005-09-08 15:09:04 +02:00
|
|
|
~postgis_datasource();
|
2005-06-14 17:06:59 +02:00
|
|
|
private:
|
|
|
|
static std::string table_from_sql(const std::string& sql);
|
2005-09-08 15:09:04 +02:00
|
|
|
postgis_datasource(const postgis_datasource&);
|
|
|
|
postgis_datasource& operator=(const postgis_datasource&);
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
class postgis_featureset : public Featureset
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
private:
|
2005-12-12 14:15:33 +01:00
|
|
|
boost::shared_ptr<ResultSet> rs_;
|
2005-06-14 17:06:59 +02:00
|
|
|
unsigned num_attrs_;
|
|
|
|
mutable int totalGeomSize_;
|
|
|
|
mutable int count_;
|
|
|
|
public:
|
2005-12-12 14:15:33 +01:00
|
|
|
postgis_featureset(const boost::shared_ptr<ResultSet>& rs,unsigned num_attrs);
|
2005-06-14 17:06:59 +02:00
|
|
|
void dispose();
|
2005-09-08 15:09:04 +02:00
|
|
|
feature_ptr next();
|
|
|
|
~postgis_featureset();
|
2005-06-14 17:06:59 +02:00
|
|
|
private:
|
2005-09-08 15:09:04 +02:00
|
|
|
postgis_featureset(const postgis_featureset&);
|
|
|
|
const postgis_featureset& operator=(const postgis_featureset&);
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //POSTGIS_HPP
|