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)
|
|
|
|
*
|
2021-01-05 15:39:07 +01:00
|
|
|
* Copyright (C) 2021 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
|
2016-08-02 16:34:59 +02:00
|
|
|
#include <mapnik/value/types.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
#include <mapnik/global.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2017-01-26 09:51:37 +01:00
|
|
|
#include <mapnik/geometry/box2d.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
|
|
|
#include <mapnik/wkb.hpp>
|
|
|
|
#include <mapnik/unicode.hpp>
|
2011-05-18 03:28:22 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2016-08-02 15:43:02 +02:00
|
|
|
#include <mapnik/geometry/correct.hpp>
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
// boost
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
2013-08-13 20:26:48 +02:00
|
|
|
#include <mapnik/mapped_memory_cache.hpp>
|
2020-11-19 15:30:30 +01:00
|
|
|
#include <mapnik/warning.hpp>
|
|
|
|
MAPNIK_DISABLE_WARNING_PUSH
|
2015-11-08 02:53:09 +01:00
|
|
|
#include <mapnik/warning_ignore.hpp>
|
2013-08-13 20:13:56 +02:00
|
|
|
#include <boost/interprocess/mapped_region.hpp>
|
2011-04-07 17:24:52 +02:00
|
|
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
2020-11-19 15:30:30 +01:00
|
|
|
MAPNIK_DISABLE_WARNING_POP
|
2013-08-13 20:26:48 +02:00
|
|
|
#endif
|
2009-05-12 00:06:48 +02:00
|
|
|
|
|
|
|
// ogr
|
|
|
|
#include "ogr_index_featureset.hpp"
|
|
|
|
#include "ogr_converter.hpp"
|
|
|
|
#include "ogr_index.hpp"
|
|
|
|
|
2015-05-20 07:39:39 +02:00
|
|
|
#include <gdal_version.h>
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2022-01-26 10:43:31 +01:00
|
|
|
using mapnik::feature_factory;
|
2009-05-12 00:06:48 +02:00
|
|
|
using mapnik::feature_ptr;
|
|
|
|
using mapnik::geometry_utils;
|
2022-01-26 10:43:31 +01:00
|
|
|
using mapnik::query;
|
2009-05-12 00:06:48 +02:00
|
|
|
using mapnik::transcoder;
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
template<typename filterT>
|
|
|
|
ogr_index_featureset<filterT>::ogr_index_featureset(mapnik::context_ptr const& ctx,
|
|
|
|
OGRLayer& layer,
|
2012-01-20 17:07:29 +01:00
|
|
|
filterT const& filter,
|
|
|
|
std::string const& index_file,
|
|
|
|
std::string const& encoding)
|
2022-01-26 10:43:31 +01:00
|
|
|
: ctx_(ctx)
|
|
|
|
, layer_(layer)
|
|
|
|
, layerdef_(layer.GetLayerDefn())
|
|
|
|
, filter_(filter)
|
|
|
|
, tr_(new transcoder(encoding))
|
|
|
|
, fidcolumn_(layer_.GetFIDColumn())
|
|
|
|
, feature_envelope_()
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
2013-04-10 13:44:05 +02:00
|
|
|
boost::optional<mapnik::mapped_region_ptr> memory = mapnik::mapped_memory_cache::instance().find(index_file, true);
|
2011-04-07 17:24:52 +02:00
|
|
|
if (memory)
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
boost::interprocess::ibufferstream file(static_cast<char*>((*memory)->get_address()), (*memory)->get_size());
|
|
|
|
ogr_index<filterT, boost::interprocess::ibufferstream>::query(filter, file, ids_);
|
2009-05-12 00:06:48 +02:00
|
|
|
}
|
2013-08-13 20:26:48 +02:00
|
|
|
#else
|
2022-01-26 10:43:31 +01:00
|
|
|
#if defined(WINDOWS)
|
|
|
|
std::ifstream file(mapnik::utf8_to_utf16(index_file), std::ios::in | std::ios::binary);
|
|
|
|
#else
|
|
|
|
std::ifstream file(index_file.c_str(), std::ios::in | std::ios::binary);
|
|
|
|
#endif
|
|
|
|
ogr_index<filterT, std::ifstream>::query(filter, file, ids_);
|
2013-08-13 20:26:48 +02:00
|
|
|
#endif
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
std::sort(ids_.begin(), ids_.end());
|
2011-11-14 04:37:50 +01:00
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
template<typename filterT>
|
|
|
|
ogr_index_featureset<filterT>::~ogr_index_featureset()
|
|
|
|
{}
|
2009-05-12 00:06:48 +02:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
template<typename filterT>
|
2009-05-12 00:06:48 +02:00
|
|
|
feature_ptr ogr_index_featureset<filterT>::next()
|
|
|
|
{
|
2012-10-05 22:49:29 +02:00
|
|
|
while (itr_ != ids_.end())
|
2009-05-12 00:06:48 +02:00
|
|
|
{
|
2011-04-29 22:00:45 +02:00
|
|
|
int pos = *itr_++;
|
2022-01-26 10:43:31 +01:00
|
|
|
layer_.SetNextByIndex(pos);
|
2009-05-12 00:06:48 +02:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
OGRFeature* poFeature = layer_.GetNextFeature();
|
2013-11-27 16:52:47 +01:00
|
|
|
if (poFeature == nullptr)
|
2011-04-21 21:19:07 +02:00
|
|
|
{
|
2012-10-21 05:16:17 +02:00
|
|
|
return feature_ptr();
|
2012-10-05 22:49:29 +02:00
|
|
|
}
|
2012-10-21 05:16:17 +02:00
|
|
|
|
2012-10-05 22:49:29 +02:00
|
|
|
// ogr feature ids start at 0, so add one to stay
|
|
|
|
// consistent with other mapnik datasources that start at 1
|
2012-12-20 04:24:52 +01:00
|
|
|
mapnik::value_integer feature_id = (poFeature->GetFID() + 1);
|
2022-01-26 10:43:31 +01:00
|
|
|
feature_ptr feature(feature_factory::create(ctx_, feature_id));
|
2012-10-05 22:49:29 +02:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
OGRGeometry* geom = poFeature->GetGeometryRef();
|
2012-10-05 22:49:29 +02:00
|
|
|
if (geom && !geom->IsEmpty())
|
|
|
|
{
|
2013-05-17 17:24:32 +02:00
|
|
|
geom->getEnvelope(&feature_envelope_);
|
2022-01-26 10:43:31 +01:00
|
|
|
if (!filter_.pass(mapnik::box2d<double>(feature_envelope_.MinX,
|
|
|
|
feature_envelope_.MinY,
|
|
|
|
feature_envelope_.MaxX,
|
|
|
|
feature_envelope_.MaxY)))
|
|
|
|
continue;
|
2015-05-20 23:00:30 +02:00
|
|
|
auto geom_corrected = ogr_converter::convert_geometry(geom);
|
|
|
|
mapnik::geometry::correct(geom_corrected);
|
|
|
|
feature->set_geometry(std::move(geom_corrected));
|
2012-10-05 22:49:29 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
MAPNIK_LOG_DEBUG(ogr) << "ogr_index_featureset: Feature with null geometry=" << poFeature->GetFID();
|
|
|
|
OGRFeature::DestroyFeature(poFeature);
|
2012-10-05 22:49:29 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fld_count = layerdef_->GetFieldCount();
|
|
|
|
for (int i = 0; i < fld_count; i++)
|
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
OGRFieldDefn* fld = layerdef_->GetFieldDefn(i);
|
|
|
|
OGRFieldType type_oid = fld->GetType();
|
|
|
|
std::string fld_name = fld->GetNameRef();
|
2012-10-05 22:49:29 +02:00
|
|
|
|
|
|
|
switch (type_oid)
|
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
case OFTInteger: {
|
|
|
|
feature->put<mapnik::value_integer>(fld_name, poFeature->GetFieldAsInteger(i));
|
|
|
|
break;
|
|
|
|
}
|
2015-05-20 07:39:39 +02:00
|
|
|
#if GDAL_VERSION_MAJOR >= 2
|
2022-01-26 10:43:31 +01:00
|
|
|
case OFTInteger64: {
|
|
|
|
feature->put<mapnik::value_integer>(fld_name, poFeature->GetFieldAsInteger64(i));
|
|
|
|
break;
|
|
|
|
}
|
2015-08-05 20:47:17 +02:00
|
|
|
#endif
|
2012-10-05 22:49:29 +02:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
case OFTReal: {
|
|
|
|
feature->put(fld_name, poFeature->GetFieldAsDouble(i));
|
|
|
|
break;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
case OFTString:
|
|
|
|
case OFTWideString: // deprecated !
|
|
|
|
{
|
|
|
|
feature->put(fld_name, tr_->transcode(poFeature->GetFieldAsString(i)));
|
|
|
|
break;
|
|
|
|
}
|
2012-10-05 22:49:29 +02:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
case OFTIntegerList:
|
2015-05-20 07:39:39 +02:00
|
|
|
#if GDAL_VERSION_MAJOR >= 2
|
2022-01-26 10:43:31 +01:00
|
|
|
case OFTInteger64List:
|
2015-05-20 07:39:39 +02:00
|
|
|
#endif
|
2022-01-26 10:43:31 +01:00
|
|
|
case OFTRealList:
|
|
|
|
case OFTStringList:
|
|
|
|
case OFTWideStringList: // deprecated !
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_WARN(ogr) << "ogr_index_featureset: Unhandled type_oid=" << type_oid;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OFTBinary: {
|
|
|
|
MAPNIK_LOG_WARN(ogr) << "ogr_index_featureset: Unhandled type_oid=" << type_oid;
|
|
|
|
// feature->put(name,feat->GetFieldAsBinary (i, size));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OFTDate:
|
|
|
|
case OFTTime:
|
|
|
|
case OFTDateTime: // unhandled !
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_WARN(ogr) << "ogr_index_featureset: Unhandled type_oid=" << type_oid;
|
|
|
|
break;
|
|
|
|
}
|
2011-04-21 21:19:07 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-26 10:43:31 +01:00
|
|
|
OGRFeature::DestroyFeature(poFeature);
|
2012-10-05 22:49:29 +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>;
|