mapnik/bindings/python/mapnik_feature.cpp

287 lines
8.6 KiB
C++
Raw Normal View History

/*****************************************************************************
2011-11-14 04:54:32 +01: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
*
*****************************************************************************/
//$Id$
// boost
#include <boost/python/suite/indexing/indexing_suite.hpp>
#include <boost/python/iterator.hpp>
#include <boost/python/call_method.hpp>
#include <boost/python/tuple.hpp>
#include <boost/python.hpp>
2009-04-01 00:59:34 +02:00
#include <boost/scoped_array.hpp>
// mapnik
#include <mapnik/feature.hpp>
2009-12-16 21:02:06 +01:00
#include <mapnik/datasource.hpp>
#include <mapnik/wkb.hpp>
#include <mapnik/wkt/wkt_factory.hpp>
mapnik::geometry_type & (mapnik::Feature::*get_geom1)(unsigned) = &mapnik::Feature::get_geometry;
namespace {
using mapnik::Feature;
using mapnik::geometry_utils;
using mapnik::from_wkt;
void feature_add_geometries_from_wkb(Feature &feature, std::string wkb)
{
geometry_utils::from_wkb(feature.paths(), wkb.c_str(), wkb.size(), true);
}
void feature_add_geometries_from_wkt(Feature &feature, std::string wkt)
{
bool result = mapnik::from_wkt(wkt, feature.paths());
if (!result) throw std::runtime_error("Failed to parse WKT");
}
} // end anonymous namespace
namespace boost { namespace python {
// Forward declaration
2010-06-02 13:03:30 +02:00
template <class Container, bool NoProxy, class DerivedPolicies>
class map_indexing_suite2;
2010-06-02 13:03:30 +02:00
namespace detail
{
template <class Container, bool NoProxy>
class final_map_derived_policies
: public map_indexing_suite2<Container,
NoProxy, final_map_derived_policies<Container, NoProxy> > {};
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
template <class Container,bool NoProxy = false,
class DerivedPolicies = detail::final_map_derived_policies<Container, NoProxy> >
class map_indexing_suite2
: public indexing_suite<
Container
, DerivedPolicies
, NoProxy
, true
, typename Container::value_type::second_type
, typename Container::key_type
, typename Container::key_type
>
{
public:
2010-06-02 13:03:30 +02:00
typedef typename Container::value_type value_type;
typedef typename Container::value_type::second_type data_type;
typedef typename Container::key_type key_type;
typedef typename Container::key_type index_type;
typedef typename Container::size_type size_type;
typedef typename Container::difference_type difference_type;
2010-06-02 13:03:30 +02:00
template <class Class>
static void
extension_def(Class& cl)
2010-06-02 13:03:30 +02:00
{
cl
.def("get", &get)
;
2010-06-02 13:03:30 +02:00
}
2010-06-02 13:03:30 +02:00
static data_type&
get_item(Container& container, index_type i_)
{
typename Container::iterator i = container.props().find(i_);
if (i == container.end())
{
PyErr_SetString(PyExc_KeyError, i_.c_str());
2010-06-02 13:03:30 +02:00
throw_error_already_set();
}
// will be auto-converted to proper python type by `mapnik_value_to_python`
2010-06-02 13:03:30 +02:00
return i->second;
}
2011-11-14 04:54:32 +01:00
static data_type
get(Container& container, index_type i_)
{
typename Container::iterator i = container.props().find(i_);
if (i != container.end())
{
// will be auto-converted to proper python type by `mapnik_value_to_python`
return i->second;
}
return mapnik::value_null();
}
2010-06-02 13:03:30 +02:00
static void
set_item(Container& container, index_type i, data_type const& v)
{
container[i] = v;
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
static void
delete_item(Container& container, index_type i)
{
container.props().erase(i);
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
static size_t
size(Container& container)
{
return container.props().size();
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
static bool
contains(Container& container, key_type const& key)
{
return container.props().find(key) != container.end();
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
static bool
compare_index(Container& container, index_type a, index_type b)
{
return container.props().key_comp()(a, b);
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
static index_type
convert_index(Container& /*container*/, PyObject* i_)
{
extract<key_type const&> i(i_);
if (i.check())
{
return i();
}
else
{
extract<key_type> i(i_);
if (i.check())
return i();
}
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
PyErr_SetString(PyExc_TypeError, "Invalid index type");
throw_error_already_set();
return index_type();
}
};
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
template <typename T1, typename T2>
struct std_pair_to_tuple
2009-12-16 21:02:06 +01:00
{
2010-06-02 13:03:30 +02:00
static PyObject* convert(std::pair<T1, T2> const& p)
{
return boost::python::incref(
boost::python::make_tuple(p.first, p.second).ptr());
}
};
2011-11-14 04:54:32 +01:00
2010-06-02 13:03:30 +02:00
template <typename T1, typename T2>
struct std_pair_to_python_converter
2009-12-16 21:02:06 +01:00
{
2010-06-02 13:03:30 +02:00
std_pair_to_python_converter()
{
boost::python::to_python_converter<
std::pair<T1, T2>,
std_pair_to_tuple<T1, T2> >();
}
};
2009-12-16 21:02:06 +01:00
2010-06-02 13:03:30 +02:00
}}
2009-12-16 21:02:06 +01:00
struct UnicodeString_from_python_str
{
UnicodeString_from_python_str()
{
boost::python::converter::registry::push_back(
&convertible,
&construct,
boost::python::type_id<UnicodeString>());
2009-12-16 21:02:06 +01:00
}
static void* convertible(PyObject* obj_ptr)
{
if (!(
#if PY_VERSION_HEX >= 0x03000000
2011-11-14 04:54:32 +01:00
PyBytes_Check(obj_ptr)
#else
2011-11-14 04:54:32 +01:00
PyString_Check(obj_ptr)
#endif
|| PyUnicode_Check(obj_ptr)))
return 0;
return obj_ptr;
2009-12-16 21:02:06 +01:00
}
static void construct(
PyObject* obj_ptr,
boost::python::converter::rvalue_from_python_stage1_data* data)
2009-12-16 21:02:06 +01:00
{
char * value=0;
if (PyUnicode_Check(obj_ptr)) {
PyObject *encoded = PyUnicode_AsEncodedString(obj_ptr, "utf8", "replace");
if (encoded) {
#if PY_VERSION_HEX >= 0x03000000
value = PyBytes_AsString(encoded);
#else
value = PyString_AsString(encoded);
#endif
Py_DecRef(encoded);
}
} else {
#if PY_VERSION_HEX >= 0x03000000
value = PyBytes_AsString(obj_ptr);
#else
value = PyString_AsString(obj_ptr);
#endif
}
if (value == 0) boost::python::throw_error_already_set();
void* storage = (
(boost::python::converter::rvalue_from_python_storage<UnicodeString>*)
data)->storage.bytes;
new (storage) UnicodeString(value);
data->convertible = storage;
2009-12-16 21:02:06 +01:00
}
};
void export_feature()
{
2009-12-16 21:02:06 +01:00
using namespace boost::python;
using mapnik::Feature;
2011-11-14 04:54:32 +01:00
2009-12-16 21:02:06 +01:00
implicitly_convertible<int,mapnik::value>();
implicitly_convertible<double,mapnik::value>();
implicitly_convertible<UnicodeString,mapnik::value>();
2009-12-16 21:02:06 +01:00
implicitly_convertible<bool,mapnik::value>();
2009-12-16 21:02:06 +01:00
std_pair_to_python_converter<std::string const,mapnik::value>();
UnicodeString_from_python_str();
2011-11-14 04:54:32 +01:00
2009-12-16 21:02:06 +01:00
class_<Feature,boost::shared_ptr<Feature>,
2010-06-02 13:03:30 +02:00
boost::noncopyable>("Feature",init<int>("Default ctor."))
.def("id",&Feature::id)
.def("__str__",&Feature::to_string)
.def("add_geometries_from_wkb", &feature_add_geometries_from_wkb)
.def("add_geometries_from_wkt", &feature_add_geometries_from_wkt)
//.def("add_geometry", add_geometry)
//.def("num_geometries",&Feature::num_geometries)
//.def("get_geometry", make_function(get_geom1,return_value_policy<reference_existing_object>()))
.def("geometries",make_function(&Feature::paths,return_value_policy<reference_existing_object>()))
2010-06-02 13:03:30 +02:00
.def("envelope", &Feature::envelope)
.def(map_indexing_suite2<Feature, true >())
.def("iteritems",iterator<Feature> ())
// TODO define more mapnik::Feature methods
;
}