Merge branch 'feature-text-merge'

This commit is contained in:
Hermann Kraus 2012-01-31 16:52:28 +01:00
commit cc886d1688
88 changed files with 1425 additions and 1073 deletions

1
.gitignore vendored
View file

@ -7,6 +7,7 @@
*.a *.a
*.dylib *.dylib
plugins/input/*.input plugins/input/*.input
plugins/input/templates/*.input
demo/c++/rundemo demo/c++/rundemo
bindings/python/mapnik/paths.py bindings/python/mapnik/paths.py
config.cache config.cache

View file

@ -14,6 +14,8 @@ For a complete change history, see the SVN log.
Mapnik 2.1.0 Mapnik 2.1.0
------------ ------------
- Removed PointDatasource - use more robust MemoryDatasource instead (#1032)
- SQLite - Added support for !intersects! token in sql subselects (#809) allow custom positioning of rtree spatial filter. - SQLite - Added support for !intersects! token in sql subselects (#809) allow custom positioning of rtree spatial filter.
- New CSV plugin - reads tabular files - autodetecting geo columns, newlines, and delimiters. Uses in-memory featureset for fast rendering and is not designed for large files (#902) - New CSV plugin - reads tabular files - autodetecting geo columns, newlines, and delimiters. Uses in-memory featureset for fast rendering and is not designed for large files (#902)

View file

@ -247,44 +247,6 @@ class _Datasource(Datasource,_injector):
query.add_property_name(fld) query.add_property_name(fld)
return self.features(query) return self.features(query)
class _DeprecatedFeatureProperties(object):
def __init__(self, feature):
self._feature = feature
def __getitem__(self, name):
warnings.warn("indexing feature.properties is deprecated, index the "
"feature object itself for the same effect", DeprecationWarning, 2)
return self._feature[name]
def __iter__(self):
warnings.warn("iterating feature.properties is deprecated, iterate the "
"feature object itself for the same effect", DeprecationWarning, 2)
return iter(self._feature)
class _Feature(Feature, _injector):
"""
A Feature.
TODO: docs
"""
@property
def properties(self):
return _DeprecatedFeatureProperties(self)
@property
def attributes(self):
#XXX Returns a copy! changes to it won't affect feat.'s attrs.
# maybe deprecate?
return dict(self)
def __init__(self, id, wkt=None, **properties):
Feature._c___init__(self, id)
if wkt is not None:
self.add_geometries_from_wkt(wkt)
for k, v in properties.iteritems():
self[k] = v
class _Color(Color,_injector): class _Color(Color,_injector):
def __repr__(self): def __repr__(self):
return "Color(R=%d,G=%d,B=%d,A=%d)" % (self.r,self.g,self.b,self.a) return "Color(R=%d,G=%d,B=%d,A=%d)" % (self.r,self.g,self.b,self.a)
@ -663,7 +625,6 @@ __all__ = [
'Path', 'Path',
'Parameter', 'Parameter',
'Parameters', 'Parameters',
'PointDatasource',
'PointSymbolizer', 'PointSymbolizer',
'PolygonPatternSymbolizer', 'PolygonPatternSymbolizer',
'PolygonSymbolizer', 'PolygonSymbolizer',

View file

@ -36,7 +36,6 @@
using mapnik::datasource; using mapnik::datasource;
using mapnik::point_datasource;
using mapnik::memory_datasource; using mapnik::memory_datasource;
using mapnik::layer_descriptor; using mapnik::layer_descriptor;
using mapnik::attribute_descriptor; using mapnik::attribute_descriptor;
@ -178,11 +177,6 @@ void export_datasource()
def("CreateDatasource",&create_datasource); def("CreateDatasource",&create_datasource);
class_<point_datasource, bases<datasource>, boost::noncopyable>("PointDatasource", init<>())
.def("add_point",&point_datasource::add_point)
;
class_<memory_datasource, bases<datasource>, boost::noncopyable>("MemoryDatasource", init<>()) class_<memory_datasource, bases<datasource>, boost::noncopyable>("MemoryDatasource", init<>())
.def("add_feature",&memory_datasource::push, .def("add_feature",&memory_datasource::push,
"Adds a Feature:\n" "Adds a Feature:\n"

View file

@ -22,26 +22,35 @@
//$Id$ //$Id$
// boost // boost
#include <boost/python/suite/indexing/indexing_suite.hpp> #include <boost/python/suite/indexing/indexing_suite.hpp>
//#include <boost/python/suite/indexing/map_indexing_suite.hpp>
#include <boost/python/iterator.hpp> #include <boost/python/iterator.hpp>
#include <boost/python/call_method.hpp> #include <boost/python/call_method.hpp>
#include <boost/python/tuple.hpp> #include <boost/python/tuple.hpp>
#include <boost/python/to_python_converter.hpp>
#include <boost/python.hpp> #include <boost/python.hpp>
#include <boost/scoped_array.hpp> #include <boost/scoped_array.hpp>
// mapnik // mapnik
#include <mapnik/feature.hpp> #include <mapnik/feature.hpp>
#include <mapnik/feature_kv_iterator.hpp>
#include <mapnik/datasource.hpp> #include <mapnik/datasource.hpp>
#include <mapnik/wkb.hpp> #include <mapnik/wkb.hpp>
#include <mapnik/wkt/wkt_factory.hpp> #include <mapnik/wkt/wkt_factory.hpp>
mapnik::geometry_type & (mapnik::Feature::*get_geom1)(unsigned) = &mapnik::Feature::get_geometry;
namespace { namespace {
using mapnik::Feature; using mapnik::Feature;
using mapnik::geometry_utils; using mapnik::geometry_utils;
using mapnik::from_wkt; using mapnik::from_wkt;
using mapnik::context_type;
using mapnik::context_ptr;
using mapnik::feature_kv_iterator;
mapnik::geometry_type const& (mapnik::Feature::*get_geometry_by_const_ref)(unsigned) const = &mapnik::Feature::get_geometry;
boost::ptr_vector<mapnik::geometry_type> const& (mapnik::Feature::*get_paths_by_const_ref)() const = &mapnik::Feature::paths;
void feature_add_geometries_from_wkb(Feature &feature, std::string wkb) void feature_add_geometries_from_wkb(Feature &feature, std::string wkb)
{ {
@ -54,152 +63,36 @@ void feature_add_geometries_from_wkt(Feature &feature, std::string wkt)
if (!result) throw std::runtime_error("Failed to parse WKT"); if (!result) throw std::runtime_error("Failed to parse WKT");
} }
} // end anonymous namespace mapnik::value __getitem__(Feature const& feature, std::string const& name)
{
return feature.get(name);
}
namespace boost { namespace python { mapnik::value __getitem2__(Feature const& feature, std::size_t index)
{
return feature.get(index);
}
// Forward declaration void __setitem__(Feature & feature, std::string const& name, mapnik::value const& val)
template <class Container, bool NoProxy, class DerivedPolicies> {
class map_indexing_suite2; feature.put_new(name,val);
}
namespace detail boost::python::dict attributes(Feature const& f)
{
boost::python::dict attributes;
feature_kv_iterator itr = f.begin();
feature_kv_iterator end = f.end();
for ( ;itr!=end; ++itr)
{ {
template <class Container, bool NoProxy> attributes[boost::get<0>(*itr)] = boost::get<1>(*itr);
class final_map_derived_policies
: public map_indexing_suite2<Container,
NoProxy, final_map_derived_policies<Container, NoProxy> > {};
} }
return attributes;
}
template <class Container,bool NoProxy = false, } // end anonymous namespace
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:
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;
template <class Class>
static void
extension_def(Class& cl)
{
cl
.def("get", &get)
;
}
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());
throw_error_already_set();
}
// will be auto-converted to proper python type by `mapnik_value_to_python`
return i->second;
}
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();
}
static void
set_item(Container& container, index_type i, data_type const& v)
{
container[i] = v;
}
static void
delete_item(Container& container, index_type i)
{
container.props().erase(i);
}
static size_t
size(Container& container)
{
return container.props().size();
}
static bool
contains(Container& container, key_type const& key)
{
return container.props().find(key) != container.end();
}
static bool
compare_index(Container& container, index_type a, index_type b)
{
return container.props().key_comp()(a, b);
}
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();
}
PyErr_SetString(PyExc_TypeError, "Invalid index type");
throw_error_already_set();
return index_type();
}
};
template <typename T1, typename T2>
struct std_pair_to_tuple
{
static PyObject* convert(std::pair<T1, T2> const& p)
{
return boost::python::incref(
boost::python::make_tuple(p.first, p.second).ptr());
}
};
template <typename T1, typename T2>
struct std_pair_to_python_converter
{
std_pair_to_python_converter()
{
boost::python::to_python_converter<
std::pair<T1, T2>,
std_pair_to_tuple<T1, T2> >();
}
};
}}
struct UnicodeString_from_python_str struct UnicodeString_from_python_str
{ {
@ -260,27 +153,36 @@ void export_feature()
using namespace boost::python; using namespace boost::python;
using mapnik::Feature; using mapnik::Feature;
// Python to mapnik::value converters
implicitly_convertible<int,mapnik::value>(); implicitly_convertible<int,mapnik::value>();
implicitly_convertible<double,mapnik::value>(); implicitly_convertible<double,mapnik::value>();
implicitly_convertible<UnicodeString,mapnik::value>(); implicitly_convertible<UnicodeString,mapnik::value>();
implicitly_convertible<bool,mapnik::value>(); implicitly_convertible<bool,mapnik::value>();
std_pair_to_python_converter<std::string const,mapnik::value>();
UnicodeString_from_python_str(); UnicodeString_from_python_str();
class_<context_type,context_ptr,boost::noncopyable>
("Context",init<>("Default ctor."))
.def("push", &context_type::push)
;
class_<Feature,boost::shared_ptr<Feature>, class_<Feature,boost::shared_ptr<Feature>,
boost::noncopyable>("Feature",init<int>("Default ctor.")) boost::noncopyable>("Feature",init<context_ptr,int>("Default ctor."))
.def("id",&Feature::id) .def("id",&Feature::id)
.def("__str__",&Feature::to_string) .def("__str__",&Feature::to_string)
.def("add_geometries_from_wkb", &feature_add_geometries_from_wkb) .def("add_geometries_from_wkb", &feature_add_geometries_from_wkb)
.def("add_geometries_from_wkt", &feature_add_geometries_from_wkt) .def("add_geometries_from_wkt", &feature_add_geometries_from_wkt)
//.def("add_geometry", add_geometry) .def("add_geometry", &Feature::add_geometry)
//.def("num_geometries",&Feature::num_geometries) .def("num_geometries",&Feature::num_geometries)
//.def("get_geometry", make_function(get_geom1,return_value_policy<reference_existing_object>())) .def("get_geometry", make_function(get_geometry_by_const_ref,return_value_policy<reference_existing_object>()))
.def("geometries",make_function(&Feature::paths,return_value_policy<reference_existing_object>())) .def("geometries",make_function(get_paths_by_const_ref,return_value_policy<reference_existing_object>()))
.def("envelope", &Feature::envelope) .def("envelope", &Feature::envelope)
.def(map_indexing_suite2<Feature, true >()) .def("has_key", &Feature::has_key)
.def("iteritems",iterator<Feature> ()) .add_property("attributes",&attributes)
// TODO define more mapnik::Feature methods .def("__setitem__",&__setitem__)
.def("__getitem__",&__getitem__)
.def("__getitem__",&__getitem2__)
.def("__len__", &Feature::size)
.def("context",&Feature::context)
; ;
} }

View file

@ -43,11 +43,14 @@ static boost::shared_ptr<mapnik::rgba_palette> make_palette( const std::string&
void export_palette () void export_palette ()
{ {
using namespace boost::python; using namespace boost::python;
class_<boost::shared_ptr<mapnik::rgba_palette> >("Palette",no_init)
/*, init<std::string,std::string>( class_<mapnik::rgba_palette,
( arg("palette"), arg("type")), boost::shared_ptr<mapnik::rgba_palette>,
"Creates a new color palette from a file\n" boost::noncopyable >("Palette",no_init)
)*/ //, init<std::string,std::string>(
.def( "__init__", boost::python::make_constructor(make_palette)) // ( arg("palette"), arg("type")),
// "Creates a new color palette from a file\n"
// )
.def( "__init__", boost::python::make_constructor(make_palette))
; ;
} }

View file

@ -368,6 +368,18 @@ if HAS_PYCAIRO_MODULE and mapnik.has_pycairo():
images_.append('demo.ps') images_.append('demo.ps')
postscript_surface.finish() postscript_surface.finish()
image_surface = cairo.ImageSurface(cairo.FORMAT_RGB24, m.width, m.height)
mapnik.render(m, image_surface)
image_surface.write_to_png('demo_cairo_rgb24.png')
images_.append('demo_cairo_argb24.png')
image_surface.finish()
image_surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, m.width, m.height)
mapnik.render(m, image_surface)
image_surface.write_to_png('demo_cairo_argb32.png')
images_.append('demo_cairo_argb32.png')
image_surface.finish()
else: else:
print '\n\nPycairo not available...', print '\n\nPycairo not available...',
if mapnik.has_cairo(): if mapnik.has_cairo():
@ -379,9 +391,9 @@ else:
images_.append('demo.ps') images_.append('demo.ps')
mapnik.render_to_file(m,'demo.svg') mapnik.render_to_file(m,'demo.svg')
images_.append('demo.svg') images_.append('demo.svg')
mapnik.render_to_file(m,'demo_cairo_rgb.png','RGB24') mapnik.render_to_file(m,'demo_cairo_rgb24.png','RGB24')
images_.append('demo_cairo_rgb.png') images_.append('demo_cairo_rgb.png')
mapnik.render_to_file(m,'demo_cairo_argb.png','ARGB32') mapnik.render_to_file(m,'demo_cairo_argb32.png','ARGB32')
images_.append('demo_cairo_argb.png') images_.append('demo_cairo_argb.png')
print "\n\n", len(images_), "maps have been rendered in the current directory:" print "\n\n", len(images_), "maps have been rendered in the current directory:"

View file

