X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/95a02a8febe84fd1c2ed98c78c594a5e8a0116f7..7c480b01951b33f03d72ede0a47a45a88bd40b61:/src/kernel/resource/Model.cpp diff --git a/src/kernel/resource/Model.cpp b/src/kernel/resource/Model.cpp index c078cbb791..25a3ee6bb9 100644 --- a/src/kernel/resource/Model.cpp +++ b/src/kernel/resource/Model.cpp @@ -12,94 +12,88 @@ namespace simgrid { namespace kernel { namespace resource { -Model::Model() : maxminSystem_(nullptr) -{ - readyActionSet_ = new ActionList(); - runningActionSet_ = new ActionList(); - failedActionSet_ = new ActionList(); - doneActionSet_ = new ActionList(); - - modifiedSet_ = nullptr; - updateMechanism_ = UM_UNDEFINED; - selectiveUpdate_ = 0; -} +Model::Model() = default; Model::~Model() { - delete readyActionSet_; - delete runningActionSet_; - delete failedActionSet_; - delete doneActionSet_; - delete modifiedSet_; - delete maxminSystem_; + delete ready_action_set_; + delete running_action_set_; + delete failed_action_set_; + delete done_action_set_; + delete maxmin_system_; } Action* Model::actionHeapPop() { - Action* action = actionHeap_.top().second; - actionHeap_.pop(); + Action* action = action_heap_.top().second; + action_heap_.pop(); action->clearHeapHandle(); return action; } -double Model::nextOccuringEvent(double now) +Action::ModifiedSet* Model::get_modified_set() const +{ + return maxmin_system_->modified_set_; +} + +double Model::next_occuring_event(double now) { // FIXME: set the good function once and for all - if (updateMechanism_ == UM_LAZY) - return nextOccuringEventLazy(now); - else if (updateMechanism_ == UM_FULL) - return nextOccuringEventFull(now); + if (update_mechanism_ == UM_LAZY) + return next_occuring_event_lazy(now); + else if (update_mechanism_ == UM_FULL) + return next_occuring_event_full(now); else xbt_die("Invalid cpu update mechanism!"); } -double Model::nextOccuringEventLazy(double now) +double Model::next_occuring_event_lazy(double now) { - XBT_DEBUG("Before share resources, the size of modified actions set is %zu", modifiedSet_->size()); - lmm_solve(maxminSystem_); - XBT_DEBUG("After share resources, The size of modified actions set is %zu", modifiedSet_->size()); + XBT_DEBUG("Before share resources, the size of modified actions set is %zu", maxmin_system_->modified_set_->size()); + lmm_solve(maxmin_system_); + XBT_DEBUG("After share resources, The size of modified actions set is %zu", maxmin_system_->modified_set_->size()); - while (not modifiedSet_->empty()) { - Action* action = &(modifiedSet_->front()); - modifiedSet_->pop_front(); - bool max_dur_flag = false; + while (not maxmin_system_->modified_set_->empty()) { + Action* action = &(maxmin_system_->modified_set_->front()); + maxmin_system_->modified_set_->pop_front(); + bool max_duration_flag = false; - if (action->getStateSet() != runningActionSet_) + if (action->get_state_set() != running_action_set_) continue; /* bogus priority, skip it */ - if (action->getPriority() <= 0 || action->getType() == Action::Type::LATENCY) + if (action->get_priority() <= 0 || action->get_type() == Action::Type::LATENCY) continue; - action->updateRemainingLazy(now); + action->update_remains_lazy(now); double min = -1; - double share = action->getVariable()->get_value(); + double share = action->get_variable()->get_value(); if (share > 0) { double time_to_completion; - if (action->getRemains() > 0) { - time_to_completion = action->getRemainsNoUpdate() / share; + if (action->get_remains() > 0) { + time_to_completion = action->get_remains_no_update() / share; } else { time_to_completion = 0.0; } min = now + time_to_completion; // when the task will complete if nothing changes } - if ((action->getMaxDuration() > NO_MAX_DURATION) && - (min <= -1 || action->getStartTime() + action->getMaxDuration() < min)) { + if ((action->get_max_duration() > NO_MAX_DURATION) && + (min <= -1 || action->get_start_time() + action->get_max_duration() < min)) { // when the task will complete anyway because of the deadline if any - min = action->getStartTime() + action->getMaxDuration(); - max_dur_flag = true; + min = action->get_start_time() + action->get_max_duration(); + max_duration_flag = true; } - XBT_DEBUG("Action(%p) corresponds to variable %d", action, action->getVariable()->id_int); + XBT_DEBUG("Action(%p) corresponds to variable %d", action, action->get_variable()->id_int); XBT_DEBUG("Action(%p) Start %f. May finish at %f (got a share of %f). Max_duration %f", action, - action->getStartTime(), min, share, action->getMaxDuration()); + action->get_start_time(), min, share, action->get_max_duration()); if (min > -1) { - action->heapUpdate(actionHeap_, min, max_dur_flag ? Action::Type::MAX_DURATION : Action::Type::NORMAL); + action->heapUpdate(min, max_duration_flag ? Action::Type::MAX_DURATION : Action::Type::NORMAL); XBT_DEBUG("Insert at heap action(%p) min %f now %f", action, min, now); } else DIE_IMPOSSIBLE; @@ -116,17 +110,17 @@ double Model::nextOccuringEventLazy(double now) } } -double Model::nextOccuringEventFull(double /*now*/) +double Model::next_occuring_event_full(double /*now*/) { - maxminSystem_->solve_fun(maxminSystem_); + maxmin_system_->solve_fun(maxmin_system_); double min = -1; - for (Action& action : *getRunningActionSet()) { - double value = action.getVariable()->get_value(); + for (Action& action : *get_running_action_set()) { + double value = action.get_variable()->get_value(); if (value > 0) { - if (action.getRemains() > 0) - value = action.getRemainsNoUpdate() / value; + if (action.get_remains() > 0) + value = action.get_remains_no_update() / value; else value = 0.0; if (min < 0 || value < min) { @@ -134,8 +128,8 @@ double Model::nextOccuringEventFull(double /*now*/) XBT_DEBUG("Updating min (value) with %p: %f", &action, min); } } - if ((action.getMaxDuration() >= 0) && (min < 0 || action.getMaxDuration() < min)) { - min = action.getMaxDuration(); + if ((action.get_max_duration() >= 0) && (min < 0 || action.get_max_duration() < min)) { + min = action.get_max_duration(); XBT_DEBUG("Updating min (duration) with %p: %f", &action, min); } } @@ -144,22 +138,22 @@ double Model::nextOccuringEventFull(double /*now*/) return min; } -void Model::updateActionsState(double now, double delta) +void Model::update_actions_state(double now, double delta) { - if (updateMechanism_ == UM_FULL) - updateActionsStateFull(now, delta); - else if (updateMechanism_ == UM_LAZY) - updateActionsStateLazy(now, delta); + if (update_mechanism_ == UM_FULL) + update_actions_state_full(now, delta); + else if (update_mechanism_ == UM_LAZY) + update_actions_state_lazy(now, delta); else xbt_die("Invalid cpu update mechanism!"); } -void Model::updateActionsStateLazy(double /*now*/, double /*delta*/) +void Model::update_actions_state_lazy(double /*now*/, double /*delta*/) { THROW_UNIMPLEMENTED; } -void Model::updateActionsStateFull(double /*now*/, double /*delta*/) +void Model::update_actions_state_full(double /*now*/, double /*delta*/) { THROW_UNIMPLEMENTED; }