Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
49c517f7803fe765f17617a632ef00f82aedf621
[simgrid.git] / src / kernel / routing / NetPoint.cpp
1 /* Copyright (c) 2009-2011, 2013-2016. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "src/kernel/routing/NetPoint.hpp"
8
9 #include "simgrid/s4u/engine.hpp"
10 #include "simgrid/s4u/host.hpp"
11 #include "surf/surf_routing.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
14
15 namespace simgrid {
16 namespace kernel {
17 namespace routing {
18
19 simgrid::xbt::signal<void(NetPoint*)> NetPoint::onCreation;
20
21 NetPoint::NetPoint(std::string name, NetPoint::Type componentType, NetZoneImpl* netzone_p)
22     : name_(name), componentType_(componentType), netzone_(netzone_p)
23 {
24   if (netzone_p != nullptr)
25     id_ = netzone_p->addComponent(this);
26   simgrid::s4u::Engine::instance()->netpointRegister(this);
27   simgrid::kernel::routing::NetPoint::onCreation(this);
28 }
29 }
30 }
31 } // namespace simgrid::kernel::routing
32
33 /** @brief Retrieve a netcard from its name
34  *
35  * Netcards are the thing that connect host or routers to the network
36  */
37 simgrid::kernel::routing::NetPoint* sg_netcard_by_name_or_null(const char* name)
38 {
39   return simgrid::s4u::Engine::instance()->netpointByNameOrNull(name);
40 }