X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e7d79b763a5f55d1afb579d2b5a8d30ccfe869c..6d18c4fcb23666f8ccdb91df9c9b6ab32e7df65f:/src/kernel/resource/Model.cpp diff --git a/src/kernel/resource/Model.cpp b/src/kernel/resource/Model.cpp index 77560d6f00..c0f2721e88 100644 --- a/src/kernel/resource/Model.cpp +++ b/src/kernel/resource/Model.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -12,63 +12,52 @@ namespace simgrid { namespace kernel { namespace resource { -Model::Model() = default; +Model::Model(Model::UpdateAlgo algo) : update_algorithm_(algo) {} -Model::~Model() +Action::ModifiedSet* Model::get_modified_set() const { - delete ready_action_set_; - delete running_action_set_; - delete failed_action_set_; - delete done_action_set_; - delete maxmin_system_; -} - -Action* Model::actionHeapPop() -{ - Action* action = action_heap_.top().second; - action_heap_.pop(); - action->clearHeapHandle(); - return action; + return maxmin_system_->modified_set_; } -Action::ModifiedSet* Model::getModifiedSet() const +void Model::set_maxmin_system(lmm::System* system) { - return maxmin_system_->modified_set_; + maxmin_system_.release(); // ugly... + maxmin_system_.reset(system); } -double Model::nextOccuringEvent(double now) +double Model::next_occuring_event(double now) { // FIXME: set the good function once and for all - if (update_mechanism_ == UM_LAZY) - return nextOccuringEventLazy(now); - else if (update_mechanism_ == UM_FULL) - return nextOccuringEventFull(now); + if (update_algorithm_ == Model::UpdateAlgo::LAZY) + return next_occuring_event_lazy(now); + else if (update_algorithm_ == Model::UpdateAlgo::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", maxmin_system_->modified_set_->size()); - lmm_solve(maxmin_system_); + maxmin_system_->lmm_solve(); XBT_DEBUG("After share resources, The size of modified actions set is %zu", maxmin_system_->modified_set_->size()); while (not maxmin_system_->modified_set_->empty()) { Action* action = &(maxmin_system_->modified_set_->front()); maxmin_system_->modified_set_->pop_front(); - bool max_dur_flag = false; + bool max_duration_flag = false; - if (action->get_state_set() != running_action_set_) + if (action->get_state_set() != &started_action_set_) continue; /* bogus priority, skip it */ - if (action->get_priority() <= 0 || action->getType() == Action::Type::LATENCY) + if (action->get_priority() <= 0 || action->get_type() == ActionHeap::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; @@ -80,28 +69,28 @@ double Model::nextOccuringEventLazy(double now) min = now + time_to_completion; // when the task will complete if nothing changes } - if ((action->get_max_duration() > NO_MAX_DURATION) && + 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->get_start_time() + action->get_max_duration(); - max_dur_flag = true; + 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->get_start_time(), min, share, action->get_max_duration()); if (min > -1) { - action->heapUpdate(action_heap_, min, max_dur_flag ? Action::Type::MAX_DURATION : Action::Type::NORMAL); + action_heap_.update(action, min, max_duration_flag ? ActionHeap::Type::max_duration : ActionHeap::Type::normal); XBT_DEBUG("Insert at heap action(%p) min %f now %f", action, min, now); } else DIE_IMPOSSIBLE; } // hereafter must have already the min value for this resource model - if (not actionHeapIsEmpty()) { - double min = actionHeapTopDate() - now; + if (not action_heap_.empty()) { + double min = action_heap_.top_date() - now; XBT_DEBUG("minimum with the HEAP %f", min); return min; } else { @@ -110,14 +99,14 @@ double Model::nextOccuringEventLazy(double now) } } -double Model::nextOccuringEventFull(double /*now*/) +double Model::next_occuring_event_full(double /*now*/) { - maxmin_system_->solve_fun(maxmin_system_); + maxmin_system_->solve(); double min = -1; - for (Action& action : *getRunningActionSet()) { - double value = action.getVariable()->get_value(); + for (Action& action : *get_started_action_set()) { + double value = action.get_variable()->get_value(); if (value > 0) { if (action.get_remains() > 0) value = action.get_remains_no_update() / value; @@ -138,26 +127,48 @@ double Model::nextOccuringEventFull(double /*now*/) return min; } -void Model::updateActionsState(double now, double delta) +void Model::update_actions_state(double now, double delta) { - if (update_mechanism_ == UM_FULL) - updateActionsStateFull(now, delta); - else if (update_mechanism_ == UM_LAZY) - updateActionsStateLazy(now, delta); + if (update_algorithm_ == Model::UpdateAlgo::FULL) + update_actions_state_full(now, delta); + else if (update_algorithm_ == Model::UpdateAlgo::LAZY) + update_actions_state_lazy(now, delta); else xbt_die("Invalid cpu update mechanism!"); } -void Model::updateActionsStateLazy(double /*now*/, double /*delta*/) +/** Pops and returns the first action of that state set (or nullptr if none exist) */ +Action* Model::extract_action(Action::StateSet* list) +{ + if (list->empty()) + return nullptr; + simgrid::kernel::resource::Action* res = &list->front(); + list->pop_front(); + return res; +} + +/** Pops and returns the first finished action (or nullptr if none exist) */ +Action* Model::extract_done_action() +{ + return extract_action(get_finished_action_set()); +} + +/** Pops and returns the failed finished action (or nullptr if none exist) */ +Action* Model::extract_failed_action() +{ + return extract_action(get_failed_action_set()); +} + +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; } } // namespace surf -} // namespace simgrid +} // namespace kernel } // namespace simgrid