2012-04-14 14:07:30 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "QueryObjectsStorage.h"
|
|
|
|
|
2013-06-25 13:27:39 -04:00
|
|
|
QueryObjectsStorage::QueryObjectsStorage(
|
2013-06-27 16:09:21 -04:00
|
|
|
const std::string & hsgrPath,
|
|
|
|
const std::string & ramIndexPath,
|
|
|
|
const std::string & fileIndexPath,
|
|
|
|
const std::string & nodesPath,
|
|
|
|
const std::string & edgesPath,
|
|
|
|
const std::string & namesPath,
|
|
|
|
const std::string & timestampPath
|
2013-06-25 13:27:39 -04:00
|
|
|
) {
|
2013-08-09 08:47:09 -04:00
|
|
|
if("" == hsgrPath) {
|
|
|
|
throw OSRMException("no hsgr file given in ini file");
|
|
|
|
}
|
|
|
|
if("" == ramIndexPath) {
|
|
|
|
throw OSRMException("no ram index file given in ini file");
|
|
|
|
}
|
|
|
|
if("" == fileIndexPath) {
|
|
|
|
throw OSRMException("no mem index file given in ini file");
|
|
|
|
}
|
|
|
|
if("" == nodesPath) {
|
|
|
|
throw OSRMException("no nodes file given in ini file");
|
|
|
|
}
|
|
|
|
if("" == edgesPath) {
|
|
|
|
throw OSRMException("no edges file given in ini file");
|
|
|
|
}
|
|
|
|
if("" == namesPath) {
|
|
|
|
throw OSRMException("no names file given in ini file");
|
|
|
|
}
|
|
|
|
|
2013-08-08 08:17:01 -04:00
|
|
|
SimpleLogger().Write() << "loading graph data";
|
2012-04-25 04:51:16 -04:00
|
|
|
std::ifstream hsgrInStream(hsgrPath.c_str(), std::ios::binary);
|
2013-08-05 11:28:57 -04:00
|
|
|
if(!hsgrInStream) {
|
|
|
|
throw OSRMException("hsgr not found");
|
|
|
|
}
|
2012-04-14 14:07:30 -04:00
|
|
|
//Deserialize road network graph
|
|
|
|
std::vector< QueryGraph::_StrNode> nodeList;
|
|
|
|
std::vector< QueryGraph::_StrEdge> edgeList;
|
2013-06-25 13:27:39 -04:00
|
|
|
const int n = readHSGRFromStream(
|
|
|
|
hsgrInStream,
|
|
|
|
nodeList,
|
|
|
|
edgeList,
|
|
|
|
&checkSum
|
|
|
|
);
|
2013-06-27 16:09:21 -04:00
|
|
|
hsgrInStream.close();
|
2012-04-14 14:07:30 -04:00
|
|
|
|
2013-08-08 08:17:01 -04:00
|
|
|
SimpleLogger().Write() << "Data checksum is " << checkSum;
|
2012-04-14 14:07:30 -04:00
|
|
|
graph = new QueryGraph(nodeList, edgeList);
|
|
|
|
assert(0 == nodeList.size());
|
|
|
|
assert(0 == edgeList.size());
|
2012-04-25 04:51:16 -04:00
|
|
|
|
2012-05-15 08:28:13 -04:00
|
|
|
if(timestampPath.length()) {
|
2013-08-08 08:17:01 -04:00
|
|
|
SimpleLogger().Write() << "Loading Timestamp";
|
2012-09-19 11:06:35 -04:00
|
|
|
std::ifstream timestampInStream(timestampPath.c_str());
|
2013-08-08 08:17:01 -04:00
|
|
|
if(!timestampInStream) {
|
|
|
|
SimpleLogger().Write(logWARNING) << timestampPath << " not found";
|
|
|
|
}
|
2012-09-19 11:06:35 -04:00
|
|
|
|
2012-05-15 08:28:13 -04:00
|
|
|
getline(timestampInStream, timestamp);
|
|
|
|
timestampInStream.close();
|
|
|
|
}
|
2013-07-22 10:34:06 -04:00
|
|
|
if(!timestamp.length()) {
|
2012-05-15 08:28:13 -04:00
|
|
|
timestamp = "n/a";
|
2013-07-22 10:34:06 -04:00
|
|
|
}
|
|
|
|
if(25 < timestamp.length()) {
|
2012-12-10 10:36:54 -05:00
|
|
|
timestamp.resize(25);
|
2013-07-22 10:34:06 -04:00
|
|
|
}
|
2012-04-25 04:51:16 -04:00
|
|
|
|
2013-08-08 08:17:01 -04:00
|
|
|
SimpleLogger().Write() << "Loading auxiliary information";
|
2012-04-25 04:51:16 -04:00
|
|
|
//Init nearest neighbor data structure
|
2013-06-27 16:09:21 -04:00
|
|
|
nodeHelpDesk = new NodeInformationHelpDesk(
|
2013-07-22 10:34:06 -04:00
|
|
|
ramIndexPath,
|
|
|
|
fileIndexPath,
|
|
|
|
nodesPath,
|
|
|
|
edgesPath,
|
2013-06-27 16:09:21 -04:00
|
|
|
n,
|
|
|
|
checkSum
|
|
|
|
);
|
2012-04-14 14:07:30 -04:00
|
|
|
|
|
|
|
//deserialize street name list
|
2013-08-08 08:17:01 -04:00
|
|
|
SimpleLogger().Write() << "Loading names index";
|
2012-04-25 04:51:16 -04:00
|
|
|
std::ifstream namesInStream(namesPath.c_str(), std::ios::binary);
|
2013-08-05 11:28:57 -04:00
|
|
|
if(!namesInStream) {
|
|
|
|
throw OSRMException("names file not found");
|
|
|
|
}
|
2012-04-14 14:07:30 -04:00
|
|
|
unsigned size(0);
|
|
|
|
namesInStream.read((char *)&size, sizeof(unsigned));
|
|
|
|
|
|
|
|
char buf[1024];
|
|
|
|
for(unsigned i = 0; i < size; ++i) {
|
|
|
|
unsigned sizeOfString = 0;
|
|
|
|
namesInStream.read((char *)&sizeOfString, sizeof(unsigned));
|
|
|
|
buf[sizeOfString] = '\0'; // instead of memset
|
|
|
|
namesInStream.read(buf, sizeOfString);
|
|
|
|
names.push_back(buf);
|
|
|
|
}
|
|
|
|
std::vector<std::string>(names).swap(names);
|
|
|
|
namesInStream.close();
|
2013-08-08 08:17:01 -04:00
|
|
|
SimpleLogger().Write() << "All query data structures loaded";
|
2012-04-14 14:07:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QueryObjectsStorage::~QueryObjectsStorage() {
|
|
|
|
// delete names;
|
|
|
|
delete graph;
|
|
|
|
delete nodeHelpDesk;
|
|
|
|
}
|