/***************************************************************************** * * 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 #include #include #include #include #include #include #include #include // ogr #include "sqlite_featureset.hpp" #include "sqlite_utils.hpp" using mapnik::query; using mapnik::box2d; using mapnik::CoordTransform; using mapnik::Feature; using mapnik::feature_ptr; using mapnik::geometry_utils; using mapnik::transcoder; using mapnik::feature_factory; sqlite_featureset::sqlite_featureset(boost::shared_ptr rs, mapnik::context_ptr const& ctx, std::string const& encoding, mapnik::wkbFormat format, bool using_subquery) : rs_(rs), tr_(new transcoder(encoding)), format_(format), using_subquery_(using_subquery), ctx_(ctx) { } sqlite_featureset::~sqlite_featureset() { } feature_ptr sqlite_featureset::next() { if (rs_->is_valid () && rs_->step_next ()) { int size; const char* data = (const char*) rs_->column_blob(0, size); if (! data) { return feature_ptr(); } feature_ptr feature(feature_factory::create(ctx_,rs_->column_integer(1))); geometry_utils::from_wkb(feature->paths(), data, size, format_); for (int i = 2; i < rs_->column_count(); ++i) { const int type_oid = rs_->column_type(i); const char* fld_name = rs_->column_name(i); if (! fld_name) continue; std::string fld_name_str(fld_name); // subqueries in sqlite lead to field double quoting which we need to strip if (using_subquery_) { sqlite_utils::dequote(fld_name_str); } switch (type_oid) { case SQLITE_INTEGER: { feature->put(fld_name_str, rs_->column_integer(i)); break; } case SQLITE_FLOAT: { feature->put(fld_name_str, rs_->column_double(i)); break; } case SQLITE_TEXT: { int text_size; const char * data = rs_->column_text(i, text_size); UnicodeString ustr = tr_->transcode(data, text_size); feature->put(fld_name_str, ustr); break; } case SQLITE_NULL: { feature->put(fld_name_str, mapnik::value_null()); break; } case SQLITE_BLOB: break; default: #ifdef MAPNIK_DEBUG std::clog << "Sqlite Plugin: field " << fld_name_str << " unhandled type_oid=" << type_oid << std::endl; #endif break; } } return feature; } return feature_ptr(); }