00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _strict_policy_impl_hh
00019 #define _strict_policy_impl_hh
00020
00021 #include "BrokerC.h"
00022 #include "BrokerS.h"
00023
00024 #include "StrictPolicyS.h"
00025
00026 #include "RealTimeSchedule.hh"
00027
00028 #include "listNode.h"
00029
00030
00031
00032
00033 class StrictPolicyImpl : public virtual POA_BrokerPolicies::StrictPolicy
00034 {
00035
00036 public:
00037
00038
00039
00040
00041
00042
00043
00044 StrictPolicyImpl(const char *name);
00045
00046
00047
00048
00049 virtual ~StrictPolicyImpl();
00050
00051
00052 virtual char *Name(void)
00053 throw (CORBA::SystemException);
00054
00055
00056 virtual void AddTask(Broker::Task_ptr new_task,
00057 const Broker::ScheduleParameters &sp)
00058 throw (CORBA::SystemException);
00059
00060 virtual void RemoveTask(Broker::Task_ptr added_task)
00061 throw (CORBA::SystemException);
00062
00063
00064 virtual Broker::TaskList *GetTaskList(void)
00065 throw (CORBA::SystemException);
00066
00067
00068 virtual void Activate(const Broker::TaskList &tasks)
00069 throw (CORBA::SystemException);
00070
00071 virtual void Deactivate(void)
00072 throw (CORBA::SystemException);
00073
00074
00075 virtual void ChangeTaskCPU(Broker::RealTimeTask_ptr task,
00076 CORBA::ULong ct,
00077 CORBA::ULong status,
00078 CORBA::ULong advice)
00079 throw (CORBA::SystemException, Broker::InvalidState);
00080
00081
00082 virtual CORBA::Float GetMaxCPUAllocation(void)
00083 throw (CORBA::SystemException);
00084
00085 virtual void SetMaxCPUAllocation(CORBA::Float amount)
00086 throw (CORBA::SystemException);
00087
00088
00089 virtual void SetTaskPriority(Broker::Task_ptr task, CORBA::Short priority)
00090 throw (CORBA::SystemException);
00091
00092
00093 virtual CORBA::Short GetTaskPriority(Broker::Task_ptr task)
00094 throw (CORBA::SystemException);
00095
00096
00097
00098
00099 const static float DEFAULT_MAX_USED_CPU = 0.75;
00100
00101
00102
00103
00104 const static float DEFAULT_MIN_TASK_CPU = 0.02;
00105
00106 private:
00107
00108 enum {
00109 TPB_STARVED,
00110 };
00111
00112
00113
00114
00115
00116
00117
00118
00119 enum {
00120 TPF_STARVED = (1L << TPB_STARVED),
00121 };
00122
00123
00124
00125
00126 struct TaskPriority {
00127 struct lnNode tp_Link;
00128 unsigned int tp_Flags;
00129 struct TaskPriority *tp_SubLink;
00130 RealTimeSchedule tp_Schedule;
00131 CORBA::ULong tp_SubTime;
00132 CORBA::ULong tp_ComputeTime;
00133 Broker::RealTimeTask_var tp_Task;
00134 };
00135
00136
00137
00138
00139 void RepairTaskList(void);
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149 struct TaskPriority *FindTaskPriority(Broker::RealTimeTask_ptr task);
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161 struct TaskPriority *SubList(const RealTimeSchedule &rts,
00162 struct TaskPriority *ignore);
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173 CORBA::ULong TakeCPU(struct TaskPriority *sub_list,
00174 CORBA::ULong amount,
00175 struct TaskPriority *for_tp);
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186 CORBA::ULong GiveCPU(struct TaskPriority *sub_list,
00187 CORBA::ULong amount,
00188 struct TaskPriority *for_tp);
00189
00190
00191 CORBA::String_var sp_Name;
00192
00193
00194 float sp_MaxUsedCPU;
00195
00196
00197 float sp_MinTaskCPU;
00198
00199
00200 struct lnList sp_List;
00201
00202
00203 CORBA::ULong sp_MaxDeadline;
00204
00205
00206 struct TaskPriority sp_FauxTask;
00207
00208 };
00209
00210 #endif