Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / kernel / routing / NetPoint.cpp
1 /* Copyright (c) 2009-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/kernel/routing/NetPoint.hpp"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Host.hpp"
9
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
11
12 namespace simgrid {
13 namespace kernel {
14 namespace routing {
15
16 simgrid::xbt::signal<void(NetPoint*)> NetPoint::onCreation;
17
18 NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* netzone_p)
19     : name_(name), component_type_(componentType), englobing_zone_(netzone_p)
20 {
21   if (netzone_p != nullptr)
22     id_ = netzone_p->addComponent(this);
23   else
24     id_ = static_cast<decltype(id_)>(-1);
25   simgrid::s4u::Engine::getInstance()->netpoint_register(this);
26   simgrid::kernel::routing::NetPoint::onCreation(this);
27 }
28 }
29 }
30 } // namespace simgrid::kernel::routing
31
32 /** @brief Retrieve a netpoint from its name
33  *
34  * Netpoints denote the location of host or routers in the network, to compute routes
35  */
36 simgrid::kernel::routing::NetPoint* sg_netpoint_by_name_or_null(const char* name)
37 {
38   return simgrid::s4u::Engine::getInstance()->getNetpointByNameOrNull(name);
39 }