2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:54:32 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2006-02-01 00:09:52 +01:00
|
|
|
*
|
2014-11-20 15:25:50 +01:00
|
|
|
* Copyright (C) 2014 Artem Pavlenko, Jean-Francois Doyon
|
2006-02-01 00:09:52 +01: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,
|
2006-02-01 00:09:52 +01: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
|
2006-02-01 00:09:52 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2014-08-12 19:44:11 +02:00
|
|
|
#include <mapnik/config.hpp>
|
|
|
|
|
2014-10-22 01:37:27 +02:00
|
|
|
// boost
|
2013-10-24 00:42:01 +02:00
|
|
|
#include "boost_std_shared_shim.hpp"
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
|
|
|
|
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
2006-02-01 00:09:52 +01:00
|
|
|
#include <boost/python.hpp>
|
2012-12-16 21:50:36 +01:00
|
|
|
#include <boost/noncopyable.hpp>
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
2014-07-23 23:02:36 +02:00
|
|
|
#include <mapnik/value_types.hpp>
|
|
|
|
#include <mapnik/params.hpp>
|
|
|
|
#include <mapnik/datasource.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/datasource_cache.hpp>
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2012-09-05 13:53:37 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
using namespace boost::python;
|
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<mapnik::datasource> create_datasource(const dict& d)
|
2012-09-05 13:53:37 +02:00
|
|
|
{
|
|
|
|
mapnik::parameters params;
|
|
|
|
boost::python::list keys=d.keys();
|
|
|
|
for (int i=0; i<len(keys); ++i)
|
|
|
|
{
|
|
|
|
std::string key = extract<std::string>(keys[i]);
|
|
|
|
object obj = d[key];
|
|
|
|
extract<std::string> ex0(obj);
|
2012-12-03 14:12:09 +01:00
|
|
|
extract<mapnik::value_integer> ex1(obj);
|
2012-09-05 13:53:37 +02:00
|
|
|
extract<double> ex2(obj);
|
|
|
|
|
|
|
|
if (ex0.check())
|
|
|
|
{
|
|
|
|
params[key] = ex0();
|
|
|
|
}
|
|
|
|
else if (ex1.check())
|
|
|
|
{
|
|
|
|
params[key] = ex1();
|
|
|
|
}
|
|
|
|
else if (ex2.check())
|
|
|
|
{
|
|
|
|
params[key] = ex2();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-17 19:03:07 +01:00
|
|
|
return mapnik::datasource_cache::instance().create(params);
|
2012-09-05 13:53:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void register_datasources(std::string const& path)
|
|
|
|
{
|
2012-09-07 17:23:03 +02:00
|
|
|
mapnik::datasource_cache::instance().register_datasources(path);
|
2012-09-05 13:53:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> plugin_names()
|
|
|
|
{
|
2012-09-07 17:23:03 +02:00
|
|
|
return mapnik::datasource_cache::instance().plugin_names();
|
2012-09-05 13:53:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string plugin_directories()
|
|
|
|
{
|
2012-09-07 17:23:03 +02:00
|
|
|
return mapnik::datasource_cache::instance().plugin_directories();
|
2012-09-05 13:53:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
void export_datasource_cache()
|
|
|
|
{
|
|
|
|
using mapnik::datasource_cache;
|
2012-09-05 13:53:37 +02:00
|
|
|
class_<datasource_cache,
|
|
|
|
boost::noncopyable>("DatasourceCache",no_init)
|
|
|
|
.def("create",&create_datasource)
|
2006-02-01 00:09:52 +01:00
|
|
|
.staticmethod("create")
|
2012-09-05 13:53:37 +02:00
|
|
|
.def("register_datasources",®ister_datasources)
|
2006-10-03 10:44:04 +02:00
|
|
|
.staticmethod("register_datasources")
|
2012-09-05 13:53:37 +02:00
|
|
|
.def("plugin_names",&plugin_names)
|
2011-11-14 04:54:32 +01:00
|
|
|
.staticmethod("plugin_names")
|
2012-09-05 13:53:37 +02:00
|
|
|
.def("plugin_directories",&plugin_directories)
|
|
|
|
.staticmethod("plugin_directories")
|
2006-02-01 00:09:52 +01:00
|
|
|
;
|
|
|
|
}
|