mapnik/src/marker_cache.cpp

151 lines
5.1 KiB
C++
Raw Normal View History

2010-05-27 11:41:02 +00:00
/*****************************************************************************
2012-02-01 17:53:35 -08:00
*
2010-05-27 11:41:02 +00:00
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
2010-05-27 11:41:02 +00: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 <mapnik/debug.hpp>
#include <mapnik/marker.hpp>
#include <mapnik/marker_cache.hpp>
2010-05-28 16:34:58 +00:00
#include <mapnik/svg/svg_parser.hpp>
#include <mapnik/svg/svg_storage.hpp>
#include <mapnik/svg/svg_converter.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
#include <mapnik/svg/svg_path_attributes.hpp>
#include <mapnik/image_util.hpp>
#include <mapnik/image_reader.hpp>
2010-05-27 11:41:02 +00:00
// boost
#include <boost/assert.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/make_shared.hpp>
2010-05-27 11:41:02 +00:00
// agg
#include "agg_rendering_buffer.h"
#include "agg_pixfmt_rgba.h"
2012-02-01 17:53:35 -08:00
namespace mapnik
2010-05-27 11:41:02 +00:00
{
boost::unordered_map<std::string, marker_ptr> marker_cache::cache_;
2010-05-27 11:41:02 +00:00
void marker_cache::clear()
{
#ifdef MAPNIK_THREADSAFE
mutex::scoped_lock lock(mutex_);
#endif
return cache_.clear();
}
bool marker_cache::insert(std::string const& uri, marker_ptr path)
2010-05-27 11:41:02 +00:00
{
#ifdef MAPNIK_THREADSAFE
mutex::scoped_lock lock(mutex_);
#endif
return cache_.insert(std::make_pair(uri,path)).second;
}
boost::optional<marker_ptr> marker_cache::find(std::string const& uri, bool update_cache)
2010-05-27 11:41:02 +00:00
{
#ifdef MAPNIK_THREADSAFE
mutex::scoped_lock lock(mutex_);
#endif
typedef boost::unordered_map<std::string, marker_ptr>::const_iterator iterator_type;
boost::optional<marker_ptr> result;
2010-05-27 11:41:02 +00:00
iterator_type itr = cache_.find(uri);
if (itr != cache_.end())
{
2010-06-02 11:03:30 +00:00
result.reset(itr->second);
return result;
2010-05-27 11:41:02 +00:00
}
try
2010-05-27 11:41:02 +00:00
{
// we can't find marker in cache, lets try to load it from filesystem
boost::filesystem::path path(uri);
if (!exists(path))
2010-06-02 11:03:30 +00:00
{
MAPNIK_LOG_ERROR(marker_cache) << "Marker does not exist: " << uri;
}
else
{
if (is_svg(uri))
2010-06-02 11:03:30 +00:00
{
using namespace mapnik::svg;
path_ptr marker_path(boost::make_shared<svg_storage_type>());
vertex_stl_adapter<svg_path_storage> stl_storage(marker_path->source());
svg_path_adapter svg_path(stl_storage);
svg_converter_type svg(svg_path, marker_path->attributes());
svg_parser p(svg);
p.parse(uri);
//svg.arrange_orientations();
double lox,loy,hix,hiy;
svg.bounding_rect(&lox, &loy, &hix, &hiy);
marker_path->set_bounding_box(lox,loy,hix,hiy);
marker_ptr mark(boost::make_shared<marker>(marker_path));
result.reset(mark);
if (update_cache)
{
cache_.insert(std::make_pair(uri,*result));
}
}
else
2011-02-25 21:02:33 +00:00
{
std::auto_ptr<mapnik::image_reader> reader(mapnik::get_image_reader(uri));
if (reader.get())
{
unsigned width = reader->width();
unsigned height = reader->height();
BOOST_ASSERT(width > 0 && height > 0);
mapnik::image_ptr image(boost::make_shared<mapnik::image_data_32>(width,height));
reader->read(0,0,*image);
// ensure images are premultiplied
// TODO - don't need to multiply jpegs
agg::rendering_buffer buffer(image->getBytes(),image->width(),image->height(),image->width() * 4);
agg::pixfmt_rgba32 pixf(buffer);
pixf.premultiply();
marker_ptr mark(boost::make_shared<marker>(image));
result.reset(mark);
if (update_cache)
{
cache_.insert(std::make_pair(uri,*result));
}
}
2012-04-11 11:28:09 -07:00
else
{
MAPNIK_LOG_ERROR(marker_cache) << "could not intialize reader for: '" << uri << "'";
}
}
2010-06-02 11:03:30 +00:00
}
2010-05-27 11:41:02 +00:00
}
catch (std::exception const& ex)
{
MAPNIK_LOG_ERROR(marker_cache) << "Exception caught while loading: '" << uri << "' (" << ex.what() << ")";
}
catch (...)
2010-05-27 11:41:02 +00:00
{
MAPNIK_LOG_ERROR(marker_cache) << "Exception caught while loading: '" << uri << "'";
2010-05-27 11:41:02 +00:00
}
return result;
}
}