2013-09-18 11:49:49 -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 INTERNAL_DATA_FACADE
|
|
|
|
#define INTERNAL_DATA_FACADE
|
|
|
|
|
2013-09-18 12:33:10 -04:00
|
|
|
//implements all data storage when shared memory is _NOT_ used
|
|
|
|
|
2013-09-18 11:49:49 -04:00
|
|
|
#include "BaseDataFacade.h"
|
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
#include "../../DataStructures/Coordinate.h"
|
|
|
|
#include "../../DataStructures/QueryNode.h"
|
|
|
|
#include "../../DataStructures/QueryEdge.h"
|
2013-09-23 12:02:16 -04:00
|
|
|
#include "../../DataStructures/SharedMemoryVectorWrapper.h"
|
2013-09-18 12:33:10 -04:00
|
|
|
#include "../../DataStructures/StaticGraph.h"
|
2013-09-20 12:30:47 -04:00
|
|
|
#include "../../DataStructures/StaticRTree.h"
|
2013-09-20 15:05:47 -04:00
|
|
|
#include "../../Util/BoostFileSystemFix.h"
|
2013-09-20 12:30:47 -04:00
|
|
|
#include "../../Util/GraphLoader.h"
|
|
|
|
#include "../../Util/IniFile.h"
|
2013-10-15 09:44:35 -04:00
|
|
|
#include "../../Util/ProgramOptions.h"
|
2013-09-20 12:30:47 -04:00
|
|
|
#include "../../Util/SimpleLogger.h"
|
2013-09-18 12:33:10 -04:00
|
|
|
|
2013-09-18 11:49:49 -04:00
|
|
|
template<class EdgeDataT>
|
|
|
|
class InternalDataFacade : public BaseDataFacade<EdgeDataT> {
|
|
|
|
|
|
|
|
private:
|
2013-09-20 12:30:47 -04:00
|
|
|
typedef BaseDataFacade<EdgeDataT> super;
|
|
|
|
typedef StaticGraph<typename super::EdgeData> QueryGraph;
|
|
|
|
typedef typename QueryGraph::InputEdge InputEdge;
|
|
|
|
typedef typename super::RTreeLeaf RTreeLeaf;
|
|
|
|
|
|
|
|
InternalDataFacade() { }
|
|
|
|
|
2013-09-26 12:19:51 -04:00
|
|
|
unsigned m_check_sum;
|
|
|
|
unsigned m_number_of_nodes;
|
|
|
|
QueryGraph * m_query_graph;
|
|
|
|
std::string m_timestamp;
|
2013-09-20 12:30:47 -04:00
|
|
|
|
2013-09-24 07:53:38 -04:00
|
|
|
ShM<FixedPointCoordinate, false>::vector m_coordinate_list;
|
|
|
|
ShM<NodeID, false>::vector m_via_node_list;
|
|
|
|
ShM<unsigned, false>::vector m_name_ID_list;
|
|
|
|
ShM<TurnInstruction, false>::vector m_turn_instruction_list;
|
|
|
|
ShM<char, false>::vector m_names_char_list;
|
|
|
|
ShM<unsigned, false>::vector m_name_begin_indices;
|
|
|
|
|
2013-09-26 12:19:51 -04:00
|
|
|
StaticRTree<RTreeLeaf, false> * m_static_rtree;
|
2013-09-20 12:30:47 -04:00
|
|
|
|
|
|
|
|
|
|
|
void LoadTimestamp(const boost::filesystem::path & timestamp_path) {
|
|
|
|
if( boost::filesystem::exists(timestamp_path) ) {
|
|
|
|
SimpleLogger().Write() << "Loading Timestamp";
|
|
|
|
boost::filesystem::ifstream timestampInStream( timestamp_path );
|
|
|
|
if(!timestampInStream) {
|
|
|
|
SimpleLogger().Write(logWARNING) << timestamp_path << " not found";
|
|
|
|
}
|
|
|
|
getline(timestampInStream, m_timestamp);
|
|
|
|
timestampInStream.close();
|
|
|
|
}
|
|
|
|
if(m_timestamp.empty()) {
|
|
|
|
m_timestamp = "n/a";
|
|
|
|
}
|
|
|
|
if(25 < m_timestamp.length()) {
|
|
|
|
m_timestamp.resize(25);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadGraph(const boost::filesystem::path & hsgr_path) {
|
2013-09-23 12:02:16 -04:00
|
|
|
typename ShM<typename QueryGraph::_StrNode, false>::vector node_list;
|
2013-09-24 12:48:02 -04:00
|
|
|
typename ShM<typename QueryGraph::_StrEdge, false>::vector edge_list;
|
|
|
|
|
|
|
|
SimpleLogger().Write() << "loading graph from " << hsgr_path.string();
|
2013-09-20 12:30:47 -04:00
|
|
|
|
|
|
|
m_number_of_nodes = readHSGRFromStream(
|
|
|
|
hsgr_path,
|
|
|
|
node_list,
|
|
|
|
edge_list,
|
|
|
|
&m_check_sum
|
|
|
|
);
|
2013-09-24 12:48:02 -04:00
|
|
|
|
2013-09-24 10:24:27 -04:00
|
|
|
BOOST_ASSERT_MSG(0 != node_list.size(), "node list empty");
|
|
|
|
BOOST_ASSERT_MSG(0 != edge_list.size(), "edge list empty");
|
2013-09-24 12:48:02 -04:00
|
|
|
SimpleLogger().Write() << "loaded " << node_list.size() << " nodes and " << edge_list.size() << " edges";
|
2013-09-20 12:30:47 -04:00
|
|
|
m_query_graph = new QueryGraph(node_list, edge_list);
|
2013-09-24 10:24:27 -04:00
|
|
|
|
|
|
|
BOOST_ASSERT_MSG(0 == node_list.size(), "node list not flushed");
|
|
|
|
BOOST_ASSERT_MSG(0 == edge_list.size(), "edge list not flushed");
|
2013-09-20 12:30:47 -04:00
|
|
|
SimpleLogger().Write() << "Data checksum is " << m_check_sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadNodeAndEdgeInformation(
|
|
|
|
const boost::filesystem::path nodes_file,
|
|
|
|
const boost::filesystem::path edges_file
|
|
|
|
) {
|
|
|
|
boost::filesystem::ifstream nodes_input_stream(
|
|
|
|
nodes_file,
|
|
|
|
std::ios::binary
|
|
|
|
);
|
|
|
|
|
|
|
|
SimpleLogger().Write(logDEBUG) << "Loading node data";
|
|
|
|
NodeInfo current_node;
|
2013-09-26 05:52:15 -04:00
|
|
|
unsigned number_of_coordinates = 0;
|
|
|
|
nodes_input_stream.read(
|
|
|
|
(char *)&number_of_coordinates,
|
|
|
|
sizeof(unsigned)
|
|
|
|
);
|
|
|
|
m_coordinate_list.resize(number_of_coordinates);
|
|
|
|
for(unsigned i = 0; i < number_of_coordinates; ++i) {
|
2013-09-20 12:30:47 -04:00
|
|
|
nodes_input_stream.read((char *)¤t_node, sizeof(NodeInfo));
|
2013-09-26 05:52:15 -04:00
|
|
|
m_coordinate_list[i] = FixedPointCoordinate(
|
2013-09-20 12:30:47 -04:00
|
|
|
current_node.lat,
|
|
|
|
current_node.lon
|
|
|
|
);
|
|
|
|
}
|
|
|
|
std::vector<FixedPointCoordinate>(m_coordinate_list).swap(m_coordinate_list);
|
|
|
|
nodes_input_stream.close();
|
|
|
|
|
2013-09-25 12:26:10 -04:00
|
|
|
SimpleLogger().Write(logDEBUG) << "Loading edge data";
|
|
|
|
boost::filesystem::ifstream edges_input_stream(
|
|
|
|
edges_file,
|
|
|
|
std::ios::binary
|
|
|
|
);
|
2013-09-20 12:30:47 -04:00
|
|
|
unsigned number_of_edges = 0;
|
|
|
|
edges_input_stream.read((char*)&number_of_edges, sizeof(unsigned));
|
|
|
|
m_via_node_list.resize(number_of_edges);
|
|
|
|
m_name_ID_list.resize(number_of_edges);
|
|
|
|
m_turn_instruction_list.resize(number_of_edges);
|
|
|
|
|
|
|
|
OriginalEdgeData current_edge_data;
|
|
|
|
for(unsigned i = 0; i < number_of_edges; ++i) {
|
|
|
|
edges_input_stream.read(
|
|
|
|
(char*)&(current_edge_data),
|
|
|
|
sizeof(OriginalEdgeData)
|
|
|
|
);
|
|
|
|
m_via_node_list[i] = current_edge_data.viaNode;
|
|
|
|
m_name_ID_list[i] = current_edge_data.nameID;
|
|
|
|
m_turn_instruction_list[i] = current_edge_data.turnInstruction;
|
|
|
|
}
|
|
|
|
edges_input_stream.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadRTree(
|
|
|
|
const boost::filesystem::path & ram_index_path,
|
|
|
|
const boost::filesystem::path & file_index_path
|
|
|
|
) {
|
|
|
|
m_static_rtree = new StaticRTree<RTreeLeaf>(
|
|
|
|
ram_index_path,
|
|
|
|
file_index_path
|
|
|
|
);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-24 07:53:38 -04:00
|
|
|
void LoadStreetNames(
|
|
|
|
const boost::filesystem::path & names_file
|
|
|
|
) {
|
|
|
|
boost::filesystem::ifstream name_stream(names_file, std::ios::binary);
|
2013-09-26 12:19:51 -04:00
|
|
|
unsigned number_of_names = 0;
|
|
|
|
unsigned number_of_chars = 0;
|
|
|
|
name_stream.read((char *)&number_of_names, sizeof(unsigned));
|
|
|
|
name_stream.read((char *)&number_of_chars, sizeof(unsigned));
|
|
|
|
BOOST_ASSERT_MSG(0 != number_of_names, "name file broken");
|
|
|
|
BOOST_ASSERT_MSG(0 != number_of_chars, "name file broken");
|
|
|
|
|
|
|
|
m_name_begin_indices.resize(number_of_names);
|
|
|
|
name_stream.read(
|
|
|
|
(char*)&m_name_begin_indices[0],
|
|
|
|
number_of_names*sizeof(unsigned)
|
|
|
|
);
|
2013-09-24 07:53:38 -04:00
|
|
|
|
2013-09-26 12:19:51 -04:00
|
|
|
m_names_char_list.resize(number_of_chars+1); //+1 gives sentinel element
|
|
|
|
name_stream.read(
|
|
|
|
(char *)&m_names_char_list[0],
|
|
|
|
number_of_chars*sizeof(char)
|
|
|
|
);
|
|
|
|
BOOST_ASSERT_MSG(
|
|
|
|
0 != m_names_char_list.size(),
|
|
|
|
"could not load any names"
|
|
|
|
);
|
2013-09-24 07:53:38 -04:00
|
|
|
name_stream.close();
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
public:
|
2013-09-20 12:30:47 -04:00
|
|
|
~InternalDataFacade() {
|
|
|
|
delete m_query_graph;
|
|
|
|
delete m_static_rtree;
|
|
|
|
}
|
|
|
|
|
2013-10-15 09:44:35 -04:00
|
|
|
InternalDataFacade( const ServerPaths & server_paths ) {
|
2013-09-20 12:30:47 -04:00
|
|
|
//generate paths of data files
|
2013-10-15 09:44:35 -04:00
|
|
|
if( server_paths.find("hsgrdata") == server_paths.end() ) {
|
|
|
|
throw OSRMException("no hsgr file given in ini file");
|
2013-10-01 11:37:52 -04:00
|
|
|
}
|
2013-10-15 09:44:35 -04:00
|
|
|
if( server_paths.find("ramindex") == server_paths.end() ) {
|
|
|
|
throw OSRMException("no ram index file given in ini file");
|
2013-10-01 11:37:52 -04:00
|
|
|
}
|
2013-10-15 09:44:35 -04:00
|
|
|
if( server_paths.find("fileindex") == server_paths.end() ) {
|
|
|
|
throw OSRMException("no leaf index file given in ini file");
|
2013-10-01 11:37:52 -04:00
|
|
|
}
|
2013-10-15 09:44:35 -04:00
|
|
|
if( server_paths.find("nodesdata") == server_paths.end() ) {
|
|
|
|
throw OSRMException("no nodes file given in ini file");
|
2013-10-01 11:37:52 -04:00
|
|
|
}
|
2013-10-15 09:44:35 -04:00
|
|
|
if( server_paths.find("edgesdata") == server_paths.end() ) {
|
|
|
|
throw OSRMException("no edges file given in ini file");
|
2013-10-01 11:37:52 -04:00
|
|
|
}
|
2013-10-15 09:44:35 -04:00
|
|
|
if( server_paths.find("namesdata") == server_paths.end() ) {
|
|
|
|
throw OSRMException("no names file given in ini file");
|
2013-10-01 11:37:52 -04:00
|
|
|
}
|
|
|
|
|
2013-10-15 09:44:35 -04:00
|
|
|
ServerPaths::const_iterator paths_iterator = server_paths.find("hsgrdata");
|
|
|
|
BOOST_ASSERT(server_paths.end() != paths_iterator);
|
|
|
|
const boost::filesystem::path & hsgr_path = paths_iterator->second;
|
|
|
|
paths_iterator = server_paths.find("timestamp");
|
|
|
|
BOOST_ASSERT(server_paths.end() != paths_iterator);
|
|
|
|
const boost::filesystem::path & timestamp_path = paths_iterator->second;
|
|
|
|
paths_iterator = server_paths.find("ramindex");
|
|
|
|
BOOST_ASSERT(server_paths.end() != paths_iterator);
|
|
|
|
const boost::filesystem::path & ram_index_path = paths_iterator->second;
|
|
|
|
paths_iterator = server_paths.find("fileindex");
|
|
|
|
BOOST_ASSERT(server_paths.end() != paths_iterator);
|
|
|
|
const boost::filesystem::path & file_index_path = paths_iterator->second;
|
|
|
|
paths_iterator = server_paths.find("nodesdata");
|
|
|
|
BOOST_ASSERT(server_paths.end() != paths_iterator);
|
|
|
|
const boost::filesystem::path & nodes_data_path = paths_iterator->second;
|
|
|
|
paths_iterator = server_paths.find("edgesdata");
|
|
|
|
BOOST_ASSERT(server_paths.end() != paths_iterator);
|
|
|
|
const boost::filesystem::path & edges_data_path = paths_iterator->second;
|
|
|
|
paths_iterator = server_paths.find("namesdata");
|
|
|
|
BOOST_ASSERT(server_paths.end() != paths_iterator);
|
|
|
|
const boost::filesystem::path & names_data_path = paths_iterator->second;
|
2013-09-20 12:30:47 -04:00
|
|
|
|
|
|
|
//load data
|
|
|
|
SimpleLogger().Write() << "loading graph data";
|
|
|
|
LoadGraph(hsgr_path);
|
2013-09-24 12:48:02 -04:00
|
|
|
SimpleLogger().Write() << "loading egde information";
|
2013-10-15 09:44:35 -04:00
|
|
|
LoadNodeAndEdgeInformation(nodes_data_path, edges_data_path);
|
2013-09-24 12:48:02 -04:00
|
|
|
SimpleLogger().Write() << "loading r-tree";
|
2013-09-20 12:30:47 -04:00
|
|
|
LoadRTree(ram_index_path, file_index_path);
|
2013-09-24 12:48:02 -04:00
|
|
|
SimpleLogger().Write() << "loading timestamp";
|
|
|
|
LoadTimestamp(timestamp_path);
|
|
|
|
SimpleLogger().Write() << "loading street names";
|
2013-10-15 09:44:35 -04:00
|
|
|
LoadStreetNames(names_data_path);
|
2013-09-20 12:30:47 -04:00
|
|
|
}
|
|
|
|
|
2013-09-18 11:49:49 -04:00
|
|
|
//search graph access
|
2013-09-20 12:30:47 -04:00
|
|
|
unsigned GetNumberOfNodes() const {
|
|
|
|
return m_query_graph->GetNumberOfNodes();
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
unsigned GetNumberOfEdges() const {
|
|
|
|
return m_query_graph->GetNumberOfEdges();
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
unsigned GetOutDegree( const NodeID n ) const {
|
|
|
|
return m_query_graph->GetOutDegree(n);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
NodeID GetTarget( const EdgeID e ) const {
|
|
|
|
return m_query_graph->GetTarget(e); }
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
EdgeDataT &GetEdgeData( const EdgeID e ) {
|
|
|
|
return m_query_graph->GetEdgeData(e);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
const EdgeDataT &GetEdgeData( const EdgeID e ) const {
|
|
|
|
return m_query_graph->GetEdgeData(e);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
EdgeID BeginEdges( const NodeID n ) const {
|
|
|
|
return m_query_graph->BeginEdges(n);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
EdgeID EndEdges( const NodeID n ) const {
|
|
|
|
return m_query_graph->EndEdges(n);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
|
|
|
//searches for a specific edge
|
2013-09-20 12:30:47 -04:00
|
|
|
EdgeID FindEdge( const NodeID from, const NodeID to ) const {
|
|
|
|
return m_query_graph->FindEdge(from, to);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
|
|
|
EdgeID FindEdgeInEitherDirection(
|
|
|
|
const NodeID from,
|
|
|
|
const NodeID to
|
2013-09-20 12:30:47 -04:00
|
|
|
) const {
|
|
|
|
return m_query_graph->FindEdgeInEitherDirection(from, to);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
|
|
|
EdgeID FindEdgeIndicateIfReverse(
|
|
|
|
const NodeID from,
|
|
|
|
const NodeID to,
|
|
|
|
bool & result
|
2013-09-20 12:30:47 -04:00
|
|
|
) const {
|
|
|
|
return m_query_graph->FindEdgeIndicateIfReverse(from, to, result);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
|
|
|
//node and edge information access
|
|
|
|
FixedPointCoordinate GetCoordinateOfNode(
|
|
|
|
const unsigned id
|
2013-09-20 12:30:47 -04:00
|
|
|
) const {
|
|
|
|
const NodeID node = m_via_node_list.at(id);
|
|
|
|
return m_coordinate_list.at(node);
|
|
|
|
};
|
2013-09-18 11:49:49 -04:00
|
|
|
|
|
|
|
TurnInstruction GetTurnInstructionForEdgeID(
|
|
|
|
const unsigned id
|
2013-09-20 12:30:47 -04:00
|
|
|
) const {
|
|
|
|
return m_turn_instruction_list.at(id);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
|
|
|
bool LocateClosestEndPointForCoordinate(
|
|
|
|
const FixedPointCoordinate& input_coordinate,
|
|
|
|
FixedPointCoordinate& result,
|
|
|
|
const unsigned zoom_level = 18
|
2013-09-20 12:30:47 -04:00
|
|
|
) const {
|
|
|
|
return m_static_rtree->LocateClosestEndPointForCoordinate(
|
|
|
|
input_coordinate,
|
|
|
|
result,
|
|
|
|
zoom_level
|
|
|
|
);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
|
|
|
bool FindPhantomNodeForCoordinate(
|
|
|
|
const FixedPointCoordinate & input_coordinate,
|
|
|
|
PhantomNode & resulting_phantom_node,
|
|
|
|
const unsigned zoom_level
|
2013-09-20 12:30:47 -04:00
|
|
|
) const {
|
|
|
|
return m_static_rtree->FindPhantomNodeForCoordinate(
|
|
|
|
input_coordinate,
|
|
|
|
resulting_phantom_node,
|
|
|
|
zoom_level
|
|
|
|
);
|
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-20 12:30:47 -04:00
|
|
|
unsigned GetCheckSum() const { return m_check_sum; }
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-24 08:44:25 -04:00
|
|
|
unsigned GetNameIndexFromEdgeID(const unsigned id) const {
|
|
|
|
return m_name_ID_list.at(id);
|
|
|
|
};
|
2013-09-18 11:49:49 -04:00
|
|
|
|
2013-09-24 08:44:25 -04:00
|
|
|
void GetName( const unsigned name_id, std::string & result ) const {
|
|
|
|
if(UINT_MAX == name_id) {
|
|
|
|
result = "";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
BOOST_ASSERT_MSG(
|
|
|
|
name_id < m_name_begin_indices.size(),
|
|
|
|
"name id too high"
|
|
|
|
);
|
|
|
|
unsigned begin_index = m_name_begin_indices[name_id];
|
|
|
|
unsigned end_index = m_name_begin_indices[name_id+1];
|
|
|
|
BOOST_ASSERT_MSG(
|
|
|
|
begin_index < m_names_char_list.size(),
|
|
|
|
"begin index of name too high"
|
|
|
|
);
|
|
|
|
BOOST_ASSERT_MSG(
|
|
|
|
end_index < m_names_char_list.size(),
|
|
|
|
"end index of name too high"
|
|
|
|
);
|
|
|
|
|
|
|
|
BOOST_ASSERT_MSG(begin_index <= end_index, "string ends before begin");
|
|
|
|
result.clear();
|
|
|
|
result.resize(end_index - begin_index);
|
|
|
|
std::copy(
|
|
|
|
m_names_char_list.begin() + begin_index,
|
|
|
|
m_names_char_list.begin() + end_index,
|
|
|
|
result.begin()
|
|
|
|
);
|
|
|
|
}
|
2013-09-19 12:55:49 -04:00
|
|
|
|
|
|
|
std::string GetTimestamp() const {
|
2013-09-20 12:30:47 -04:00
|
|
|
return m_timestamp;
|
2013-09-23 12:02:16 -04:00
|
|
|
}
|
2013-09-18 11:49:49 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INTERNAL_DATA_FACADE
|