mirror of
https://github.com/mapnik/mapnik.git
synced 2026-02-01 17:36:36 +00:00
85 lines
2.9 KiB
C++
85 lines
2.9 KiB
C++
/*****************************************************************************
|
|
*
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
*
|
|
* Copyright (C) 2025 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
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef RASTER_TILES_FEATURESET_HPP
|
|
#define RASTER_TILES_FEATURESET_HPP
|
|
|
|
#include <memory>
|
|
// mapnik
|
|
#include <mapnik/feature.hpp>
|
|
#include <mapnik/datasource.hpp>
|
|
#include "xyz_tiles.hpp"
|
|
|
|
class raster_tiles_featureset : public mapnik::Featureset
|
|
{
|
|
public:
|
|
raster_tiles_featureset(std::string const& tiles_location_,
|
|
mapnik::context_ptr const& ctx,
|
|
mapnik::box2d<double> const& extent,
|
|
int zoom,
|
|
int xmin,
|
|
int xmax,
|
|
int ymin,
|
|
int ymax,
|
|
std::unordered_map<std::string, std::string>& vector_tile_cache,
|
|
std::size_t max_threads,
|
|
std::size_t datasource_hash,
|
|
double filter_factor);
|
|
|
|
virtual ~raster_tiles_featureset();
|
|
mapnik::feature_ptr next();
|
|
|
|
private:
|
|
mapnik::feature_ptr next_feature(std::string const& image_buffer, int x, int y, std::string const& datasource_key);
|
|
std::string tiles_location_;
|
|
mapnik::context_ptr context_;
|
|
boost::asio::io_context ioc_;
|
|
#if defined(MAPNIK_HAS_OPENSSL)
|
|
boost::asio::ssl::context ssl_ctx_{boost::asio::ssl::context::tlsv12_client};
|
|
#endif
|
|
mapnik::box2d<double> extent_;
|
|
int zoom_;
|
|
int xmin_;
|
|
int xmax_;
|
|
int ymin_;
|
|
int ymax_;
|
|
std::unordered_map<std::string, std::string>& tiles_cache_;
|
|
std::size_t const QUEUE_SIZE_;
|
|
queue_type queue_;
|
|
std::vector<std::thread> workers_;
|
|
std::vector<zxy> targets_;
|
|
std::string host_;
|
|
std::string port_;
|
|
tiles_stash stash_;
|
|
std::size_t num_tiles_{0};
|
|
std::size_t consumed_count_{0};
|
|
std::size_t max_threads_;
|
|
std::size_t datasource_hash_;
|
|
double filter_factor_;
|
|
bool first_ = true;
|
|
bool ssl_ = false;
|
|
bool local_file_ = true;
|
|
std::atomic<bool> done_ = false;
|
|
};
|
|
|
|
#endif // RASTER_TILES_FEATURESET_HPP
|