2009-05-12 00:06:48 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2009-05-12 00:06:48 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 21:21:28 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2009-05-12 00:06:48 +02:00
|
|
|
*
|
|
|
|
* 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/global.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
#include <mapnik/datasource.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <mapnik/box2d.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
#include <mapnik/geometry.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
|
|
|
#include <mapnik/wkb.hpp>
|
|
|
|
#include <mapnik/unicode.hpp>
|
2011-04-07 17:24:52 +02:00
|
|
|
#include <mapnik/mapped_memory_cache.hpp>
|
2011-05-18 03:28:22 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
// boost
|
2011-04-07 17:24:52 +02:00
|
|
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
// ogr
|
|
|
|
#include "ogr_index_featureset.hpp"
|
|
|
|
#include "ogr_converter.hpp"
|
|
|
|
#include "ogr_index.hpp"
|
|
|
|
#include "ogr_feature_ptr.hpp"
|
|
|
|
|
|
|
|
using mapnik::query;
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2009-05-12 00:06:48 +02:00
|
|
|
using mapnik::CoordTransform;
|
|
|
|
using mapnik::Feature;
|
|
|
|
using mapnik::feature_ptr;
|
|
|
|
using mapnik::geometry_utils;
|
|
|
|
using mapnik::transcoder;
|
2011-05-18 03:28:22 +02:00
|
|
|
using mapnik::feature_factory;
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
template <typename filterT>
|
2012-01-20 17:07:29 +01:00
|
|
|
ogr_index_featureset<filterT>::ogr_index_featureset(mapnik::context_ptr const & ctx,
|
2012-02-02 02:37:35 +01:00
|
|
|
OGRDataSource & dataset,
|
2009-05-12 00:06:48 +02:00
|
|
|
OGRLayer & layer,
|
2012-01-20 17:07:29 +01:00
|
|
|
filterT const& filter,
|
|
|
|
std::string const& index_file,
|
|
|
|
std::string const& encoding)
|
|
|
|
: ctx_(ctx),
|
2012-02-02 02:37:35 +01:00
|
|
|
dataset_(dataset),
|
2011-11-14 04:37:50 +01:00
|
|
|
layer_(layer),
|
|
|
|
layerdef_(layer.GetLayerDefn()),
|
|
|
|
filter_(filter),
|
|
|
|
tr_(new transcoder(encoding)),
|
2012-01-20 17:07:29 +01:00
|
|
|
fidcolumn_(layer_.GetFIDColumn())
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-04-07 17:24:52 +02:00
|
|
|
boost::optional<mapnik::mapped_region_ptr> memory = mapnik::mapped_memory_cache::find(index_file.c_str(),true);
|
|
|
|
if (memory)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
boost::interprocess::ibufferstream file(static_cast<char*>((*memory)->get_address()),(*memory)->get_size());
|
2011-04-07 17:24:52 +02:00
|
|
|
ogr_index<filterT,boost::interprocess::ibufferstream >::query(filter,file,ids_);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
|
|
|
std::sort(ids_.begin(),ids_.end());
|
|
|
|
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(ogr) << "ogr_index_featureset: Query size=" << ids_.size();
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
itr_ = ids_.begin();
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
// reset reading
|
2009-05-12 00:06:48 +02:00
|
|
|
layer_.ResetReading();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename filterT>
|
|
|
|
ogr_index_featureset<filterT>::~ogr_index_featureset() {}
|
|
|
|
|
|
|
|
template <typename filterT>
|
|
|
|
feature_ptr ogr_index_featureset<filterT>::next()
|
|
|
|
{
|
|
|
|
if (itr_ != ids_.end())
|
|
|
|
{
|
2011-04-29 22:00:45 +02:00
|
|
|
int pos = *itr_++;
|
|
|
|
layer_.SetNextByIndex (pos);
|
2009-05-12 00:06:48 +02:00
|
|
|
|
2011-04-29 22:00:45 +02:00
|
|
|
ogr_feature_ptr feat (layer_.GetNextFeature());
|
2011-04-23 01:28:45 +02:00
|
|
|
if ((*feat) != NULL)
|
2011-04-21 21:19:07 +02:00
|
|
|
{
|
2011-04-29 22:00:45 +02:00
|
|
|
// ogr feature ids start at 0, so add one to stay
|
|
|
|
// consistent with other mapnik datasources that start at 1
|
|
|
|
int feature_id = ((*feat)->GetFID() + 1);
|
2012-01-19 18:55:07 +01:00
|
|
|
feature_ptr feature(feature_factory::create(ctx_,feature_id));
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-04-23 01:28:45 +02:00
|
|
|
OGRGeometry* geom=(*feat)->GetGeometryRef();
|
|
|
|
if (geom && !geom->IsEmpty())
|
2011-04-21 21:19:07 +02:00
|
|
|
{
|
2011-12-21 21:22:05 +01:00
|
|
|
ogr_converter::convert_geometry (geom, feature);
|
2011-04-23 01:28:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(ogr) << "ogr_index_featureset: Feature with null geometry=" << (*feat)->GetFID();
|
2011-04-23 01:28:45 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-04-23 01:28:45 +02:00
|
|
|
int fld_count = layerdef_->GetFieldCount();
|
|
|
|
for (int i = 0; i < fld_count; i++)
|
|
|
|
{
|
|
|
|
OGRFieldDefn* fld = layerdef_->GetFieldDefn (i);
|
|
|
|
OGRFieldType type_oid = fld->GetType ();
|
|
|
|
std::string fld_name = fld->GetNameRef ();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-04-23 01:28:45 +02:00
|
|
|
switch (type_oid)
|
2011-04-21 21:19:07 +02:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
case OFTInteger:
|
|
|
|
{
|
2012-01-19 18:55:07 +01:00
|
|
|
feature->put(fld_name,(*feat)->GetFieldAsInteger (i));
|
2011-11-14 04:37:50 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OFTReal:
|
|
|
|
{
|
2012-01-19 18:55:07 +01:00
|
|
|
feature->put(fld_name,(*feat)->GetFieldAsDouble (i));
|
2011-11-14 04:37:50 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OFTString:
|
|
|
|
case OFTWideString: // deprecated !
|
|
|
|
{
|
|
|
|
UnicodeString ustr = tr_->transcode((*feat)->GetFieldAsString (i));
|
2012-01-19 18:55:07 +01:00
|
|
|
feature->put(fld_name,ustr);
|
2011-11-14 04:37:50 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OFTIntegerList:
|
|
|
|
case OFTRealList:
|
|
|
|
case OFTStringList:
|
|
|
|
case OFTWideStringList: // deprecated !
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_WARN(ogr) << "ogr_index_featureset: Unhandled type_oid=" << type_oid;
|
2011-11-14 04:37:50 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OFTBinary:
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_WARN(ogr) << "ogr_index_featureset: Unhandled type_oid=" << type_oid;
|
2012-01-19 18:55:07 +01:00
|
|
|
//feature->put(name,feat->GetFieldAsBinary (i, size));
|
2011-11-14 04:37:50 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OFTDate:
|
|
|
|
case OFTTime:
|
|
|
|
case OFTDateTime: // unhandled !
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_WARN(ogr) << "ogr_index_featureset: Unhandled type_oid=" << type_oid;
|
2011-11-14 04:37:50 +01:00
|
|
|
break;
|
|
|
|
}
|
2011-04-21 21:19:07 +02:00
|
|
|
}
|
|
|
|
}
|
2011-04-23 01:28:45 +02:00
|
|
|
return feature;
|
2011-04-21 21:19:07 +02:00
|
|
|
}
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-04-21 21:19:07 +02:00
|
|
|
return feature_ptr();
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template class ogr_index_featureset<mapnik::filter_in_box>;
|
|
|
|
template class ogr_index_featureset<mapnik::filter_at_point>;
|