2010-11-10 11:46:09 +01:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2010-11-10 11:46:09 +01:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 21:19:56 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2010-11-10 11:46:09 +01: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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef GEOS_DATASOURCE_HPP
|
|
|
|
#define GEOS_DATASOURCE_HPP
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/datasource.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
|
|
|
|
|
|
|
// boost
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
2010-11-12 22:18:53 +01:00
|
|
|
#include "geos_feature_ptr.hpp"
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
class geos_datasource : public mapnik::datasource
|
2010-11-10 11:46:09 +01:00
|
|
|
{
|
2011-10-23 21:19:56 +02:00
|
|
|
public:
|
|
|
|
geos_datasource(mapnik::parameters const& params, bool bind = true);
|
|
|
|
virtual ~geos_datasource ();
|
2012-01-17 07:09:46 +01:00
|
|
|
mapnik::datasource::datasource_t type() const;
|
2012-07-21 03:34:41 +02:00
|
|
|
static const char * name();
|
2011-10-23 21:19:56 +02:00
|
|
|
mapnik::featureset_ptr features(mapnik::query const& q) const;
|
|
|
|
mapnik::featureset_ptr features_at_point(mapnik::coord2d const& pt) const;
|
|
|
|
mapnik::box2d<double> envelope() const;
|
2012-01-17 07:09:46 +01:00
|
|
|
boost::optional<mapnik::datasource::geometry_t> get_geometry_type() const;
|
2011-10-23 21:19:56 +02:00
|
|
|
mapnik::layer_descriptor get_descriptor() const;
|
|
|
|
void bind() const;
|
2010-11-10 11:46:09 +01:00
|
|
|
|
2011-10-23 21:19:56 +02:00
|
|
|
private:
|
|
|
|
mutable mapnik::box2d<double> extent_;
|
|
|
|
mutable bool extent_initialized_;
|
2012-01-17 07:09:46 +01:00
|
|
|
mapnik::datasource::datasource_t type_;
|
2011-10-23 21:19:56 +02:00
|
|
|
mutable mapnik::layer_descriptor desc_;
|
|
|
|
mutable geos_feature_ptr geometry_;
|
|
|
|
mutable std::string geometry_data_;
|
|
|
|
mutable std::string geometry_data_name_;
|
|
|
|
mutable int geometry_id_;
|
|
|
|
std::string geometry_string_;
|
|
|
|
};
|
2010-11-10 11:46:09 +01:00
|
|
|
|
|
|
|
#endif // GEOS_DATASOURCE_HPP
|