Go to the documentation of this file.00001
00010 package jp.go.aist.hrp.simulator;
00011
00012 import com.generalrobotix.ui.item.GrxPathPlanningAlgorithmItem;
00013
00014 import RTC.ComponentProfile;
00015 import RTC.ConnectorProfile;
00016 import RTC.ConnectorProfileHolder;
00017 import RTC.ExecutionContext;
00018 import RTC.LifeCycleState;
00019 import RTC.PortService;
00020 import RTC.RTObject;
00021 import RTC.ReturnCode_t;
00022 import jp.go.aist.hrp.simulator.PathPlanner;
00023 import jp.go.aist.rtm.RTC.DataFlowComponentBase;
00024 import jp.go.aist.rtm.RTC.Manager;
00025 import jp.go.aist.rtm.RTC.port.ConnectionCallback;
00026 import jp.go.aist.rtm.RTC.port.CorbaConsumer;
00027 import jp.go.aist.rtm.RTC.port.CorbaPort;
00028
00029 public class PathConsumerImpl extends DataFlowComponentBase{
00030
00031 public PathConsumerImpl(Manager manager) {
00032 super(manager);
00033
00034 m_PathPlannerPort = new CorbaPort("PathPlanner");
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 m_PathPlannerPort.registerConsumer("Path", "PathPlanner", m_PathBase);
00047 m_PathPlannerPort.setOnConnected( new ConnectionCallback() {
00048 public void run(ConnectorProfileHolder arg0) {
00049 ConnectorProfile[] connectorProfiles = m_PathPlannerPort.get_connector_profiles();
00050 for(ConnectorProfile connectorProfile : connectorProfiles){
00051 PortService[] portServices = connectorProfile.ports;
00052 for(PortService portService : portServices){
00053 RTObject rtObject = portService.get_port_profile().owner;
00054 String typeName = rtObject.get_component_profile().type_name;
00055 if(typeName.equals("Path")){
00056 ExecutionContext[] executionContexts = rtObject.get_owned_contexts();
00057 for(ExecutionContext executionContext : executionContexts){
00058 if(executionContext.get_component_state(rtObject) != LifeCycleState.ACTIVE_STATE){
00059 if(executionContext.activate_component(rtObject) == ReturnCode_t.RTC_OK)
00060 ;
00061 else
00062 item_.connectedCallback(false);
00063 }
00064 item_.connectedCallback(true);
00065 return;
00066 }
00067
00068 }
00069 }
00070 }
00071 item_.connectedCallback(false);
00072 }
00073 });
00074 m_PathPlannerPort.setOnDisconnected( new ConnectionCallback() {
00075 public void run(ConnectorProfileHolder arg0) {
00076 item_.connectedCallback(false);
00077 }
00078 });
00079
00080
00081 registerPort(m_PathPlannerPort);
00082
00083
00084 }
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181 protected CorbaPort m_PathPlannerPort;
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192 protected CorbaConsumer<PathPlanner> m_PathBase = new CorbaConsumer<PathPlanner>(PathPlanner.class);
00193 protected PathPlanner m_Path;
00194
00195 private GrxPathPlanningAlgorithmItem item_ = null;
00196
00197 public void setConnectedCallback(GrxPathPlanningAlgorithmItem item) {
00198 item_ = item;
00199 }
00200 }