TaskScheduler.cpp
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 #include "config.h"
00032
00033 #include "TaskScheduler.hpp"
00034 #include "TaskSchedulerPolicy.hpp"
00035 #include <Exception.hpp>
00036
00037 using namespace mermaid::support::activeobject;
00038 using mermaid::support::errorhandling::Exception;
00039
00040 TaskScheduler::TaskScheduler()
00041 {
00042 policy_ = &earliestFirst;
00043 sq_ = shared_ptr<SchedulingQueue> (new SchedulingQueue (policy_));
00044 };
00045
00046 void TaskScheduler::addTask (shared_ptr<Task> t)
00047 {
00048 sq_->push (t);
00049 };
00050
00051 shared_ptr<Task> TaskScheduler::getNextTask()
00052 {
00053 shared_ptr<Task> t;
00054 if (sq_->empty() == false) {
00055 t = sq_->top();
00056 sq_->pop();
00057 }
00058
00059 return t;
00060
00061 };
00062
00063 shared_ptr<Task> TaskScheduler::peakNextTask()
00064 {
00065 shared_ptr<Task> t;
00066 if (sq_->empty() == false) {
00067 t = sq_->top();
00068 }
00069
00070 return t;
00071
00072 };
00073
00074
00075
00076
00077
00078 }; // setSchedluerPolicy*/