2009-01-28 21:16:31 +01:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2009-01-28 21:16:31 +01:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2014-11-20 15:25:50 +01:00
|
|
|
* Copyright (C) 2014 Artem Pavlenko
|
2009-01-28 21:16:31 +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 OGR_DATASOURCE_HPP
|
|
|
|
#define OGR_DATASOURCE_HPP
|
|
|
|
|
2009-01-29 05:20:34 +01:00
|
|
|
// mapnik
|
2009-01-28 21:16:31 +01:00
|
|
|
#include <mapnik/datasource.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/params.hpp>
|
|
|
|
#include <mapnik/query.hpp>
|
2009-01-29 05:20:34 +01:00
|
|
|
#include <mapnik/feature.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/box2d.hpp>
|
|
|
|
#include <mapnik/coord.hpp>
|
2009-01-29 05:20:34 +01:00
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2009-01-28 21:16:31 +01:00
|
|
|
|
2009-01-29 05:20:34 +01:00
|
|
|
// boost
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <boost/optional.hpp>
|
2013-09-20 15:13:23 +02:00
|
|
|
#include <memory>
|
2009-01-28 21:16:31 +01:00
|
|
|
|
2012-07-25 04:21:55 +02:00
|
|
|
// stl
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2009-01-29 05:20:34 +01:00
|
|
|
// ogr
|
2015-06-12 23:51:18 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wshadow"
|
2009-01-29 05:20:34 +01:00
|
|
|
#include <ogrsf_frmts.h>
|
2015-06-12 23:51:18 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2011-10-24 11:53:33 +02:00
|
|
|
#include "ogr_layer_ptr.hpp"
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
class ogr_datasource : public mapnik::datasource
|
2009-01-28 21:16:31 +01:00
|
|
|
{
|
2011-10-22 02:27:06 +02:00
|
|
|
public:
|
2012-12-17 19:03:07 +01:00
|
|
|
ogr_datasource(mapnik::parameters const& params);
|
2011-10-22 02:27:06 +02:00
|
|
|
virtual ~ogr_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-22 02:27:06 +02:00
|
|
|
mapnik::featureset_ptr features(mapnik::query const& q) const;
|
2012-09-28 15:12:10 +02:00
|
|
|
mapnik::featureset_ptr features_at_point(mapnik::coord2d const& pt, double tol = 0) const;
|
2011-10-22 02:27:06 +02:00
|
|
|
mapnik::box2d<double> envelope() const;
|
2015-03-24 12:13:31 +01:00
|
|
|
boost::optional<mapnik::datasource_geometry_t> get_geometry_type() const;
|
2011-10-22 02:27:06 +02:00
|
|
|
mapnik::layer_descriptor get_descriptor() const;
|
2013-09-20 15:13:23 +02:00
|
|
|
|
2011-10-22 02:27:06 +02:00
|
|
|
private:
|
2012-12-17 19:03:07 +01:00
|
|
|
void init(mapnik::parameters const& params);
|
|
|
|
mapnik::box2d<double> extent_;
|
2012-01-17 07:09:46 +01:00
|
|
|
mapnik::datasource::datasource_t type_;
|
2011-10-22 02:27:06 +02:00
|
|
|
std::string dataset_name_;
|
2012-12-17 19:03:07 +01:00
|
|
|
std::string index_name_;
|
2014-06-03 04:33:49 +02:00
|
|
|
gdal_dataset_type dataset_;
|
2012-12-17 19:03:07 +01:00
|
|
|
ogr_layer_ptr layer_;
|
|
|
|
std::string layer_name_;
|
|
|
|
mapnik::layer_descriptor desc_;
|
|
|
|
bool indexed_;
|
2011-10-22 02:27:06 +02:00
|
|
|
};
|
2009-01-28 21:16:31 +01:00
|
|
|
|
|
|
|
#endif // OGR_DATASOURCE_HPP
|