2006-12-06 21:26:59 +01:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:54:32 +01:00
|
|
|
*
|
2006-12-06 21:26:59 +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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
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"
|
2013-10-24 00:42:01 +02:00
|
|
|
|
2006-12-06 21:26:59 +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
|
2012-04-08 02:20:56 +02:00
|
|
|
|
2006-12-06 21:26:59 +01:00
|
|
|
// mapnik
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/datasource.hpp>
|
|
|
|
|
|
|
|
namespace {
|
2010-06-02 13:03:30 +02:00
|
|
|
using namespace boost::python;
|
2009-05-01 03:21:29 +02:00
|
|
|
|
2011-04-29 21:59:00 +02:00
|
|
|
inline list features(mapnik::featureset_ptr const& itr)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
list l;
|
|
|
|
while (true)
|
2006-12-06 21:26:59 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
mapnik::feature_ptr fp = itr->next();
|
|
|
|
if (!fp)
|
2006-12-06 21:26:59 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
break;
|
2006-12-06 21:26:59 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
l.append(fp);
|
2009-05-01 03:21:29 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
return l;
|
|
|
|
}
|
2011-04-29 21:59:00 +02:00
|
|
|
|
|
|
|
inline object pass_through(object const& o) { return o; }
|
|
|
|
|
|
|
|
inline mapnik::feature_ptr next(mapnik::featureset_ptr const& itr)
|
|
|
|
{
|
2012-08-08 17:15:54 +02:00
|
|
|
mapnik::feature_ptr f = itr->next();
|
|
|
|
if (!f)
|
2011-04-29 21:59:00 +02:00
|
|
|
{
|
|
|
|
PyErr_SetString(PyExc_StopIteration, "No more features.");
|
|
|
|
boost::python::throw_error_already_set();
|
|
|
|
}
|
|
|
|
|
2012-08-08 17:15:54 +02:00
|
|
|
return f;
|
2011-04-29 21:59:00 +02:00
|
|
|
}
|
|
|
|
|
2006-12-06 21:26:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void export_featureset()
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
2013-09-20 15:00:11 +02:00
|
|
|
class_<mapnik::Featureset,std::shared_ptr<mapnik::Featureset>,
|
2006-12-06 21:26:59 +01:00
|
|
|
boost::noncopyable>("Featureset",no_init)
|
2011-04-29 21:59:00 +02:00
|
|
|
.def("__iter__",pass_through)
|
|
|
|
.def("next",next)
|
2010-09-24 19:41:08 +02:00
|
|
|
.add_property("features",features,
|
2011-11-14 04:54:32 +01:00
|
|
|
"The list of features.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.query_map_point(0, 10, 10)\n"
|
2011-11-23 12:33:58 +01:00
|
|
|
"<mapnik._mapnik.Featureset object at 0x1004d2938>\n"
|
2011-11-14 04:54:32 +01:00
|
|
|
">>> fs = m.query_map_point(0, 10, 10)\n"
|
|
|
|
">>> for f in fs.features:\n"
|
|
|
|
">>> print f\n"
|
2011-11-23 12:33:58 +01:00
|
|
|
"<mapnik.Feature object at 0x105e64140>\n"
|
2010-09-24 19:41:08 +02:00
|
|
|
)
|
2006-12-06 21:26:59 +01:00
|
|
|
;
|
|
|
|
}
|