mapnik/plugins/input/osm/dataset_deliverer.cpp

67 lines
2.1 KiB
C++
Raw Normal View History

2011-10-22 16:04:05 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 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
*
*****************************************************************************/
2012-04-08 02:20:56 +02:00
// mapnik
#include <mapnik/debug.hpp>
#include <mapnik/datasource.hpp>
#include <mapnik/util/fs.hpp>
2012-04-08 02:20:56 +02:00
// std
#include <sstream>
#include "dataset_deliverer.h"
2013-11-27 16:52:47 +01:00
osm_dataset * dataset_deliverer::dataset = nullptr;
std::string dataset_deliverer::last_bbox = "";
std::string dataset_deliverer::last_filename = "";
2011-10-22 16:04:05 +02:00
osm_dataset* dataset_deliverer::load_from_file(const string& file, const string& parser)
{
2011-10-22 16:04:05 +02:00
// Only actually load from file if we haven't done so already
2013-11-27 16:52:47 +01:00
if (dataset == nullptr)
2011-10-22 16:04:05 +02:00
{
if (!mapnik::util::exists(file))
{
throw mapnik::datasource_exception("OSM Plugin: '" + file + "' does not exist");
}
2011-10-22 16:04:05 +02:00
dataset = new osm_dataset;
if (dataset->load(file.c_str(), parser) == false)
{
2013-11-27 16:52:47 +01:00
return nullptr;
2011-10-22 16:04:05 +02:00
}
atexit(dataset_deliverer::release);
last_filename = file;
}
else if(file != last_filename)
{
dataset = new osm_dataset;
if (dataset->load(file.c_str(), parser) == false)
{
2013-11-27 16:52:47 +01:00
return nullptr;
2011-10-22 16:04:05 +02:00
}
last_filename = file;
}
return dataset;
}