2015-09-25 17:47:03 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2021-01-05 15:39:07 +01:00
|
|
|
* Copyright (C) 2021 Artem Pavlenko
|
2015-09-25 17:47:03 +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 "csv_index_featureset.hpp"
|
|
|
|
#include <mapnik/debug.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_factory.hpp>
|
|
|
|
#include <mapnik/util/utf_conv_win.hpp>
|
|
|
|
#include <mapnik/util/trim.hpp>
|
2015-09-25 18:50:24 +02:00
|
|
|
#include <mapnik/geometry.hpp>
|
2015-09-25 17:47:03 +02:00
|
|
|
// stl
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <deque>
|
|
|
|
#include <fstream>
|
|
|
|
|
2015-09-25 18:50:24 +02:00
|
|
|
csv_index_featureset::csv_index_featureset(std::string const& filename,
|
2017-08-18 12:16:44 +02:00
|
|
|
mapnik::bounding_box_filter<float> const& filter,
|
2016-02-26 20:28:42 +01:00
|
|
|
locator_type const& locator,
|
2015-10-05 10:34:02 +02:00
|
|
|
char separator,
|
2015-10-02 13:20:54 +02:00
|
|
|
char quote,
|
2015-09-25 17:47:03 +02:00
|
|
|
std::vector<std::string> const& headers,
|
|
|
|
mapnik::context_ptr const& ctx)
|
2022-01-26 10:43:31 +01:00
|
|
|
: separator_(separator)
|
|
|
|
, quote_(quote)
|
|
|
|
, headers_(headers)
|
|
|
|
, ctx_(ctx)
|
|
|
|
, locator_(locator)
|
|
|
|
, tr_("utf8")
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
2022-01-26 10:43:31 +01:00
|
|
|
//
|
|
|
|
#elif defined(_WIN32)
|
|
|
|
, file_(_wfopen(mapnik::utf8_to_utf16(filename).c_str(), L"rb"), std::fclose)
|
2015-09-29 11:35:36 +02:00
|
|
|
#else
|
2022-01-26 10:43:31 +01:00
|
|
|
, file_(std::fopen(filename.c_str(), "rb"), std::fclose)
|
2015-09-29 11:35:36 +02:00
|
|
|
#endif
|
2015-09-25 17:47:03 +02:00
|
|
|
|
2015-09-25 18:50:24 +02:00
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
2024-04-19 20:45:24 +02:00
|
|
|
const auto memory = mapnik::mapped_memory_cache::instance().find(filename, true);
|
|
|
|
if (memory.has_value())
|
2015-09-29 11:35:36 +02:00
|
|
|
{
|
|
|
|
mapped_region_ = *memory;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw std::runtime_error("could not create file mapping for " + filename);
|
|
|
|
}
|
|
|
|
#else
|
2022-01-26 10:43:31 +01:00
|
|
|
if (!file_)
|
|
|
|
throw mapnik::datasource_exception("CSV Plugin: can't open file " + filename);
|
2015-09-29 11:35:36 +02:00
|
|
|
#endif
|
|
|
|
|
2015-09-25 18:50:24 +02:00
|
|
|
std::string indexname = filename + ".index";
|
|
|
|
std::ifstream index(indexname.c_str(), std::ios::binary);
|
2022-01-26 10:43:31 +01:00
|
|
|
if (!index)
|
|
|
|
throw mapnik::datasource_exception("CSV Plugin: can't open index file " + indexname);
|
|
|
|
mapnik::util::spatial_index<value_type, mapnik::bounding_box_filter<float>, std::ifstream, mapnik::box2d<float>>::
|
|
|
|
query(filter, index, positions_);
|
2017-08-18 12:16:44 +02:00
|
|
|
positions_.erase(std::remove_if(positions_.begin(),
|
|
|
|
positions_.end(),
|
2022-01-26 10:43:31 +01:00
|
|
|
[&](value_type const& pos) { return !pos.box.intersects(filter.box_); }),
|
2017-08-18 12:16:44 +02:00
|
|
|
positions_.end());
|
2022-01-26 10:43:31 +01:00
|
|
|
std::sort(positions_.begin(), positions_.end(), [](value_type const& lhs, value_type const& rhs) {
|
|
|
|
return lhs.off < rhs.off;
|
|
|
|
});
|
2015-09-25 18:50:24 +02:00
|
|
|
itr_ = positions_.begin();
|
2015-09-25 17:47:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
csv_index_featureset::~csv_index_featureset() {}
|
|
|
|
|
2015-09-29 11:35:36 +02:00
|
|
|
mapnik::feature_ptr csv_index_featureset::parse_feature(char const* beg, char const* end)
|
2015-09-25 17:47:03 +02:00
|
|
|
{
|
2015-10-02 13:20:54 +02:00
|
|
|
auto values = csv_utils::parse_line(beg, end, separator_, quote_, headers_.size());
|
2016-02-26 20:28:42 +01:00
|
|
|
auto geom = csv_utils::extract_geometry(values, locator_);
|
2015-09-25 17:47:03 +02:00
|
|
|
if (!geom.is<mapnik::geometry::geometry_empty>())
|
|
|
|
{
|
|
|
|
mapnik::feature_ptr feature(mapnik::feature_factory::create(ctx_, ++feature_id_));
|
|
|
|
feature->set_geometry(std::move(geom));
|
2016-02-26 20:28:42 +01:00
|
|
|
csv_utils::process_properties(*feature, headers_, values, locator_, tr_);
|
2015-09-25 17:47:03 +02:00
|
|
|
return feature;
|
|
|
|
}
|
|
|
|
return mapnik::feature_ptr();
|
|
|
|
}
|
2015-09-25 18:50:24 +02:00
|
|
|
|
2015-09-25 17:47:03 +02:00
|
|
|
mapnik::feature_ptr csv_index_featureset::next()
|
|
|
|
{
|
2015-09-25 18:50:24 +02:00
|
|
|
/*
|
|
|
|
if (row_limit_ && count_ >= row_limit_)
|
|
|
|
{
|
|
|
|
return feature_ptr();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
while (itr_ != positions_.end())
|
2015-09-25 18:50:24 +02:00
|
|
|
{
|
|
|
|
auto pos = *itr_++;
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
2020-11-18 17:15:59 +01:00
|
|
|
char const* start = static_cast<char const*>(mapped_region_->get_address()) + pos.off;
|
|
|
|
char const* end = start + pos.size;
|
2015-09-29 11:35:36 +02:00
|
|
|
#else
|
2017-08-18 12:16:44 +02:00
|
|
|
std::fseek(file_.get(), pos.off, SEEK_SET);
|
2015-09-29 11:35:36 +02:00
|
|
|
std::vector<char> record;
|
2020-11-18 16:58:00 +01:00
|
|
|
record.resize(pos.size);
|
2017-08-18 12:16:44 +02:00
|
|
|
if (std::fread(record.data(), pos.size, 1, file_.get()) != 1)
|
2017-01-13 14:57:15 +01:00
|
|
|
{
|
|
|
|
return mapnik::feature_ptr();
|
|
|
|
}
|
2015-09-29 11:35:36 +02:00
|
|
|
auto const* start = record.data();
|
2022-01-26 10:43:31 +01:00
|
|
|
auto const* end = start + record.size();
|
2015-09-29 11:35:36 +02:00
|
|
|
#endif
|
|
|
|
auto feature = parse_feature(start, end);
|
2022-01-26 10:43:31 +01:00
|
|
|
if (feature)
|
|
|
|
return feature;
|
2015-09-25 18:50:24 +02:00
|
|
|
}
|
2015-09-25 17:47:03 +02:00
|
|
|
return mapnik::feature_ptr();
|
|
|
|
}
|