Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
useless includes
[simgrid.git] / src / kernel / routing / NetPoint.cpp
1 /* Copyright (c) 2009-2017. 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 "src/kernel/routing/NetPoint.hpp"
7
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Host.hpp"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
12
13 namespace simgrid {
14 namespace kernel {
15 namespace routing {
16
17 simgrid::xbt::signal<void(NetPoint*)> NetPoint::onCreation;
18
19 NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* netzone_p)
20     : name_(name), componentType_(componentType), netzone_(netzone_p)
21 {
22   if (netzone_p != nullptr)
23     id_ = netzone_p->addComponent(this);
24   simgrid::s4u::Engine::instance()->netpointRegister(this);
25   simgrid::kernel::routing::NetPoint::onCreation(this);
26 }
27 }
28 }
29 } // namespace simgrid::kernel::routing
30
31 /** @brief Retrieve a netpoint from its name
32  *
33  * Netpoints denote the location of host or routers in the network, to compute routes
34  */
35 simgrid::kernel::routing::NetPoint* sg_netpoint_by_name_or_null(const char* name)
36 {
37   return simgrid::s4u::Engine::instance()->netpointByNameOrNull(name);
38 }