X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc9460b0958168a1f9adec8208d190bf128ce6cc..ddc2e5141b85593da4b84cc214674e68c6b49e27:/src/surf/HostImpl.cpp diff --git a/src/surf/HostImpl.cpp b/src/surf/HostImpl.cpp index d4ae879136..f745663142 100644 --- a/src/surf/HostImpl.cpp +++ b/src/surf/HostImpl.cpp @@ -10,8 +10,8 @@ #include "src/surf/HostImpl.hpp" #include "simgrid/sg_config.h" +#include "VirtualMachineImpl.hpp" #include "network_interface.hpp" -#include "virtual_machine.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_host, surf, "Logging specific to the SURF host module"); @@ -24,18 +24,9 @@ simgrid::surf::HostModel *surf_host_model = nullptr; namespace simgrid { namespace surf { -simgrid::xbt::Extension HostImpl::EXTENSION_ID; - /********* * Model * *********/ -HostImpl *HostModel::createHost(const char *name, kernel::routing::NetCard *netElm, Cpu *cpu){ - xbt_dynar_t storageList = (xbt_dynar_t)xbt_lib_get_or_null(storage_lib, name, ROUTING_STORAGE_HOST_LEVEL); - - HostImpl *host = new simgrid::surf::HostImpl(surf_host_model, name, storageList, cpu); - XBT_DEBUG("Create host %s with %ld mounted disks", name, xbt_dynar_length(host->p_storage)); - return host; -} /* Each VM has a dummy CPU action on the PM layer. This CPU action works as the * constraint (capacity) of the VM in the PM layer. If the VM does not have any @@ -44,9 +35,9 @@ HostImpl *HostModel::createHost(const char *name, kernel::routing::NetCard *netE void HostModel::adjustWeightOfDummyCpuActions() { /* iterate for all virtual machines */ - for (VirtualMachine *ws_vm : VirtualMachine::allVms_) { + for (VirtualMachineImpl* ws_vm : VirtualMachineImpl::allVms_) { - Cpu *cpu = ws_vm->p_cpu; + Cpu* cpu = ws_vm->piface_->pimpl_cpu; int is_active = lmm_constraint_used(cpu->getModel()->getMaxminSystem(), cpu->getConstraint()); @@ -67,11 +58,8 @@ void HostModel::adjustWeightOfDummyCpuActions() } } -Action *HostModel::executeParallelTask(int host_nb, - sg_host_t *host_list, - double *flops_amount, - double *bytes_amount, - double rate) +Action* HostModel::executeParallelTask(int host_nb, simgrid::s4u::Host** host_list, double* flops_amount, + double* bytes_amount, double rate) { #define cost_or_zero(array,pos) ((array)?(array)[pos]:0.0) Action *action =nullptr; @@ -80,9 +68,7 @@ Action *HostModel::executeParallelTask(int host_nb, action = host_list[0]->pimpl_cpu->execution_start(flops_amount[0]); } else if ((host_nb == 1) && (cost_or_zero(flops_amount, 0) == 0.0)) { - action = surf_network_model->communicate(host_list[0]->pimpl_netcard, - host_list[0]->pimpl_netcard, - bytes_amount[0], rate); + action = surf_network_model->communicate(host_list[0], host_list[0], bytes_amount[0], rate); } else if ((host_nb == 2) && (cost_or_zero(flops_amount, 0) == 0.0) && (cost_or_zero(flops_amount, 1) == 0.0)) { @@ -96,7 +82,7 @@ Action *HostModel::executeParallelTask(int host_nb, } } if (nb == 1) { - action = surf_network_model->communicate(host_list[0]->pimpl_netcard, host_list[1]->pimpl_netcard, value, rate); + action = surf_network_model->communicate(host_list[0], host_list[1], value, rate); } else if (nb == 0) { xbt_die("Cannot have a communication with no flop to exchange in this model. You should consider using the ptask model"); } else { @@ -112,56 +98,13 @@ Action *HostModel::executeParallelTask(int host_nb, /************ * Resource * ************/ -HostImpl::HostImpl(simgrid::surf::HostModel *model, const char *name, xbt_dynar_t storage, Cpu *cpu) - : Resource(model, name) - , PropertyHolder(nullptr) - , p_storage(storage), p_cpu(cpu) +HostImpl::HostImpl(s4u::Host* host, xbt_dynar_t storage) : PropertyHolder(nullptr), storage_(storage), piface_(host) { - if (!EXTENSION_ID.valid()) - EXTENSION_ID = simgrid::s4u::Host::extension_create(); - p_params.ramsize = 0; -} - -HostImpl::HostImpl(simgrid::surf::HostModel *model, const char *name, lmm_constraint_t constraint, - xbt_dynar_t storage, Cpu *cpu) - : Resource(model, name, constraint) - , PropertyHolder(nullptr) - , p_storage(storage), p_cpu(cpu) -{ - p_params.ramsize = 0; + piface_->pimpl_ = this; } /** @brief use destroy() instead of this destructor */ -HostImpl::~HostImpl() -{ -} - -void HostImpl::attach(simgrid::s4u::Host* host) -{ - if (piface != nullptr) - xbt_die("Already attached to host %s", host->name().c_str()); - host->extension_set(this); - piface = host; -} - -bool HostImpl::isOn() const { - return p_cpu->isOn(); -} -bool HostImpl::isOff() const { - return p_cpu->isOff(); -} -void HostImpl::turnOn(){ - if (isOff()) { - p_cpu->turnOn(); - simgrid::s4u::Host::onStateChange(*this->piface); - } -} -void HostImpl::turnOff(){ - if (isOn()) { - p_cpu->turnOff(); - simgrid::s4u::Host::onStateChange(*this->piface); - } -} +HostImpl::~HostImpl() = default; simgrid::surf::Storage *HostImpl::findStorageOnMountList(const char* mount) { @@ -169,8 +112,8 @@ simgrid::surf::Storage *HostImpl::findStorageOnMountList(const char* mount) s_mount_t mnt; unsigned int cursor; - XBT_DEBUG("Search for storage name '%s' on '%s'", mount, getName()); - xbt_dynar_foreach(p_storage,cursor,mnt){ + XBT_DEBUG("Search for storage name '%s' on '%s'", mount, piface_->name().c_str()); + xbt_dynar_foreach(storage_,cursor,mnt){ XBT_DEBUG("See '%s'",mnt.name); if(!strcmp(mount,mnt.name)){ st = static_cast(mnt.storage); @@ -178,7 +121,7 @@ simgrid::surf::Storage *HostImpl::findStorageOnMountList(const char* mount) } } if(!st) - xbt_die("Can't find mount '%s' for '%s'", mount, getName()); + xbt_die("Can't find mount '%s' for '%s'", mount, piface_->name().c_str()); return st; } @@ -189,7 +132,7 @@ xbt_dict_t HostImpl::getMountedStorageList() xbt_dict_t storage_list = xbt_dict_new_homogeneous(nullptr); char *storage_name = nullptr; - xbt_dynar_foreach(p_storage,i,mnt){ + xbt_dynar_foreach(storage_,i,mnt){ storage_name = (char *)static_cast(mnt.storage)->getName(); xbt_dict_set(storage_list,mnt.name,storage_name,nullptr); } @@ -203,11 +146,12 @@ xbt_dynar_t HostImpl::getAttachedStorageList() void **data; xbt_dynar_t result = xbt_dynar_new(sizeof(void*), nullptr); xbt_lib_foreach(storage_lib, cursor, key, data) { - if(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != nullptr) { - simgrid::surf::Storage *storage = static_cast(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL)); - if(!strcmp((const char*)storage->attach_,this->getName())){ - xbt_dynar_push_as(result, void *, (void*)storage->getName()); - } + if (xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != nullptr) { + simgrid::surf::Storage* storage = static_cast( + xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL)); + if (!strcmp((const char*)storage->attach_, piface_->name().c_str())) { + xbt_dynar_push_as(result, void*, (void*)storage->getName()); + } } } return result; @@ -223,8 +167,8 @@ Action *HostImpl::open(const char* fullpath) { char *file_mount_name = nullptr; char *mount_name = nullptr; - XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath, getName()); - xbt_dynar_foreach(p_storage,cursor,mnt) + XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath, piface_->name().c_str()); + xbt_dynar_foreach(storage_,cursor,mnt) { XBT_DEBUG("See '%s'",mnt.name); file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1)); @@ -248,7 +192,7 @@ Action *HostImpl::open(const char* fullpath) { mount_name[longest_prefix_length] = '\0'; } else - xbt_die("Can't find mount point for '%s' on '%s'", fullpath, getName()); + xbt_die("Can't find mount point for '%s' on '%s'", fullpath, piface_->name().c_str()); XBT_DEBUG("OPEN %s on disk '%s'",path, st->getName()); Action *action = st->open((const char*)mount_name, (const char*)path); @@ -374,25 +318,14 @@ int HostImpl::fileMove(surf_file_t fd, const char* fullpath){ xbt_dynar_t HostImpl::getVms() { - xbt_dynar_t dyn = xbt_dynar_new(sizeof(simgrid::surf::VirtualMachine*), nullptr); + xbt_dynar_t dyn = xbt_dynar_new(sizeof(simgrid::surf::VirtualMachineImpl*), nullptr); - for (VirtualMachine *ws_vm : VirtualMachine::allVms_) { - if (this == ws_vm->getPm()->extension()) + for (VirtualMachineImpl* ws_vm : VirtualMachineImpl::allVms_) { + if (this == ws_vm->getPm()->pimpl_) xbt_dynar_push(dyn, &ws_vm); } return dyn; } -void HostImpl::getParams(vm_params_t params) -{ - *params = p_params; -} - -void HostImpl::setParams(vm_params_t params) -{ - /* may check something here. */ - p_params = *params; -} - }}