mapnik/bindings/python/mapnik_symbolizer.cpp

197 lines
5.1 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
*
*****************************************************************************/
2012-04-08 02:20:56 +02:00
// boost
#include <boost/python.hpp>
2012-04-08 02:20:56 +02:00
// mapnik
//symbolizer typdef here rather than mapnik/symbolizer.hpp
#include <mapnik/rule.hpp>
using mapnik::symbolizer;
using mapnik::rule;
using mapnik::point_symbolizer;
using mapnik::line_symbolizer;
using mapnik::line_pattern_symbolizer;
using mapnik::polygon_symbolizer;
using mapnik::polygon_pattern_symbolizer;
using mapnik::raster_symbolizer;
using mapnik::shield_symbolizer;
using mapnik::text_symbolizer;
using mapnik::building_symbolizer;
using mapnik::markers_symbolizer;
struct get_symbolizer_type : public boost::static_visitor<std::string>
{
2010-06-02 13:03:30 +02:00
public:
get_symbolizer_type() {}
2011-11-14 04:54:32 +01:00
std::string operator () ( const point_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "point";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const line_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "line";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const line_pattern_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "line_pattern";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const polygon_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "polygon";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const polygon_pattern_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "polygon_pattern";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const raster_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "raster";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const shield_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "shield";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const text_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "text";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const building_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "building";
}
2011-11-14 04:54:32 +01:00
std::string operator () ( const markers_symbolizer & /*sym*/ )
2010-06-02 13:03:30 +02:00
{
return "markers";
}
};
std::string get_symbol_type(const symbolizer& symbol)
{
2010-06-02 13:03:30 +02:00
get_symbolizer_type serializer;
std::string type = boost::apply_visitor( serializer, symbol );
return type;
}
const point_symbolizer& point_( const symbolizer& symbol )
{
return boost::get<point_symbolizer>(symbol);
}
const line_symbolizer& line_( const symbolizer& symbol )
{
return boost::get<line_symbolizer>(symbol);
}
const polygon_symbolizer& polygon_( const symbolizer& symbol )
{
return boost::get<polygon_symbolizer>(symbol);
}
const raster_symbolizer& raster_( const symbolizer& symbol )
{
return boost::get<raster_symbolizer>(symbol);
}
const text_symbolizer& text_( const symbolizer& symbol )
{
return boost::get<text_symbolizer>(symbol);
}
const shield_symbolizer& shield_( const symbolizer& symbol )
{
return boost::get<shield_symbolizer>(symbol);
}
const line_pattern_symbolizer& line_pattern_( const symbolizer& symbol )
{
return boost::get<line_pattern_symbolizer>(symbol);
}
const polygon_pattern_symbolizer& polygon_pattern_( const symbolizer& symbol )
{
return boost::get<polygon_pattern_symbolizer>(symbol);
}
const building_symbolizer& building_( const symbolizer& symbol )
{
return boost::get<building_symbolizer>(symbol);
}
const markers_symbolizer& markers_( const symbolizer& symbol )
{
return boost::get<markers_symbolizer>(symbol);
}
void export_symbolizer()
{
using namespace boost::python;
class_<symbolizer>("Symbolizer",no_init)
.def("type",get_symbol_type)
.def("point",point_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("line",line_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("line_pattern",line_pattern_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("polygon",polygon_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("polygon_pattern",polygon_pattern_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("raster",raster_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("shield",shield_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("text",text_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("building",building_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
.def("markers",markers_,
2010-06-02 13:03:30 +02:00
return_value_policy<copy_const_reference>())
;
}