Moving DataStructures to new data facade pattern
This commit is contained in:
parent
092f1a4959
commit
7d52c82c3b
@ -205,8 +205,7 @@ private:
|
|||||||
edges_input_stream.close();
|
edges_input_stream.close();
|
||||||
SimpleLogger().Write(logDEBUG)
|
SimpleLogger().Write(logDEBUG)
|
||||||
<< "Loaded " << number_of_edges << " orig edges";
|
<< "Loaded " << number_of_edges << " orig edges";
|
||||||
SimpleLogger().Write(logDEBUG)
|
SimpleLogger().Write(logDEBUG) << "Opening NN indices";
|
||||||
<< "Opening NN indices";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<FixedPointCoordinate> m_coordinate_list;
|
std::vector<FixedPointCoordinate> m_coordinate_list;
|
||||||
|
@ -1,91 +0,0 @@
|
|||||||
/*
|
|
||||||
|
|
||||||
Copyright (c) 2013, Project OSRM, Dennis Luxen, others
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
Redistributions of source code must retain the above copyright notice, this list
|
|
||||||
of conditions and the following disclaimer.
|
|
||||||
Redistributions in binary form must reproduce the above copyright notice, this
|
|
||||||
list of conditions and the following disclaimer in the documentation and/or
|
|
||||||
other materials provided with the distribution.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
||||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
||||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
||||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "SearchEngine.h"
|
|
||||||
|
|
||||||
SearchEngine::SearchEngine( QueryObjectsStorage * query_objects ) :
|
|
||||||
_queryData(query_objects),
|
|
||||||
shortestPath(_queryData),
|
|
||||||
alternativePaths(_queryData)
|
|
||||||
{}
|
|
||||||
|
|
||||||
SearchEngine::~SearchEngine() {}
|
|
||||||
|
|
||||||
void SearchEngine::GetCoordinatesForNodeID(
|
|
||||||
NodeID id,
|
|
||||||
FixedPointCoordinate& result
|
|
||||||
) const {
|
|
||||||
result = _queryData.nodeHelpDesk->GetCoordinateOfNode(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SearchEngine::FindPhantomNodeForCoordinate(
|
|
||||||
const FixedPointCoordinate & location,
|
|
||||||
PhantomNode & result,
|
|
||||||
const unsigned zoomLevel
|
|
||||||
) const {
|
|
||||||
_queryData.nodeHelpDesk->FindPhantomNodeForCoordinate(
|
|
||||||
location,
|
|
||||||
result, zoomLevel
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
NodeID SearchEngine::GetNameIDForOriginDestinationNodeID(
|
|
||||||
const NodeID s,
|
|
||||||
const NodeID t
|
|
||||||
) const {
|
|
||||||
if(s == t) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
EdgeID e = _queryData.graph->FindEdge(s, t);
|
|
||||||
if(e == UINT_MAX) {
|
|
||||||
e = _queryData.graph->FindEdge( t, s );
|
|
||||||
}
|
|
||||||
|
|
||||||
if(UINT_MAX == e) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
assert(e != UINT_MAX);
|
|
||||||
const QueryEdge::EdgeData ed = _queryData.graph->GetEdgeData(e);
|
|
||||||
return ed.id;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string SearchEngine::GetEscapedNameForNameID(const unsigned nameID) const {
|
|
||||||
std::string result;
|
|
||||||
_queryData.query_objects->GetName(nameID, result);
|
|
||||||
return HTMLEntitize(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
SearchEngineHeapPtr SearchEngineData::forwardHeap;
|
|
||||||
SearchEngineHeapPtr SearchEngineData::backwardHeap;
|
|
||||||
|
|
||||||
SearchEngineHeapPtr SearchEngineData::forwardHeap2;
|
|
||||||
SearchEngineHeapPtr SearchEngineData::backwardHeap2;
|
|
||||||
|
|
||||||
SearchEngineHeapPtr SearchEngineData::forwardHeap3;
|
|
||||||
SearchEngineHeapPtr SearchEngineData::backwardHeap3;
|
|
@ -25,48 +25,54 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef SEARCHENGINE_H_
|
#ifndef SEARCHENGINE_H
|
||||||
#define SEARCHENGINE_H_
|
#define SEARCHENGINE_H
|
||||||
|
|
||||||
#include "Coordinate.h"
|
#include "Coordinate.h"
|
||||||
#include "NodeInformationHelpDesk.h"
|
#include "NodeInformationHelpDesk.h"
|
||||||
|
#include "SearchEngineData.h"
|
||||||
#include "PhantomNodes.h"
|
#include "PhantomNodes.h"
|
||||||
#include "QueryEdge.h"
|
#include "QueryEdge.h"
|
||||||
#include "SearchEngineData.h"
|
|
||||||
#include "../RoutingAlgorithms/AlternativePathRouting.h"
|
#include "../RoutingAlgorithms/AlternativePathRouting.h"
|
||||||
#include "../RoutingAlgorithms/ShortestPathRouting.h"
|
#include "../RoutingAlgorithms/ShortestPathRouting.h"
|
||||||
#include "../Server/DataStructures/QueryObjectsStorage.h"
|
|
||||||
|
|
||||||
#include "../Util/StringUtil.h"
|
#include "../Util/StringUtil.h"
|
||||||
#include "../typedefs.h"
|
#include "../typedefs.h"
|
||||||
|
|
||||||
|
#include <boost/assert.hpp>
|
||||||
|
|
||||||
#include <climits>
|
#include <climits>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
template<class DataFacadeT>
|
||||||
class SearchEngine {
|
class SearchEngine {
|
||||||
private:
|
private:
|
||||||
SearchEngineData _queryData;
|
DataFacadeT * facade;
|
||||||
|
SearchEngineData engine_working_data;
|
||||||
public:
|
public:
|
||||||
ShortestPathRouting<SearchEngineData> shortestPath;
|
ShortestPathRouting<DataFacadeT> shortest_path;
|
||||||
AlternativeRouting<SearchEngineData> alternativePaths;
|
AlternativeRouting <DataFacadeT> alternative_path;
|
||||||
|
|
||||||
SearchEngine( QueryObjectsStorage * query_objects );
|
SearchEngine( DataFacadeT * facade )
|
||||||
~SearchEngine();
|
:
|
||||||
|
facade (facade),
|
||||||
|
engine_working_data(facade),
|
||||||
|
shortest_path (facade, engine_working_data),
|
||||||
|
alternative_path (facade, engine_working_data)
|
||||||
|
{}
|
||||||
|
|
||||||
void GetCoordinatesForNodeID(NodeID id, FixedPointCoordinate& result) const;
|
~SearchEngine() {}
|
||||||
|
|
||||||
void FindPhantomNodeForCoordinate(
|
|
||||||
const FixedPointCoordinate & location,
|
|
||||||
PhantomNode & result,
|
|
||||||
unsigned zoomLevel
|
|
||||||
) const;
|
|
||||||
|
|
||||||
NodeID GetNameIDForOriginDestinationNodeID(
|
|
||||||
const NodeID s, const NodeID t) const;
|
|
||||||
|
|
||||||
std::string GetEscapedNameForNameID(const unsigned nameID) const;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* SEARCHENGINE_H_ */
|
SearchEngineHeapPtr SearchEngineData::forwardHeap;
|
||||||
|
SearchEngineHeapPtr SearchEngineData::backwardHeap;
|
||||||
|
|
||||||
|
SearchEngineHeapPtr SearchEngineData::forwardHeap2;
|
||||||
|
SearchEngineHeapPtr SearchEngineData::backwardHeap2;
|
||||||
|
|
||||||
|
SearchEngineHeapPtr SearchEngineData::forwardHeap3;
|
||||||
|
SearchEngineHeapPtr SearchEngineData::backwardHeap3;
|
||||||
|
|
||||||
|
#endif // SEARCHENGINE_H
|
||||||
|
@ -27,40 +27,40 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#include "SearchEngineData.h"
|
#include "SearchEngineData.h"
|
||||||
|
|
||||||
void SearchEngineData::InitializeOrClearFirstThreadLocalStorage() {
|
void SearchEngineData::InitializeOrClearFirstThreadLocalStorage(const unsigned number_of_nodes) {
|
||||||
if(!forwardHeap.get()) {
|
if(!forwardHeap.get()) {
|
||||||
forwardHeap.reset(new QueryHeap(nodeHelpDesk->GetNumberOfNodes()));
|
forwardHeap.reset(new QueryHeap(number_of_nodes));
|
||||||
} else {
|
} else {
|
||||||
forwardHeap->Clear();
|
forwardHeap->Clear();
|
||||||
}
|
}
|
||||||
if(!backwardHeap.get()) {
|
if(!backwardHeap.get()) {
|
||||||
backwardHeap.reset(new QueryHeap(nodeHelpDesk->GetNumberOfNodes()));
|
backwardHeap.reset(new QueryHeap(number_of_nodes));
|
||||||
} else {
|
} else {
|
||||||
backwardHeap->Clear();
|
backwardHeap->Clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SearchEngineData::InitializeOrClearSecondThreadLocalStorage() {
|
void SearchEngineData::InitializeOrClearSecondThreadLocalStorage(const unsigned number_of_nodes) {
|
||||||
if(!forwardHeap2.get()) {
|
if(!forwardHeap2.get()) {
|
||||||
forwardHeap2.reset(new QueryHeap(nodeHelpDesk->GetNumberOfNodes()));
|
forwardHeap2.reset(new QueryHeap(number_of_nodes));
|
||||||
} else {
|
} else {
|
||||||
forwardHeap2->Clear();
|
forwardHeap2->Clear();
|
||||||
}
|
}
|
||||||
if(!backwardHeap2.get()) {
|
if(!backwardHeap2.get()) {
|
||||||
backwardHeap2.reset(new QueryHeap(nodeHelpDesk->GetNumberOfNodes()));
|
backwardHeap2.reset(new QueryHeap(number_of_nodes));
|
||||||
} else {
|
} else {
|
||||||
backwardHeap2->Clear();
|
backwardHeap2->Clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SearchEngineData::InitializeOrClearThirdThreadLocalStorage() {
|
void SearchEngineData::InitializeOrClearThirdThreadLocalStorage(const unsigned number_of_nodes) {
|
||||||
if(!forwardHeap3.get()) {
|
if(!forwardHeap3.get()) {
|
||||||
forwardHeap3.reset(new QueryHeap(nodeHelpDesk->GetNumberOfNodes()));
|
forwardHeap3.reset(new QueryHeap(number_of_nodes));
|
||||||
} else {
|
} else {
|
||||||
forwardHeap3->Clear();
|
forwardHeap3->Clear();
|
||||||
}
|
}
|
||||||
if(!backwardHeap3.get()) {
|
if(!backwardHeap3.get()) {
|
||||||
backwardHeap3.reset(new QueryHeap(nodeHelpDesk->GetNumberOfNodes()));
|
backwardHeap3.reset(new QueryHeap(number_of_nodes));
|
||||||
} else {
|
} else {
|
||||||
backwardHeap3->Clear();
|
backwardHeap3->Clear();
|
||||||
}
|
}
|
||||||
|
@ -25,10 +25,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef SEARCH_ENGINE_DATA_H
|
||||||
|
#define SEARCH_ENGINE_DATA_H
|
||||||
|
|
||||||
#include "BinaryHeap.h"
|
#include "BinaryHeap.h"
|
||||||
#include "QueryEdge.h"
|
#include "QueryEdge.h"
|
||||||
#include "StaticGraph.h"
|
#include "StaticGraph.h"
|
||||||
#include "../Server/DataStructures/QueryObjectsStorage.h"
|
|
||||||
|
|
||||||
#include "../typedefs.h"
|
#include "../typedefs.h"
|
||||||
|
|
||||||
@ -41,23 +43,16 @@ struct _HeapData {
|
|||||||
NodeID parent;
|
NodeID parent;
|
||||||
_HeapData( NodeID p ) : parent(p) { }
|
_HeapData( NodeID p ) : parent(p) { }
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef StaticGraph<QueryEdge::EdgeData> QueryGraph;
|
typedef StaticGraph<QueryEdge::EdgeData> QueryGraph;
|
||||||
typedef BinaryHeap< NodeID, NodeID, int, _HeapData, UnorderedMapStorage<NodeID, int> > QueryHeapType;
|
typedef BinaryHeap< NodeID, NodeID, int, _HeapData, UnorderedMapStorage<NodeID, int> > QueryHeapType;
|
||||||
typedef boost::thread_specific_ptr<QueryHeapType> SearchEngineHeapPtr;
|
typedef boost::thread_specific_ptr<QueryHeapType> SearchEngineHeapPtr;
|
||||||
|
|
||||||
struct SearchEngineData {
|
struct SearchEngineData {
|
||||||
typedef QueryGraph Graph;
|
typedef QueryGraph QueryGraph;
|
||||||
typedef QueryHeapType QueryHeap;
|
typedef QueryHeapType QueryHeap;
|
||||||
SearchEngineData(QueryObjectsStorage * query_objects)
|
|
||||||
:
|
|
||||||
query_objects(query_objects),
|
|
||||||
graph(query_objects->graph),
|
|
||||||
nodeHelpDesk(query_objects->nodeHelpDesk)
|
|
||||||
{}
|
|
||||||
|
|
||||||
const QueryObjectsStorage * query_objects;
|
SearchEngineData() { }
|
||||||
const QueryGraph * graph;
|
|
||||||
const NodeInformationHelpDesk * nodeHelpDesk;
|
|
||||||
|
|
||||||
static SearchEngineHeapPtr forwardHeap;
|
static SearchEngineHeapPtr forwardHeap;
|
||||||
static SearchEngineHeapPtr backwardHeap;
|
static SearchEngineHeapPtr backwardHeap;
|
||||||
@ -66,9 +61,11 @@ struct SearchEngineData {
|
|||||||
static SearchEngineHeapPtr forwardHeap3;
|
static SearchEngineHeapPtr forwardHeap3;
|
||||||
static SearchEngineHeapPtr backwardHeap3;
|
static SearchEngineHeapPtr backwardHeap3;
|
||||||
|
|
||||||
void InitializeOrClearFirstThreadLocalStorage();
|
void InitializeOrClearFirstThreadLocalStorage(const unsigned number_of_nodes);
|
||||||
|
|
||||||
void InitializeOrClearSecondThreadLocalStorage();
|
void InitializeOrClearSecondThreadLocalStorage(const unsigned number_of_nodes);
|
||||||
|
|
||||||
void InitializeOrClearThirdThreadLocalStorage();
|
void InitializeOrClearThirdThreadLocalStorage(const unsigned number_of_nodes);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif // SEARCH_ENGINE_DATA_H
|
||||||
|
Loading…
Reference in New Issue
Block a user