X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c1139d8e995d20f3afebc6cb69c66c155348dbdd..9184de69711560f747a3fbbb153a371375f2c38e:/src/kernel/resource/Resource.cpp diff --git a/src/kernel/resource/Resource.cpp b/src/kernel/resource/Resource.cpp index 427a6b1aa9..16851b210e 100644 --- a/src/kernel/resource/Resource.cpp +++ b/src/kernel/resource/Resource.cpp @@ -1,70 +1,28 @@ -/* 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. */ #include "simgrid/kernel/resource/Resource.hpp" #include "src/kernel/lmm/maxmin.hpp" // Constraint +#include "src/kernel/resource/profile/trace_mgr.hpp" #include "src/surf/surf_interface.hpp" namespace simgrid { namespace kernel { namespace resource { -Resource::Resource(Model* model, const std::string& name, lmm::Constraint* constraint) - : name_(name), model_(model), constraint_(constraint) -{ -} - Resource::~Resource() = default; -bool Resource::isOn() const -{ - return is_on_; -} -bool Resource::isOff() const -{ - return not is_on_; -} - -void Resource::turnOn() -{ - is_on_ = true; -} - -void Resource::turnOff() -{ - is_on_ = false; -} - -double Resource::getLoad() +double Resource::get_load() const { return constraint_->get_usage(); } -Model* Resource::model() const -{ - return model_; -} - -const std::string& Resource::getName() const -{ - return name_; -} - -const char* Resource::getCname() const -{ - return name_.c_str(); -} - -bool Resource::operator==(const Resource& other) const -{ - return name_ == other.name_; -} - -kernel::lmm::Constraint* Resource::constraint() const +void Resource::set_state_profile(profile::Profile* profile) { - return constraint_; + xbt_assert(state_event_ == nullptr, "Cannot set a second state profile to %s", get_cname()); + state_event_ = profile->schedule(&future_evt_set, this); } } // namespace resource