Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move all netcards into the dict, and the dict to the engine
[simgrid.git] / src / kernel / routing / NetCard.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/NetCard.hpp"
8 #include "simgrid/s4u/engine.hpp"
9 #include "simgrid/s4u/host.hpp"
10 #include "surf/surf_routing.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route, surf, "Routing part of surf");
13
14 namespace simgrid {
15 namespace kernel {
16 namespace routing {
17
18 simgrid::xbt::signal<void(NetCard*)> NetCard::onCreation;
19
20 NetCard::NetCard(std::string name, NetCard::Type componentType, NetZoneImpl* netzone_p)
21     : name_(name), componentType_(componentType), netzone_(netzone_p)
22 {
23   if (netzone_p != nullptr)
24     id_ = netzone_p->addComponent(this);
25   xbt_dict_set(netcards_dict, name.c_str(), static_cast<void*>(this), nullptr);
26   simgrid::kernel::routing::NetCard::onCreation(this);
27 }
28 }
29 }
30 } // namespace simgrid::kernel::routing
31
32 /** @brief Retrieve a netcard from its name
33  *
34  * Netcards are the thing that connect host or routers to the network
35  */
36 simgrid::kernel::routing::NetCard* sg_netcard_by_name_or_null(const char* name)
37 {
38   return simgrid::s4u::Engine::instance()->netcardByNameOrNull(name);
39 }