Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace "XBT_PUBLIC_CLASS" with "class XBT_PUBLIC".
[simgrid.git] / include / simgrid / s4u / Link.hpp
1 /* Copyright (c) 2004-2018. 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 S4U_LINK_HPP_
7 #define S4U_LINK_HPP_
8
9 #include <simgrid/link.h>
10 #include <string>
11 #include <unordered_map>
12 #include <xbt/Extendable.hpp>
13 #include <xbt/base.h>
14 #include <xbt/signal.hpp>
15
16 /***********
17  * Classes *
18  ***********/
19
20 namespace simgrid {
21 namespace surf {
22 class NetworkAction;
23 };
24 namespace s4u {
25 /** @brief A Link represents the network facilities between [hosts](\ref simgrid::s4u::Host) */
26 class XBT_PUBLIC Link : public simgrid::xbt::Extendable<Link> {
27   friend simgrid::surf::LinkImpl;
28
29   // Links are created from the NetZone, and destroyed by their private implementation when the simulation ends
30   explicit Link(surf::LinkImpl* pimpl) : pimpl_(pimpl) {}
31   virtual ~Link() = default;
32   // The private implementation, that never changes
33   surf::LinkImpl* const pimpl_;
34
35 public:
36   /** @brief Retrieve a link from its name */
37   static Link* byName(const char* name);
38
39   /** @brief Retrieves the name of that link as a C++ string */
40   const std::string& getName() const;
41   /** @brief Retrieves the name of that link as a C string */
42   const char* getCname() const;
43
44   /** @brief Get the bandwidth in bytes per second of current Link */
45   double bandwidth();
46
47   /** @brief Get the latency in seconds of current Link */
48   double latency();
49
50   /** @brief The sharing policy is a @{link e_surf_link_sharing_policy_t::EType} (0: FATPIPE, 1: SHARED, 2: SPLITDUPLEX)
51    */
52   int sharingPolicy();
53
54   /** @brief Returns the current load (in flops per second) */
55   double getUsage();
56
57   /** @brief Check if the Link is used */
58   bool isUsed();
59
60   void turnOn();
61   void turnOff();
62
63   void* getData();
64   void setData(void* d);
65
66   void setStateTrace(tmgr_trace_t trace); /*< setup the trace file with states events (ON or OFF). Trace must contain
67                                              boolean values. */
68   void setBandwidthTrace(tmgr_trace_t trace); /*< setup the trace file with bandwidth events (peak speed changes due to
69                                                   external load). Trace must contain percentages (value between 0 and 1). */
70   void setLatencyTrace(tmgr_trace_t trace); /*< setup the trace file with latency events (peak latency changes due to
71                                                external load). Trace must contain absolute values */
72
73   const char* getProperty(const char* key);
74   void setProperty(std::string key, std::string value);
75
76   /* The signals */
77   /** @brief Callback signal fired when a new Link is created */
78   static simgrid::xbt::signal<void(s4u::Link&)> onCreation;
79
80   /** @brief Callback signal fired when a Link is destroyed */
81   static simgrid::xbt::signal<void(s4u::Link&)> onDestruction;
82
83   /** @brief Callback signal fired when the state of a Link changes (when it is turned on or off) */
84   static simgrid::xbt::signal<void(s4u::Link&)> onStateChange;
85
86   /** @brief Callback signal fired when a communication starts */
87   static simgrid::xbt::signal<void(surf::NetworkAction*, s4u::Host* src, s4u::Host* dst)> onCommunicate;
88
89   /** @brief Callback signal fired when a communication changes it state (ready/done/cancel) */
90   static simgrid::xbt::signal<void(surf::NetworkAction*)> onCommunicationStateChange;
91
92   XBT_ATTRIB_DEPRECATED_v321("Use getCname(): v3.21 will turn this warning into an error.") const char* name();
93 };
94 }
95 }
96
97 #endif /* SURF_NETWORK_INTERFACE_HPP_ */