Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #include "FunctionGraph.hpp"
00040
00041 namespace {
00042
00043 using namespace RTT;
00044 using namespace RTT::detail;
00045 using namespace boost;
00046
00047
00048
00049 class GraphVertexCopier {
00050 typedef FunctionGraph::Graph Graph;
00051 typedef graph_traits<Graph>::vertex_descriptor VertexDesc;
00052 std::map<const base::DataSourceBase*, base::DataSourceBase*>& rdss;
00053 property_map<Graph, vertex_command_t>::const_type commandmap1;
00054 property_map<Graph, vertex_exec_t>::const_type allmap1;
00055 property_map<Graph, vertex_command_t>::type commandmap2;
00056 property_map<Graph, vertex_exec_t>::type allmap2;
00057 public:
00058 GraphVertexCopier( const Graph& g1, Graph& g2,
00059 std::map<const base::DataSourceBase*, base::DataSourceBase*>& replacementdss )
00060 : rdss( replacementdss ),
00061 commandmap1( get( vertex_command, g1 ) ), allmap1( get( vertex_exec, g1 ) ),
00062 commandmap2( get( vertex_command, g2 ) ), allmap2( get( vertex_exec, g2 ) )
00063 {
00064 }
00065 void operator()( const VertexDesc& a, VertexDesc& b )
00066 {
00067
00068 put( allmap2, b, get( allmap1, a ) );
00069
00070 put( commandmap2, b, get( commandmap1, a ).copy( rdss ) );
00071 }
00072 };
00073
00074 class GraphEdgeCopier {
00075 typedef FunctionGraph::Graph Graph;
00076 typedef graph_traits<Graph>::edge_descriptor EdgeDesc;
00077 std::map<const base::DataSourceBase*, base::DataSourceBase*>& rdss;
00078 property_map<Graph, edge_condition_t>::const_type conditionmap1;
00079 property_map<Graph, edge_condition_t>::type conditionmap2;
00080
00081
00082 public:
00083 GraphEdgeCopier( const Graph& g1, Graph& g2,
00084 std::map<const base::DataSourceBase*, base::DataSourceBase*>& replacementdss )
00085 : rdss( replacementdss ),
00086 conditionmap1( get( edge_condition, g1 ) ), conditionmap2( get( edge_condition, g2 ) )
00087
00088 {
00089 }
00090 void operator()( const EdgeDesc& a, const EdgeDesc& b )
00091 {
00092
00093 put( conditionmap2, b, get( conditionmap1, a ).copy( rdss ) );
00094 }
00095 };
00096 }
00097