X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d656f9465e7b1c36319f86eeafdcec58fe9551a4..9383e83f66e7cb0180d6acfc435d2622615c2c7f:/src/instr/instr_paje_containers.cpp diff --git a/src/instr/instr_paje_containers.cpp b/src/instr/instr_paje_containers.cpp index 3316dbd057..0f9b0cede3 100644 --- a/src/instr/instr_paje_containers.cpp +++ b/src/instr/instr_paje_containers.cpp @@ -26,76 +26,64 @@ long long int instr_new_paje_id () return type_id++; } -container_t PJ_container_get_root() +namespace simgrid { +namespace instr { + +container_t Container::getRootContainer() { return rootContainer; } -void PJ_container_set_root (container_t root) +NetZoneContainer::NetZoneContainer(std::string name, unsigned int level, NetZoneContainer* father) + : Container::Container(name, "", father) { - rootContainer = root; + netpoint_ = simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name); + xbt_assert(netpoint_, "Element '%s' not found", name.c_str()); + if (father_) { + type_ = father_->type_->getOrCreateContainerType(std::string("L") + std::to_string(level)); + father_->children_.insert({getName(), this}); + logCreation(); + } else { + type_ = new ContainerType("0"); + rootContainer = this; + } } -namespace simgrid { -namespace instr { +RouterContainer::RouterContainer(std::string name, Container* father) : Container::Container(name, "ROUTER", father) +{ + xbt_assert(father, "Only the Root container has no father"); + + netpoint_ = simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name); + xbt_assert(netpoint_, "Element '%s' not found", name.c_str()); + + trivaNodeTypes.insert(type_->getName()); +} + +HostContainer::HostContainer(simgrid::s4u::Host& host, NetZoneContainer* father) + : Container::Container(host.getCname(), "HOST", father) +{ + xbt_assert(father, "Only the Root container has no father"); + + netpoint_ = host.pimpl_netpoint; + xbt_assert(netpoint_, "Element '%s' not found", host.getCname()); + + trivaNodeTypes.insert(type_->getName()); +} -Container::Container(std::string name, e_container_types kind, Container* father) - : kind_(kind), name_(name), father_(father) +Container::Container(std::string name, std::string type_name, Container* father) : name_(name), father_(father) { static long long int container_id = 0; - id_ = std::to_string(container_id); // id (or alias) of the container + id_ = container_id; // id (or alias) of the container container_id++; if (father_) { - level_ = father_->level_ + 1; XBT_DEBUG("new container %s, child of %s", name.c_str(), father->name_.c_str()); - } - - // Search for network_element_t for AS, ROUTER and HOST - // Name the kind of container. For AS otherwise, the name depends on its level - std::string typeNameBuff; - switch (kind_) { - case INSTR_AS: - netpoint_ = simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name); - xbt_assert(netpoint_, "Element '%s' not found", name.c_str()); - typeNameBuff = std::string("L") + std::to_string(level_); - break; - case INSTR_ROUTER: - netpoint_ = simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name); - xbt_assert(netpoint_, "Element '%s' not found", name.c_str()); - typeNameBuff = std::string("ROUTER"); - break; - case INSTR_HOST: - netpoint_ = sg_host_by_name(name.c_str())->pimpl_netpoint; - xbt_assert(netpoint_, "Element '%s' not found", name.c_str()); - typeNameBuff = std::string("HOST"); - break; - case INSTR_LINK: - typeNameBuff = std::string("LINK"); - break; - case INSTR_SMPI: - typeNameBuff = std::string("MPI"); - break; - case INSTR_MSG_PROCESS: - typeNameBuff = std::string("MSG_PROCESS"); - break; - case INSTR_MSG_VM: - typeNameBuff = std::string("MSG_VM"); - break; - case INSTR_MSG_TASK: - typeNameBuff = std::string("MSG_TASK"); - break; - default: - THROWF(tracing_error, 0, "new container kind is unknown."); - break; - } - if (father_) { - type_ = father_->type_->getOrCreateContainerType(typeNameBuff); - father_->children_.insert({name_, this}); - logCreation(); - } else if (kind_ == INSTR_AS) { - type_ = Type::createRootType(); + if (not type_name.empty()) { + type_ = father_->type_->getOrCreateContainerType(type_name); + father_->children_.insert({name_, this}); + logCreation(); + } } //register all kinds by name @@ -106,7 +94,7 @@ Container::Container(std::string name, e_container_types kind, Container* father XBT_DEBUG("Add container name '%s'", name_.c_str()); //register NODE types for triva configuration - if (kind_ == INSTR_HOST || kind_ == INSTR_LINK || kind_ == INSTR_ROUTER) + if (type_name == "LINK") trivaNodeTypes.insert(type_->getName()); } @@ -123,7 +111,7 @@ Container::~Container() TRACE_paje_dump_buffer(true); // trace my destruction - if (not TRACE_disable_destroy() && this != PJ_container_get_root()) { + if (not TRACE_disable_destroy() && this != Container::getRootContainer()) { // do not trace the container destruction if user requests or if the container is root logDestruction(); } @@ -160,7 +148,7 @@ void Container::logCreation() double timestamp = SIMIX_get_clock(); std::stringstream stream; - XBT_DEBUG("%s: event_type=%d, timestamp=%f", __FUNCTION__, simgrid::instr::PAJE_CreateContainer, timestamp); + XBT_DEBUG("%s: event_type=%u, timestamp=%f", __FUNCTION__, simgrid::instr::PAJE_CreateContainer, timestamp); if (instr_fmt_type == instr_fmt_paje) { stream << std::fixed << std::setprecision(TRACE_precision()); @@ -200,7 +188,6 @@ void Container::logCreation() xbt_free(folder_name); xbt_free(filename); } - tracing_files.insert({this, ti_unique_file}); } else { THROW_IMPOSSIBLE; @@ -212,7 +199,7 @@ void Container::logDestruction() std::stringstream stream; double timestamp = SIMIX_get_clock(); - XBT_DEBUG("%s: event_type=%d, timestamp=%f", __FUNCTION__, simgrid::instr::PAJE_DestroyContainer, timestamp); + XBT_DEBUG("%s: event_type=%u, timestamp=%f", __FUNCTION__, simgrid::instr::PAJE_DestroyContainer, timestamp); if (instr_fmt_type == instr_fmt_paje) { stream << std::fixed << std::setprecision(TRACE_precision()); @@ -238,5 +225,24 @@ void Container::logDestruction() THROW_IMPOSSIBLE; } } + +StateType* Container::getState(std::string name) +{ + StateType* ret = dynamic_cast(type_->byName(name)); + ret->setCallingContainer(this); + return ret; +} + +LinkType* Container::getLink(std::string name) +{ + return dynamic_cast(type_->byName(name)); +} + +VariableType* Container::getVariable(std::string name) +{ + VariableType* ret = dynamic_cast(type_->byName(name)); + ret->setCallingContainer(this); + return ret; +} } }