2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
//$Id: postgis.hpp 44 2005-04-22 18:53:54Z pavlenko $
|
|
|
|
|
|
|
|
#ifndef POSTGIS_HPP
|
|
|
|
#define POSTGIS_HPP
|
|
|
|
|
|
|
|
|
2006-10-05 11:00:36 +02:00
|
|
|
#include <mapnik/datasource.hpp>
|
|
|
|
#include <mapnik/envelope.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
2007-03-16 11:11:37 +01:00
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2005-06-14 17:06:59 +02:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2007-02-14 20:54:39 +01:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2005-06-14 17:06:59 +02:00
|
|
|
#include <set>
|
|
|
|
|
2007-02-14 20:54:39 +01:00
|
|
|
#include "connection_manager.hpp"
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
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;
|
2005-09-08 15:09:04 +02:00
|
|
|
class postgis_datasource : public datasource
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2007-02-14 20:54:39 +01: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_;
|
|
|
|
mutable bool extent_initialized_;
|
|
|
|
mutable mapnik::Envelope<double> extent_;
|
|
|
|
layer_descriptor desc_;
|
|
|
|
ConnectionCreator<Connection> creator_;
|
2007-11-02 13:50:15 +01:00
|
|
|
bool multiple_geometries_;
|
2007-02-14 20:54:39 +01:00
|
|
|
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<double> 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&);
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
class postgis_featureset : public mapnik::Featureset
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2007-02-14 20:54:39 +01:00
|
|
|
private:
|
|
|
|
boost::shared_ptr<ResultSet> rs_;
|
2007-11-02 13:50:15 +01:00
|
|
|
bool multiple_geometries_;
|
2007-02-14 20:54:39 +01:00
|
|
|
unsigned num_attrs_;
|
|
|
|
boost::scoped_ptr<mapnik::transcoder> tr_;
|
|
|
|
mutable int totalGeomSize_;
|
|
|
|
mutable int count_;
|
|
|
|
public:
|
|
|
|
postgis_featureset(boost::shared_ptr<ResultSet> const& rs,
|
|
|
|
std::string const& encoding,
|
2007-11-02 13:50:15 +01:00
|
|
|
bool multiple_geometries,
|
2007-02-14 20:54:39 +01:00
|
|
|
unsigned num_attrs);
|
|
|
|
feature_ptr next();
|
|
|
|
~postgis_featureset();
|
|
|
|
private:
|
|
|
|
postgis_featureset(const postgis_featureset&);
|
|
|
|
const postgis_featureset& operator=(const postgis_featureset&);
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //POSTGIS_HPP
|