@ -29,6 +29,7 @@
#include <mapnik/scale_denominator.hpp> #include <mapnik/scale_denominator.hpp>
#include <mapnik/ctrans.hpp> #include <mapnik/ctrans.hpp>
#include <mapnik/memory_datasource.hpp> #include <mapnik/memory_datasource.hpp>
#include <mapnik/feature_kv_iterator.hpp>
#include "mapwidget.hpp" #include "mapwidget.hpp"
#include "info_dialog.hpp" #include "info_dialog.hpp"
@ -42,6 +43,7 @@ using mapnik::geometry_ptr;
using mapnik::CoordTransform; using mapnik::CoordTransform;
using mapnik::projection; using mapnik::projection;
using mapnik::scale_denominator; using mapnik::scale_denominator;
using mapnik::feature_kv_iterator;
double scales [] = {279541132.014, double scales [] = {279541132.014,
139770566.007, 139770566.007,
@ -170,17 +172,17 @@ void MapWidget::mousePressEvent(QMouseEvent* e)
feature_ptr feat = fs->next(); feature_ptr feat = fs->next();
if (feat) if (feat)
{ {
std::map<std::string,mapnik::value> const& props = feat->props();
std::map<std::string,mapnik::value>::const_iterator itr=props.begin(); feature_kv_iterator itr(*feat,true);
for (; itr!=props.end();++itr) feature_kv_iterator end(*feat);
{
if (itr->second.to_string().length() > 0) for ( ;itr!=end; ++itr)
{ {
info.push_back(QPair<QString,QString>(QString(itr->first.c_str()), info.push_back(QPair<QString,QString>(QString(boost::get<0>(*itr).c_str()),
itr->second.to_string().c_str())); boost::get<1>(*itr).to_string().c_str()));
} }
}
typedef mapnik::coord_transform2<mapnik::CoordTransform,mapnik::geometry_type> path_type; typedef mapnik::coord_transform2<mapnik::CoordTransform,mapnik::geometry_type> path_type;
for (unsigned i=0; i<feat->num_geometries();++i) for (unsigned i=0; i<feat->num_geometries();++i)
{ {

View file

@ -30,8 +30,6 @@
namespace mapnik { namespace mapnik {
static mapnik::value _null_value;
struct attribute struct attribute
{ {
std::string name_; std::string name_;
@ -39,16 +37,11 @@ struct attribute
: name_(name) {} : name_(name) {}
template <typename V ,typename F> template <typename V ,typename F>
V value(F const& f) const V const& value(F const& f) const
{ {
typedef typename F::const_iterator const_iterator; return f.get(name_);
const_iterator itr = f.find(name_);
if (itr != f.end())
{
return itr->second;
}
return _null_value;
} }
std::string const& name() const { return name_;} std::string const& name() const { return name_;}
}; };
} }

View file

@ -0,0 +1,53 @@
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* 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
*
*****************************************************************************/
#ifndef MAPNIK_BUILDING_SYMBOLIZER_HPP
#define MAPNIK_BUILDING_SYMBOLIZER_HPP
// mapnik
#include <mapnik/color.hpp>
#include <mapnik/symbolizer.hpp>
#include <mapnik/filter_factory.hpp>
namespace mapnik
{
struct MAPNIK_DECL building_symbolizer : public symbolizer_base
{
building_symbolizer();
building_symbolizer(color const& fill, expression_ptr height);
color const& get_fill() const;
void set_fill(color const& fill);
expression_ptr height() const;
void set_height(expression_ptr height);
void set_opacity(double opacity);
double get_opacity() const;
private:
color fill_;
expression_ptr height_;
double opacity_;
};
}
#endif // MAPNIK_BUILDING_SYMBOLIZER_HPP

View file

@ -43,7 +43,7 @@ namespace mapnik {
typedef MAPNIK_DECL boost::shared_ptr<Feature> feature_ptr; typedef MAPNIK_DECL boost::shared_ptr<Feature> feature_ptr;
struct MAPNIK_DECL Featureset struct MAPNIK_DECL Featureset : private boost::noncopyable
{ {
virtual feature_ptr next()=0; virtual feature_ptr next()=0;
virtual ~Featureset() {}; virtual ~Featureset() {};

View file

@ -27,7 +27,7 @@
#include <mapnik/value.hpp> #include <mapnik/value.hpp>
#include <mapnik/geometry.hpp> #include <mapnik/geometry.hpp>
#include <mapnik/raster.hpp> #include <mapnik/raster.hpp>
#include <mapnik/feature_kv_iterator.hpp>
// boost // boost
#include <boost/version.hpp> #include <boost/version.hpp>
#if BOOST_VERSION >= 104000 #if BOOST_VERSION >= 104000
@ -37,49 +37,154 @@
#endif #endif
#include <boost/utility.hpp> #include <boost/utility.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/scoped_ptr.hpp>
// stl // stl
#include <vector>
#include <map> #include <map>
#include <stdexcept>
namespace mapnik { namespace mapnik {
typedef boost::shared_ptr<raster> raster_ptr;
typedef boost::associative_property_map< typedef boost::shared_ptr<raster> raster_ptr;
std::map<std::string,value
> > properties; class feature_impl;
template <typename T1,typename T2> template <typename T>
struct feature : public properties, class context : private boost::noncopyable,
private boost::noncopyable public boost::associative_property_map<T>
{ {
friend class feature_impl;
public: public:
typedef T1 geometry_type; typedef T map_type;
typedef T2 raster_type; typedef typename boost::associative_property_map<map_type> base_type;
typedef std::map<std::string,value>::value_type value_type; typedef typename map_type::value_type value_type;
typedef std::map<std::string,value>::size_type size_type; typedef typename map_type::key_type key_type;
typedef std::map<std::string,value>::difference_type difference_type; typedef typename map_type::size_type size_type;
typedef typename map_type::difference_type difference_type;
private: typedef typename map_type::iterator iterator;
int id_; typedef typename map_type::const_iterator const_iterator;
boost::ptr_vector<geometry_type> geom_cont_;
raster_type raster_; context()
std::map<std::string,value> props_; : base_type(mapping_) {}
public:
typedef std::map<std::string,value>::iterator iterator; size_type push(key_type const& name)
typedef std::map<std::string,value>::const_iterator const_iterator;
explicit feature(int id)
: properties(props_),
id_(id),
geom_cont_(),
raster_() {}
int id() const
{ {
return id_; size_type index = mapping_.size();
mapping_.insert(std::make_pair(name, index));
return index;
}
size_type size() const { return mapping_.size(); }
const_iterator begin() const { return mapping_.begin();}
const_iterator end() const { return mapping_.end();}
private:
map_type mapping_;
};
typedef context<std::map<std::string,std::size_t> > context_type;
typedef boost::shared_ptr<context_type> context_ptr;
class feature_impl : private boost::noncopyable
{
friend class feature_kv_iterator;
public:
typedef mapnik::value value_type;
typedef std::vector<value_type> cont_type;
typedef feature_kv_iterator iterator;
feature_impl(context_ptr const& ctx, int id)
: id_(id),
ctx_(ctx),
data_(ctx_->mapping_.size())
{}
inline int id() const { return id_;}
inline void set_id(int id) { id_ = id;}
template <typename T>
void put(context_type::key_type const& key, T const& val)
{
put(key,value(val));
}
template <typename T>
void put_new(context_type::key_type const& key, T const& val)
{
put_new(key,value(val));
}
void put(context_type::key_type const& key, value const& val)
{
context_type::map_type::const_iterator itr = ctx_->mapping_.find(key);
if (itr != ctx_->mapping_.end()
&& itr->second < data_.size())
{
data_[itr->second] = val;
}
else
throw std::out_of_range("Key doesn't exist");
} }
void set_id(int id)
void put_new(context_type::key_type const& key, value const& val)
{ {
id_ = id; context_type::map_type::const_iterator itr = ctx_->mapping_.find(key);
if (itr != ctx_->mapping_.end()
&& itr->second < data_.size())
{
data_[itr->second] = val;
}
else
{
cont_type::size_type index = ctx_->push(key);
if (index == data_.size())
data_.push_back(val);
}
}
bool has_key(context_type::key_type const& key) const
{
return (ctx_->mapping_.find(key) != ctx_->mapping_.end());
}
value_type const& get(context_type::key_type const& key) const
{
context_type::map_type::const_iterator itr = ctx_->mapping_.find(key);
if (itr != ctx_->mapping_.end()
&& itr->second < data_.size())
{
return data_[itr->second];
}
throw std::out_of_range("Key doesn't exist");
}
value_type const& get(std::size_t index) const
{
if (index < data_.size())
return data_[index];
throw std::out_of_range("Index out of range");
}
std::size_t size() const
{
return data_.size();
}
context_ptr context()
{
return ctx_;
}
boost::ptr_vector<geometry_type> const& paths() const
{
return geom_cont_;
} }
boost::ptr_vector<geometry_type> & paths() boost::ptr_vector<geometry_type> & paths()
@ -87,10 +192,9 @@ public:
return geom_cont_; return geom_cont_;
} }
void add_geometry(geometry_type * geom) void add_geometry(geometry_type * geom)
{ {
geom_cont_.push_back(geom); geom_cont_.push_back(geom);
} }
unsigned num_geometries() const unsigned num_geometries() const
@ -107,7 +211,7 @@ public:
{ {
return geom_cont_[index]; return geom_cont_[index];
} }
box2d<double> envelope() const box2d<double> envelope() const
{ {
box2d<double> result; box2d<double> result;
@ -125,75 +229,59 @@ public:
} }
} }
return result; return result;
} }
const raster_type& get_raster() const const raster_ptr& get_raster() const
{ {
return raster_; return raster_;
} }
void set_raster(raster_type const& raster)
{
raster_=raster;
}
std::map<std::string,value> const& props() const
{
return props_;
}
std::map<std::string,value>& props()
{
return props_;
}
iterator begin()
{
return props_.begin();
}
iterator end()
{
return props_.end();
}
const_iterator begin() const
{
return props_.begin();
}
const_iterator end() const
{
return props_.end();
}
const_iterator find(std::string const& key) const void set_raster(raster_ptr const& raster)
{ {
return props_.find(key); raster_ = raster;
}
feature_kv_iterator begin() const
{
return feature_kv_iterator(*this,true);
}
feature_kv_iterator end() const
{
return feature_kv_iterator(*this);
} }
std::string to_string() const std::string to_string() const
{ {
std::stringstream ss; std::stringstream ss;
ss << "feature " ss << "Feature (" << std::endl;
<< id_ << " (" << std::endl; context_type::map_type::const_iterator itr = ctx_->mapping_.begin();
for (std::map<std::string,value>::const_iterator itr=props_.begin(); context_type::map_type::const_iterator end = ctx_->mapping_.end();
itr != props_.end();++itr) for ( ;itr!=end; ++itr)
{ {
ss << " " << itr->first << ":" << itr->second << std::endl; ss << " " << itr->first << ":" << data_[itr->second] << std::endl;
} }
ss << ")" << std::endl; ss << ")" << std::endl;
return ss.str(); return ss.str();
} }
private:
int id_;
context_ptr ctx_;
boost::ptr_vector<geometry_type> geom_cont_;
raster_ptr raster_;
cont_type data_;
}; };
typedef feature<geometry_type,raster_ptr> Feature; inline std::ostream& operator<< (std::ostream & out,feature_impl const& f)
inline std::ostream& operator<< (std::ostream & out,Feature const& f)
{ {
out << f.to_string(); out << f.to_string();
return out; return out;
} }
typedef feature_impl Feature;
} }
#endif // MAPNIK_FEATURE_HPP #endif // MAPNIK_FEATURE_HPP

View file

@ -34,11 +34,11 @@ namespace mapnik
{ {
struct feature_factory struct feature_factory
{ {
static boost::shared_ptr<Feature> create (int fid) static boost::shared_ptr<Feature> create (context_ptr const& ctx, int fid)
{ {
//return boost::allocate_shared<Feature>(boost::pool_allocator<Feature>(),fid); //return boost::allocate_shared<Feature>(boost::pool_allocator<Feature>(),fid);
//return boost::allocate_shared<Feature>(boost::fast_pool_allocator<Feature>(),fid); //return boost::allocate_shared<Feature>(boost::fast_pool_allocator<Feature>(),fid);
return boost::make_shared<Feature>(fid); return boost::make_shared<Feature>(ctx,fid);
} }
}; };
} }

View file

@ -0,0 +1,63 @@
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2012 Artem Pavlenko
*
* 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
*
*****************************************************************************/
#ifndef MAPNIK_FEATURE_KV_ITERATOR_HPP
#define MAPNIK_FEATURE_KV_ITERATOR_HPP
#include <boost/tuple/tuple.hpp>
#include <boost/iterator/iterator_facade.hpp>
#include <map>
//#include <mapnik/feature.hpp>
#include <mapnik/value.hpp>
namespace mapnik {
class feature_impl;
class feature_kv_iterator :
public boost::iterator_facade<feature_kv_iterator,
boost::tuple<std::string , value> const,
boost::forward_traversal_tag>
{
public:
typedef boost::tuple<std::string,value> value_type;
feature_kv_iterator (feature_impl const& f, bool begin = false);
private:
friend class boost::iterator_core_access;
void increment();
bool equal( feature_kv_iterator const& other) const;
value_type const& dereference() const;
feature_impl const& f_;
std::map<std::string,std::size_t>::const_iterator itr_;
mutable value_type kv_;
};
}
#endif // MAPNIK_FEATURE_KV_ITERATOR_HPP

View file

@ -35,6 +35,7 @@
namespace mapnik { namespace mapnik {
enum eGeomType { enum eGeomType {
Unknown = 0,
Point = 1, Point = 1,
LineString = 2, LineString = 2,
Polygon = 3 Polygon = 3
@ -53,6 +54,11 @@ private:
mutable unsigned itr_; mutable unsigned itr_;
public: public:
geometry()
: type_(Unknown),
itr_(0)
{}
explicit geometry(eGeomType type) explicit geometry(eGeomType type)
: type_(type), : type_(type),
itr_(0) itr_(0)
@ -62,7 +68,12 @@ public:
{ {
return type_; return type_;
} }
void set_type(eGeomType type)
{
type_ = type;
}
container_type const& data() const container_type const& data() const
{ {
return cont_; return cont_;

View file

@ -74,7 +74,7 @@ typedef boost::uint8_t byte;
// read int16_t NDR (little endian) // read int16_t NDR (little endian)
inline boost::int16_t& read_int16_ndr(const char* data, boost::int16_t & val) inline void read_int16_ndr(const char* data, boost::int16_t & val)
{ {
#ifndef MAPNIK_BIG_ENDIAN #ifndef MAPNIK_BIG_ENDIAN
std::memcpy(&val,data,2); std::memcpy(&val,data,2);
@ -82,11 +82,10 @@ inline boost::int16_t& read_int16_ndr(const char* data, boost::int16_t & val)
val = (data[0]&0xff) | val = (data[0]&0xff) |
((data[1]&0xff)<<8); ((data[1]&0xff)<<8);
#endif #endif
return val;
} }
// read int32_t NDR (little endian) // read int32_t NDR (little endian)
inline boost::int32_t& read_int32_ndr(const char* data, boost::int32_t & val) inline void read_int32_ndr(const char* data, boost::int32_t & val)
{ {
#ifndef MAPNIK_BIG_ENDIAN #ifndef MAPNIK_BIG_ENDIAN
std::memcpy(&val,data,4); std::memcpy(&val,data,4);
@ -96,11 +95,10 @@ inline boost::int32_t& read_int32_ndr(const char* data, boost::int32_t & val)
((data[2]&0xff)<<16) | ((data[2]&0xff)<<16) |
((data[3]&0xff)<<24); ((data[3]&0xff)<<24);
#endif #endif
return val;
} }
// read double NDR (little endian) // read double NDR (little endian)
inline double& read_double_ndr(const char* data, double & val) inline void read_double_ndr(const char* data, double & val)
{ {
#ifndef MAPNIK_BIG_ENDIAN #ifndef MAPNIK_BIG_ENDIAN
std::memcpy(&val,&data[0],8); std::memcpy(&val,&data[0],8);
@ -115,33 +113,30 @@ inline double& read_double_ndr(const char* data, double & val)
((boost::int64_t)data[7] & 0xff) << 56 ; ((boost::int64_t)data[7] & 0xff) << 56 ;
std::memcpy(&val,&bits,8); std::memcpy(&val,&bits,8);
#endif #endif
return val;
} }
// read int16_t XDR (big endian) // read int16_t XDR (big endian)
inline boost::int16_t& read_int16_xdr(const char* data, boost::int16_t & val) inline void read_int16_xdr(const char* data, boost::int16_t & val)
{ {
#ifndef MAPNIK_BIG_ENDIAN #ifndef MAPNIK_BIG_ENDIAN
val = (data[3]&0xff) | ((data[2]&0xff)<<8); val = (data[3]&0xff) | ((data[2]&0xff)<<8);
#else #else
std::memcpy(&val,data,2); std::memcpy(&val,data,2);
#endif #endif
return val;
} }
// read int32_t XDR (big endian) // read int32_t XDR (big endian)
inline boost::int32_t& read_int32_xdr(const char* data, boost::int32_t & val) inline void read_int32_xdr(const char* data, boost::int32_t & val)
{ {
#ifndef MAPNIK_BIG_ENDIAN #ifndef MAPNIK_BIG_ENDIAN
val = (data[3]&0xff) | ((data[2]&0xff)<<8) | ((data[1]&0xff)<<16) | ((data[0]&0xff)<<24); val = (data[3]&0xff) | ((data[2]&0xff)<<8) | ((data[1]&0xff)<<16) | ((data[0]&0xff)<<24);
#else #else
std::memcpy(&val,data,4); std::memcpy(&val,data,4);
#endif #endif
return val;
} }
// read double XDR (big endian) // read double XDR (big endian)
inline double& read_double_xdr(const char* data, double & val) inline void read_double_xdr(const char* data, double & val)
{ {
#ifndef MAPNIK_BIG_ENDIAN #ifndef MAPNIK_BIG_ENDIAN
boost::int64_t bits = ((boost::int64_t)data[7] & 0xff) | boost::int64_t bits = ((boost::int64_t)data[7] & 0xff) |
@ -156,7 +151,6 @@ inline double& read_double_xdr(const char* data, double & val)
#else #else
std::memcpy(&val,&data[0],8); std::memcpy(&val,&data[0],8);
#endif #endif
return val;
} }
#ifdef _WINDOWS #ifdef _WINDOWS

View file

@ -110,8 +110,10 @@ public:
inline void add_feature(mapnik::Feature const& feature) inline void add_feature(mapnik::Feature const& feature)
{ {
// copies feature props // copies feature props
// FIXME
/*
std::map<std::string,value> fprops = feature.props(); std::map<std::string,value> fprops = feature.props();
lookup_type lookup_value; lookup_type lookup_value;
if (key_ == id_name_) if (key_ == id_name_)
@ -153,6 +155,7 @@ public:
{ {
std::clog << "### Warning: key '" << key_ << "' was blank for " << feature << "\n"; std::clog << "### Warning: key '" << key_ << "' was blank for " << feature << "\n";
} }
*/
} }
inline void add_property_name(std::string const& name) inline void add_property_name(std::string const& name)

View file

@ -52,19 +52,6 @@ private:
mapnik::layer_descriptor desc_; mapnik::layer_descriptor desc_;
}; };
// This class implements a simple way of displaying point-based data
// TODO -- possible redesign, move into separate file
//
class MAPNIK_DECL point_datasource : public memory_datasource {
public:
point_datasource() :
feature_id_(1) {}
void add_point(double x, double y, const char* key, const char* value);
private:
int feature_id_;
};
} }
#endif // MAPNIK_MEMORY_DATASOURCE_HPP #endif // MAPNIK_MEMORY_DATASOURCE_HPP

View file

@ -61,6 +61,11 @@ public:
{ {
return m_.end(); return m_.end();
} }
UnicodeString const& get(std::string const& key) const
{
return (*this)[key];
}
private: private:
property_map m_; property_map m_;
UnicodeString not_found_; UnicodeString not_found_;

View file

@ -29,61 +29,22 @@
#include <mapnik/filter_factory.hpp> #include <mapnik/filter_factory.hpp>
#include <mapnik/enumeration.hpp> #include <mapnik/enumeration.hpp>
#include <mapnik/gamma_method.hpp> #include <mapnik/gamma_method.hpp>
// stl
#include <string>
namespace mapnik namespace mapnik
{ {
struct MAPNIK_DECL polygon_symbolizer : public symbolizer_base struct MAPNIK_DECL polygon_symbolizer : public symbolizer_base
{ {
polygon_symbolizer() polygon_symbolizer();
: symbolizer_base(), polygon_symbolizer(color const& fill);
fill_(color(128,128,128)), color const& get_fill() const;
opacity_(1.0), void set_fill(color const& fill);
gamma_(1.0), void set_opacity(double opacity);
gamma_method_(GAMMA_POWER) {} double get_opacity() const;
void set_gamma(double gamma);
polygon_symbolizer(color const& fill) double get_gamma() const;
: symbolizer_base(), void set_gamma_method(gamma_method_e gamma_method);
fill_(fill), gamma_method_e get_gamma_method() const;
opacity_(1.0),
gamma_(1.0),
gamma_method_(GAMMA_POWER) {}
color const& get_fill() const
{
return fill_;
}
void set_fill(color const& fill)
{
fill_ = fill;
}
void set_opacity(double opacity)
{
opacity_ = opacity;
}
double get_opacity() const
{
return opacity_;
}
void set_gamma(double gamma)
{
gamma_ = gamma;
}
double get_gamma() const
{
return gamma_;
}
void set_gamma_method(gamma_method_e gamma_method)
{
gamma_method_ = gamma_method;
}
gamma_method_e get_gamma_method() const
{
return gamma_method_;
}
private: private:
color fill_; color fill_;
@ -91,50 +52,7 @@ private:
double gamma_; double gamma_;
gamma_method_e gamma_method_; gamma_method_e gamma_method_;
}; };
struct MAPNIK_DECL building_symbolizer : public symbolizer_base
{
explicit building_symbolizer()
: symbolizer_base(),
fill_(color(128,128,128)),
opacity_(1.0)
{}
building_symbolizer(color const& fill, expression_ptr height)
: symbolizer_base(),
fill_(fill),
height_(height),
opacity_(1.0) {}
color const& get_fill() const
{
return fill_;
}
void set_fill(color const& fill)
{
fill_ = fill;
}
expression_ptr height() const
{
return height_;
}
void set_height(expression_ptr height)
{
height_=height;
}
void set_opacity(double opacity)
{
opacity_ = opacity;
}
double get_opacity() const
{
return opacity_;
}
private:
color fill_;
expression_ptr height_;
double opacity_;
};
} }
#endif // MAPNIK_POLYGON_SYMBOLIZER_HPP #endif // MAPNIK_POLYGON_SYMBOLIZER_HPP

View file

@ -74,10 +74,13 @@ public:
//! \param[in] value The stop value //! \param[in] value The stop value
//! \param[in] mode The stop mode //! \param[in] mode The stop mode
//! \param[in] color The stop color //! \param[in] color The stop color
colorizer_stop(const float value = 0, const colorizer_mode mode = COLORIZER_INHERIT, const color& _color = color(0,0,0,0), const std::string& label=""); colorizer_stop(float value = 0,
colorizer_mode mode = COLORIZER_INHERIT,
color const& _color = color(0,0,0,0),
std::string const& label="");
//! \brief Copy constructor //! \brief Copy constructor
colorizer_stop(const colorizer_stop& stop); colorizer_stop(colorizer_stop const& stop);
//! \brief Destructor //! \brief Destructor
~colorizer_stop(); ~colorizer_stop();
@ -85,39 +88,39 @@ public:
//! \brief Set the stop value //! \brief Set the stop value
//! \param[in] value The stop value //! \param[in] value The stop value
inline void set_value(const float value) { value_ = value; }; inline void set_value(float value) { value_ = value; };
//! \brief Get the stop value //! \brief Get the stop value
//! \return The stop value //! \return The stop value
inline float get_value(void) const {return value_; }; inline float get_value() const {return value_; };
//! \brief Set the stop mode //! \brief Set the stop mode
//! \param[in] mode The stop mode //! \param[in] mode The stop mode
inline void set_mode(const colorizer_mode mode) { mode_ = mode; }; inline void set_mode(colorizer_mode mode) { mode_ = mode; };
inline void set_mode_enum(const colorizer_mode_enum mode) { set_mode(mode); }; inline void set_mode_enum(colorizer_mode_enum mode) { set_mode(mode); };
//! \brief Get the stop mode //! \brief Get the stop mode
//! \return The stop mode //! \return The stop mode
inline colorizer_mode get_mode(void) const { return mode_; }; inline colorizer_mode get_mode() const { return mode_; };
inline colorizer_mode_enum get_mode_enum(void) const { return get_mode(); }; inline colorizer_mode_enum get_mode_enum() const { return get_mode(); };
//! \brief set the stop color //! \brief set the stop color
//! \param[in] the stop color //! \param[in] the stop color
inline void set_color(const color& _color) { color_ = _color; }; inline void set_color(color const& _color) { color_ = _color; };
//! \brief get the stop color //! \brief get the stop color
//! \return The stop color //! \return The stop color
inline const color& get_color(void) const {return color_; }; inline color const& get_color() const {return color_; };
//! \brief set the stop label //! \brief set the stop label
//! \param[in] the stop label //! \param[in] the stop label
inline void set_label(const std::string& label) { label_ = label; }; inline void set_label(std::string const& label) { label_ = label; };
//! \brief get the stop label //! \brief get the stop label
//! \return The stop label //! \return The stop label
inline const std::string& get_label(void) const {return label_; }; inline std::string const& get_label() const {return label_; };
//! \brief Equality operator //! \brief Equality operator
@ -140,10 +143,11 @@ typedef std::vector<colorizer_stop> colorizer_stops;
//! \brief Class representing the raster colorizer //! \brief Class representing the raster colorizer
class MAPNIK_DECL raster_colorizer { class MAPNIK_DECL raster_colorizer
{
public: public:
//! \brief Constructor //! \brief Constructor
raster_colorizer(colorizer_mode mode = COLORIZER_LINEAR, const color& _color = color(0,0,0,0)); raster_colorizer(colorizer_mode mode = COLORIZER_LINEAR, color const& _color = color(0,0,0,0));
//! \brief Destructor //! \brief Destructor
~raster_colorizer(); ~raster_colorizer();
@ -153,28 +157,33 @@ public:
//! //!
//! This can not be set as INHERIT, if you do, LINEAR will be used instead. //! This can not be set as INHERIT, if you do, LINEAR will be used instead.
//! \param[in] mode The default mode //! \param[in] mode The default mode
void set_default_mode(const colorizer_mode mode) { default_mode_ = (mode == COLORIZER_INHERIT) ? COLORIZER_LINEAR:(colorizer_mode_enum)mode; };
void set_default_mode_enum(const colorizer_mode_enum mode) { set_default_mode(mode); }; void set_default_mode(colorizer_mode mode)
{
default_mode_ = (mode == COLORIZER_INHERIT) ? COLORIZER_LINEAR:(colorizer_mode_enum)mode;
};
void set_default_mode_enum(colorizer_mode_enum mode) { set_default_mode(mode); };
//! \brief Get the default mode //! \brief Get the default mode
//! \return The default mode //! \return The default mode
colorizer_mode get_default_mode(void) const {return default_mode_; }; colorizer_mode get_default_mode() const {return default_mode_; };
colorizer_mode_enum get_default_mode_enum(void) const {return get_default_mode(); }; colorizer_mode_enum get_default_mode_enum() const {return get_default_mode(); };
//! \brief Set the default color //! \brief Set the default color
//! \param[in] color The default color //! \param[in] color The default color
void set_default_color(const color& color) { default_color_ = color; }; void set_default_color(color const& color) { default_color_ = color; };
//! \brief Get the default color //! \brief Get the default color
//! \return The default color //! \return The default color
const color& get_default_color(void) const {return default_color_; }; color const& get_default_color() const {return default_color_; };
//! \brief Add a stop //! \brief Add a stop
//! //!
//! \param[in] stop The stop to add //! \param[in] stop The stop to add
//! \return True if added, false if error //! \return True if added, false if error
bool add_stop(const colorizer_stop & stop); bool add_stop(colorizer_stop const& stop);
//! \brief Set the list of stops //! \brief Set the list of stops
//! \param[in] stops The list of stops //! \param[in] stops The list of stops
@ -182,16 +191,16 @@ public:
//! \brief Get the list of stops //! \brief Get the list of stops
//! \return The list of stops //! \return The list of stops
const colorizer_stops& get_stops(void) const {return stops_; }; colorizer_stops const& get_stops() const {return stops_; };
//! \brief Colorize a raster //! \brief Colorize a raster
//! //!
//! \param[in, out] raster A raster stored in float32 single channel format, which gets colorized in place. //! \param[in, out] raster A raster stored in float32 single channel format, which gets colorized in place.
//! \param[in] properties belonging to the feature, used to find 'NODATA' information if available //! \param[in] feature used to find 'NODATA' information if available
void colorize(raster_ptr const& raster,const std::map<std::string,value> &Props) const; void colorize(raster_ptr const& raster, Feature const& f) const;
//! \brief Perform the translation of input to output //! \brief Perform the translation of input to output
//! //!
//! \param[in] value Input value //! \param[in] value Input value
@ -205,7 +214,7 @@ public:
//! \brief Get the epsilon value for exact mode //! \brief Get the epsilon value for exact mode
//! \return The epsilon value //! \return The epsilon value
inline float get_epsilon(void) const { return epsilon_; }; inline float get_epsilon() const { return epsilon_; };
private: private:
colorizer_stops stops_; //!< The vector of stops colorizer_stops stops_; //!< The vector of stops

View file

@ -23,7 +23,8 @@
#ifndef MAPNIK_RULE_HPP #ifndef MAPNIK_RULE_HPP
#define MAPNIK_RULE_HPP #define MAPNIK_RULE_HPP
// mapnik // mapni
#include <mapnik/building_symbolizer.hpp>
#include <mapnik/line_symbolizer.hpp> #include <mapnik/line_symbolizer.hpp>
#include <mapnik/line_pattern_symbolizer.hpp> #include <mapnik/line_pattern_symbolizer.hpp>
#include <mapnik/polygon_symbolizer.hpp> #include <mapnik/polygon_symbolizer.hpp>

View file

@ -167,6 +167,11 @@ public:
*/ */
virtual bool next()=0; virtual bool next()=0;
virtual ~text_placement_info() {} virtual ~text_placement_info() {}
/** Initialize values used by placement finder. Only has to be done once
* per object.
*/
void init(double scale_factor_,
unsigned w = 0, unsigned h = 0, bool has_dimensions_ = false);
/** Properties actually used by placement finder and renderer. Values in /** Properties actually used by placement finder and renderer. Values in
* here are modified each time next() is called. */ * here are modified each time next() is called. */

View file

@ -389,7 +389,14 @@ void csv_datasource::parse_csv(T& stream,
int feature_count(1); int feature_count(1);
bool extent_initialized = false; bool extent_initialized = false;
unsigned num_headers = headers_.size(); std::size_t num_headers = headers_.size();
ctx_ = boost::make_shared<mapnik::context_type>();
for (std::size_t i = 0; i < headers_.size(); ++i)
{
ctx_->push(headers_[i]);
}
mapnik::transcoder tr(desc_.get_encoding()); mapnik::transcoder tr(desc_.get_encoding());
while (std::getline(stream,csv_line,newline)) while (std::getline(stream,csv_line,newline))
@ -435,7 +442,7 @@ void csv_datasource::parse_csv(T& stream,
} }
} }
mapnik::feature_ptr feature(mapnik::feature_factory::create(feature_count)); mapnik::feature_ptr feature(mapnik::feature_factory::create(ctx_,feature_count));
double x(0); double x(0);
double y(0); double y(0);
bool parsed_x = false; bool parsed_x = false;
@ -451,9 +458,7 @@ void csv_datasource::parse_csv(T& stream,
std::string value; std::string value;
if (beg == tok.end()) if (beg == tok.end())
{ {
UnicodeString ustr = tr.transcode(value.c_str()); feature->put(fld_name,tr.transcode(value.c_str()));
boost::put(*feature,fld_name,ustr);
// boost::put(*feature,fld_name,mapnik::value_null());
null_geom = true; null_geom = true;
if (feature_count == 1) if (feature_count == 1)
{ {
@ -633,8 +638,7 @@ void csv_datasource::parse_csv(T& stream,
(value_length > 20) || (value_length > 20) ||
(value_length > 1 && !has_dot && value[0] == '0')) (value_length > 1 && !has_dot && value[0] == '0'))
{ {
UnicodeString ustr = tr.transcode(value.c_str()); feature->put(fld_name,tr.transcode(value.c_str()));
boost::put(*feature,fld_name,ustr);
if (feature_count == 1) if (feature_count == 1)
{ {
desc_.add_descriptor(mapnik::attribute_descriptor(fld_name,mapnik::String)); desc_.add_descriptor(mapnik::attribute_descriptor(fld_name,mapnik::String));
@ -650,7 +654,7 @@ void csv_datasource::parse_csv(T& stream,
{ {
if (has_dot) if (has_dot)
{ {
boost::put(*feature,fld_name,float_val); feature->put(fld_name,float_val);
if (feature_count == 1) if (feature_count == 1)
{ {
desc_.add_descriptor( desc_.add_descriptor(
@ -660,8 +664,7 @@ void csv_datasource::parse_csv(T& stream,
} }
else else
{ {
int val = static_cast<int>(float_val); feature->put(fld_name,static_cast<int>(float_val));
boost::put(*feature,fld_name,val);
if (feature_count == 1) if (feature_count == 1)
{ {
desc_.add_descriptor( desc_.add_descriptor(
@ -673,8 +676,7 @@ void csv_datasource::parse_csv(T& stream,
else else
{ {
// fallback to normal string // fallback to normal string
UnicodeString ustr = tr.transcode(value.c_str()); feature->put(fld_name,tr.transcode(value.c_str()));
boost::put(*feature,fld_name,ustr);
if (feature_count == 1) if (feature_count == 1)
{ {
desc_.add_descriptor( desc_.add_descriptor(
@ -686,8 +688,7 @@ void csv_datasource::parse_csv(T& stream,
else else
{ {
// fallback to normal string // fallback to normal string
UnicodeString ustr = tr.transcode(value.c_str()); feature->put(fld_name,tr.transcode(value.c_str()));
boost::put(*feature,fld_name,ustr);
if (feature_count == 1) if (feature_count == 1)
{ {
desc_.add_descriptor( desc_.add_descriptor(
@ -889,7 +890,7 @@ mapnik::featureset_ptr csv_datasource::features(mapnik::query const& q) const
while (pos != attribute_names.end()) while (pos != attribute_names.end())
{ {
bool found_name = false; bool found_name = false;
for (int i = 0; i < headers_.size(); ++i) for (std::size_t i = 0; i < headers_.size(); ++i)
{ {
if (headers_[i] == *pos) if (headers_[i] == *pos)
{ {

View file

@ -41,6 +41,7 @@ private:
mutable bool strict_; mutable bool strict_;
mutable bool quiet_; mutable bool quiet_;
mutable double filesize_max_; mutable double filesize_max_;
mutable mapnik::context_ptr ctx_;
}; };

View file

@ -55,6 +55,7 @@ gdal_featureset::gdal_featureset(GDALDataset& dataset,
double dy, double dy,
double filter_factor) double filter_factor)
: dataset_(dataset), : dataset_(dataset),
ctx_(boost::make_shared<mapnik::context_type>()),
band_(band), band_(band),
gquery_(q), gquery_(q),
raster_extent_(extent), raster_extent_(extent),
@ -66,6 +67,8 @@ gdal_featureset::gdal_featureset(GDALDataset& dataset,
filter_factor_(filter_factor), filter_factor_(filter_factor),
first_(true) first_(true)
{ {
ctx_->push("value");
ctx_->push("NODATA");
} }
gdal_featureset::~gdal_featureset() gdal_featureset::~gdal_featureset()
@ -106,14 +109,14 @@ feature_ptr gdal_featureset::next()
feature_ptr gdal_featureset::get_feature(mapnik::query const& q) feature_ptr gdal_featureset::get_feature(mapnik::query const& q)
{ {
feature_ptr feature(feature_factory::create(1)); feature_ptr feature = feature_factory::create(ctx_,1);
GDALRasterBand * red = 0; GDALRasterBand * red = 0;
GDALRasterBand * green = 0; GDALRasterBand * green = 0;
GDALRasterBand * blue = 0; GDALRasterBand * blue = 0;
GDALRasterBand * alpha = 0; GDALRasterBand * alpha = 0;
GDALRasterBand * grey = 0; GDALRasterBand * grey = 0;
/* /*
double tr[6]; double tr[6];
dataset_.GetGeoTransform(tr); dataset_.GetGeoTransform(tr);
@ -244,10 +247,10 @@ feature_ptr gdal_featureset::get_feature(mapnik::query const& q)
imageData, image.width(), image.height(), imageData, image.width(), image.height(),
GDT_Float32, 0, 0); GDT_Float32, 0, 0);
feature->set_raster(mapnik::raster_ptr(boost::make_shared<mapnik::raster>(intersect,image))); feature->set_raster(boost::make_shared<mapnik::raster>(intersect,image));
if (hasNoData) if (hasNoData)
{ {
feature->props()["NODATA"] = nodata; feature->put("NODATA",nodata);
} }
} }
else // working with all bands else // working with all bands
@ -487,12 +490,12 @@ feature_ptr gdal_featureset::get_feature_at_point(mapnik::coord2d const& pt)
if (! hasNoData || value != nodata) if (! hasNoData || value != nodata)
{ {
// construct feature // construct feature
feature_ptr feature(new Feature(1)); feature_ptr feature = feature_factory::create(ctx_,1);
geometry_type * point = new geometry_type(mapnik::Point); geometry_type * point = new geometry_type(mapnik::Point);
point->move_to(pt.x, pt.y); point->move_to(pt.x, pt.y);
feature->add_geometry(point); feature->add_geometry(point);
(*feature)["value"] = value; feature->put("value",value);
return feature; return feature;
} }
} }

View file

@ -24,6 +24,7 @@
#define GDAL_FEATURESET_HPP #define GDAL_FEATURESET_HPP
// mapnik // mapnik
#include <mapnik/feature.hpp>
#include <mapnik/datasource.hpp> #include <mapnik/datasource.hpp>
// boost // boost
@ -56,6 +57,7 @@ private:
void get_overview_meta(GDALRasterBand * band); void get_overview_meta(GDALRasterBand * band);
#endif #endif
GDALDataset & dataset_; GDALDataset & dataset_;
mapnik::context_ptr ctx_;
int band_; int band_;
gdal_query gquery_; gdal_query gquery_;
mapnik::box2d<double> raster_extent_; mapnik::box2d<double> raster_extent_;

View file

@ -60,8 +60,10 @@ geos_featureset::geos_featureset(GEOSGeometry* geometry,
identifier_(identifier), identifier_(identifier),
field_(field), field_(field),
field_name_(field_name), field_name_(field_name),
already_rendered_(false) already_rendered_(false),
ctx_(boost::make_shared<mapnik::context_type>())
{ {
ctx_->push(field_name);
} }
geos_featureset::~geos_featureset() geos_featureset::~geos_featureset()
@ -114,14 +116,14 @@ feature_ptr geos_featureset::next()
geos_wkb_ptr wkb(geometry_); geos_wkb_ptr wkb(geometry_);
if (wkb.is_valid()) if (wkb.is_valid())
{ {
feature_ptr feature(feature_factory::create(identifier_)); feature_ptr feature(feature_factory::create(ctx_,identifier_));
geometry_utils::from_wkb(feature->paths(), geometry_utils::from_wkb(feature->paths(),
wkb.data(), wkb.data(),
wkb.size()); wkb.size());
if (field_ != "") if (field_ != "")
{ {
boost::put(*feature, field_name_, tr_->transcode(field_.c_str())); feature->put(field_name_, tr_->transcode(field_.c_str()));
} }
return feature; return feature;

View file

@ -56,6 +56,7 @@ private:
std::string field_; std::string field_;
std::string field_name_; std::string field_name_;
bool already_rendered_; bool already_rendered_;
mapnik::context_ptr ctx_;
geos_featureset(const geos_featureset&); geos_featureset(const geos_featureset&);
const geos_featureset& operator=(const geos_featureset&); const geos_featureset& operator=(const geos_featureset&);

View file

@ -40,15 +40,17 @@ using mapnik::geometry_utils;
using mapnik::transcoder; using mapnik::transcoder;
using mapnik::feature_factory; using mapnik::feature_factory;
kismet_featureset::kismet_featureset(const std::list<kismet_network_data>& knd_list, kismet_featureset::kismet_featureset(std::list<kismet_network_data> const& knd_list,
std::string const& srs, std::string const& srs,
std::string const& encoding) std::string const& encoding)
: knd_list_(knd_list), : knd_list_(knd_list),
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
feature_id_(1), feature_id_(1),
knd_list_it(knd_list_.begin()), knd_list_it(knd_list_.begin()),
source_(srs) source_(srs),
ctx_(boost::make_shared<mapnik::context_type>())
{ {
ctx_->push("internet_access");
} }
kismet_featureset::~kismet_featureset() kismet_featureset::~kismet_featureset()
@ -76,14 +78,14 @@ feature_ptr kismet_featureset::next()
value = "wlan_crypted"; value = "wlan_crypted";
} }
feature_ptr feature(feature_factory::create(feature_id_)); feature_ptr feature(feature_factory::create(ctx_,feature_id_));
++feature_id_; ++feature_id_;
geometry_type* pt = new geometry_type(mapnik::Point); geometry_type* pt = new geometry_type(mapnik::Point);
pt->move_to(knd.bestlon(), knd.bestlat()); pt->move_to(knd.bestlon(), knd.bestlat());
feature->add_geometry(pt); feature->add_geometry(pt);
boost::put(*feature, key, tr_->transcode(value.c_str())); feature->put(key, tr_->transcode(value.c_str()));
++knd_list_it; ++knd_list_it;

View file

@ -40,19 +40,20 @@
class kismet_featureset : public mapnik::Featureset class kismet_featureset : public mapnik::Featureset
{ {
public: public:
kismet_featureset(const std::list<kismet_network_data>& knd_list, kismet_featureset(std::list<kismet_network_data> const& knd_list,
std::string const& srs, std::string const& srs,
std::string const& encoding); std::string const& encoding);
virtual ~kismet_featureset(); virtual ~kismet_featureset();
mapnik::feature_ptr next(); mapnik::feature_ptr next();
private: private:
const std::list<kismet_network_data>& knd_list_; std::list<kismet_network_data> const& knd_list_;
boost::scoped_ptr<mapnik::transcoder> tr_; boost::scoped_ptr<mapnik::transcoder> tr_;
mapnik::wkbFormat format_; mapnik::wkbFormat format_;
int feature_id_; int feature_id_;
std::list<kismet_network_data>::const_iterator knd_list_it; std::list<kismet_network_data>::const_iterator knd_list_it;
mapnik::projection source_; mapnik::projection source_;
mapnik::context_ptr ctx_;
}; };
#endif // KISMET_FEATURESET_HPP #endif // KISMET_FEATURESET_HPP

View file

@ -500,10 +500,11 @@ featureset_ptr occi_datasource::features(query const& q) const
std::set<std::string> const& props = q.property_names(); std::set<std::string> const& props = q.property_names();
std::set<std::string>::const_iterator pos = props.begin(); std::set<std::string>::const_iterator pos = props.begin();
std::set<std::string>::const_iterator end = props.end(); std::set<std::string>::const_iterator end = props.end();
while (pos != end) mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
for ( ;pos != end;++pos)
{ {
s << ", " << *pos; s << ", " << *pos;
++pos; ctx->push(*pos);
} }
s << " FROM "; s << " FROM ";
@ -565,11 +566,11 @@ featureset_ptr occi_datasource::features(query const& q) const
return boost::make_shared<occi_featureset>(pool_, return boost::make_shared<occi_featureset>(pool_,
conn_, conn_,
ctx,
s.str(), s.str(),
desc_.get_encoding(), desc_.get_encoding(),
use_connection_pool_, use_connection_pool_,
row_prefetch_, row_prefetch_);
props.size());
} }
featureset_ptr occi_datasource::features_at_point(coord2d const& pt) const featureset_ptr occi_datasource::features_at_point(coord2d const& pt) const
@ -580,12 +581,12 @@ featureset_ptr occi_datasource::features_at_point(coord2d const& pt) const
s << "SELECT " << geometry_field_; s << "SELECT " << geometry_field_;
std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin(); std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin();
std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end(); std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end();
unsigned size = 0; mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
while (itr != end) while (itr != end)
{ {
s << ", " << itr->get_name(); s << ", " << itr->get_name();
ctx->push(itr->get_name());
++itr; ++itr;
++size;
} }
s << " FROM "; s << " FROM ";
@ -646,9 +647,9 @@ featureset_ptr occi_datasource::features_at_point(coord2d const& pt) const
return boost::make_shared<occi_featureset>(pool_, return boost::make_shared<occi_featureset>(pool_,
conn_, conn_,
ctx,
s.str(), s.str(),
desc_.get_encoding(), desc_.get_encoding(),
use_connection_pool_, use_connection_pool_,
row_prefetch_, row_prefetch_);
size);
} }

View file

@ -57,14 +57,14 @@ using oracle::occi::Blob;
occi_featureset::occi_featureset(StatelessConnectionPool* pool, occi_featureset::occi_featureset(StatelessConnectionPool* pool,
Connection* conn, Connection* conn,
mapnik::context_ptr const& ctx,
std::string const& sqlstring, std::string const& sqlstring,
std::string const& encoding, std::string const& encoding,
bool use_connection_pool, bool use_connection_pool,
unsigned prefetch_rows, unsigned prefetch_rows)
unsigned num_attrs)
: tr_(new transcoder(encoding)), : tr_(new transcoder(encoding)),
num_attrs_(num_attrs), feature_id_(1),
feature_id_(1) ctx_(ctx)
{ {
if (use_connection_pool) if (use_connection_pool)
{ {
@ -93,7 +93,7 @@ feature_ptr occi_featureset::next()
{ {
if (rs_ && rs_->next()) if (rs_ && rs_->next())
{ {
feature_ptr feature(feature_factory::create(feature_id_)); feature_ptr feature(feature_factory::create(ctx_,feature_id_));
++feature_id_; ++feature_id_;
boost::scoped_ptr<SDOGeometry> geom(dynamic_cast<SDOGeometry*>(rs_->getObject(1))); boost::scoped_ptr<SDOGeometry> geom(dynamic_cast<SDOGeometry*>(rs_->getObject(1)));
@ -125,7 +125,7 @@ feature_ptr occi_featureset::next()
case oracle::occi::OCCIINT: case oracle::occi::OCCIINT:
case oracle::occi::OCCIUNSIGNED_INT: case oracle::occi::OCCIUNSIGNED_INT:
case oracle::occi::OCCIROWID: case oracle::occi::OCCIROWID:
boost::put(*feature,fld_name,rs_->getInt (i + 1)); feature->put(fld_name,rs_->getInt (i + 1));
break; break;
case oracle::occi::OCCIFLOAT: case oracle::occi::OCCIFLOAT:
case oracle::occi::OCCIBFLOAT: case oracle::occi::OCCIBFLOAT:
@ -133,7 +133,7 @@ feature_ptr occi_featureset::next()
case oracle::occi::OCCIBDOUBLE: case oracle::occi::OCCIBDOUBLE:
case oracle::occi::OCCINUMBER: case oracle::occi::OCCINUMBER:
case oracle::occi::OCCI_SQLT_NUM: case oracle::occi::OCCI_SQLT_NUM:
boost::put(*feature,fld_name,rs_->getDouble (i + 1)); feature->put(fld_name,rs_->getDouble (i + 1));
break; break;
case oracle::occi::OCCICHAR: case oracle::occi::OCCICHAR:
case oracle::occi::OCCISTRING: case oracle::occi::OCCISTRING:
@ -147,7 +147,7 @@ feature_ptr occi_featureset::next()
case oracle::occi::OCCI_SQLT_VNU: case oracle::occi::OCCI_SQLT_VNU:
case oracle::occi::OCCI_SQLT_VBI: case oracle::occi::OCCI_SQLT_VBI:
case oracle::occi::OCCI_SQLT_VST: case oracle::occi::OCCI_SQLT_VST:
boost::put(*feature,fld_name,(UnicodeString) tr_->transcode (rs_->getString (i + 1).c_str())); feature->put(fld_name,(UnicodeString) tr_->transcode (rs_->getString (i + 1).c_str()));
break; break;
case oracle::occi::OCCIDATE: case oracle::occi::OCCIDATE:
case oracle::occi::OCCITIMESTAMP: case oracle::occi::OCCITIMESTAMP:

View file

@ -40,11 +40,11 @@ class occi_featureset : public mapnik::Featureset
public: public:
occi_featureset(oracle::occi::StatelessConnectionPool* pool, occi_featureset(oracle::occi::StatelessConnectionPool* pool,
oracle::occi::Connection* conn, oracle::occi::Connection* conn,
mapnik::context_ptr const& ctx,
std::string const& sqlstring, std::string const& sqlstring,
std::string const& encoding, std::string const& encoding,
bool use_connection_pool, bool use_connection_pool,
unsigned prefetch_rows, unsigned prefetch_rows);
unsigned num_attrs);
virtual ~occi_featureset(); virtual ~occi_featureset();
mapnik::feature_ptr next(); mapnik::feature_ptr next();
@ -68,8 +68,8 @@ private:
oracle::occi::ResultSet* rs_; oracle::occi::ResultSet* rs_;
boost::scoped_ptr<mapnik::transcoder> tr_; boost::scoped_ptr<mapnik::transcoder> tr_;
const char* fidcolumn_; const char* fidcolumn_;
unsigned num_attrs_;
mutable int feature_id_; mutable int feature_id_;
mapnik::context_ptr ctx_;
}; };
#endif // OCCI_FEATURESET_HPP #endif // OCCI_FEATURESET_HPP

View file

@ -38,6 +38,7 @@
// boost // boost
#include <boost/algorithm/string.hpp> #include <boost/algorithm/string.hpp>
#include <boost/make_shared.hpp>
using mapnik::datasource; using mapnik::datasource;
using mapnik::parameters; using mapnik::parameters;
@ -428,56 +429,70 @@ layer_descriptor ogr_datasource::get_descriptor() const
return desc_; return desc_;
} }
void validate_attribute_names(query const& q, std::vector<attribute_descriptor> const& names )
{
std::set<std::string> const& attribute_names = q.property_names();
std::set<std::string>::const_iterator pos = attribute_names.begin();
std::set<std::string>::const_iterator end_names = attribute_names.end();
for ( ;pos != end_names; ++pos)
{
bool found_name = false;
std::vector<attribute_descriptor>::const_iterator itr = names.begin();
std::vector<attribute_descriptor>::const_iterator end = names.end();
for (; itr!=end; ++itr)
{
if (itr->get_name() == *pos)
{
found_name = true;
break;
}
}
if (! found_name)
{
std::ostringstream s;
std::vector<attribute_descriptor>::const_iterator itr = names.begin();
std::vector<attribute_descriptor>::const_iterator end = names.end();
s << "OGR Plugin: no attribute '" << *pos << "'. Valid attributes are: ";
for ( ;itr!=end;++itr)
{
s << itr->get_name() << std::endl;
}
throw mapnik::datasource_exception(s.str());
}
}
}
featureset_ptr ogr_datasource::features(query const& q) const featureset_ptr ogr_datasource::features(query const& q) const
{ {
if (! is_bound_) bind(); if (! is_bound_) bind();
if (dataset_ && layer_.is_valid()) if (dataset_ && layer_.is_valid())
{ {
// First we validate query fields: https://github.com/mapnik/mapnik/issues/792 // First we validate query fields: https://github.com/mapnik/mapnik/issues/792
std::vector<attribute_descriptor> const& desc_ar = desc_.get_descriptors(); std::vector<attribute_descriptor> const& desc_ar = desc_.get_descriptors();
std::vector<attribute_descriptor>::const_iterator it = desc_ar.begin(); // feature context (schema)
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
std::vector<attribute_descriptor>::const_iterator itr = desc_ar.begin();
std::vector<attribute_descriptor>::const_iterator end = desc_ar.end(); std::vector<attribute_descriptor>::const_iterator end = desc_ar.end();
std::vector<std::string> known_fields;
for (; it != end; ++it) for (; itr!=end; ++itr) ctx->push(itr->get_name()); // TODO only push query attributes
{
known_fields.push_back(it->get_name()); validate_attribute_names(q, desc_ar);
}
const std::set<std::string>& attribute_names = q.property_names();
std::set<std::string>::const_iterator pos = attribute_names.begin();
while (pos != attribute_names.end())
{
bool found_name = false;
for (int i = 0; i < known_fields.size(); ++i)
{
if (known_fields[i] == *pos)
{
found_name = true;
break;
}
}
if (! found_name)
{
std::ostringstream s;
s << "OGR Plugin: no attribute '" << *pos << "'. Valid attributes are: "
<< boost::algorithm::join(known_fields, ",") << ".";
throw mapnik::datasource_exception(s.str());
}
++pos;
}
OGRLayer* layer = layer_.layer(); OGRLayer* layer = layer_.layer();
if (indexed_) if (indexed_)
{ {
filter_in_box filter(q.get_bbox()); filter_in_box filter(q.get_bbox());
return featureset_ptr(new ogr_index_featureset<filter_in_box>(*dataset_, return featureset_ptr(new ogr_index_featureset<filter_in_box>(ctx,
*dataset_,
*layer, *layer,
filter, filter,
index_name_, index_name_,
@ -486,7 +501,8 @@ featureset_ptr ogr_datasource::features(query const& q) const
} }
else else
{ {
return featureset_ptr(new ogr_featureset (*dataset_, return featureset_ptr(new ogr_featureset (ctx,
*dataset_,
*layer, *layer,
q.get_bbox(), q.get_bbox(),
desc_.get_encoding() desc_.get_encoding()
@ -503,13 +519,22 @@ featureset_ptr ogr_datasource::features_at_point(coord2d const& pt) const
if (dataset_ && layer_.is_valid()) if (dataset_ && layer_.is_valid())
{ {
std::vector<attribute_descriptor> const& desc_ar = desc_.get_descriptors();
// feature context (schema)
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
std::vector<attribute_descriptor>::const_iterator itr = desc_ar.begin();
std::vector<attribute_descriptor>::const_iterator end = desc_ar.end();
for (; itr!=end; ++itr) ctx->push(itr->get_name());
OGRLayer* layer = layer_.layer(); OGRLayer* layer = layer_.layer();
if (indexed_) if (indexed_)
{ {
filter_at_point filter(pt); filter_at_point filter(pt);
return featureset_ptr(new ogr_index_featureset<filter_at_point> (*dataset_, return featureset_ptr(new ogr_index_featureset<filter_at_point> (ctx,
*dataset_,
*layer, *layer,
filter, filter,
index_name_, index_name_,
@ -522,7 +547,8 @@ featureset_ptr ogr_datasource::features_at_point(coord2d const& pt) const
point.setX (pt.x); point.setX (pt.x);
point.setY (pt.y); point.setY (pt.y);
return featureset_ptr(new ogr_featureset (*dataset_, return featureset_ptr(new ogr_featureset (ctx,
*dataset_,
*layer, *layer,
point, point,
desc_.get_encoding() desc_.get_encoding()

View file

@ -46,25 +46,30 @@ using mapnik::transcoder;
using mapnik::feature_factory; using mapnik::feature_factory;
ogr_featureset::ogr_featureset(OGRDataSource & dataset, ogr_featureset::ogr_featureset(mapnik::context_ptr const & ctx,
OGRDataSource & dataset,
OGRLayer & layer, OGRLayer & layer,
OGRGeometry & extent, OGRGeometry & extent,
const std::string& encoding) std::string const& encoding)
: dataset_(dataset), : ctx_(ctx),
dataset_(dataset),
layer_(layer), layer_(layer),
layerdef_(layer.GetLayerDefn()), layerdef_(layer.GetLayerDefn()),
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
fidcolumn_(layer_.GetFIDColumn ()), fidcolumn_(layer_.GetFIDColumn ()),
count_(0) count_(0)
{ {
layer_.SetSpatialFilter (&extent); layer_.SetSpatialFilter (&extent);
} }
ogr_featureset::ogr_featureset(OGRDataSource & dataset, ogr_featureset::ogr_featureset(mapnik::context_ptr const& ctx,
OGRDataSource & dataset,
OGRLayer & layer, OGRLayer & layer,
const mapnik::box2d<double> & extent, mapnik::box2d<double> const& extent,
const std::string& encoding) std::string const& encoding)
: dataset_(dataset), : ctx_(ctx),
dataset_(dataset),
layer_(layer), layer_(layer),
layerdef_(layer.GetLayerDefn()), layerdef_(layer.GetLayerDefn()),
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
@ -90,7 +95,7 @@ feature_ptr ogr_featureset::next()
// ogr feature ids start at 0, so add one to stay // ogr feature ids start at 0, so add one to stay
// consistent with other mapnik datasources that start at 1 // consistent with other mapnik datasources that start at 1
const int feature_id = ((*feat)->GetFID() + 1); const int feature_id = ((*feat)->GetFID() + 1);
feature_ptr feature(feature_factory::create(feature_id)); feature_ptr feature(feature_factory::create(ctx_,feature_id));
OGRGeometry* geom = (*feat)->GetGeometryRef(); OGRGeometry* geom = (*feat)->GetGeometryRef();
if (geom && ! geom->IsEmpty()) if (geom && ! geom->IsEmpty())
@ -117,13 +122,13 @@ feature_ptr ogr_featureset::next()
{ {
case OFTInteger: case OFTInteger:
{ {
boost::put(*feature, fld_name, (*feat)->GetFieldAsInteger(i)); feature->put( fld_name, (*feat)->GetFieldAsInteger(i));
break; break;
} }
case OFTReal: case OFTReal:
{ {
boost::put(*feature, fld_name, (*feat)->GetFieldAsDouble(i)); feature->put( fld_name, (*feat)->GetFieldAsDouble(i));
break; break;
} }
@ -131,7 +136,7 @@ feature_ptr ogr_featureset::next()
case OFTWideString: // deprecated ! case OFTWideString: // deprecated !
{ {
UnicodeString ustr = tr_->transcode((*feat)->GetFieldAsString(i)); UnicodeString ustr = tr_->transcode((*feat)->GetFieldAsString(i));
boost::put(*feature, fld_name, ustr); feature->put( fld_name, ustr);
break; break;
} }
@ -151,7 +156,7 @@ feature_ptr ogr_featureset::next()
#ifdef MAPNIK_DEBUG #ifdef MAPNIK_DEBUG
std::clog << "OGR Plugin: unhandled type_oid=" << type_oid << std::endl; std::clog << "OGR Plugin: unhandled type_oid=" << type_oid << std::endl;
#endif #endif
//boost::put(*feature,name,feat->GetFieldAsBinary (i, size)); //feature->put(name,feat->GetFieldAsBinary (i, size));
break; break;
} }

View file

@ -37,28 +37,30 @@
class ogr_featureset : public mapnik::Featureset class ogr_featureset : public mapnik::Featureset
{ {
public: public:
ogr_featureset(OGRDataSource & dataset, ogr_featureset(mapnik::context_ptr const& ctx,
OGRDataSource & dataset,
OGRLayer & layer, OGRLayer & layer,
OGRGeometry & extent, OGRGeometry & extent,
const std::string& encoding); std::string const& encoding);
ogr_featureset(OGRDataSource & dataset, ogr_featureset(mapnik::context_ptr const& ctx,
OGRDataSource & dataset,
OGRLayer & layer, OGRLayer & layer,
const mapnik::box2d<double> & extent, mapnik::box2d<double> const& extent,
const std::string& encoding); std::string const& encoding);
virtual ~ogr_featureset(); virtual ~ogr_featureset();
mapnik::feature_ptr next(); mapnik::feature_ptr next();
private: private:
ogr_featureset(const ogr_featureset&); mapnik::context_ptr ctx_;
const ogr_featureset& operator=(const ogr_featureset&);
OGRDataSource& dataset_; OGRDataSource& dataset_;
OGRLayer& layer_; OGRLayer& layer_;
OGRFeatureDefn* layerdef_; OGRFeatureDefn* layerdef_;
boost::scoped_ptr<mapnik::transcoder> tr_; boost::scoped_ptr<mapnik::transcoder> tr_;
const char* fidcolumn_; const char* fidcolumn_;
mutable int count_; mutable int count_;
}; };
#endif // OGR_FEATURESET_HPP #endif // OGR_FEATURESET_HPP

View file

@ -52,12 +52,14 @@ using mapnik::transcoder;
using mapnik::feature_factory; using mapnik::feature_factory;
template <typename filterT> template <typename filterT>
ogr_index_featureset<filterT>::ogr_index_featureset(OGRDataSource & dataset, ogr_index_featureset<filterT>::ogr_index_featureset(mapnik::context_ptr const & ctx,
OGRDataSource & dataset,
OGRLayer & layer, OGRLayer & layer,
const filterT& filter, filterT const& filter,
const std::string& index_file, std::string const& index_file,
const std::string& encoding) std::string const& encoding)
: dataset_(dataset), : ctx_(ctx),
dataset_(dataset),
layer_(layer), layer_(layer),
layerdef_(layer.GetLayerDefn()), layerdef_(layer.GetLayerDefn()),
filter_(filter), filter_(filter),
@ -101,7 +103,7 @@ feature_ptr ogr_index_featureset<filterT>::next()
// ogr feature ids start at 0, so add one to stay // ogr feature ids start at 0, so add one to stay
// consistent with other mapnik datasources that start at 1 // consistent with other mapnik datasources that start at 1
int feature_id = ((*feat)->GetFID() + 1); int feature_id = ((*feat)->GetFID() + 1);
feature_ptr feature(feature_factory::create(feature_id)); feature_ptr feature(feature_factory::create(ctx_,feature_id));
OGRGeometry* geom=(*feat)->GetGeometryRef(); OGRGeometry* geom=(*feat)->GetGeometryRef();
if (geom && !geom->IsEmpty()) if (geom && !geom->IsEmpty())
@ -126,13 +128,13 @@ feature_ptr ogr_index_featureset<filterT>::next()
{ {
case OFTInteger: case OFTInteger:
{ {
boost::put(*feature,fld_name,(*feat)->GetFieldAsInteger (i)); feature->put(fld_name,(*feat)->GetFieldAsInteger (i));
break; break;
} }
case OFTReal: case OFTReal:
{ {
boost::put(*feature,fld_name,(*feat)->GetFieldAsDouble (i)); feature->put(fld_name,(*feat)->GetFieldAsDouble (i));
break; break;
} }
@ -140,7 +142,7 @@ feature_ptr ogr_index_featureset<filterT>::next()
case OFTWideString: // deprecated ! case OFTWideString: // deprecated !
{ {
UnicodeString ustr = tr_->transcode((*feat)->GetFieldAsString (i)); UnicodeString ustr = tr_->transcode((*feat)->GetFieldAsString (i));
boost::put(*feature,fld_name,ustr); feature->put(fld_name,ustr);
break; break;
} }
@ -160,7 +162,7 @@ feature_ptr ogr_index_featureset<filterT>::next()
#ifdef MAPNIK_DEBUG #ifdef MAPNIK_DEBUG
std::clog << "OGR Plugin: unhandled type_oid=" << type_oid << std::endl; std::clog << "OGR Plugin: unhandled type_oid=" << type_oid << std::endl;
#endif #endif
//boost::put(*feature,name,feat->GetFieldAsBinary (i, size)); //feature->put(name,feat->GetFieldAsBinary (i, size));
break; break;
} }

View file

@ -32,18 +32,18 @@ template <typename filterT>
class ogr_index_featureset : public mapnik::Featureset class ogr_index_featureset : public mapnik::Featureset
{ {
public: public:
ogr_index_featureset(OGRDataSource& dataset, ogr_index_featureset(mapnik::context_ptr const& ctx,
OGRDataSource& dataset,
OGRLayer& layer, OGRLayer& layer,
const filterT& filter, filterT const& filter,
const std::string& index_file, std::string const& index_file,
const std::string& encoding); std::string const& encoding);
virtual ~ogr_index_featureset(); virtual ~ogr_index_featureset();
mapnik::feature_ptr next(); mapnik::feature_ptr next();
private: private:
ogr_index_featureset(const ogr_index_featureset&); mapnik::context_ptr ctx_;
ogr_index_featureset& operator=(const ogr_index_featureset&);
OGRDataSource& dataset_; OGRDataSource& dataset_;
OGRLayer& layer_; OGRLayer& layer_;
OGRFeatureDefn* layerdef_; OGRFeatureDefn* layerdef_;
@ -52,6 +52,7 @@ private:
std::vector<int>::iterator itr_; std::vector<int>::iterator itr_;
boost::scoped_ptr<mapnik::transcoder> tr_; boost::scoped_ptr<mapnik::transcoder> tr_;
const char* fidcolumn_; const char* fidcolumn_;
}; };
#endif // OGR_INDEX_FEATURESET_HPP #endif // OGR_INDEX_FEATURESET_HPP

View file

@ -46,7 +46,8 @@ osm_featureset<filterT>::osm_featureset(const filterT& filter,
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
feature_id_(1), feature_id_(1),
dataset_ (dataset), dataset_ (dataset),
attribute_names_ (attribute_names) attribute_names_ (attribute_names),
ctx_(boost::make_shared<mapnik::context>())
{ {
dataset_->rewind(); dataset_->rewind();
} }
@ -62,7 +63,7 @@ feature_ptr osm_featureset<filterT>::next()
{ {
if (dataset_->current_item_is_node()) if (dataset_->current_item_is_node())
{ {
feature = feature_factory::create(feature_id_); feature = feature_factory::create(ctx_,feature_id_);
++feature_id_; ++feature_id_;
double lat = static_cast<osm_node*>(cur_item)->lat; double lat = static_cast<osm_node*>(cur_item)->lat;
double lon = static_cast<osm_node*>(cur_item)->lon; double lon = static_cast<osm_node*>(cur_item)->lon;
@ -90,7 +91,7 @@ feature_ptr osm_featureset<filterT>::next()
{ {
if (static_cast<osm_way*>(cur_item)->nodes.size()) if (static_cast<osm_way*>(cur_item)->nodes.size())
{ {
feature = feature_factory::create(feature_id_); feature = feature_factory::create(ctx_,feature_id_);
++feature_id_; ++feature_id_;
geometry_type* geom; geometry_type* geom;
if (static_cast<osm_way*>(cur_item)->is_polygon()) if (static_cast<osm_way*>(cur_item)->is_polygon())
@ -131,7 +132,7 @@ feature_ptr osm_featureset<filterT>::next()
// only add if in the specified set of attribute names // only add if in the specified set of attribute names
if (attribute_names_.find(i->first) != attribute_names_.end()) if (attribute_names_.find(i->first) != attribute_names_.end())
{ {
(*feature)[i->first] = tr_->transcode(i->second.c_str()); feature->put(i->first,tr_->transcode(i->second.c_str()));
} }
i++; i++;

View file

@ -63,6 +63,7 @@ private:
mutable int feature_id_; mutable int feature_id_;
osm_dataset *dataset_; osm_dataset *dataset_;
std::set<std::string> attribute_names_; std::set<std::string> attribute_names_;
mapnik::context_ptr ctx_;
// no copying // no copying
osm_featureset(const osm_featureset&); osm_featureset(const osm_featureset&);
const osm_featureset& operator=(const osm_featureset&); const osm_featureset& operator=(const osm_featureset&);

View file

@ -497,7 +497,7 @@ featureset_ptr postgis_datasource::features(const query& q) const
s_error << geometry_table_ << "'."; s_error << geometry_table_ << "'.";
throw mapnik::datasource_exception(s_error.str()); throw mapnik::datasource_exception(s_error.str());
} }
std::ostringstream s; std::ostringstream s;
s << "SELECT ST_AsBinary(\"" << geometryColumn_ << "\") AS geom"; s << "SELECT ST_AsBinary(\"" << geometryColumn_ << "\") AS geom";
@ -507,10 +507,13 @@ featureset_ptr postgis_datasource::features(const query& q) const
std::set<std::string> const& props=q.property_names(); std::set<std::string> const& props=q.property_names();
std::set<std::string>::const_iterator pos=props.begin(); std::set<std::string>::const_iterator pos=props.begin();
std::set<std::string>::const_iterator end=props.end(); std::set<std::string>::const_iterator end=props.end();
while (pos != end)
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
for ( ;pos != end;++pos)
{ {
mapnik::sql_utils::quote_attr(s,*pos); mapnik::sql_utils::quote_attr(s,*pos);
++pos; ctx->push(*pos);
} }
std::string table_with_bbox = populate_tokens(table_,scale_denom,box); std::string table_with_bbox = populate_tokens(table_,scale_denom,box);
@ -525,7 +528,7 @@ featureset_ptr postgis_datasource::features(const query& q) const
unsigned num_attr = props.size(); unsigned num_attr = props.size();
if (!key_field_.empty()) if (!key_field_.empty())
++num_attr; ++num_attr;
return boost::make_shared<postgis_featureset>(rs,desc_.get_encoding(), !key_field_.empty(),num_attr); return boost::make_shared<postgis_featureset>(rs, ctx, desc_.get_encoding(), !key_field_.empty());
} }
else else
{ {
@ -573,14 +576,15 @@ featureset_ptr postgis_datasource::features_at_point(coord2d const& pt) const
if (!key_field_.empty()) if (!key_field_.empty())
mapnik::sql_utils::quote_attr(s,key_field_); mapnik::sql_utils::quote_attr(s,key_field_);
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin(); std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin();
std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end(); std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end();
unsigned size=0;
while (itr != end) for ( ; itr != end; ++itr)
{ {
mapnik::sql_utils::quote_attr(s,itr->get_name()); mapnik::sql_utils::quote_attr(s,itr->get_name());
++itr; ctx->push(itr->get_name());
++size;
} }
box2d<double> box(pt.x,pt.y,pt.x,pt.y); box2d<double> box(pt.x,pt.y,pt.x,pt.y);
@ -593,7 +597,7 @@ featureset_ptr postgis_datasource::features_at_point(coord2d const& pt) const
} }
boost::shared_ptr<IResultSet> rs = get_resultset(conn, s.str()); boost::shared_ptr<IResultSet> rs = get_resultset(conn, s.str());
return boost::make_shared<postgis_featureset>(rs,desc_.get_encoding(), !key_field_.empty(),size); return boost::make_shared<postgis_featureset>(rs, ctx, desc_.get_encoding(), !key_field_.empty());
} }
} }
return featureset_ptr(); return featureset_ptr();

View file

@ -46,13 +46,14 @@ using mapnik::geometry_type;
using mapnik::byte; using mapnik::byte;
using mapnik::geometry_utils; using mapnik::geometry_utils;
using mapnik::feature_factory; using mapnik::feature_factory;
using mapnik::context_ptr;
postgis_featureset::postgis_featureset(boost::shared_ptr<IResultSet> const& rs, postgis_featureset::postgis_featureset(boost::shared_ptr<IResultSet> const& rs,
context_ptr const& ctx,
std::string const& encoding, std::string const& encoding,
bool key_field=false, bool key_field)
unsigned num_attrs=0)
: rs_(rs), : rs_(rs),
num_attrs_(num_attrs), ctx_(ctx),
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
totalGeomSize_(0), totalGeomSize_(0),
feature_id_(1), feature_id_(1),
@ -86,15 +87,15 @@ feature_ptr postgis_featureset::next()
{ {
val = int4net(buf); val = int4net(buf);
} }
feature = feature_factory::create(val); feature = feature_factory::create(ctx_, val);
// TODO - extend feature class to know // TODO - extend feature class to know
// that its id is also an attribute to avoid // that its id is also an attribute to avoid
// this duplication // this duplication
boost::put(*feature,name,val); feature->put(name,val);
++pos; ++pos;
} else { } else {
// fallback to auto-incrementing id // fallback to auto-incrementing id
feature = feature_factory::create(feature_id_); feature = feature_factory::create(ctx_,feature_id_);
++feature_id_; ++feature_id_;
} }
@ -104,59 +105,59 @@ feature_ptr postgis_featureset::next()
geometry_utils::from_wkb(feature->paths(), data, size); geometry_utils::from_wkb(feature->paths(), data, size);
totalGeomSize_+=size; totalGeomSize_+=size;
for ( ;pos<num_attrs_+1;++pos) int num_attrs = ctx_->size() + 1;
for ( ; pos < num_attrs; ++pos)
{ {
std::string name = rs_->getFieldName(pos); std::string name = rs_->getFieldName(pos);
if (rs_->isNull(pos)) if (rs_->isNull(pos))
{ {
boost::put(*feature,name,mapnik::value_null()); feature->put(name,mapnik::value_null());
} }
else else
{ {
const char* buf = rs_->getValue(pos); const char* buf = rs_->getValue(pos);
int oid = rs_->getTypeOID(pos); int oid = rs_->getTypeOID(pos);
if (oid==16) //bool if (oid==16) //bool
{ {
boost::put(*feature,name,buf[0] != 0); feature->put(name,(buf[0] != 0));
} }
else if (oid==23) //int4 else if (oid==23) //int4
{ {
int val = int4net(buf); int val = int4net(buf);
boost::put(*feature,name,val); feature->put(name,val);
} }
else if (oid==21) //int2 else if (oid==21) //int2
{ {
int val = int2net(buf); int val = int2net(buf);
boost::put(*feature,name,val); feature->put(name,val);
} }
else if (oid==20) //int8/BigInt else if (oid==20) //int8/BigInt
{ {
int val = int8net(buf); int val = int8net(buf);
boost::put(*feature,name,val); feature->put(name,val);
} }
else if (oid == 700) // float4 else if (oid == 700) // float4
{ {
float val; float val;
float4net(val,buf); float4net(val,buf);
boost::put(*feature,name,val); feature->put(name,val);
} }
else if (oid == 701) // float8 else if (oid == 701) // float8
{ {
double val; double val;
float8net(val,buf); float8net(val,buf);
boost::put(*feature,name,val); feature->put(name,val);
} }
else if (oid==25 || oid==1043) // text or varchar else if (oid==25 || oid==1043) // text or varchar
{ {
UnicodeString ustr = tr_->transcode(buf); feature->put(name,tr_->transcode(buf));
boost::put(*feature,name,ustr);
} }
else if (oid==1042) else if (oid==1042)
{ {
UnicodeString ustr = tr_->transcode(trim_copy(std::string(buf)).c_str()); // bpchar // bpchar
boost::put(*feature,name,ustr); feature->put(name,tr_->transcode(trim_copy(std::string(buf)).c_str()));
} }
else if (oid == 1700) // numeric else if (oid == 1700) // numeric
{ {
@ -164,7 +165,7 @@ feature_ptr postgis_featureset::next()
try try
{ {
double val = boost::lexical_cast<double>(str); double val = boost::lexical_cast<double>(str);
boost::put(*feature,name,val); feature->put(name,val);
} }
catch (boost::bad_lexical_cast & ex) catch (boost::bad_lexical_cast & ex)
{ {

View file

@ -37,6 +37,7 @@ using mapnik::Featureset;
using mapnik::box2d; using mapnik::box2d;
using mapnik::feature_ptr; using mapnik::feature_ptr;
using mapnik::transcoder; using mapnik::transcoder;
using mapnik::context_ptr;
class IResultSet; class IResultSet;
@ -44,21 +45,18 @@ class postgis_featureset : public mapnik::Featureset
{ {
private: private:
boost::shared_ptr<IResultSet> rs_; boost::shared_ptr<IResultSet> rs_;
unsigned num_attrs_; context_ptr ctx_;
boost::scoped_ptr<mapnik::transcoder> tr_; boost::scoped_ptr<mapnik::transcoder> tr_;
int totalGeomSize_; int totalGeomSize_;
int feature_id_; int feature_id_;
bool key_field_; bool key_field_;
public: public:
postgis_featureset(boost::shared_ptr<IResultSet> const& rs, postgis_featureset(boost::shared_ptr<IResultSet> const& rs,
context_ptr const& ctx,
std::string const& encoding, std::string const& encoding,
bool key_field, bool key_field = false);
unsigned num_attrs); feature_ptr next();
mapnik::feature_ptr next();
~postgis_featureset(); ~postgis_featureset();
private:
postgis_featureset(const postgis_featureset&);
const postgis_featureset& operator=(const postgis_featureset&);
}; };
#endif // POSTGIS_FEATURESET_HPP #endif // POSTGIS_FEATURESET_HPP

View file

@ -50,6 +50,7 @@ raster_featureset<LookupPolicy>::raster_featureset(LookupPolicy const& policy,
curIter_(policy_.begin()), curIter_(policy_.begin()),
endIter_(policy_.end()) endIter_(policy_.end())
{ {
ctx_ = boost::make_shared<mapnik::context_type>();
} }
template <typename LookupPolicy> template <typename LookupPolicy>
@ -62,9 +63,8 @@ feature_ptr raster_featureset<LookupPolicy>::next()
{ {
if (curIter_ != endIter_) if (curIter_ != endIter_)
{ {
feature_ptr feature(feature_factory::create(feature_id_)); feature_ptr feature(feature_factory::create(ctx_,feature_id_++));
++feature_id_;
try try
{ {
std::auto_ptr<image_reader> reader(mapnik::get_image_reader(curIter_->file(),curIter_->format())); std::auto_ptr<image_reader> reader(mapnik::get_image_reader(curIter_->file(),curIter_->format()));

View file

@ -310,6 +310,7 @@ class raster_featureset : public mapnik::Featureset
typedef typename LookupPolicy::const_iterator iterator_type; typedef typename LookupPolicy::const_iterator iterator_type;
LookupPolicy policy_; LookupPolicy policy_;
int feature_id_; int feature_id_;
mapnik::context_ptr ctx_;
mapnik::box2d<double> extent_; mapnik::box2d<double> extent_;
mapnik::box2d<double> bbox_; mapnik::box2d<double> bbox_;
iterator_type curIter_; iterator_type curIter_;

View file

@ -34,6 +34,7 @@ shape_src = Split(
shape_featureset.cpp shape_featureset.cpp
shape_index_featureset.cpp shape_index_featureset.cpp
shape_io.cpp shape_io.cpp
shape_utils.cpp
""" """
) )

View file

@ -121,7 +121,7 @@ const field_descriptor& dbf_file::descriptor(int col) const
} }
void dbf_file::add_attribute(int col, mapnik::transcoder const& tr, Feature const& f) const throw() void dbf_file::add_attribute(int col, mapnik::transcoder const& tr, Feature & f) const throw()
{ {
using namespace boost::spirit; using namespace boost::spirit;
@ -139,7 +139,7 @@ void dbf_file::add_attribute(int col, mapnik::transcoder const& tr, Feature cons
// FIXME - avoid constructing std::string on stack // FIXME - avoid constructing std::string on stack
std::string str(record_+fields_[col].offset_,fields_[col].length_); std::string str(record_+fields_[col].offset_,fields_[col].length_);
boost::trim(str); boost::trim(str);
f[name] = tr.transcode(str.c_str()); f.put(name,tr.transcode(str.c_str()));
break; break;
} }
case 'N': case 'N':
@ -148,7 +148,7 @@ void dbf_file::add_attribute(int col, mapnik::transcoder const& tr, Feature cons
if (record_[fields_[col].offset_] == '*') if (record_[fields_[col].offset_] == '*')
{ {
boost::put(f,name,0); f.put(name,0);
break; break;
} }
if ( fields_[col].dec_>0 ) if ( fields_[col].dec_>0 )
@ -157,7 +157,7 @@ void dbf_file::add_attribute(int col, mapnik::transcoder const& tr, Feature cons
const char *itr = record_+fields_[col].offset_; const char *itr = record_+fields_[col].offset_;
const char *end = itr + fields_[col].length_; const char *end = itr + fields_[col].length_;
qi::phrase_parse(itr,end,double_,ascii::space,val); qi::phrase_parse(itr,end,double_,ascii::space,val);
boost::put(f,name,val); f.put(name,val);
} }
else else
{ {
@ -165,7 +165,7 @@ void dbf_file::add_attribute(int col, mapnik::transcoder const& tr, Feature cons
const char *itr = record_+fields_[col].offset_; const char *itr = record_+fields_[col].offset_;
const char *end = itr + fields_[col].length_; const char *end = itr + fields_[col].length_;
qi::phrase_parse(itr,end,int_,ascii::space,val); qi::phrase_parse(itr,end,int_,ascii::space,val);
boost::put(f,name,val); f.put(name,val);
} }
break; break;
} }

View file

@ -71,7 +71,7 @@ public:
field_descriptor const& descriptor(int col) const; field_descriptor const& descriptor(int col) const;
void move_to(int index); void move_to(int index);
std::string string_value(int col) const; std::string string_value(int col) const;
void add_attribute(int col, transcoder const& tr, Feature const& f) const throw(); void add_attribute(int col, transcoder const& tr, Feature & f) const throw();
private: private:
void read_header(); void read_header();
int read_short(); int read_short();

View file

@ -1,4 +1,3 @@
/***************************************************************************** /*****************************************************************************
* *
* This file is part of Mapnik (c++ mapping toolkit) * This file is part of Mapnik (c++ mapping toolkit)
@ -27,65 +26,31 @@
// mapnik // mapnik
#include <mapnik/feature_factory.hpp> #include <mapnik/feature_factory.hpp>
// boost
#include <boost/algorithm/string.hpp>
#include "shape_featureset.hpp" #include "shape_featureset.hpp"
#include "shape_utils.hpp"
using mapnik::geometry_type; using mapnik::geometry_type;
using mapnik::feature_factory; using mapnik::feature_factory;
using mapnik::context_ptr;
template <typename filterT> template <typename filterT>
shape_featureset<filterT>::shape_featureset(const filterT& filter, shape_featureset<filterT>::shape_featureset(filterT const& filter,
const std::string& shape_name, std::string const& shape_name,
const std::set<std::string>& attribute_names, std::set<std::string> const& attribute_names,
std::string const& encoding, std::string const& encoding,
long file_length, long file_length,
int row_limit) int row_limit)
: filter_(filter), : filter_(filter),
//shape_type_(shape_io::shape_null),
shape_(shape_name, false), shape_(shape_name, false),
query_ext_(), query_ext_(),
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
file_length_(file_length), file_length_(file_length),
count_(0), row_limit_(row_limit),
row_limit_(row_limit) count_(0)
{ {
ctx_ = boost::make_shared<mapnik::context_type>();
shape_.shp().skip(100); shape_.shp().skip(100);
setup_attributes(ctx_, attribute_names, shape_name, shape_,attr_ids_);
//attributes
typename std::set<std::string>::const_iterator pos = attribute_names.begin();
while (pos != attribute_names.end())
{
bool found_name = false;
for (int i = 0; i < shape_.dbf().num_fields(); ++i)
{
if (shape_.dbf().descriptor(i).name_ == *pos)
{
attr_ids_.push_back(i);
found_name = true;
break;
}
}
if (! found_name)
{
std::ostringstream s;
s << "no attribute '" << *pos << "' in '"
<< shape_name << "'. Valid attributes are: ";
std::vector<std::string> list;
for (int i = 0; i < shape_.dbf().num_fields(); ++i)
{
list.push_back(shape_.dbf().descriptor(i).name_);
}
s << boost::algorithm::join(list, ",") << ".";
throw mapnik::datasource_exception("Shape Plugin: " + s.str());
}
++pos;
}
} }
template <typename filterT> template <typename filterT>
@ -115,7 +80,7 @@ feature_ptr shape_featureset<filterT>::next()
if (pos < std::streampos(file_length_ * 2)) if (pos < std::streampos(file_length_ * 2))
{ {
int type = shape_.type(); int type = shape_.type();
feature_ptr feature(feature_factory::create(shape_.id_)); feature_ptr feature(feature_factory::create(ctx_, shape_.id_));
if (type == shape_io::shape_point) if (type == shape_io::shape_point)
{ {
@ -266,7 +231,7 @@ feature_ptr shape_featureset<filterT>::next()
} }
} }
} }
// FIXME: https://github.com/mapnik/mapnik/issues/1020
feature->set_id(shape_.id_); feature->set_id(shape_.id_);
if (attr_ids_.size()) if (attr_ids_.size())
{ {

View file

@ -31,41 +31,36 @@
//boost //boost
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/utility.hpp>
using mapnik::Featureset; using mapnik::Featureset;
using mapnik::box2d; using mapnik::box2d;
using mapnik::feature_ptr; using mapnik::feature_ptr;
using mapnik::transcoder; using mapnik::transcoder;
using mapnik::context_ptr;
template <typename filterT> template <typename filterT>
class shape_featureset : public Featureset class shape_featureset : public Featureset
{ {
filterT filter_; filterT filter_;
//int shape_type_; context_ptr ctx_;
shape_io shape_; shape_io shape_;
box2d<double> query_ext_; box2d<double> query_ext_;
boost::scoped_ptr<transcoder> tr_; boost::scoped_ptr<transcoder> tr_;
long file_length_; long file_length_;
std::vector<int> attr_ids_; std::vector<int> attr_ids_;
mutable box2d<double> feature_ext_;
mutable int total_geom_size;
mutable int count_;
const int row_limit_; const int row_limit_;
mutable int count_;
public: public:
shape_featureset(const filterT& filter, shape_featureset(filterT const& filter,
const std::string& shape_file, std::string const& shape_file,
const std::set<std::string>& attribute_names, std::set<std::string> const& attribute_names,
std::string const& encoding, std::string const& encoding,
long file_length, long file_length,
int row_limit); int row_limit);
virtual ~shape_featureset(); virtual ~shape_featureset();
feature_ptr next(); feature_ptr next();
private:
shape_featureset(const shape_featureset&);
const shape_featureset& operator=(const shape_featureset&);
}; };
#endif //SHAPE_FEATURESET_HPP #endif //SHAPE_FEATURESET_HPP

View file

@ -31,26 +31,28 @@
#include <boost/interprocess/streams/bufferstream.hpp> #include <boost/interprocess/streams/bufferstream.hpp>
#include "shape_index_featureset.hpp" #include "shape_index_featureset.hpp"
#include "shape_utils.hpp"
using mapnik::feature_factory; using mapnik::feature_factory;
using mapnik::geometry_type; using mapnik::geometry_type;
template <typename filterT> template <typename filterT>
shape_index_featureset<filterT>::shape_index_featureset(const filterT& filter, shape_index_featureset<filterT>::shape_index_featureset(filterT const& filter,
shape_io& shape, shape_io& shape,
const std::set<std::string>& attribute_names, std::set<std::string> const& attribute_names,
std::string const& encoding, std::string const& encoding,
std::string const& shape_name, std::string const& shape_name,
int row_limit) int row_limit)
: filter_(filter), : filter_(filter),
//shape_type_(0),
shape_(shape), shape_(shape),
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
count_(0), row_limit_(row_limit),
row_limit_(row_limit) count_(0)
{ {
ctx_ = boost::make_shared<mapnik::context_type>();
shape_.shp().skip(100); shape_.shp().skip(100);
setup_attributes(ctx_, attribute_names, shape_name, shape_,attr_ids_);
boost::shared_ptr<shape_file> index = shape_.index(); boost::shared_ptr<shape_file> index = shape_.index();
if (index) if (index)
{ {
@ -63,46 +65,12 @@ shape_index_featureset<filterT>::shape_index_featureset(const filterT& filter,
} }
std::sort(ids_.begin(), ids_.end()); std::sort(ids_.begin(), ids_.end());
#ifdef MAPNIK_DEBUG #ifdef MAPNIK_DEBUG
std::clog << "Shape Plugin: query size=" << ids_.size() << std::endl; std::clog << "Shape Plugin: query size=" << ids_.size() << std::endl;
#endif #endif
itr_ = ids_.begin(); itr_ = ids_.begin();
// deal with attributes
std::set<std::string>::const_iterator pos = attribute_names.begin();
while (pos != attribute_names.end())
{
bool found_name = false;
for (int i = 0; i < shape_.dbf().num_fields(); ++i)
{
if (shape_.dbf().descriptor(i).name_ == *pos)
{
attr_ids_.insert(i);
found_name = true;
break;
}
}
if (! found_name)
{
std::ostringstream s;
s << "no attribute '" << *pos << "' in '" << shape_name << "'. Valid attributes are: ";
std::vector<std::string> list;
for (int i = 0; i < shape_.dbf().num_fields(); ++i)
{
list.push_back(shape_.dbf().descriptor(i).name_);
}
s << boost::algorithm::join(list, ",") << ".";
throw mapnik::datasource_exception("Shape Plugin: " + s.str());
}
++pos;
}
} }
template <typename filterT> template <typename filterT>
@ -119,7 +87,7 @@ feature_ptr shape_index_featureset<filterT>::next()
shape_.move_to(pos); shape_.move_to(pos);
int type = shape_.type(); int type = shape_.type();
feature_ptr feature(feature_factory::create(shape_.id_)); feature_ptr feature(feature_factory::create(ctx_,shape_.id_));
if (type == shape_io::shape_point) if (type == shape_io::shape_point)
{ {
double x = shape_.shp().read_double(); double x = shape_.shp().read_double();
@ -210,13 +178,13 @@ feature_ptr shape_index_featureset<filterT>::next()
} }
} }
} }
// FIXME
feature->set_id(shape_.id_); feature->set_id(shape_.id_);
if (attr_ids_.size()) if (attr_ids_.size())
{ {
shape_.dbf().move_to(shape_.id_); shape_.dbf().move_to(shape_.id_);
std::set<int>::const_iterator itr = attr_ids_.begin(); std::vector<int>::const_iterator itr = attr_ids_.begin();
std::set<int>::const_iterator end = attr_ids_.end(); std::vector<int>::const_iterator end = attr_ids_.end();
try try
{ {
for (; itr!=end; ++itr) for (; itr!=end; ++itr)

View file

@ -32,6 +32,7 @@
// boost // boost
#include <boost/scoped_ptr.hpp> #include <boost/scoped_ptr.hpp>
#include <boost/utility.hpp>
#include "shape_datasource.hpp" #include "shape_datasource.hpp"
#include "shape_io.hpp" #include "shape_io.hpp"
@ -39,35 +40,33 @@
using mapnik::Featureset; using mapnik::Featureset;
using mapnik::box2d; using mapnik::box2d;
using mapnik::feature_ptr; using mapnik::feature_ptr;
using mapnik::context_ptr;
template <typename filterT> template <typename filterT>
class shape_index_featureset : public Featureset class shape_index_featureset : public Featureset
{ {
public: public:
shape_index_featureset(const filterT& filter, shape_index_featureset(filterT const& filter,
shape_io& shape, shape_io & shape,
const std::set<std::string>& attribute_names, std::set<std::string> const& attribute_names,
std::string const& encoding, std::string const& encoding,
std::string const& shape_name, std::string const& shape_name,
int row_limit); int row_limit);
virtual ~shape_index_featureset(); virtual ~shape_index_featureset();
feature_ptr next(); feature_ptr next();
private: private:
filterT filter_; filterT filter_;
//int shape_type_; context_ptr ctx_;
shape_io & shape_; shape_io & shape_;
boost::scoped_ptr<transcoder> tr_; boost::scoped_ptr<transcoder> tr_;
std::vector<int> ids_; std::vector<int> ids_;
std::vector<int>::iterator itr_; std::vector<int>::iterator itr_;
std::set<int> attr_ids_; std::vector<int> attr_ids_;
mutable box2d<double> feature_ext_;
mutable int total_geom_size;
mutable int count_;
const int row_limit_; const int row_limit_;
//no copying mutable int count_;
shape_index_featureset(const shape_index_featureset&);
shape_index_featureset& operator=(const shape_index_featureset&);
}; };
#endif // SHAPE_INDEX_FEATURESET_HPP #endif // SHAPE_INDEX_FEATURESET_HPP

View file

@ -94,13 +94,6 @@ shape_file& shape_io::shp()
return shp_; return shp_;
} }
#if 0
shape_file& shape_io::shx()
{
return shx_;
}
#endif
dbf_file& shape_io::dbf() dbf_file& shape_io::dbf()
{ {
return dbf_; return dbf_;

View file

@ -0,0 +1,73 @@
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* 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
*
*****************************************************************************/
// mapnik
#include <mapnik/datasource.hpp>
#include "shape_utils.hpp"
// boost
#include <boost/algorithm/string.hpp>
// stl
#include <sstream>
#include <iostream>
void setup_attributes(mapnik::context_ptr const& ctx,
std::set<std::string> const& names,
std::string const& shape_name,
shape_io & shape,
std::vector<int> & attr_ids)
{
std::set<std::string>::const_iterator pos = names.begin();
std::set<std::string>::const_iterator end = names.end();
for ( ;pos !=end; ++pos)
{
bool found_name = false;
for (int i = 0; i < shape.dbf().num_fields(); ++i)
{
if (shape.dbf().descriptor(i).name_ == *pos)
{
ctx->push(*pos);
attr_ids.push_back(i);
found_name = true;
break;
}
}
if (! found_name)
{
std::ostringstream s;
s << "no attribute '" << *pos << "' in '"
<< shape_name << "'. Valid attributes are: ";
std::vector<std::string> list;
for (int i = 0; i < shape.dbf().num_fields(); ++i)
{
list.push_back(shape.dbf().descriptor(i).name_);
}
s << boost::algorithm::join(list, ",") << ".";
throw mapnik::datasource_exception("Shape Plugin: " + s.str());
}
}
}

View file

@ -0,0 +1,40 @@
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* 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
*
*****************************************************************************/
#ifndef SHAPE_UTILS_HPP
#define SHAPE_UTILS_HPP
// mapnik
#include <mapnik/feature.hpp>
#include "shape_io.hpp"
// stl
#include <set>
#include <vector>
#include <string>
void setup_attributes(mapnik::context_ptr const& ctx,
std::set<std::string> const& names,
std::string const& shape_name,
shape_io & shape,
std::vector<int> & attr_ids);
#endif // SHAPE_UTILS_HPP

View file

@ -547,19 +547,24 @@ featureset_ptr sqlite_datasource::features(query const& q) const
mapnik::box2d<double> const& e = q.get_bbox(); mapnik::box2d<double> const& e = q.get_bbox();
std::ostringstream s; std::ostringstream s;
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
s << "SELECT " << geometry_field_; s << "SELECT " << geometry_field_;
if (!key_field_.empty()) if (!key_field_.empty())
{
s << "," << key_field_; s << "," << key_field_;
ctx->push(key_field_);
}
std::set<std::string> const& props = q.property_names(); std::set<std::string> const& props = q.property_names();
std::set<std::string>::const_iterator pos = props.begin(); std::set<std::string>::const_iterator pos = props.begin();
std::set<std::string>::const_iterator end = props.end(); std::set<std::string>::const_iterator end = props.end();
while (pos != end)
for ( ;pos != end;++pos)
{ {
// TODO - should we restrict duplicate key query? // TODO - should we restrict duplicate key query?
//if (*pos != key_field_) //if (*pos != key_field_)
s << ",[" << *pos << "]"; s << ",[" << *pos << "]";
++pos; ctx->push(*pos);
} }
s << " FROM "; s << " FROM ";
@ -601,6 +606,7 @@ featureset_ptr sqlite_datasource::features(query const& q) const
boost::shared_ptr<sqlite_resultset> rs(dataset_->execute_query(s.str())); boost::shared_ptr<sqlite_resultset> rs(dataset_->execute_query(s.str()));
return boost::make_shared<sqlite_featureset>(rs, return boost::make_shared<sqlite_featureset>(rs,
ctx,
desc_.get_encoding(), desc_.get_encoding(),
format_, format_,
using_subquery_); using_subquery_);
@ -619,20 +625,26 @@ featureset_ptr sqlite_datasource::features_at_point(coord2d const& pt) const
mapnik::box2d<double> const e(pt.x, pt.y, pt.x, pt.y); mapnik::box2d<double> const e(pt.x, pt.y, pt.x, pt.y);
std::ostringstream s; std::ostringstream s;
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
s << "SELECT " << geometry_field_; s << "SELECT " << geometry_field_;
if (!key_field_.empty()) if (!key_field_.empty())
{
s << "," << key_field_; s << "," << key_field_;
ctx->push(key_field_);
}
std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin(); std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin();
std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end(); std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end();
while (itr != end)
for ( ; itr != end; ++itr)
{ {
std::string fld_name = itr->get_name(); std::string fld_name = itr->get_name();
if (fld_name != key_field_) if (fld_name != key_field_)
{ {
s << ",[" << itr->get_name() << "]"; s << ",[" << itr->get_name() << "]";
ctx->push(itr->get_name());
} }
++itr;
} }
s << " FROM "; s << " FROM ";
@ -674,6 +686,7 @@ featureset_ptr sqlite_datasource::features_at_point(coord2d const& pt) const
boost::shared_ptr<sqlite_resultset> rs(dataset_->execute_query(s.str())); boost::shared_ptr<sqlite_resultset> rs(dataset_->execute_query(s.str()));
return boost::make_shared<sqlite_featureset>(rs, return boost::make_shared<sqlite_featureset>(rs,
ctx,
desc_.get_encoding(), desc_.get_encoding(),
format_, format_,
using_subquery_); using_subquery_);

View file

@ -45,13 +45,15 @@ using mapnik::transcoder;
using mapnik::feature_factory; using mapnik::feature_factory;
sqlite_featureset::sqlite_featureset(boost::shared_ptr<sqlite_resultset> rs, sqlite_featureset::sqlite_featureset(boost::shared_ptr<sqlite_resultset> rs,
mapnik::context_ptr const& ctx,
std::string const& encoding, std::string const& encoding,
mapnik::wkbFormat format, mapnik::wkbFormat format,
bool using_subquery) bool using_subquery)
: rs_(rs), : rs_(rs),
tr_(new transcoder(encoding)), tr_(new transcoder(encoding)),
format_(format), format_(format),
using_subquery_(using_subquery) using_subquery_(using_subquery),
ctx_(ctx)
{ {
} }
@ -70,9 +72,7 @@ feature_ptr sqlite_featureset::next()
return feature_ptr(); return feature_ptr();
} }
int feature_id = rs_->column_integer(1); feature_ptr feature(feature_factory::create(ctx_,rs_->column_integer(1)));
feature_ptr feature(feature_factory::create(feature_id));
geometry_utils::from_wkb(feature->paths(), data, size, format_); geometry_utils::from_wkb(feature->paths(), data, size, format_);
for (int i = 2; i < rs_->column_count(); ++i) for (int i = 2; i < rs_->column_count(); ++i)
@ -95,13 +95,13 @@ feature_ptr sqlite_featureset::next()
{ {
case SQLITE_INTEGER: case SQLITE_INTEGER:
{ {
boost::put(*feature, fld_name_str, rs_->column_integer(i)); feature->put(fld_name_str, rs_->column_integer(i));
break; break;
} }
case SQLITE_FLOAT: case SQLITE_FLOAT:
{ {
boost::put(*feature, fld_name_str, rs_->column_double(i)); feature->put(fld_name_str, rs_->column_double(i));
break; break;
} }
@ -110,13 +110,13 @@ feature_ptr sqlite_featureset::next()
int text_size; int text_size;
const char * data = rs_->column_text(i, text_size); const char * data = rs_->column_text(i, text_size);
UnicodeString ustr = tr_->transcode(data, text_size); UnicodeString ustr = tr_->transcode(data, text_size);
boost::put(*feature, fld_name_str, ustr); feature->put(fld_name_str, ustr);
break; break;
} }
case SQLITE_NULL: case SQLITE_NULL:
{ {
boost::put(*feature, fld_name_str, mapnik::value_null()); feature->put(fld_name_str, mapnik::value_null());
break; break;
} }

View file

@ -40,6 +40,7 @@ class sqlite_featureset : public mapnik::Featureset
{ {
public: public:
sqlite_featureset(boost::shared_ptr<sqlite_resultset> rs, sqlite_featureset(boost::shared_ptr<sqlite_resultset> rs,
mapnik::context_ptr const& ctx,
std::string const& encoding, std::string const& encoding,
mapnik::wkbFormat format, mapnik::wkbFormat format,
bool using_subquery); bool using_subquery);
@ -51,6 +52,7 @@ private:
boost::scoped_ptr<mapnik::transcoder> tr_; boost::scoped_ptr<mapnik::transcoder> tr_;
mapnik::wkbFormat format_; mapnik::wkbFormat format_;
bool using_subquery_; bool using_subquery_;
mapnik::context_ptr ctx_;
}; };
#endif // MAPNIK_SQLITE_FEATURESET_HPP #endif // MAPNIK_SQLITE_FEATURESET_HPP

View file

@ -12,7 +12,7 @@ using mapnik::parameters;
DATASOURCE_PLUGIN(hello_datasource) DATASOURCE_PLUGIN(hello_datasource)
hello_datasource::hello_datasource(parameters const& params, bool bind) hello_datasource::hello_datasource(parameters const& params, bool bind)
: datasource(params) : datasource(params),
desc_(*params_.get<std::string>("type"), *params_.get<std::string>("encoding","utf-8")), desc_(*params_.get<std::string>("type"), *params_.get<std::string>("encoding","utf-8")),
extent_() extent_()
{ {
@ -33,10 +33,6 @@ void hello_datasource::bind() const
// see http://spatialreference.org/ref/epsg/4326/ for more details // see http://spatialreference.org/ref/epsg/4326/ for more details
extent_.init(-180,-90,180,90); extent_.init(-180,-90,180,90);
// declare that this datasource is going to provide points
// options are point,polygon,linestring, and collection
desc_.set_geometry_type("point");
is_bound_ = true; is_bound_ = true;
} }
@ -64,7 +60,7 @@ mapnik::box2d<double> hello_datasource::envelope() const
boost::optional<mapnik::datasource::geometry_t> hello_datasource::get_geometry_type() const boost::optional<mapnik::datasource::geometry_t> hello_datasource::get_geometry_type() const
{ {
boost::optional<mapnik::datasource::geometry_t>(mapnik::datasource::Point); return mapnik::datasource::Point;
} }
mapnik::layer_descriptor hello_datasource::get_descriptor() const mapnik::layer_descriptor hello_datasource::get_descriptor() const

View file

@ -7,7 +7,8 @@
hello_featureset::hello_featureset(mapnik::box2d<double> const& box, std::string const& encoding) hello_featureset::hello_featureset(mapnik::box2d<double> const& box, std::string const& encoding)
: box_(box), : box_(box),
feature_id_(1), feature_id_(1),
tr_(new mapnik::transcoder(encoding)) { } tr_(new mapnik::transcoder(encoding)),
ctx_(boost::make_shared<mapnik::context_type>()) { }
hello_featureset::~hello_featureset() { } hello_featureset::~hello_featureset() { }
@ -16,14 +17,14 @@ mapnik::feature_ptr hello_featureset::next()
if (feature_id_ == 1) if (feature_id_ == 1)
{ {
// create a new feature // create a new feature
mapnik::feature_ptr feature(mapnik::feature_factory::create(feature_id_)); mapnik::feature_ptr feature(mapnik::feature_factory::create(ctx_,feature_id_));
// increment the count so that we only return one feature // increment the count so that we only return one feature
++feature_id_; ++feature_id_;
// create an attribute pair of key:value // create an attribute pair of key:value
UnicodeString ustr = tr_->transcode("hello world!"); UnicodeString ustr = tr_->transcode("hello world!");
boost::put(*feature,"key",ustr); feature->put("key",ustr);
// we need a geometry to display so just for fun here // we need a geometry to display so just for fun here
// we take the center of the bbox that was used to query // we take the center of the bbox that was used to query

View file

@ -25,6 +25,7 @@ private:
mapnik::box2d<double> const& box_; mapnik::box2d<double> const& box_;
mutable int feature_id_; mutable int feature_id_;
boost::scoped_ptr<mapnik::transcoder> tr_; boost::scoped_ptr<mapnik::transcoder> tr_;
mapnik::context_ptr ctx_;
}; };
#endif // HELLO_FEATURESET_HPP #endif // HELLO_FEATURESET_HPP

View file

@ -49,8 +49,8 @@ void agg_renderer<T>::process(raster_symbolizer const& sym,
// If there's a colorizer defined, use it to color the raster in-place // If there's a colorizer defined, use it to color the raster in-place
raster_colorizer_ptr colorizer = sym.get_colorizer(); raster_colorizer_ptr colorizer = sym.get_colorizer();
if (colorizer) if (colorizer)
colorizer->colorize(source,feature.props()); colorizer->colorize(source,feature);
box2d<double> target_ext = box2d<double>(source->ext_); box2d<double> target_ext = box2d<double>(source->ext_);
prj_trans.backward(target_ext, PROJ_ENVELOPE_POINTS); prj_trans.backward(target_ext, PROJ_ENVELOPE_POINTS);

View file

@ -105,11 +105,13 @@ source = Split(
""" """
color.cpp color.cpp
box2d.cpp box2d.cpp
building_symbolizer.cpp
datasource_cache.cpp datasource_cache.cpp
deepcopy.cpp deepcopy.cpp
expression_string.cpp expression_string.cpp
filter_factory.cpp filter_factory.cpp
feature_type_style.cpp feature_kv_iterator.cpp
feature_type_style.cpp
font_engine_freetype.cpp font_engine_freetype.cpp
font_set.cpp font_set.cpp
gamma_method.cpp gamma_method.cpp

View file

@ -0,0 +1,72 @@
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* 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$
// mapnik
#include <mapnik/building_symbolizer.hpp>
namespace mapnik
{
building_symbolizer::building_symbolizer()
: symbolizer_base(),
fill_(color(128,128,128)),
opacity_(1.0)
{}
building_symbolizer::building_symbolizer(color const& fill, expression_ptr height)
: symbolizer_base(),
fill_(fill),
height_(height),
opacity_(1.0) {}
color const& building_symbolizer::get_fill() const
{
return fill_;
}
void building_symbolizer::set_fill(color const& fill)
{
fill_ = fill;
}
expression_ptr building_symbolizer::height() const
{
return height_;
}
void building_symbolizer::set_height(expression_ptr height)
{
height_=height;
}
void building_symbolizer::set_opacity(double opacity)
{
opacity_ = opacity;
}
double building_symbolizer::get_opacity() const
{
return opacity_;
}
}

View file

@ -1183,8 +1183,8 @@ void cairo_renderer_base::process(raster_symbolizer const& sym,
// If there's a colorizer defined, use it to color the raster in-place // If there's a colorizer defined, use it to color the raster in-place
raster_colorizer_ptr colorizer = sym.get_colorizer(); raster_colorizer_ptr colorizer = sym.get_colorizer();
if (colorizer) if (colorizer)
colorizer->colorize(source,feature.props()); colorizer->colorize(source,feature);
box2d<double> target_ext = box2d<double>(source->ext_); box2d<double> target_ext = box2d<double>(source->ext_);
prj_trans.backward(target_ext, PROJ_ENVELOPE_POINTS); prj_trans.backward(target_ext, PROJ_ENVELOPE_POINTS);

View file

@ -0,0 +1,51 @@
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2012 Artem Pavlenko
*
* 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
*
*****************************************************************************/
#include <mapnik/feature_kv_iterator.hpp>
#include <mapnik/feature.hpp>
namespace mapnik {
feature_kv_iterator::feature_kv_iterator (feature_impl const& f, bool begin)
: f_(f),
itr_( begin ? f_.ctx_->begin() : f_.ctx_->end()) {}
void feature_kv_iterator::increment()
{
++itr_;
}
bool feature_kv_iterator::equal( feature_kv_iterator const& other) const
{
return ( itr_ == other.itr_);
}
feature_kv_iterator::value_type const& feature_kv_iterator::dereference() const
{
boost::get<0>(kv_) = itr_->first;
boost::get<1>(kv_) = f_.get(itr_->first);
return kv_;
}
} // endof mapnik namespace

View file

@ -359,7 +359,7 @@ void feature_style_processor<Processor>::apply_to_layer(layer const& lay, Proces
while ((feature = features->next())) while ((feature = features->next()))
{ {
if (prev && prev->props()[group_by] != feature->props()[group_by]) if (prev && prev->get(group_by) != feature->get(group_by))
{ {
// We're at a value boundary, so render what we have // We're at a value boundary, so render what we have
// up to this point. // up to this point.

View file

@ -118,18 +118,4 @@ void memory_datasource::clear()
features_.clear(); features_.clear();
} }
// point_datasource
void point_datasource::add_point(double x, double y, const char* key, const char* value)
{
feature_ptr feature(feature_factory::create(feature_id_));
++feature_id_;
geometry_type * pt = new geometry_type(mapnik::Point);
pt->move_to(x,y);
feature->add_geometry(pt);
transcoder tr("utf-8");
(*feature)[key] = tr.transcode(value);
this->push(feature);
}
} }

View file

@ -105,24 +105,23 @@ void metawriter_json_stream::write_properties(Feature const& feature, metawriter
{ {
*f_ << "}," << //Close coordinates object *f_ << "}," << //Close coordinates object
"\n \"properties\": {"; "\n \"properties\": {";
std::map<std::string, value> const &fprops = feature.props();
int i = 0; int i = 0;
BOOST_FOREACH(std::string p, properties) BOOST_FOREACH(std::string const& p, properties)
{ {
std::map<std::string, value>::const_iterator itr = fprops.find(p); if (feature.has_key(p))
std::string text;
if (itr != fprops.end())
{ {
// Skip empty props mapnik::value const& val = feature.get(p);
if(itr->second.to_string().size() == 0) continue; // ignore empty std::string str = val.to_string();
if (str.size() == 0) continue; // ignore empty attributes
//Property found //Property found
text = boost::replace_all_copy(boost::replace_all_copy(itr->second.to_string(), "\\", "\\\\"), "\"", "\\\""); std::string text = boost::replace_all_copy(boost::replace_all_copy(str, "\\", "\\\\"), "\"", "\\\"");
if (i++) *f_ << ","; if (i++) *f_ << ",";
*f_ << "\n \"" << p << "\":\"" << text << "\""; *f_ << "\n \"" << p << "\":\"" << text << "\"";
} }
} }
*f_ << "\n} }"; *f_ << "\n} }";
} }
@ -330,8 +329,7 @@ metawriter_json::metawriter_json(metawriter_properties dflt_properties, path_exp
void metawriter_json::start(metawriter_property_map const& properties) void metawriter_json::start(metawriter_property_map const& properties)
{ {
filename_ = filename_ = path_processor<metawriter_property_map>::evaluate(*fn_, properties);
path_processor<metawriter_property_map>::evaluate(*fn_, properties);
#ifdef MAPNIK_DEBUG #ifdef MAPNIK_DEBUG
std::clog << "Metawriter JSON: filename=" << filename_ << "\n"; std::clog << "Metawriter JSON: filename=" << filename_ << "\n";
#endif #endif

View file

@ -38,25 +38,22 @@ using mapnik::Feature;
using mapnik::metawriter_properties; using mapnik::metawriter_properties;
// intersect a set of properties with those in the feature descriptor // intersect a set of properties with those in the feature descriptor
map<string,value> intersect_properties(const Feature &feature, const metawriter_properties &properties) { map<string,value> intersect_properties(Feature const& feature, metawriter_properties const& properties) {
const map<string, value> &fprops = feature.props();
map<string,value> nprops;
BOOST_FOREACH(string p, properties) { map<string,value> nprops;
map<string, value>::const_iterator itr = fprops.find(p); BOOST_FOREACH(string p, properties)
if (itr != fprops.end()) { {
nprops.insert(*itr); if (feature.has_key(p))
nprops.insert(std::make_pair(p,feature.get(p)));
} }
}
return nprops;
return nprops; }} // end anonymous namespace
}
} // end anonymous namespace
namespace mapnik { namespace mapnik {
metawriter_inmem::metawriter_inmem(metawriter_properties dflt_properties) metawriter_inmem::metawriter_inmem(metawriter_properties dflt_properties)
: metawriter(dflt_properties) { : metawriter(dflt_properties) {
} }
metawriter_inmem::~metawriter_inmem() { metawriter_inmem::~metawriter_inmem() {
@ -66,10 +63,10 @@ void
metawriter_inmem::add_box(box2d<double> const& box, Feature const& feature, metawriter_inmem::add_box(box2d<double> const& box, Feature const& feature,
CoordTransform const& /*t*/, CoordTransform const& /*t*/,
metawriter_properties const& properties) { metawriter_properties const& properties) {
meta_instance inst; meta_instance inst;
inst.box = box; inst.box = box;
inst.properties = intersect_properties(feature, properties); inst.properties = intersect_properties(feature, properties);
instances_.push_back(inst); instances_.push_back(inst);
} }
void void
@ -78,12 +75,12 @@ metawriter_inmem::add_text(text_placement_info const& p,
Feature const& feature, Feature const& feature,
CoordTransform const& /*t*/, CoordTransform const& /*t*/,
metawriter_properties const& properties) { metawriter_properties const& properties) {
if (p.extents.valid()) { if (p.extents.valid()) {
meta_instance inst; meta_instance inst;
inst.properties = intersect_properties(feature, properties); inst.properties = intersect_properties(feature, properties);
inst.box = p.extents; inst.box = p.extents;
instances_.push_back(inst); instances_.push_back(inst);
} }
} }
void void
@ -91,7 +88,7 @@ metawriter_inmem::add_polygon(path_type & path,
Feature const& feature, Feature const& feature,
CoordTransform const& t, CoordTransform const& t,
metawriter_properties const& properties) { metawriter_properties const& properties) {
add_vertices(path, feature, t, properties); add_vertices(path, feature, t, properties);
} }
void void
@ -99,7 +96,7 @@ metawriter_inmem::add_line(path_type & path,
Feature const& feature, Feature const& feature,
CoordTransform const& t, CoordTransform const& t,
metawriter_properties const& properties) { metawriter_properties const& properties) {
add_vertices(path, feature, t, properties); add_vertices(path, feature, t, properties);
} }
void void
@ -107,41 +104,41 @@ metawriter_inmem::add_vertices(path_type & path,
Feature const& feature, Feature const& feature,
CoordTransform const& /*t*/, CoordTransform const& /*t*/,
metawriter_properties const& properties) { metawriter_properties const& properties) {
box2d<double> box; box2d<double> box;
unsigned cmd; unsigned cmd;
double x = 0.0, y = 0.0; double x = 0.0, y = 0.0;
path.rewind(0); path.rewind(0);
while ((cmd = path.vertex(&x, &y)) != SEG_END) { while ((cmd = path.vertex(&x, &y)) != SEG_END) {
box.expand_to_include(x, y); box.expand_to_include(x, y);
} }
if ((box.width() >= 0.0) && (box.height() >= 0.0)) { if ((box.width() >= 0.0) && (box.height() >= 0.0)) {
meta_instance inst; meta_instance inst;
inst.properties = intersect_properties(feature, properties); inst.properties = intersect_properties(feature, properties);
inst.box = box; inst.box = box;
instances_.push_back(inst); instances_.push_back(inst);
} }
} }
void void
metawriter_inmem::start(metawriter_property_map const& /*properties*/) { metawriter_inmem::start(metawriter_property_map const& /*properties*/) {
instances_.clear(); instances_.clear();
} }
const std::list<metawriter_inmem::meta_instance> & const std::list<metawriter_inmem::meta_instance> &
metawriter_inmem::instances() const { metawriter_inmem::instances() const {
return instances_; return instances_;
} }
metawriter_inmem::meta_instance_list::const_iterator metawriter_inmem::meta_instance_list::const_iterator
metawriter_inmem::inst_begin() const { metawriter_inmem::inst_begin() const {
return instances_.begin(); return instances_.begin();
} }
metawriter_inmem::meta_instance_list::const_iterator metawriter_inmem::meta_instance_list::const_iterator
metawriter_inmem::inst_end() const { metawriter_inmem::inst_end() const {
return instances_.end(); return instances_.end();
} }

View file

@ -27,5 +27,58 @@
namespace mapnik namespace mapnik
{ {
polygon_symbolizer::polygon_symbolizer()
: symbolizer_base(),
fill_(color(128,128,128)),
opacity_(1.0),
gamma_(1.0),
gamma_method_(GAMMA_POWER) {}
polygon_symbolizer::polygon_symbolizer(color const& fill)
: symbolizer_base(),
fill_(fill),
opacity_(1.0),
gamma_(1.0),
gamma_method_(GAMMA_POWER) {}
color const& polygon_symbolizer::get_fill() const
{
return fill_;
} }
void polygon_symbolizer::set_fill(color const& fill)
{
fill_ = fill;
}
void polygon_symbolizer::set_opacity(double opacity)
{
opacity_ = opacity;
}
double polygon_symbolizer::get_opacity() const
{
return opacity_;
}
void polygon_symbolizer::set_gamma(double gamma)
{
gamma_ = gamma;
}
double polygon_symbolizer::get_gamma() const
{
return gamma_;
}
void polygon_symbolizer::set_gamma_method(gamma_method_e gamma_method)
{
gamma_method_ = gamma_method;
}
gamma_method_e polygon_symbolizer::get_gamma_method() const
{
return gamma_method_;
}
}

View file

@ -40,8 +40,10 @@ static const char *colorizer_mode_strings[] = {
IMPLEMENT_ENUM( colorizer_mode, colorizer_mode_strings ) IMPLEMENT_ENUM( colorizer_mode, colorizer_mode_strings )
colorizer_stop::colorizer_stop(const float value/* = 0*/, const colorizer_mode mode/* = COLORIZER_INHERIT*/, const color& _color/* = color(0,0,0,0)*/, const std::string& label/* ) ""*/) colorizer_stop::colorizer_stop(float value, colorizer_mode mode,
: value_(value) color const& _color,
std::string const& label)
: value_(value)
, mode_(mode) , mode_(mode)
, color_(_color) , color_(_color)
, label_(label) , label_(label)
@ -49,7 +51,7 @@ colorizer_stop::colorizer_stop(const float value/* = 0*/, const colorizer_mode m
} }
colorizer_stop::colorizer_stop(const colorizer_stop& stop) colorizer_stop::colorizer_stop(colorizer_stop const& stop)
: value_(stop.value_) : value_(stop.value_)
, mode_(stop.mode_) , mode_(stop.mode_)
, color_(stop.color_) , color_(stop.color_)
@ -67,9 +69,9 @@ colorizer_stop::~colorizer_stop()
bool colorizer_stop::operator==(colorizer_stop const& other) const bool colorizer_stop::operator==(colorizer_stop const& other) const
{ {
return (value_ == other.value_) && return (value_ == other.value_) &&
(color_ == other.color_) && (color_ == other.color_) &&
(mode_ == other.mode_) && (mode_ == other.mode_) &&
(label_ == other.label_); (label_ == other.label_);
} }
@ -84,7 +86,7 @@ std::string colorizer_stop::to_string() const
raster_colorizer::raster_colorizer(colorizer_mode mode/* = COLORIZER_LINEAR*/, const color& _color/* = color(0,0,0,0)*/) raster_colorizer::raster_colorizer(colorizer_mode mode, color const& _color)
: default_mode_(mode) : default_mode_(mode)
, default_color_(_color) , default_color_(_color)
, epsilon_(std::numeric_limits<float>::epsilon()) , epsilon_(std::numeric_limits<float>::epsilon())
@ -96,10 +98,13 @@ raster_colorizer::~raster_colorizer()
{ {
} }
bool raster_colorizer::add_stop(const colorizer_stop & stop) { bool raster_colorizer::add_stop(colorizer_stop const& stop)
{
//make sure stops are added in order of value //make sure stops are added in order of value
if(stops_.size()) { if(stops_.size())
if(stop.get_value() <= stops_.back().get_value()) { {
if(stop.get_value() <= stops_.back().get_value())
{
return false; return false;
} }
} }
@ -109,7 +114,7 @@ bool raster_colorizer::add_stop(const colorizer_stop & stop) {
return true; return true;
} }
void raster_colorizer::colorize(raster_ptr const& raster,const std::map<std::string,value> &Props) const void raster_colorizer::colorize(raster_ptr const& raster, Feature const& f) const
{ {
unsigned *imageData = raster->data_.getData(); unsigned *imageData = raster->data_.getData();
@ -118,11 +123,11 @@ void raster_colorizer::colorize(raster_ptr const& raster,const std::map<std::str
bool hasNoData = false; bool hasNoData = false;
float noDataValue = 0; float noDataValue = 0;
const std::map<std::string,value>::const_iterator fi = Props.find("NODATA"); //std::map<std::string,value>::const_iterator fi = Props.find("NODATA");
if (fi != Props.end()) if (f.has_key("NODATA"))
{ {
hasNoData = true; hasNoData = true;
noDataValue = static_cast<float>(fi->second.to_double()); noDataValue = static_cast<float>(f.get("NODATA").to_double());
} }
for (int i=0; i<len; ++i) for (int i=0; i<len; ++i)
@ -141,11 +146,13 @@ inline unsigned interpolate(unsigned start, unsigned end, float fraction)
return static_cast<unsigned>(fraction * ((float)end - (float)start) + start); return static_cast<unsigned>(fraction * ((float)end - (float)start) + start);
} }
color raster_colorizer::get_color(float value) const { color raster_colorizer::get_color(float value) const
{
int stopCount = stops_.size(); int stopCount = stops_.size();
//use default color if no stops //use default color if no stops
if(stopCount == 0) { if(stopCount == 0)
{
return default_color_; return default_color_;
} }
@ -153,31 +160,41 @@ color raster_colorizer::get_color(float value) const {
int stopIdx = -1; int stopIdx = -1;
bool foundStopIdx = false; bool foundStopIdx = false;
for(int i=0; i<stopCount; i++) { for(int i=0; i<stopCount; ++i)
if(value < stops_[i].get_value()) { {
if(value < stops_[i].get_value())
{
stopIdx = i-1; stopIdx = i-1;
foundStopIdx = true; foundStopIdx = true;
break; break;
} }
} }
if(!foundStopIdx) {
if(!foundStopIdx)
{
stopIdx = stopCount-1; stopIdx = stopCount-1;
} }
//2 - Find the next stop //2 - Find the next stop
int nextStopIdx = stopIdx + 1; int nextStopIdx = stopIdx + 1;
if(nextStopIdx >= stopCount) { //there is no next stop if(nextStopIdx >= stopCount)
{
//there is no next stop
nextStopIdx = stopCount - 1; nextStopIdx = stopCount - 1;
} }
//3 - Work out the mode //3 - Work out the mode
colorizer_mode stopMode; colorizer_mode stopMode;
if( stopIdx == -1 ) { //before the first stop if( stopIdx == -1 )
{
//before the first stop
stopMode = default_mode_; stopMode = default_mode_;
} }
else { else
{
stopMode = stops_[stopIdx].get_mode(); stopMode = stops_[stopIdx].get_mode();
if(stopMode == COLORIZER_INHERIT) { if(stopMode == COLORIZER_INHERIT)
{
stopMode = default_mode_; stopMode = default_mode_;
} }
} }
@ -188,69 +205,76 @@ color raster_colorizer::get_color(float value) const {
float stopValue = 0; float stopValue = 0;
float nextStopValue = 0; float nextStopValue = 0;
color outputColor = get_default_color(); color outputColor = get_default_color();
if(stopIdx == -1) { if(stopIdx == -1)
{
stopColor = default_color_; stopColor = default_color_;
nextStopColor = stops_[nextStopIdx].get_color(); nextStopColor = stops_[nextStopIdx].get_color();
stopValue = value; stopValue = value;
nextStopValue = stops_[nextStopIdx].get_value(); nextStopValue = stops_[nextStopIdx].get_value();
} }
else { else
{
stopColor = stops_[stopIdx].get_color(); stopColor = stops_[stopIdx].get_color();
nextStopColor = stops_[nextStopIdx].get_color(); nextStopColor = stops_[nextStopIdx].get_color();
stopValue = stops_[stopIdx].get_value(); stopValue = stops_[stopIdx].get_value();
nextStopValue = stops_[nextStopIdx].get_value(); nextStopValue = stops_[nextStopIdx].get_value();
} }
switch(stopMode) { switch(stopMode)
{
case COLORIZER_LINEAR: case COLORIZER_LINEAR:
{
//deal with this separately so we don't have to worry about div0
if(nextStopValue == stopValue)
{ {
//deal with this separately so we don't have to worry about div0 outputColor = stopColor;
if(nextStopValue == stopValue) {
outputColor = stopColor;
}
else {
float fraction = (value - stopValue) / (nextStopValue - stopValue);
unsigned r = interpolate(stopColor.red(), nextStopColor.red(),fraction);
unsigned g = interpolate(stopColor.green(), nextStopColor.green(),fraction);
unsigned b = interpolate(stopColor.blue(), nextStopColor.blue(),fraction);
unsigned a = interpolate(stopColor.alpha(), nextStopColor.alpha(),fraction);
outputColor.set_red(r);
outputColor.set_green(g);
outputColor.set_blue(b);
outputColor.set_alpha(a);
}
} }
break; else
{
float fraction = (value - stopValue) / (nextStopValue - stopValue);
unsigned r = interpolate(stopColor.red(), nextStopColor.red(),fraction);
unsigned g = interpolate(stopColor.green(), nextStopColor.green(),fraction);
unsigned b = interpolate(stopColor.blue(), nextStopColor.blue(),fraction);
unsigned a = interpolate(stopColor.alpha(), nextStopColor.alpha(),fraction);
outputColor.set_red(r);
outputColor.set_green(g);
outputColor.set_blue(b);
outputColor.set_alpha(a);
}
}
break;
case COLORIZER_DISCRETE: case COLORIZER_DISCRETE:
outputColor = stopColor; outputColor = stopColor;
break; break;
case COLORIZER_EXACT: case COLORIZER_EXACT:
default: default:
//approximately equal (within epsilon) //approximately equal (within epsilon)
if(fabs(value - stopValue) < epsilon_) { if(fabs(value - stopValue) < epsilon_)
{
outputColor = stopColor; outputColor = stopColor;
} }
else { else
{
outputColor = default_color_; outputColor = default_color_;
} }
break; break;
} }
/* /*
std::clog << "get_color: " << value << "\n"; std::clog << "get_color: " << value << "\n";
std::clog << "\tstopIdx: " << stopIdx << "\n"; std::clog << "\tstopIdx: " << stopIdx << "\n";
std::clog << "\tnextStopIdx: " << nextStopIdx << "\n"; std::clog << "\tnextStopIdx: " << nextStopIdx << "\n";
std::clog << "\tstopValue: " << stopValue << "\n"; std::clog << "\tstopValue: " << stopValue << "\n";
std::clog << "\tnextStopValue: " << nextStopValue << "\n"; std::clog << "\tnextStopValue: " << nextStopValue << "\n";
std::clog << "\tstopColor: " << stopColor.to_string() << "\n"; std::clog << "\tstopColor: " << stopColor.to_string() << "\n";
std::clog << "\tnextStopColor: " << nextStopColor.to_string() << "\n"; std::clog << "\tnextStopColor: " << nextStopColor.to_string() << "\n";
std::clog << "\tstopMode: " << stopMode.as_string() << "\n"; std::clog << "\tstopMode: " << stopMode.as_string() << "\n";
std::clog << "\toutputColor: " << outputColor.to_string() << "\n"; std::clog << "\toutputColor: " << outputColor.to_string() << "\n";
*/ */
return outputColor; return outputColor;
} }

View file

@ -81,10 +81,21 @@ text_placement_info_ptr text_symbolizer_helper<FaceManagerT, DetectorT>::get_poi
return text_placement_info_ptr(); return text_placement_info_ptr();
} }
struct largest_bbox_first
{
bool operator() (geometry_type const* g0, geometry_type const* g1) const
{
box2d<double> b0 = g0->envelope();
box2d<double> b1 = g1->envelope();
return b0.width()*b0.height() > b1.width()*b1.height();
}
};
template <typename FaceManagerT, typename DetectorT> template <typename FaceManagerT, typename DetectorT>
void text_symbolizer_helper<FaceManagerT, DetectorT>::initialize_geometries() void text_symbolizer_helper<FaceManagerT, DetectorT>::initialize_geometries()
{ {
bool largest_box_only = false;
unsigned num_geom = feature_.num_geometries(); unsigned num_geom = feature_.num_geometries();
for (unsigned i=0; i<num_geom; ++i) for (unsigned i=0; i<num_geom; ++i)
{ {
@ -92,19 +103,31 @@ void text_symbolizer_helper<FaceManagerT, DetectorT>::initialize_geometries()
// don't bother with empty geometries // don't bother with empty geometries
if (geom.num_points() == 0) continue; if (geom.num_points() == 0) continue;
eGeomType type = geom.type();
if ((geom.type() == Polygon) && sym_.get_minimum_path_length() > 0) if (type == Polygon)
{ {
// TODO - find less costly method than fetching full envelope largest_box_only = true;
box2d<double> gbox = t_.forward(geom.envelope(), prj_trans_); if (sym_.get_minimum_path_length() > 0)
if (gbox.width() < sym_.get_minimum_path_length())
{ {
continue; // TODO - find less costly method than fetching full envelope
box2d<double> gbox = t_.forward(geom.envelope(), prj_trans_);
if (gbox.width() < sym_.get_minimum_path_length())
{
continue;
}
} }
} }
// TODO - calculate length here as well // TODO - calculate length here as well
geometries_to_process_.push_back(const_cast<geometry_type*>(&geom)); geometries_to_process_.push_back(const_cast<geometry_type*>(&geom));
} }
if (largest_box_only)
{
geometries_to_process_.sort(largest_bbox_first());
geo_itr_ = geometries_to_process_.begin();
geometries_to_process_.erase(++geo_itr_,geometries_to_process_.end());
}
geo_itr_ = geometries_to_process_.begin(); geo_itr_ = geometries_to_process_.begin();
} }

View file

@ -32,10 +32,8 @@ def compare_shape_between_mapnik_and_ogr(shapefile,query=None):
#import pdb;pdb.set_trace() #import pdb;pdb.set_trace()
eq_(feat1.id(),feat2.id(), eq_(feat1.id(),feat2.id(),
'%s : ogr feature id %s "%s" does not equal shapefile feature id %s "%s"' '%s : ogr feature id %s "%s" does not equal shapefile feature id %s "%s"'
% (count,feat1.id(),str(feat1.attributes), feat2.id(),str(feat2.attributes)) ) % (count,feat1.id(),str(feat1.attributes), feat2.id(),str(feat2.attributes)))
return True return True
def test_shapefile_line_featureset_id(): def test_shapefile_line_featureset_id():

View file

@ -6,71 +6,50 @@ from nose.tools import *
import mapnik import mapnik
from binascii import unhexlify from binascii import unhexlify
class FeatureTest(unittest.TestCase): def test_default_constructor():
def makeOne(self, *args, **kw): f = mapnik.Feature(mapnik.Context(),1)
return mapnik.Feature(*args, **kw) eq_(f is not None,True)
def test_default_constructor(self):
f = self.makeOne(1)
self.failUnless(f is not None)
def test_python_extended_constructor(self): def test_python_extended_constructor():
f = self.makeOne(1, 'POLYGON ((35 10, 10 20, 15 40, 45 45, 35 10),(20 30, 35 35, 30 20, 20 30))', foo="bar") context = mapnik.Context()
self.failUnlessEqual(f['foo'], 'bar') context.push('foo')
self.failUnlessEqual(f.envelope(),mapnik.Box2d(10.0,10.0,45.0,45.0)) context.push('foo')
f = mapnik.Feature(context,1)
def test_set_get_properties(self): wkt = 'POLYGON ((35 10, 10 20, 15 40, 45 45, 35 10),(20 30, 35 35, 30 20, 20 30))'
f = self.makeOne(1) f.add_geometries_from_wkt(wkt)
counter = itertools.count(0) f['foo'] = 'bar'
def test_val(expected): eq_(f['foo'], 'bar')
key = 'prop%d'%counter.next() eq_(f.envelope(),mapnik.Box2d(10.0,10.0,45.0,45.0))
try: # reset
f[key] = expected f['foo'] = u"avión"
except TypeError: eq_(f['foo'], u"avión")
self.fail("%r (%s)"%(expected, type(expected))) f['foo'] = 1.4
self.failUnlessEqual(f[key], expected) eq_(f['foo'], 1.4)
for v in (1, True, 1.4, "foo", u"avión"): f['foo'] = True
test_val(v) eq_(f['foo'], True)
def test_add_wkt_geometry(self):
def add_geom_wkt(wkt):
f = self.makeOne(1)
self.failUnlessEqual(len(f.geometries()), 0)
f.add_geometries_from_wkt(wkt)
self.failUnlessEqual(len(f.geometries()), 3)
e = mapnik.Box2d()
self.failUnlessEqual(e.valid(), False)
for g in f.geometries():
if not e.valid():
e = g.envelope()
else:
e +=g.envelope()
self.failUnlessEqual(e, f.envelope())
def add_geom_wkb(wkb):
f = self.makeOne(1)
self.failUnlessEqual(len(f.geometries()), 0)
f.add_geometries_from_wkb(unhexlify(wkb))
self.failUnlessEqual(len(f.geometries()), 1)
e = mapnik.Box2d()
self.failUnlessEqual(e.valid(), False)
for g in f.geometries():
if not e.valid():
e = g.envelope()
else:
e +=g.envelope()
self.failUnlessEqual(e, f.envelope())
def run() :
add_geom_wkt('GEOMETRYCOLLECTION(POINT(4 6),LINESTRING(4 6,7 10),POLYGON ((30 10, 10 20, 20 40, 40 40, 30 10)))')
add_geom_wkb('010300000001000000050000000000000000003e4000000000000024400000000000002440000000000000344000000000000034400000000000004440000000000000444000000000000044400000000000003e400000000000002440') # POLYGON ((30 10, 10 20, 20 40, 40 40, 30 10))
run()
def test_add_geom_wkb():
# POLYGON ((30 10, 10 20, 20 40, 40 40, 30 10))
wkb = '010300000001000000050000000000000000003e4000000000000024400000000000002440000000000000344000000000000034400000000000004440000000000000444000000000000044400000000000003e400000000000002440'
context = mapnik.Context()
f = mapnik.Feature(context,1)
eq_(len(f.geometries()), 0)
f.add_geometries_from_wkb(unhexlify(wkb))
eq_(len(f.geometries()), 1)
e = mapnik.Box2d()
eq_(e.valid(), False)
for g in f.geometries():
if not e.valid():
e = g.envelope()
else:
e +=g.envelope()
eq_(e, f.envelope())
def test_feature_expression_evaluation(): def test_feature_expression_evaluation():
f = mapnik.Feature(1) context = mapnik.Context()
context.push('name')
f = mapnik.Feature(context,1)
f['name'] = 'a' f['name'] = 'a'
eq_(f['name'],u'a') eq_(f['name'],u'a')
expr = mapnik.Expression("[name]='a'") expr = mapnik.Expression("[name]='a'")
@ -82,7 +61,9 @@ def test_feature_expression_evaluation():
# https://github.com/mapnik/mapnik/issues/933 # https://github.com/mapnik/mapnik/issues/933
def test_feature_expression_evaluation_missing_attr(): def test_feature_expression_evaluation_missing_attr():
f = mapnik.Feature(1) context = mapnik.Context()
context.push('name')
f = mapnik.Feature(context,1)
f['name'] = u'a' f['name'] = u'a'
eq_(f['name'],u'a') eq_(f['name'],u'a')
expr = mapnik.Expression("[fielddoesnotexist]='a'") expr = mapnik.Expression("[fielddoesnotexist]='a'")
@ -94,7 +75,9 @@ def test_feature_expression_evaluation_missing_attr():
# https://github.com/mapnik/mapnik/issues/934 # https://github.com/mapnik/mapnik/issues/934
def test_feature_expression_evaluation_attr_with_spaces(): def test_feature_expression_evaluation_attr_with_spaces():
f = mapnik.Feature(1) context = mapnik.Context()
context.push('name with space')
f = mapnik.Feature(context,1)
f['name with space'] = u'a' f['name with space'] = u'a'
eq_(f['name with space'],u'a') eq_(f['name with space'],u'a')
expr = mapnik.Expression("[name with space]='a'") expr = mapnik.Expression("[name with space]='a'")

View file

@ -93,25 +93,33 @@ def test_filter_init():
def test_regex_match(): def test_regex_match():
f = mapnik.Feature(0) context = mapnik.Context()
context.push('name')
f = mapnik.Feature(context,0)
f["name"] = 'test' f["name"] = 'test'
expr = mapnik.Expression("[name].match('test')") expr = mapnik.Expression("[name].match('test')")
eq_(expr.evaluate(f),True) # 1 == True eq_(expr.evaluate(f),True) # 1 == True
def test_unicode_regex_match(): def test_unicode_regex_match():
f = mapnik.Feature(0) context = mapnik.Context()
context.push('name')
f = mapnik.Feature(context,0)
f["name"] = 'Québec' f["name"] = 'Québec'
expr = mapnik.Expression("[name].match('Québec')") expr = mapnik.Expression("[name].match('Québec')")
eq_(expr.evaluate(f),True) # 1 == True eq_(expr.evaluate(f),True) # 1 == True
def test_regex_replace(): def test_regex_replace():
f = mapnik.Feature(0) context = mapnik.Context()
context.push('name')
f = mapnik.Feature(context,0)
f["name"] = 'test' f["name"] = 'test'
expr = mapnik.Expression("[name].replace('(\B)|( )','$1 ')") expr = mapnik.Expression("[name].replace('(\B)|( )','$1 ')")
eq_(expr.evaluate(f),'t e s t') eq_(expr.evaluate(f),'t e s t')
def test_unicode_regex_replace(): def test_unicode_regex_replace():
f = mapnik.Feature(0) context = mapnik.Context()
context.push('name')
f = mapnik.Feature(context,0)
f["name"] = 'Québec' f["name"] = 'Québec'
expr = mapnik.Expression("[name].replace('(\B)|( )','$1 ')") expr = mapnik.Expression("[name].replace('(\B)|( )','$1 ')")
eq_(expr.evaluate(f), u'Q u é b e c') eq_(expr.evaluate(f), u'Q u é b e c')

View file

@ -34,7 +34,7 @@ def compare_wkb_from_wkt(wkt,num=None):
paths = mapnik.Path.from_wkt(wkt) paths = mapnik.Path.from_wkt(wkt)
# add geometry(s) to feature from wkt # add geometry(s) to feature from wkt
f = mapnik.Feature(1) f = mapnik.Feature(mapnik.Context(),1)
f.add_geometries_from_wkt(wkt) f.add_geometries_from_wkt(wkt)
# ensure both have same result # ensure both have same result
@ -65,7 +65,7 @@ def compare_wkt_from_wkt(wkt,num=None):
paths = mapnik.Path.from_wkt(wkt) paths = mapnik.Path.from_wkt(wkt)
# add geometry(s) to feature from wkt # add geometry(s) to feature from wkt
f = mapnik.Feature(1) f = mapnik.Feature(mapnik.Context(),1)
f.add_geometries_from_wkt(wkt) f.add_geometries_from_wkt(wkt)
# compare to original, which may not have significant digits # compare to original, which may not have significant digits
@ -113,14 +113,14 @@ def test_geometry_index_error():
wkt = 'Point (0 0)' wkt = 'Point (0 0)'
paths = mapnik.Path.from_wkt(wkt) paths = mapnik.Path.from_wkt(wkt)
paths[3] paths[3]
f = mapnik.Feature(1) f = mapnik.Feature(mapnik.Context(),1)
f.add_geometries_from_wkt(wkt) f.add_geometries_from_wkt(wkt)
f.geometries()[3] f.geometries()[3]
@raises(IndexError) @raises(IndexError)
def test_geometry_index_error2(): def test_geometry_index_error2():
wkt = 'Point (0 0)' wkt = 'Point (0 0)'
f = mapnik.Feature(1) f = mapnik.Feature(mapnik.Context(),1)
f.add_geometries_from_wkt(wkt) f.add_geometries_from_wkt(wkt)
f.geometries()[3] f.geometries()[3]

View file

@ -1,40 +1,34 @@
#encoding: utf8 #encoding: utf8
import itertools import mapnik
import unittest from nose.tools import *
class MemoryDatasource(unittest.TestCase): def test_add_feature():
ids = itertools.count(0) md = mapnik.MemoryDatasource()
eq_(md.num_features(), 0)
context = mapnik.Context()
context.push('foo')
feature = mapnik.Feature(context,1)
feature['foo'] = 'bar'
feature.add_geometries_from_wkt('POINT(2 3)')
md.add_feature(feature)
eq_(md.num_features(), 1)
def makeOne(self, *args, **kw): featureset = md.features_at_point(mapnik.Coord(2,3))
from mapnik import MemoryDatasource retrieved = []
return MemoryDatasource(*args, **kw) feat = featureset.next()
while featureset.next():
retrieved.append(feat)
eq_(len(retrieved), 1)
f = retrieved[0]
eq_(f['foo'], 'bar')
def makeFeature(self, wkt, **properties): featureset = md.features_at_point(Coord(20,30)).features
from mapnik import Feature retrieved = []
f = Feature(self.ids.next()) feat = featureset.next()
f.add_geometries_from_wkt(wkt) while featureset.next():
for k,v in properties.iteritems(): retrieved.append(feat)
f[k] = v eq_(len(retrieved), 0)
return f
def test_default_constructor(self):
f = self.makeOne()
self.failUnless(f is not None)
def test_add_feature(self):
md = self.makeOne()
self.failUnlessEqual(md.num_features(), 0)
md.add_feature(self.makeFeature('Point(2 3)', foo='bar'))
self.failUnlessEqual(md.num_features(), 1)
from mapnik import Coord
retrieved = md.features_at_point(Coord(2,3)).features
self.failUnlessEqual(len(retrieved), 1)
f = retrieved[0]
self.failUnlessEqual(f['foo'], 'bar')
retrieved = md.features_at_point(Coord(20,30)).features
self.failUnlessEqual(len(retrieved), 0)
if __name__ == "__main__": if __name__ == "__main__":
[eval(run)() for run in dir() if 'test_' in run] [eval(run)() for run in dir() if 'test_' in run]

View file

@ -39,10 +39,6 @@ if 'ogr' in mapnik.DatasourceCache.instance().plugin_names():
eq_(f['NOM_FR'], u'Québec') eq_(f['NOM_FR'], u'Québec')
eq_(f['Shape_Area'], 1512185733150.0) eq_(f['Shape_Area'], 1512185733150.0)
eq_(f['Shape_Leng'], 19218883.724300001) eq_(f['Shape_Leng'], 19218883.724300001)
# Check that the deprecated interface still works,
# remove me once the deprecated code is cleaned up
eq_(f.properties['Shape_Leng'], 19218883.724300001)
@raises(RuntimeError) @raises(RuntimeError)
def test_that_nonexistant_query_field_throws(**kwargs): def test_that_nonexistant_query_field_throws(**kwargs):

View file

@ -37,11 +37,28 @@ def resolve(grid,x,y):
def create_grid_map(width,height): def create_grid_map(width,height):
places_ds = mapnik.PointDatasource() ds = mapnik.MemoryDatasource()
places_ds.add_point(143.10,-38.60,'Name','South East') context = mapnik.Context()
places_ds.add_point(142.48,-38.60,'Name','South West') context.push('Name')
places_ds.add_point(142.48,-38.38,'Name','North West') f = mapnik.Feature(context,1)
places_ds.add_point(143.10,-38.38,'Name','North East') f['Name'] = 'South East'
f.add_geometries_from_wkt('POINT (143.10 -38.60)')
ds.add_feature(f)
f = mapnik.Feature(context,2)
f['Name'] = 'South West'
f.add_geometries_from_wkt('POINT (142.48 -38.60)')
ds.add_feature(f)
f = mapnik.Feature(context,3)
f['Name'] = 'North West'
f.add_geometries_from_wkt('POINT (142.48 -38.38)')
ds.add_feature(f)
f = mapnik.Feature(context,4)
f['Name'] = 'North East'
f.add_geometries_from_wkt('POINT (143.10 -38.38)')
ds.add_feature(f)
s = mapnik.Style() s = mapnik.Style()
r = mapnik.Rule() r = mapnik.Rule()
#symb = mapnik.PointSymbolizer() #symb = mapnik.PointSymbolizer()
@ -59,7 +76,7 @@ def create_grid_map(width,height):
s.rules.append(r) s.rules.append(r)
lyr = mapnik.Layer('Places') lyr = mapnik.Layer('Places')
lyr.datasource = places_ds lyr.datasource = ds
lyr.styles.append('places_labels') lyr.styles.append('places_labels')
m = mapnik.Map(width,height) m = mapnik.Map(width,height)
m.append_style('places_labels',s) m.append_style('places_labels',s)

View file

@ -120,29 +120,37 @@ def resolve(grid,x,y):
def test_render_grid(): def test_render_grid():
places_ds = mapnik.PointDatasource() ds = mapnik.MemoryDatasource()
places_ds.add_point(143.10,-38.60,'Name','South East') context = mapnik.Context()
places_ds.add_point(142.48,-38.60,'Name','South West') context.push('Name')
places_ds.add_point(142.48,-38.38,'Name','North West') f = mapnik.Feature(context,1)
places_ds.add_point(143.10,-38.38,'Name','North East') f['Name'] = 'South East'
f.add_geometries_from_wkt('POINT (143.10 -38.60)')
ds.add_feature(f)
f = mapnik.Feature(context,2)
f['Name'] = 'South West'
f.add_geometries_from_wkt('POINT (142.48 -38.60)')
ds.add_feature(f)
f = mapnik.Feature(context,3)
f['Name'] = 'North West'
f.add_geometries_from_wkt('POINT (142.48 -38.38)')
ds.add_feature(f)
f = mapnik.Feature(context,4)
f['Name'] = 'North East'
f.add_geometries_from_wkt('POINT (143.10 -38.38)')
ds.add_feature(f)
s = mapnik.Style() s = mapnik.Style()
r = mapnik.Rule() r = mapnik.Rule()
#symb = mapnik.PointSymbolizer()
symb = mapnik.MarkersSymbolizer() symb = mapnik.MarkersSymbolizer()
symb.allow_overlap = True symb.allow_overlap = True
r.symbols.append(symb) r.symbols.append(symb)
label = mapnik.TextSymbolizer(mapnik.Expression('[Name]'),
'DejaVu Sans Book',
10,
mapnik.Color('black')
)
label.allow_overlap = True
label.displacement = (0,-10)
#r.symbols.append(label)
s.rules.append(r) s.rules.append(r)
lyr = mapnik.Layer('Places') lyr = mapnik.Layer('Places')
lyr.datasource = places_ds lyr.datasource = ds
lyr.styles.append('places_labels') lyr.styles.append('places_labels')
m = mapnik.Map(256,256) m = mapnik.Map(256,256)
m.append_style('places_labels',s) m.append_style('places_labels',s)
@ -184,9 +192,19 @@ def test_render_points():
if not mapnik.has_cairo(): return if not mapnik.has_cairo(): return
# create and populate point datasource (WGS84 lat-lon coordinates) # create and populate point datasource (WGS84 lat-lon coordinates)
places_ds = mapnik.PointDatasource() ds = mapnik.MemoryDatasource()
places_ds.add_point(142.48,-38.38,'Name','Westernmost Point') # westernmost context = mapnik.Context()
places_ds.add_point(143.10,-38.60,'Name','Southernmost Point') # southernmost context.push('Name')
f = mapnik.Feature(context,1)
f['Name'] = 'Westernmost Point'
f.add_geometries_from_wkt('POINT (142.48 -38.38)')
ds.add_feature(f)
f = mapnik.Feature(context,2)
f['Name'] = 'Southernmost Point'
f.add_geometries_from_wkt('POINT (143.10,-38.60)')
ds.add_feature(f)
# create layer/rule/style # create layer/rule/style
s = mapnik.Style() s = mapnik.Style()
r = mapnik.Rule() r = mapnik.Rule()
@ -195,7 +213,7 @@ def test_render_points():
r.symbols.append(symb) r.symbols.append(symb)
s.rules.append(r) s.rules.append(r)
lyr = mapnik.Layer('Places','+proj=latlon +datum=WGS84') lyr = mapnik.Layer('Places','+proj=latlon +datum=WGS84')
lyr.datasource = places_ds lyr.datasource = ds
lyr.styles.append('places_labels') lyr.styles.append('places_labels')
# latlon bounding box corners # latlon bounding box corners
ul_lonlat = mapnik.Coord(142.30,-38.20) ul_lonlat = mapnik.Coord(142.30,-38.20)
@ -216,7 +234,7 @@ def test_render_points():
# Render to SVG so that it can be checked how many points are there with string comparison # Render to SVG so that it can be checked how many points are there with string comparison
svg_file = os.path.join(tempfile.gettempdir(),'%s.svg') svg_file = os.path.join(tempfile.gettempdir(),'%s.svg')
mapnik.render_to_file(m, svg_file) mapnik.render_to_file(m, svg_file)
num_points_present = len(places_ds.all_features()) num_points_present = len(ds.all_features())
svg = open(svg_file,'r').read() svg = open(svg_file,'r').read()
num_points_rendered = svg.count('<image ') num_points_rendered = svg.count('<image ')
eq_(num_points_present, num_points_rendered, "Not all points were rendered (%d instead of %d) at projection %s" % (num_points_rendered, num_points_present, projdescr)) eq_(num_points_present, num_points_rendered, "Not all points were rendered (%d instead of %d) at projection %s" % (num_points_rendered, num_points_present, projdescr))

View file

@ -38,10 +38,6 @@ if 'shape' in mapnik.DatasourceCache.instance().plugin_names():
eq_(f['NOM_FR'], u'Québec') eq_(f['NOM_FR'], u'Québec')
eq_(f['Shape_Area'], 1512185733150.0) eq_(f['Shape_Area'], 1512185733150.0)
eq_(f['Shape_Leng'], 19218883.724300001) eq_(f['Shape_Leng'], 19218883.724300001)
# Check that the deprecated interface still works,
# remove me once the deprecated code is cleaned up
eq_(f.properties['Shape_Leng'], 19218883.724300001)
@raises(RuntimeError) @raises(RuntimeError)
def test_that_nonexistant_query_field_throws(**kwargs): def test_that_nonexistant_query_field_throws(**kwargs):

View file

@ -1,5 +1,5 @@
rm -f list-[0-9][0-9]0-agg.png rm -f list-[0-9][0-9]0-agg.png
rm -f simple-[0-9][0-9]0-agg.png rm -f simple-[0-9][0-9]0-agg.png
rm -f *-500-agg.png rm -f simple-{E,N,NE,NW,N,SE,SW,S,W}-500-agg.png
rm -f *-out.xml rm -f list-out.xml simple-out.xml

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE Map>
<Map background-color="white" srs="+proj=latlong +datum=WGS84">
<Layer name="layer" srs="+proj=latlong +datum=WGS84">
<StyleName>My Style</StyleName>
<Datasource>
<Parameter name="type">shape</Parameter>
<Parameter name="file">points.shp</Parameter>
</Datasource>
</Layer>
<Style name="My Style">
<Rule>
<PointSymbolizer/>
<TextSymbolizer placement-type="simple" placements="N,S" face-name="DejaVu Sans Book" size="16" placement="point" dx="0" dy="5">
[name]+'&#10;'<Format face-name="DejaVu Sans Oblique" size="9">'('+[name]+')'</Format></TextSymbolizer>
</Rule>
</Style>
</Map>

View file

@ -40,7 +40,7 @@ headers = ['#plugins/input/postgis'] + env['CPPPATH']
libraries = [] libraries = []
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND'] boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
libraries.extend([boost_program_options,'sqlite3','pq','mapnik']) libraries.extend([boost_program_options,'sqlite3','pq','mapnik','icuuc'])
linkflags = env['CUSTOM_LDFLAGS'] linkflags = env['CUSTOM_LDFLAGS']
if env['SQLITE_LINKFLAGS']: if env['SQLITE_LINKFLAGS']:

View file

@ -141,9 +141,14 @@ void pgsql2sqlite(Connection conn,
int geometry_oid = -1; int geometry_oid = -1;
std::string output_table_insert_sql = "insert into " + output_table_name + " values (?"; std::string output_table_insert_sql = "insert into " + output_table_name + " values (?";
context_ptr ctx = boost::make_shared<context_type>();
for ( unsigned pos = 0; pos < num_fields ; ++pos) for ( unsigned pos = 0; pos < num_fields ; ++pos)
{ {
const char* field_name = cursor->getFieldName(pos);
ctx->push(field_name);
if (pos > 0) if (pos > 0)
{ {
create_sql << ","; create_sql << ",";
@ -216,7 +221,7 @@ void pgsql2sqlite(Connection conn,
sqlite::record_type output_rec; sqlite::record_type output_rec;
output_rec.push_back(sqlite::value_type(pkid)); output_rec.push_back(sqlite::value_type(pkid));
bool empty_geom = true; bool empty_geom = true;
const char * buf = 0; const char * buf = 0;
for (unsigned pos=0 ; pos < num_fields; ++pos) for (unsigned pos=0 ; pos < num_fields; ++pos)
{ {
if (! cursor->isNull(pos)) if (! cursor->isNull(pos))
@ -275,7 +280,7 @@ void pgsql2sqlite(Connection conn,
{ {
if (oid == geometry_oid) if (oid == geometry_oid)
{ {
mapnik::Feature feat(pkid); mapnik::Feature feat(ctx,pkid);
geometry_utils::from_wkb(feat.paths(),buf,size,wkbGeneric); geometry_utils::from_wkb(feat.paths(),buf,size,wkbGeneric);
if (feat.num_geometries() > 0) if (feat.num_geometries() > 0)
{ {