e7c3d04309
format all files Revert "format all files" This reverts commit 95d5812e49e7f916b68e786596f5a8eb5bcac414. Revert "format some files" This reverts commit ed3c8762d4d828b2b28e7b18809fc33f4f8ccaf5. format all files fix formatting in dir include fix formatting of debug macro
64 lines
2.2 KiB
C++
64 lines
2.2 KiB
C++
/*****************************************************************************
|
|
*
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
*
|
|
* Copyright (C) 2021 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 MAPNIK_MARKER_CACHE_HPP
|
|
#define MAPNIK_MARKER_CACHE_HPP
|
|
|
|
// mapnik
|
|
#include <mapnik/util/singleton.hpp>
|
|
#include <mapnik/config.hpp>
|
|
#include <mapnik/util/noncopyable.hpp>
|
|
|
|
#include <unordered_map>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace mapnik {
|
|
|
|
struct marker;
|
|
|
|
class MAPNIK_DECL marker_cache : public singleton<marker_cache, CreateUsingNew>,
|
|
private util::noncopyable
|
|
{
|
|
friend class CreateUsingNew<marker_cache>;
|
|
|
|
private:
|
|
marker_cache();
|
|
~marker_cache();
|
|
bool insert_marker(std::string const& key, marker&& path);
|
|
std::unordered_map<std::string, std::shared_ptr<mapnik::marker const>> marker_cache_;
|
|
bool insert_svg(std::string const& name, std::string const& svg_string);
|
|
std::unordered_map<std::string, std::string> svg_cache_;
|
|
|
|
public:
|
|
std::string known_svg_prefix_;
|
|
std::string known_image_prefix_;
|
|
inline bool is_uri(std::string const& path) { return is_svg_uri(path) || is_image_uri(path); }
|
|
bool is_svg_uri(std::string const& path);
|
|
bool is_image_uri(std::string const& path);
|
|
std::shared_ptr<marker const> find(std::string const& key, bool update_cache = false, bool strict = false);
|
|
void clear();
|
|
};
|
|
|
|
} // namespace mapnik
|
|
|
|
#endif // MAPNIK_MARKER_CACHE_HPP
|