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
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069 #ifndef ORO_CORBA_TASKCONTEXTI_H_
00070 #define ORO_CORBA_TASKCONTEXTI_H_
00071
00072 #include "corba.h"
00073 #ifdef CORBA_IS_TAO
00074 #include "TaskContextS.h"
00075 #else
00076 #include "TaskContextC.h"
00077 #endif
00078
00079 #include "ServiceC.h"
00080 #include "ServiceRequesterC.h"
00081 #include "DataFlowC.h"
00082 #include "../../TaskContext.hpp"
00083
00084 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00085 #pragma once
00086 #endif
00087
00088 class RTT_corba_CTaskContext_i
00089 : public virtual POA_RTT::corba::CTaskContext, public virtual PortableServer::RefCountServantBase
00090 {
00091 protected:
00092 PortableServer::POA_var mpoa;
00093 RTT::TaskContext* mtask;
00094
00095 RTT::corba::CService_var mService;
00096 RTT::corba::CServiceRequester_var mRequest;
00097
00098 PortableServer::ServantBase_var mRequest_i;
00099 PortableServer::ServantBase_var mService_i;
00100
00101 public:
00102
00103 RTT_corba_CTaskContext_i (RTT::TaskContext* orig, PortableServer::POA_ptr the_poa);
00104
00105
00106 virtual ~RTT_corba_CTaskContext_i (void);
00107
00108 virtual RTT::corba::CTaskContext_ptr activate_this() {
00109 PortableServer::ObjectId_var oid = mpoa->activate_object(this);
00110
00111 return _this();
00112 }
00113
00114 void shutdownCORBA();
00115
00116 virtual
00117 char * getName (
00118 void);
00119
00120 virtual
00121 char * getDescription (
00122 void);
00123
00124 virtual
00125 ::RTT::corba::CTaskState getTaskState (
00126 void);
00127
00128 virtual
00129 ::CORBA::Boolean configure (
00130 void);
00131
00132 virtual
00133 ::CORBA::Boolean start (
00134 void);
00135
00136 virtual
00137 ::CORBA::Boolean activate (
00138 void);
00139
00140 virtual
00141 ::CORBA::Boolean stop (
00142 void);
00143
00144 virtual
00145 ::CORBA::Boolean cleanup (
00146 void);
00147
00148 virtual
00149 ::CORBA::Boolean resetException(
00150 void);
00151
00152 virtual
00153 ::CORBA::Boolean isActive (
00154 void);
00155
00156 virtual
00157 ::CORBA::Boolean isRunning (
00158 void);
00159
00160 virtual
00161 ::CORBA::Boolean isConfigured (
00162 void);
00163
00164 virtual
00165 ::CORBA::Boolean inFatalError (
00166 void);
00167
00168 virtual
00169 ::CORBA::Boolean inRunTimeError (
00170 void);
00171
00172 virtual
00173 ::RTT::corba::CDataFlowInterface_ptr ports (
00174 void);
00175
00176 virtual
00177 ::RTT::corba::CService_ptr getProvider (
00178 const char * service_name);
00179
00180 virtual
00181 ::RTT::corba::CServiceRequester_ptr getRequester (
00182 const char * service_name);
00183
00184 virtual
00185 ::RTT::corba::CTaskContext::CPeerNames * getPeerList (
00186 void);
00187
00188 virtual
00189 ::RTT::corba::CTaskContext_ptr getPeer (
00190 const char * name);
00191
00192 virtual
00193 ::CORBA::Boolean hasPeer (
00194 const char * name);
00195
00196 virtual
00197 ::CORBA::Boolean addPeer (
00198 ::RTT::corba::CTaskContext_ptr p,
00199 const char * alias);
00200
00201 virtual
00202 ::CORBA::Boolean removePeer (
00203 const char * name);
00204
00205 virtual
00206 ::CORBA::Boolean connectPeers (
00207 ::RTT::corba::CTaskContext_ptr p);
00208
00209 virtual
00210 ::CORBA::Boolean disconnectPeers (
00211 const char * name);
00212
00213 virtual
00214 ::CORBA::Boolean connectPorts (
00215 ::RTT::corba::CTaskContext_ptr p);
00216
00217 virtual
00218 ::CORBA::Boolean connectServices (
00219 ::RTT::corba::CTaskContext_ptr p);
00220 };
00221
00222
00223 #endif
00224