mirror of
https://github.com/mapnik/mapnik.git
synced 2025-09-16 23:02:53 +02:00
84 lines
2.7 KiB
C++
84 lines
2.7 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 XYZ_FEATURESET_HPP
|
|
#define XYZ_FEATURESET_HPP
|
|
|
|
#include <memory>
|
|
// mapnik
|
|
#include <mapnik/feature.hpp>
|
|
#include <mapnik/datasource.hpp>
|
|
#include "xyz_tiles.hpp"
|
|
#include "mvt_io.hpp"
|
|
|
|
class xyz_featureset : public mapnik::Featureset
|
|
{
|
|
public:
|
|
xyz_featureset(std::string url_template,
|
|
mapnik::context_ptr const& ctx,
|
|
int const zoom,
|
|
int const xmin,
|
|
int const xmax,
|
|
int const ymin,
|
|
int const ymax,
|
|
std::string const& layer,
|
|
std::unordered_map<std::string, std::string>& vector_tile_cache,
|
|
std::size_t datasource_hash);
|
|
|
|
virtual ~xyz_featureset();
|
|
mapnik::feature_ptr next();
|
|
|
|
private:
|
|
mapnik::feature_ptr next_feature();
|
|
bool valid() const;
|
|
std::string url_template_;
|
|
mapnik::context_ptr context_;
|
|
boost::asio::io_context ioc_;
|
|
boost::asio::ssl::context ssl_ctx_{boost::asio::ssl::context::tlsv12_client};
|
|
int zoom_;
|
|
int xmin_;
|
|
int xmax_;
|
|
int ymin_;
|
|
int ymax_;
|
|
mapnik::box2d<double> extent_;
|
|
std::string const layer_;
|
|
std::unique_ptr<mvt_io> vector_tile_;
|
|
std::unordered_map<std::string, std::string>& vector_tile_cache_;
|
|
const std::size_t 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 datasource_hash_;
|
|
bool next_tile();
|
|
bool first_ = true;
|
|
bool ssl_ = false;
|
|
bool local_file_ = true;
|
|
std::atomic<bool> done_ = false;
|
|
|
|
};
|
|
|
|
#endif // XYZ_FEATURESET_HPP
|