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