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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2009-02-15 14:51:07 +01:00
|
|
|
#include "dataset_deliverer.h"
|
|
|
|
#include "basiccurl.h"
|
|
|
|
#include <sstream>
|
|
|
|
|
2011-10-22 16:04:05 +02:00
|
|
|
osm_dataset * dataset_deliverer::dataset = NULL;
|
2009-02-17 00:10:58 +01:00
|
|
|
std::string dataset_deliverer::last_bbox = "";
|
2010-11-13 22:43:38 +01:00
|
|
|
std::string dataset_deliverer::last_filename = "";
|
2009-02-15 14:51:07 +01:00
|
|
|
|
2011-10-22 16:04:05 +02:00
|
|
|
osm_dataset* dataset_deliverer::load_from_file(const string& file, const string& parser)
|
2009-02-15 14:51:07 +01:00
|
|
|
{
|
2011-10-22 16:04:05 +02:00
|
|
|
// Only actually load from file if we haven't done so already
|
|
|
|
if (dataset == NULL)
|
|
|
|
{
|
|
|
|
dataset = new osm_dataset;
|
|
|
|
if (dataset->load(file.c_str(), parser) == false)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
atexit(dataset_deliverer::release);
|
|
|
|
last_filename = file;
|
|
|
|
}
|
|
|
|
else if(file != last_filename)
|
|
|
|
{
|
|
|
|
dataset = new osm_dataset;
|
|
|
|
if (dataset->load(file.c_str(), parser) == false)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
last_filename = file;
|
|
|
|
}
|
|
|
|
return dataset;
|
2009-02-15 14:51:07 +01:00
|
|
|
}
|
|
|
|
|
2011-10-22 16:04:05 +02:00
|
|
|
osm_dataset* dataset_deliverer::load_from_url(const string& url, const string& bbox, const string& parser)
|
2009-02-15 14:51:07 +01:00
|
|
|
{
|
2011-10-22 16:04:05 +02:00
|
|
|
if (dataset == NULL)
|
|
|
|
{
|
|
|
|
dataset = new osm_dataset;
|
|
|
|
if (dataset->load_from_url(url.c_str(), bbox, parser) == false)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
atexit(dataset_deliverer::release);
|
|
|
|
last_bbox = bbox;
|
|
|
|
}
|
|
|
|
else if (bbox != last_bbox)
|
|
|
|
{
|
2009-04-28 22:07:18 +02:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2011-10-22 16:04:05 +02:00
|
|
|
std::cerr << "Osm Plugin: BBOXES ARE DIFFERENT: " << last_bbox << "," << bbox << std::endl;
|
2009-04-28 22:07:18 +02:00
|
|
|
#endif
|
|
|
|
|
2011-10-22 16:04:05 +02:00
|
|
|
// Reload the dataset
|
|
|
|
dataset->clear();
|
|
|
|
if (dataset->load_from_url(url.c_str(), bbox, parser) == false)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
last_bbox = bbox;
|
|
|
|
}
|
|
|
|
return dataset;
|
2009-02-15 14:51:07 +01:00
|
|
|
}
|