Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanup in log categories
[simgrid.git] / src / kernel / routing / NetPoint.cpp
1 /* Copyright (c) 2009-2022. 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/kernel/routing/VivaldiZone.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_netpoint, ker_routing, "Kernel implementation of netpoints");
13
14 namespace simgrid {
15
16 template class xbt::Extendable<kernel::routing::NetPoint>;
17
18 namespace kernel {
19 namespace routing {
20
21 simgrid::xbt::signal<void(NetPoint&)> NetPoint::on_creation;
22
23 NetPoint::NetPoint(const std::string& name, NetPoint::Type componentType) : name_(name), component_type_(componentType)
24 {
25   simgrid::s4u::Engine::get_instance()->netpoint_register(this);
26   simgrid::kernel::routing::NetPoint::on_creation(*this);
27 }
28
29 NetPoint* NetPoint::set_englobing_zone(NetZoneImpl* netzone_p)
30 {
31   englobing_zone_ = netzone_p;
32   if (netzone_p != nullptr)
33     id_ = netzone_p->add_component(this);
34   return this;
35 }
36
37 NetPoint* NetPoint::set_coordinates(const std::string& coords)
38 {
39   if (not coords.empty())
40     new vivaldi::Coords(this, coords);
41   return this;
42 }
43 } // namespace routing
44 } // namespace kernel
45 } // namespace simgrid
46
47 /** @brief Retrieve a netpoint from its name
48  *
49  * Netpoints denote the location of host or routers in the network, to compute routes
50  */
51 simgrid::kernel::routing::NetPoint* sg_netpoint_by_name_or_null(const char* name)
52 {
53   return simgrid::s4u::Engine::get_instance()->netpoint_by_name_or_null(name);
54 }