2009-02-09 20:43:57 +01:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2009-02-09 20:43:57 +01:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2021-01-05 12:59:41 +01:00
|
|
|
* Copyright (C) 2021 Artem Pavlenko
|
2009-02-09 20:43:57 +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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2011-11-04 00:51:37 +01:00
|
|
|
#ifndef MAPNIK_SQLITE_DATASOURCE_HPP
|
|
|
|
#define MAPNIK_SQLITE_DATASOURCE_HPP
|
2009-02-09 20:43:57 +01:00
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/datasource.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/params.hpp>
|
|
|
|
#include <mapnik/query.hpp>
|
2009-02-09 20:43:57 +01:00
|
|
|
#include <mapnik/feature.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/box2d.hpp>
|
|
|
|
#include <mapnik/coord.hpp>
|
2009-02-09 20:43:57 +01:00
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2011-11-14 04:37:50 +01:00
|
|
|
#include <mapnik/wkb.hpp>
|
2013-01-08 23:17:31 +01:00
|
|
|
#include <mapnik/value_types.hpp>
|
2009-02-09 20:43:57 +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-02-09 20:43:57 +01:00
|
|
|
|
2012-07-25 04:21:55 +02:00
|
|
|
// stl
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2009-02-09 20:43:57 +01:00
|
|
|
// sqlite
|
2011-11-04 00:51:37 +01:00
|
|
|
#include "sqlite_connection.hpp"
|
2009-02-09 20:43:57 +01:00
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
class sqlite_datasource : public mapnik::datasource
|
2009-02-09 20:43:57 +01:00
|
|
|
{
|
2011-10-22 14:50:24 +02:00
|
|
|
public:
|
2012-12-17 19:03:07 +01:00
|
|
|
sqlite_datasource(mapnik::parameters const& params);
|
2011-10-22 14:50:24 +02:00
|
|
|
virtual ~sqlite_datasource ();
|
2012-01-17 07:09:46 +01:00
|
|
|
datasource::datasource_t type() const;
|
2012-07-21 03:34:41 +02:00
|
|
|
static const char * name();
|
2011-10-22 14:50:24 +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 14:50:24 +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 14:50:24 +02:00
|
|
|
mapnik::layer_descriptor get_descriptor() const;
|
2009-02-09 20:43:57 +01:00
|
|
|
|
2011-10-22 14:50:24 +02:00
|
|
|
private:
|
2012-04-08 02:20:56 +02:00
|
|
|
// Fill init_statements with any statements
|
|
|
|
// needed to attach auxillary databases
|
|
|
|
void parse_attachdb(std::string const& attachdb) const;
|
2012-09-03 19:27:48 +02:00
|
|
|
std::string populate_tokens(std::string const& sql) const;
|
2011-12-06 13:53:16 +01:00
|
|
|
|
2012-12-17 21:59:15 +01:00
|
|
|
mapnik::box2d<double> extent_;
|
|
|
|
bool extent_initialized_;
|
2012-01-17 07:09:46 +01:00
|
|
|
mapnik::datasource::datasource_t type_;
|
2012-12-17 21:59:15 +01:00
|
|
|
std::string dataset_name_;
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<sqlite_connection> dataset_;
|
2012-12-17 21:59:15 +01:00
|
|
|
std::string table_;
|
2011-10-22 14:50:24 +02:00
|
|
|
std::string fields_;
|
|
|
|
std::string metadata_;
|
2012-12-17 21:59:15 +01:00
|
|
|
std::string geometry_table_;
|
|
|
|
std::string geometry_field_;
|
|
|
|
std::string index_table_;
|
|
|
|
std::string key_field_;
|
|
|
|
int row_offset_;
|
2013-01-04 18:23:06 +01:00
|
|
|
mapnik::value_integer row_limit_;
|
2011-12-16 19:05:54 +01:00
|
|
|
// TODO - also add to postgis.input
|
|
|
|
const std::string intersects_token_;
|
2012-12-17 21:59:15 +01:00
|
|
|
mapnik::layer_descriptor desc_;
|
|
|
|
mapnik::wkbFormat format_;
|
|
|
|
bool use_spatial_index_;
|
|
|
|
bool has_spatial_index_;
|
|
|
|
bool using_subquery_;
|
2011-10-22 14:50:24 +02:00
|
|
|
mutable std::vector<std::string> init_statements_;
|
|
|
|
};
|
2009-02-09 20:43:57 +01:00
|
|
|
|
2011-11-04 00:51:37 +01:00
|
|
|
#endif // MAPNIK_SQLITE_DATASOURCE_HPP
|