2006-09-11 11:48:27 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:54:32 +01:00
|
|
|
*
|
2006-09-11 11:48:27 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2014-08-12 18:43:04 +02:00
|
|
|
#include <mapnik/config.hpp>
|
|
|
|
|
2013-10-24 00:42:01 +02:00
|
|
|
#include "boost_std_shared_shim.hpp"
|
2014-05-14 05:47:22 +02:00
|
|
|
#include "python_to_value.hpp"
|
2013-10-24 00:42:01 +02:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
// boost
|
2006-09-11 11:48:27 +02:00
|
|
|
#include <boost/python.hpp>
|
2013-09-20 05:19:01 +02:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
// mapnik
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/query.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <mapnik/box2d.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
|
2013-03-14 23:31:21 +01:00
|
|
|
#include <string>
|
|
|
|
#include <set>
|
|
|
|
|
2009-05-24 07:49:03 +02:00
|
|
|
using mapnik::query;
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2009-05-24 07:49:03 +02:00
|
|
|
|
2012-07-19 20:03:34 +02:00
|
|
|
namespace python = boost::python;
|
|
|
|
|
|
|
|
struct resolution_to_tuple
|
|
|
|
{
|
|
|
|
static PyObject* convert(query::resolution_type const& x)
|
|
|
|
{
|
2013-10-11 13:35:34 +02:00
|
|
|
python::object tuple(python::make_tuple(std::get<0>(x), std::get<1>(x)));
|
2012-07-19 20:03:34 +02:00
|
|
|
return python::incref(tuple.ptr());
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyTypeObject const* get_pytype()
|
|
|
|
{
|
|
|
|
return &PyTuple_Type;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-14 23:31:21 +01:00
|
|
|
struct names_to_list
|
|
|
|
{
|
|
|
|
static PyObject* convert(std::set<std::string> const& names)
|
|
|
|
{
|
|
|
|
boost::python::list l;
|
2013-09-20 05:19:01 +02:00
|
|
|
for ( std::string const& name : names )
|
2013-03-14 23:31:21 +01:00
|
|
|
{
|
|
|
|
l.append(name);
|
|
|
|
}
|
|
|
|
return python::incref(l.ptr());
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyTypeObject const* get_pytype()
|
|
|
|
{
|
|
|
|
return &PyList_Type;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-05-14 05:47:22 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void set_variables(mapnik::query & q, boost::python::dict const& d)
|
|
|
|
{
|
|
|
|
mapnik::attributes vars = mapnik::dict2attr(d);
|
|
|
|
q.set_variables(vars);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-11 11:48:27 +02:00
|
|
|
void export_query()
|
|
|
|
{
|
2009-01-13 01:56:09 +01:00
|
|
|
using namespace boost::python;
|
|
|
|
|
2012-07-19 20:03:34 +02:00
|
|
|
to_python_converter<query::resolution_type, resolution_to_tuple> ();
|
2013-03-14 23:31:21 +01:00
|
|
|
to_python_converter<std::set<std::string>, names_to_list> ();
|
2012-07-19 20:03:34 +02:00
|
|
|
|
2011-11-14 04:54:32 +01:00
|
|
|
class_<query>("Query", "a spatial query data object",
|
2010-06-02 13:03:30 +02:00
|
|
|
init<box2d<double>,query::resolution_type const&,double>() )
|
2010-09-27 01:39:04 +02:00
|
|
|
.def(init<box2d<double> >())
|
2010-02-03 17:56:42 +01:00
|
|
|
.add_property("resolution",make_function(&query::resolution,
|
2010-06-02 13:03:30 +02:00
|
|
|
return_value_policy<copy_const_reference>()))
|
2009-01-13 01:56:09 +01:00
|
|
|
.add_property("bbox", make_function(&query::get_bbox,
|
|
|
|
return_value_policy<copy_const_reference>()) )
|
|
|
|
.add_property("property_names", make_function(&query::property_names,
|
|
|
|
return_value_policy<copy_const_reference>()) )
|
2014-05-14 05:47:22 +02:00
|
|
|
.def("add_property_name", &query::add_property_name)
|
|
|
|
.def("set_variables",&set_variables);
|
2006-09-11 11:48:27 +02:00
|
|
|
}
|