Logo AND Algorithmique Numérique Distribuée

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