osrm-backend/Plugins/ViaRoutePlugin.h

217 lines
8.4 KiB
C
Raw Normal View History

2011-07-08 13:27:16 -04:00
/*
open source routing machine
Copyright (C) Dennis Luxen, others 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.
*/
#ifndef VIAROUTEPLUGIN_H_
#define VIAROUTEPLUGIN_H_
#include "BasePlugin.h"
#include "../Algorithms/ObjectToBase64.h"
2011-07-08 13:27:16 -04:00
#include "../DataStructures/HashTable.h"
#include "../DataStructures/QueryEdge.h"
2011-07-08 13:27:16 -04:00
#include "../DataStructures/StaticGraph.h"
#include "../DataStructures/SearchEngine.h"
#include "../Descriptors/BaseDescriptor.h"
#include "../Descriptors/GPXDescriptor.h"
#include "../Descriptors/JSONDescriptor.h"
#include "../Server/DataStructures/QueryObjectsStorage.h"
#include "../Util/SimpleLogger.h"
2011-07-08 13:27:16 -04:00
#include "../Util/StringUtil.h"
#include <cstdlib>
#include <string>
#include <vector>
2011-07-08 13:27:16 -04:00
class ViaRoutePlugin : public BasePlugin {
private:
NodeInformationHelpDesk * nodeHelpDesk;
std::vector<std::string> & names;
StaticGraph<QueryEdge::EdgeData> * graph;
2011-07-08 13:27:16 -04:00
HashTable<std::string, unsigned> descriptorTable;
SearchEngine * searchEnginePtr;
2011-07-08 13:27:16 -04:00
public:
2013-08-13 12:09:20 -04:00
ViaRoutePlugin(QueryObjectsStorage * objects)
:
names(objects->names),
descriptor_string("viaroute")
{
2011-07-08 13:27:16 -04:00
nodeHelpDesk = objects->nodeHelpDesk;
graph = objects->graph;
searchEnginePtr = new SearchEngine(graph, nodeHelpDesk, names);
2011-07-08 13:27:16 -04:00
2013-08-13 12:09:20 -04:00
descriptorTable.insert(std::make_pair("" , 0));
2013-08-06 10:39:04 -04:00
descriptorTable.insert(std::make_pair("json", 0));
descriptorTable.insert(std::make_pair("gpx" , 1));
2011-07-08 13:27:16 -04:00
}
2011-07-21 10:30:36 -04:00
virtual ~ViaRoutePlugin() {
delete searchEnginePtr;
2011-07-08 13:27:16 -04:00
}
2013-08-13 12:09:20 -04:00
const std::string & GetDescriptor() const { return descriptor_string; }
void HandleRequest(const RouteParameters & routeParameters, http::Reply& reply) {
2011-07-08 13:27:16 -04:00
//check number of parameters
if( 2 > routeParameters.coordinates.size() ) {
2011-07-08 13:27:16 -04:00
reply = http::Reply::stockReply(http::Reply::badRequest);
return;
}
RawRouteData rawRoute;
2012-02-17 02:34:52 -05:00
rawRoute.checkSum = nodeHelpDesk->GetCheckSum();
bool checksumOK = (routeParameters.checkSum == rawRoute.checkSum);
std::vector<std::string> textCoord;
for(unsigned i = 0; i < routeParameters.coordinates.size(); ++i) {
if(false == checkCoord(routeParameters.coordinates[i])) {
2011-07-08 13:27:16 -04:00
reply = http::Reply::stockReply(http::Reply::badRequest);
return;
}
rawRoute.rawViaNodeCoordinates.push_back(routeParameters.coordinates[i]);
}
std::vector<PhantomNode> phantomNodeVector(rawRoute.rawViaNodeCoordinates.size());
for(unsigned i = 0; i < rawRoute.rawViaNodeCoordinates.size(); ++i) {
if(checksumOK && i < routeParameters.hints.size() && "" != routeParameters.hints[i]) {
// SimpleLogger().Write() <<"Decoding hint: " << routeParameters.hints[i] << " for location index " << i;
2013-07-08 08:59:51 -04:00
DecodeObjectFromBase64(routeParameters.hints[i], phantomNodeVector[i]);
if(phantomNodeVector[i].isValid(nodeHelpDesk->GetNumberOfNodes())) {
// SimpleLogger().Write() << "Decoded hint " << i << " successfully";
continue;
}
}
// SimpleLogger().Write() << "Brute force lookup of coordinate " << i;
searchEnginePtr->FindPhantomNodeForCoordinate( rawRoute.rawViaNodeCoordinates[i], phantomNodeVector[i], routeParameters.zoomLevel);
2011-07-08 13:27:16 -04:00
}
for(unsigned i = 0; i < phantomNodeVector.size()-1; ++i) {
2011-08-07 06:56:37 -04:00
PhantomNodes segmentPhantomNodes;
segmentPhantomNodes.startPhantom = phantomNodeVector[i];
segmentPhantomNodes.targetPhantom = phantomNodeVector[i+1];
rawRoute.segmentEndCoordinates.push_back(segmentPhantomNodes);
2011-07-08 13:27:16 -04:00
}
if( ( routeParameters.alternateRoute ) && (1 == rawRoute.segmentEndCoordinates.size()) ) {
// SimpleLogger().Write() << "Checking for alternative paths";
searchEnginePtr->alternativePaths(rawRoute.segmentEndCoordinates[0], rawRoute);
} else {
searchEnginePtr->shortestPath(rawRoute.segmentEndCoordinates, rawRoute);
}
if(INT_MAX == rawRoute.lengthOfShortestPath ) {
SimpleLogger().Write(logDEBUG) << "Error occurred, single path not found";
}
2011-07-08 13:27:16 -04:00
reply.status = http::Reply::ok;
//TODO: Move to member as smart pointer
BaseDescriptor * desc;
if("" != routeParameters.jsonpParameter) {
reply.content += routeParameters.jsonpParameter;
2012-02-17 02:34:52 -05:00
reply.content += "(";
2011-07-08 13:27:16 -04:00
}
_DescriptorConfig descriptorConfig;
unsigned descriptorType = descriptorTable[routeParameters.outputFormat];
descriptorConfig.z = routeParameters.zoomLevel;
descriptorConfig.instructions = routeParameters.printInstructions;
descriptorConfig.geometry = routeParameters.geometry;
descriptorConfig.encodeGeometry = routeParameters.compression;
2011-07-08 13:27:16 -04:00
switch(descriptorType){
case 0:
desc = new JSONDescriptor();
2011-07-08 13:27:16 -04:00
break;
case 1:
desc = new GPXDescriptor();
2011-07-08 13:27:16 -04:00
break;
default:
desc = new JSONDescriptor();
2011-07-08 13:27:16 -04:00
break;
}
2011-07-08 13:27:16 -04:00
PhantomNodes phantomNodes;
phantomNodes.startPhantom = rawRoute.segmentEndCoordinates[0].startPhantom;
// SimpleLogger().Write() << "Start location: " << phantomNodes.startPhantom.location;
phantomNodes.targetPhantom = rawRoute.segmentEndCoordinates[rawRoute.segmentEndCoordinates.size()-1].targetPhantom;
// SimpleLogger().Write() << "TargetLocation: " << phantomNodes.targetPhantom.location;
// SimpleLogger().Write() << "Number of segments: " << rawRoute.segmentEndCoordinates.size();
2011-07-08 13:27:16 -04:00
desc->SetConfig(descriptorConfig);
2011-08-07 06:56:37 -04:00
desc->Run(reply, rawRoute, phantomNodes, *searchEnginePtr);
if("" != routeParameters.jsonpParameter) {
2011-07-08 13:27:16 -04:00
reply.content += ")\n";
}
reply.headers.resize(3);
reply.headers[0].name = "Content-Length";
std::string tmp;
intToString(reply.content.size(), tmp);
reply.headers[0].value = tmp;
switch(descriptorType){
case 0:
if("" != routeParameters.jsonpParameter){
2011-07-08 13:27:16 -04:00
reply.headers[1].name = "Content-Type";
reply.headers[1].value = "text/javascript";
reply.headers[2].name = "Content-Disposition";
reply.headers[2].value = "attachment; filename=\"route.js\"";
} else {
reply.headers[1].name = "Content-Type";
reply.headers[1].value = "application/x-javascript";
reply.headers[2].name = "Content-Disposition";
reply.headers[2].value = "attachment; filename=\"route.json\"";
}
break;
2011-11-16 11:29:00 -05:00
case 1:
reply.headers[1].name = "Content-Type";
reply.headers[1].value = "application/gpx+xml; charset=UTF-8";
reply.headers[2].name = "Content-Disposition";
reply.headers[2].value = "attachment; filename=\"route.gpx\"";
2011-07-08 13:27:16 -04:00
break;
default:
if("" != routeParameters.jsonpParameter){
2011-11-16 11:29:00 -05:00
reply.headers[1].name = "Content-Type";
reply.headers[1].value = "text/javascript";
reply.headers[2].name = "Content-Disposition";
reply.headers[2].value = "attachment; filename=\"route.js\"";
} else {
reply.headers[1].name = "Content-Type";
reply.headers[1].value = "application/x-javascript";
reply.headers[2].name = "Content-Disposition";
reply.headers[2].value = "attachment; filename=\"route.json\"";
}
2011-07-08 13:27:16 -04:00
break;
}
delete desc;
2011-07-08 13:27:16 -04:00
return;
}
private:
2013-08-13 12:09:20 -04:00
std::string descriptor_string;
2011-07-08 13:27:16 -04:00
};
#endif /* VIAROUTEPLUGIN_H_ */