osrm-backend/Library/OSRM.cpp

97 lines
3.0 KiB
C++
Raw Normal View History

2013-06-26 20:05:42 -04:00
/*
open source routing machine
Copyright (C) Dennis Luxen, 2010
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU AFFERO General Public License as published by
the Free Software Foundation; either version 3 of the License, or
any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
or see http://www.gnu.org/licenses/agpl.txt.
*/
#include "OSRM.h"
OSRM::OSRM(const char * server_ini_path, const bool use_shared_memory) :
use_shared_memory(use_shared_memory)
{
if( !testDataFile(server_ini_path) ){
std::string error_message(server_ini_path);
error_message += " not found";
throw OSRMException(error_message);
}
boost::filesystem::path base_path = boost::filesystem::absolute(server_ini_path).parent_path();
IniFile server_config(server_ini_path);
if( !use_shared_memory ) {
query_data_facade = new InternalDataFacade<QueryEdge::EdgeData>(
server_config, base_path
);
} else {
query_data_facade = new SharedDataFacade<QueryEdge::EdgeData>(
server_config, base_path
);
}
2013-09-19 12:55:19 -04:00
//The following plugins handle all requests.
RegisterPlugin(
new HelloWorldPlugin()
);
RegisterPlugin(
new LocatePlugin<BaseDataFacade<QueryEdge::EdgeData> >(
query_data_facade
)
);
RegisterPlugin(
new NearestPlugin<BaseDataFacade<QueryEdge::EdgeData> >(
query_data_facade
)
);
RegisterPlugin(
new TimestampPlugin<BaseDataFacade<QueryEdge::EdgeData> >(
query_data_facade
)
);
RegisterPlugin(
new ViaRoutePlugin<BaseDataFacade<QueryEdge::EdgeData> >(
query_data_facade
)
);
2013-06-26 20:05:42 -04:00
}
OSRM::~OSRM() {
2013-09-19 12:55:19 -04:00
BOOST_FOREACH(PluginMap::value_type & plugin_pointer, plugin_map) {
2013-06-26 20:05:42 -04:00
delete plugin_pointer.second;
}
}
void OSRM::RegisterPlugin(BasePlugin * plugin) {
2013-08-08 10:19:25 -04:00
SimpleLogger().Write() << "loaded plugin: " << plugin->GetDescriptor();
2013-09-19 12:55:19 -04:00
if( plugin_map.find(plugin->GetDescriptor()) != plugin_map.end() ) {
delete plugin_map.find(plugin->GetDescriptor())->second;
}
2013-09-19 12:55:19 -04:00
plugin_map.emplace(plugin->GetDescriptor(), plugin);
2013-06-26 20:05:42 -04:00
}
void OSRM::RunQuery(RouteParameters & route_parameters, http::Reply & reply) {
2013-09-19 12:55:19 -04:00
const PluginMap::const_iterator & iter = plugin_map.find(
route_parameters.service
);
if(plugin_map.end() != iter) {
2013-06-26 20:05:42 -04:00
reply.status = http::Reply::ok;
iter->second->HandleRequest(route_parameters, reply );
} else {
reply = http::Reply::stockReply(http::Reply::badRequest);
}
}