GraphCopier.hpp
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 boost;
00045
00046
00047
00048 class GraphVertexCopier {
00049 typedef FunctionGraph::Graph Graph;
00050 typedef graph_traits<Graph>::vertex_descriptor VertexDesc;
00051 std::map<const DataSourceBase*, DataSourceBase*>& rdss;
00052 property_map<Graph, vertex_command_t>::const_type commandmap1;
00053 property_map<Graph, vertex_exec_t>::const_type allmap1;
00054 property_map<Graph, vertex_command_t>::type commandmap2;
00055 property_map<Graph, vertex_exec_t>::type allmap2;
00056 public:
00057 GraphVertexCopier( const Graph& g1, Graph& g2,
00058 std::map<const DataSourceBase*, DataSourceBase*>& replacementdss )
00059 : rdss( replacementdss ),
00060 commandmap1( get( vertex_command, g1 ) ), allmap1( get( vertex_exec, g1 ) ),
00061 commandmap2( get( vertex_command, g2 ) ), allmap2( get( vertex_exec, g2 ) )
00062 {
00063 }
00064 void operator()( const VertexDesc& a, VertexDesc& b )
00065 {
00066
00067 put( allmap2, b, get( allmap1, a ) );
00068
00069 put( commandmap2, b, get( commandmap1, a ).copy( rdss ) );
00070 }
00071 };
00072
00073 class GraphEdgeCopier {
00074 typedef FunctionGraph::Graph Graph;
00075 typedef graph_traits<Graph>::edge_descriptor EdgeDesc;
00076 std::map<const DataSourceBase*, DataSourceBase*>& rdss;
00077 property_map<Graph, edge_condition_t>::const_type conditionmap1;
00078 property_map<Graph, edge_condition_t>::type conditionmap2;
00079
00080
00081 public:
00082 GraphEdgeCopier( const Graph& g1, Graph& g2,
00083 std::map<const DataSourceBase*, DataSourceBase*>& replacementdss )
00084 : rdss( replacementdss ),
00085 conditionmap1( get( edge_condition, g1 ) ), conditionmap2( get( edge_condition, g2 ) )
00086
00087 {
00088 }
00089 void operator()( const EdgeDesc& a, const EdgeDesc& b )
00090 {
00091
00092 put( conditionmap2, b, get( conditionmap1, a ).copy( rdss ) );
00093 }
00094 };
00095 }
00096