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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CSV_INDEX_FEATURESET_HPP
|
|
|
|
#define CSV_INDEX_FEATURESET_HPP
|
|
|
|
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/unicode.hpp>
|
|
|
|
#include <mapnik/geom_util.hpp>
|
2017-08-18 12:16:44 +02:00
|
|
|
#include <mapnik/util/spatial_index.hpp>
|
2015-09-25 17:47:03 +02:00
|
|
|
#include "csv_utils.hpp"
|
|
|
|
#include "csv_datasource.hpp"
|
2015-09-29 11:35:36 +02:00
|
|
|
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
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>
|
2015-09-29 11:35:36 +02:00
|
|
|
#include <boost/interprocess/mapped_region.hpp>
|
|
|
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
2020-11-19 15:30:30 +01:00
|
|
|
MAPNIK_DISABLE_WARNING_POP
|
2015-09-29 11:35:36 +02:00
|
|
|
#include <mapnik/mapped_memory_cache.hpp>
|
|
|
|
#endif
|
2015-09-25 18:50:24 +02:00
|
|
|
|
2015-09-25 17:47:03 +02:00
|
|
|
class csv_index_featureset : public mapnik::Featureset
|
|
|
|
{
|
2017-08-18 12:16:44 +02:00
|
|
|
using value_type = mapnik::util::index_record;
|
2016-02-26 20:28:42 +01:00
|
|
|
using locator_type = csv_utils::geometry_column_locator;
|
2015-09-25 17:47:03 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
csv_index_featureset(std::string const& filename,
|
2017-08-18 12:16:44 +02:00
|
|
|
mapnik::bounding_box_filter<float> const& filter,
|
2015-09-25 17:47:03 +02: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);
|
|
|
|
~csv_index_featureset();
|
|
|
|
mapnik::feature_ptr next();
|
|
|
|
private:
|
2015-09-29 11:35:36 +02:00
|
|
|
mapnik::feature_ptr parse_feature(char const* beg, char const* end);
|
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> headers_;
|
|
|
|
mapnik::context_ptr ctx_;
|
|
|
|
mapnik::value_integer feature_id_ = 0;
|
2016-02-26 20:28:42 +01:00
|
|
|
locator_type const& locator_;
|
2015-09-25 17:47:03 +02:00
|
|
|
mapnik::transcoder tr_;
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined (MAPNIK_MEMORY_MAPPED_FILE)
|
2015-09-29 11:35:36 +02:00
|
|
|
using file_source_type = boost::interprocess::ibufferstream;
|
|
|
|
mapnik::mapped_region_ptr mapped_region_;
|
|
|
|
#else
|
|
|
|
using file_ptr = std::unique_ptr<std::FILE, int (*)(std::FILE *)>;
|
|
|
|
file_ptr file_;
|
|
|
|
#endif
|
2015-09-25 18:50:24 +02:00
|
|
|
std::vector<value_type> positions_;
|
|
|
|
std::vector<value_type>::iterator itr_;
|
2015-09-25 17:47:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // CSV_INDEX_FEATURESET_HPP
|