00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _manager_impl_hh
00019 #define _manager_impl_hh
00020
00021 #include "BrokerS.h"
00022
00023 #include <listNode.h>
00024
00025
00026
00027
00028 class ManagerImpl : public virtual POA_Broker::Manager
00029 {
00030
00031 public:
00032
00033
00034
00035
00036
00037
00038 ManagerImpl(const char *name);
00039
00040
00041
00042
00043 virtual ~ManagerImpl();
00044
00045
00046 virtual Broker::Policy_ptr CurrentPolicy(void)
00047 throw (CORBA::SystemException);
00048
00049
00050 virtual void CurrentPolicy(Broker::Policy_ptr policy)
00051 throw (CORBA::SystemException);
00052
00053
00054 virtual void AddTask(Broker::Task_ptr task,
00055 const Broker::ScheduleParameters &sp)
00056 throw (CORBA::SystemException,
00057 Broker::DuplicateScheduleParameter,
00058 Broker::InvalidScheduleParameter,
00059 Broker::MissingScheduleParameter);
00060
00061
00062 virtual void RemoveTask(Broker::Task_ptr task)
00063 throw (CORBA::SystemException);
00064
00065
00066 virtual Broker::TaskList *GetTaskList(void)
00067 throw (CORBA::SystemException);
00068
00069
00070 virtual void ChangeTaskCPU(Broker::RealTimeTask_ptr task,
00071 CORBA::ULong ct,
00072 CORBA::ULong status,
00073 CORBA::ULong advice)
00074 throw (CORBA::SystemException, Broker::InvalidState);
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086 static Broker::Task_ptr ResolveTask(CORBA::ORB_ptr orb,
00087 Broker::TaskList &tl,
00088 const char *name)
00089 throw (CORBA::SystemException);
00090
00091 private:
00092
00093
00094
00095
00096 void RepairTaskList(void);
00097
00098
00099
00100
00101
00102
00103
00104
00105 int TaskIndex(Broker::Task_ptr task);
00106
00107
00108
00109
00110
00111
00112 void RemoveTaskAt(unsigned int index);
00113
00114
00115
00116
00117 Broker::Policy_var mi_CurrentPolicy;
00118
00119
00120
00121
00122
00123 Broker::TaskList mi_Tasks;
00124
00125 };
00126
00127 #endif