Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
finish the cleanup of the netcard list container
[simgrid.git] / src / kernel / routing / NetCard.hpp
1 /* Copyright (c) 2013-2016. 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 #ifndef KERNEL_ROUTING_NETCARD_HPP_
7 #define KERNEL_ROUTING_NETCARD_HPP_
8
9 #include <xbt/Extendable.hpp>
10 #include <xbt/base.h>
11 #include <xbt/signal.hpp>
12
13 #include "src/kernel/routing/NetZoneImpl.hpp"
14 /*
15 #include <float.h>
16 #include <vector>
17 */
18 namespace simgrid {
19 namespace kernel {
20 namespace routing {
21
22 /** @ingroup SURF_routing_interface
23  * @brief Network cards are the vertices in the graph representing the network, used to compute paths between nodes.
24  *
25  * @details This represents a position in the network. One can route information between two netcards
26  */
27 class NetCard : public simgrid::xbt::Extendable<NetCard> {
28
29 public:
30   enum class Type { Host, Router, NetZone };
31
32   NetCard(std::string name, NetCard::Type componentType, NetZoneImpl* netzone_p);
33   ~NetCard() = default;
34
35   // Our rank in the vertices_ array of our containing AS.
36   unsigned int id() { return id_; }
37   std::string name() { return name_; }
38   const char* cname() { return name_.c_str(); }
39   /** @brief the NetZone in which this netcard is included */
40   NetZoneImpl* netzone() { return netzone_; }
41
42   bool isNetZone() { return componentType_ == Type::NetZone; }
43   bool isHost() { return componentType_ == Type::Host; }
44   bool isRouter() { return componentType_ == Type::Router; }
45
46   static simgrid::xbt::signal<void(NetCard*)> onCreation;
47
48   bool operator<(const NetCard &rhs) const { return name_ < rhs.name_; }
49
50 private:
51   unsigned int id_;
52   std::string name_;
53   NetCard::Type componentType_;
54   NetZoneImpl* netzone_;
55 };
56 }
57 }
58 }
59
60 XBT_PUBLIC(sg_netcard_t) sg_netcard_by_name_or_null(const char* name);
61
62 #endif /* KERNEL_ROUTING_NETCARD_HPP_ */