184 lines
6.6 KiB
C++
184 lines
6.6 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
//g++ createHierarchy.cpp -fopenmp -Wno-deprecated -o createHierarchy -O3 -march=native -DNDEBUG -I/usr/include/libxml2 -lstxxl
|
|
|
|
#define VERBOSE(x) x
|
|
#define VERBOSE2(x)
|
|
|
|
#ifdef NDEBUG
|
|
#undef VERBOSE
|
|
#undef VERBOSE2
|
|
#endif
|
|
|
|
#include <climits>
|
|
#include <fstream>
|
|
#include <istream>
|
|
#include <iostream>
|
|
#include <cstring>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Util/OpenMPReplacement.h"
|
|
#include "typedefs.h"
|
|
#include "Contractor/Contractor.h"
|
|
#include "Contractor/ContractionCleanup.h"
|
|
#include "Contractor/EdgeBasedGraphFactory.h"
|
|
#include "DataStructures/BinaryHeap.h"
|
|
#include "DataStructures/ExtractorStructs.h"
|
|
#include "DataStructures/NNGrid.h"
|
|
#include "Util/BaseConfiguration.h"
|
|
#include "Util/InputFileUtil.h"
|
|
#include "Util/GraphLoader.h"
|
|
#include "Util/OpenMPReplacement.h"
|
|
|
|
using namespace std;
|
|
|
|
typedef DynamicGraph<EdgeData>::InputEdge InputEdge;
|
|
typedef StaticGraph<EdgeData>::InputEdge StaticEdge;
|
|
typedef BaseConfiguration ContractorConfiguration;
|
|
|
|
std::vector<NodeInfo> internalToExternaleNodeMapping;
|
|
std::vector<_Restriction> inputRestrictions;
|
|
|
|
int main (int argc, char *argv[]) {
|
|
if(argc < 3) {
|
|
cerr << "usage: " << std::endl << argv[0] << " <osrm-data> <osrm-restrictions>" << std::endl;
|
|
exit(-1);
|
|
}
|
|
INFO("Using restrictions from file: " << argv[2]);
|
|
ifstream restrictionsInstream(argv[2], ios::binary);
|
|
_Restriction restriction;
|
|
unsigned usableRestrictionsCounter(0);
|
|
restrictionsInstream.read((char*)&usableRestrictionsCounter, sizeof(unsigned));
|
|
for(unsigned i = 0; i < usableRestrictionsCounter; ++i) {
|
|
restrictionsInstream.read((char *)&(restriction), sizeof(_Restriction));
|
|
inputRestrictions.push_back(restriction);
|
|
}
|
|
restrictionsInstream.close();
|
|
INFO("Loaded " << inputRestrictions.size() << " restrictions from file");
|
|
|
|
unsigned numberOfThreads = omp_get_num_procs();
|
|
if(testDataFile("contractor.ini")) {
|
|
ContractorConfiguration contractorConfig("contractor.ini");
|
|
if(atoi(contractorConfig.GetParameter("Threads").c_str()) != 0 && (unsigned)atoi(contractorConfig.GetParameter("Threads").c_str()) <= numberOfThreads)
|
|
numberOfThreads = (unsigned)atoi( contractorConfig.GetParameter("Threads").c_str() );
|
|
}
|
|
omp_set_num_threads(numberOfThreads);
|
|
|
|
std::cout << "preprocessing data from input file " << argv[1];
|
|
#ifdef _GLIBCXX_PARALLEL
|
|
std::cout << " using STL parallel mode" << std::endl;
|
|
#else
|
|
std::cout << " using STL serial mode" << std::endl;
|
|
#endif
|
|
|
|
ifstream in;
|
|
in.open (argv[1], ifstream::in | ifstream::binary);
|
|
if (!in.is_open()) {
|
|
cerr << "Cannot open " << argv[1] << std::endl; exit(-1);
|
|
}
|
|
|
|
char nodeOut[1024];
|
|
char edgeOut[1024];
|
|
char ramIndexOut[1024];
|
|
char fileIndexOut[1024];
|
|
char levelInfoOut[1024];
|
|
|
|
strcpy(nodeOut, argv[1]);
|
|
strcpy(edgeOut, argv[1]);
|
|
strcpy(ramIndexOut, argv[1]);
|
|
strcpy(fileIndexOut, argv[1]);
|
|
strcpy(levelInfoOut, argv[1]);
|
|
|
|
strcat(nodeOut, ".nodes");
|
|
strcat(edgeOut, ".hsgr");
|
|
strcat(ramIndexOut, ".ramIndex");
|
|
strcat(fileIndexOut, ".fileIndex");
|
|
strcat(levelInfoOut, ".levels");
|
|
|
|
std::vector<ImportEdge> edgeList;
|
|
NodeID n = readBinaryOSRMGraphFromStream(in, edgeList, &internalToExternaleNodeMapping, inputRestrictions);
|
|
in.close();
|
|
|
|
EdgeBasedGraphFactory * edgeBasedGraphFactory = new EdgeBasedGraphFactory (n, edgeList, inputRestrictions, internalToExternaleNodeMapping);
|
|
edgeList.clear();
|
|
std::vector<ImportEdge>().swap(edgeList);
|
|
|
|
edgeBasedGraphFactory->Run();
|
|
n = edgeBasedGraphFactory->GetNumberOfNodes();
|
|
std::vector<EdgeBasedEdge> edgeBasedEdgeList;
|
|
edgeBasedGraphFactory->GetEdgeBasedEdges(edgeBasedEdgeList);
|
|
|
|
std::vector<EdgeBasedGraphFactory::EdgeBasedNode> nodeBasedEdgeList;
|
|
edgeBasedGraphFactory->GetEdgeBasedNodes(nodeBasedEdgeList);
|
|
DELETE(edgeBasedGraphFactory);
|
|
|
|
WritableGrid * writeableGrid = new WritableGrid();
|
|
std::cout << "building grid ..." << std::flush;
|
|
writeableGrid->ConstructGrid(nodeBasedEdgeList, &internalToExternaleNodeMapping, ramIndexOut, fileIndexOut);
|
|
DELETE( writeableGrid );
|
|
std::cout << "writing node map ..." << std::flush;
|
|
ofstream mapOutFile(nodeOut, ios::binary);
|
|
|
|
for(NodeID i = 0; i < internalToExternaleNodeMapping.size(); i++) {
|
|
mapOutFile.write((char *)&(internalToExternaleNodeMapping.at(i)), sizeof(NodeInfo));
|
|
}
|
|
mapOutFile.close();
|
|
std::cout << "ok" << std::endl;
|
|
|
|
internalToExternaleNodeMapping.clear();
|
|
std::vector<NodeInfo>().swap(internalToExternaleNodeMapping);
|
|
inputRestrictions.clear();
|
|
std::vector<_Restriction>().swap(inputRestrictions);
|
|
|
|
std::cout << "initializing contractor ..." << std::flush;
|
|
Contractor* contractor = new Contractor( n, edgeBasedEdgeList );
|
|
double contractionStartedTimestamp(get_timestamp());
|
|
contractor->Run();
|
|
INFO("Contraction took " << get_timestamp() - contractionStartedTimestamp << " sec");
|
|
|
|
std::vector< ContractionCleanup::Edge > contractedEdges;
|
|
contractor->GetEdges( contractedEdges );
|
|
|
|
ContractionCleanup * cleanup = new ContractionCleanup(n, contractedEdges);
|
|
contractedEdges.clear();
|
|
cleanup->Run();
|
|
|
|
std::vector< InputEdge> cleanedEdgeList;
|
|
cleanup->GetData(cleanedEdgeList);
|
|
DELETE( cleanup );
|
|
|
|
std::cout << "Serializing edges " << std::flush;
|
|
ofstream edgeOutFile(edgeOut, ios::binary);
|
|
Percent p(cleanedEdgeList.size());
|
|
for(std::vector< InputEdge>::iterator it = cleanedEdgeList.begin(); it != cleanedEdgeList.end(); it++) {
|
|
p.printIncrement();
|
|
edgeOutFile.write((char *)&(it->data), sizeof(EdgeData));
|
|
edgeOutFile.write((char *)&(it->source), sizeof(NodeID));
|
|
edgeOutFile.write((char *)&(it->target), sizeof(NodeID));
|
|
}
|
|
edgeOutFile.close();
|
|
cleanedEdgeList.clear();
|
|
|
|
std::cout << "finished" << std::endl;
|
|
return 0;
|
|
}
|