2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02: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,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
//$Id: datasource_cache.cpp 23 2005-03-22 22:16:34Z pavlenko $
|
|
|
|
|
|
|
|
#include "datasource_cache.hpp"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <stdexcept>
|
2005-12-23 13:31:54 +01:00
|
|
|
|
|
|
|
#include <boost/thread/mutex.hpp>
|
2005-06-14 17:06:59 +02:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
|
|
|
|
namespace mapnik
|
|
|
|
{
|
|
|
|
using namespace std;
|
|
|
|
using namespace boost;
|
|
|
|
|
|
|
|
datasource_cache::datasource_cache()
|
|
|
|
{
|
|
|
|
if (lt_dlinit()) throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
datasource_cache::~datasource_cache()
|
|
|
|
{
|
|
|
|
lt_dlexit();
|
|
|
|
}
|
|
|
|
|
2005-12-12 14:15:33 +01:00
|
|
|
std::map<string,boost::shared_ptr<PluginInfo> > datasource_cache::plugins_;
|
2005-06-14 17:06:59 +02:00
|
|
|
bool datasource_cache::registered_=false;
|
|
|
|
|
2005-12-14 18:01:09 +01:00
|
|
|
datasource_p datasource_cache::create(const parameters& params)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2005-12-12 14:15:33 +01:00
|
|
|
datasource_p ds;
|
2005-06-14 17:06:59 +02:00
|
|
|
try
|
|
|
|
{
|
2005-12-14 18:01:09 +01:00
|
|
|
const std::string type=params.get("type");
|
2005-12-12 14:15:33 +01:00
|
|
|
map<string,boost::shared_ptr<PluginInfo> >::iterator itr=plugins_.find(type);
|
2005-06-14 17:06:59 +02:00
|
|
|
if (itr!=plugins_.end())
|
|
|
|
{
|
|
|
|
if (itr->second->handle())
|
|
|
|
{
|
|
|
|
create_ds* create_datasource = (create_ds*) lt_dlsym(itr->second->handle(), "create");
|
|
|
|
if (!create_datasource)
|
|
|
|
{
|
2006-03-19 22:53:47 +01:00
|
|
|
std::clog << "Cannot load symbols: " << lt_dlerror() << std::endl;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-12-12 14:15:33 +01:00
|
|
|
ds=datasource_p(create_datasource(params),datasource_deleter());
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-19 22:53:47 +01:00
|
|
|
std::clog << "Cannot load library: " << " "<< lt_dlerror() << std::endl;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
}
|
2006-03-19 22:53:47 +01:00
|
|
|
std::clog<<"datasource="<<ds<<" type="<<type<<std::endl;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
catch (datasource_exception& ex)
|
|
|
|
{
|
2006-03-19 22:53:47 +01:00
|
|
|
std::clog<<ex.what()<<std::endl;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2006-03-19 22:53:47 +01:00
|
|
|
std::clog<<"exception caught "<<std::endl;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2005-12-12 14:15:33 +01:00
|
|
|
return ds;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool datasource_cache::insert(const std::string& type,const lt_dlhandle module)
|
|
|
|
{
|
2005-12-12 14:15:33 +01:00
|
|
|
return plugins_.insert(make_pair(type,boost::shared_ptr<PluginInfo>(new PluginInfo(type,module)))).second;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void datasource_cache::register_datasources(const std::string& str)
|
|
|
|
{
|
2006-03-22 16:57:12 +01:00
|
|
|
mutex::scoped_lock lock(mapnik::singleton<mapnik::datasource_cache,
|
|
|
|
mapnik::CreateStatic>::mutex_);
|
|
|
|
filesystem::path path(str);
|
|
|
|
filesystem::directory_iterator end_itr;
|
|
|
|
if (exists(path))
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2006-03-22 16:57:12 +01:00
|
|
|
for (filesystem::directory_iterator itr(path);itr!=end_itr;++itr )
|
|
|
|
{
|
|
|
|
if (!is_directory( *itr ) && itr->leaf()[0]!='.')
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2006-03-22 16:57:12 +01:00
|
|
|
lt_dlhandle module=lt_dlopenext(itr->string().c_str());
|
|
|
|
if (module)
|
|
|
|
{
|
|
|
|
datasource_name* ds_name = (datasource_name*) lt_dlsym(module, "datasource_name");
|
|
|
|
if (ds_name && insert(ds_name(),module))
|
|
|
|
{
|
|
|
|
std::clog<<"registered datasource : "<<ds_name()<<std::endl;
|
|
|
|
registered_=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::clog<<lt_dlerror()<<std::endl;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2005-09-09 11:38:37 +02:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|