Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove the last remainings of the addTraces() pimple \o/
[simgrid.git] / src / surf / network_cm02.hpp
1 /* Copyright (c) 2013-2015. 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 #ifndef SURF_NETWORK_CM02_HPP_
8 #define SURF_NETWORK_CM02_HPP_
9
10 #include <xbt/base.h>
11
12 #include "network_interface.hpp"
13 #include "xbt/fifo.h"
14 #include "xbt/graph.h"
15
16
17
18 /***********
19  * Classes *
20  ***********/
21
22 namespace simgrid {
23 namespace surf {
24
25 class XBT_PRIVATE NetworkCm02Model;
26 class XBT_PRIVATE NetworkCm02Action;
27 class XBT_PRIVATE NetworkSmpiModel;
28
29 }
30 }
31
32 /*********
33  * Tools *
34  *********/
35
36 XBT_PRIVATE void net_define_callbacks(void);
37
38 /*********
39  * Model *
40  *********/
41
42 namespace simgrid {
43 namespace surf {
44
45 class NetworkCm02Model : public NetworkModel {
46 public:
47   NetworkCm02Model();
48   ~NetworkCm02Model() { }
49   Link* createLink(const char *name,
50       double bw_initial,
51       tmgr_trace_t bw_trace,
52       double lat_initial,
53       tmgr_trace_t lat_trace,
54       int initiallyOn,
55       tmgr_trace_t state_trace,
56       e_surf_link_sharing_policy_t policy,
57       xbt_dict_t properties) override;
58   void updateActionsStateLazy(double now, double delta) override;
59   void updateActionsStateFull(double now, double delta) override;
60   Action *communicate(NetCard *src, NetCard *dst,
61                                double size, double rate) override;
62   bool next_occuring_event_isIdempotent() override {return true;}
63   virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {};
64 protected:
65   bool m_haveGap = false;
66 };
67
68 /************
69  * Resource *
70  ************/
71
72 class NetworkCm02Link : public Link {
73 public:
74   NetworkCm02Link(NetworkCm02Model *model, const char *name, xbt_dict_t props,
75                              lmm_system_t system,
76                              double constraint_value,
77                              int initiallyOn,
78                              tmgr_trace_t state_trace,
79                              double metric_peak,
80                              tmgr_trace_t metric_trace,
81                              double lat_initial,
82                              tmgr_trace_t lat_trace,
83                                e_surf_link_sharing_policy_t policy);
84   void apply_event(tmgr_trace_iterator_t event_type, double value) override;
85   void updateBandwidth(double value) override;
86   void updateLatency(double value) override;
87   virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {};
88
89
90 };
91
92
93 /**********
94  * Action *
95  **********/
96 class NetworkCm02Action : public NetworkAction {
97   friend Action *NetworkCm02Model::communicate(NetCard *src, NetCard *dst, double size, double rate);
98   friend NetworkSmpiModel;
99
100 public:
101   NetworkCm02Action(Model *model, double cost, bool failed)
102      : NetworkAction(model, cost, failed) {};
103   void updateRemainingLazy(double now);
104 protected:
105   double m_senderGap;
106 };
107
108 }
109 }
110
111 #endif /* SURF_NETWORK_CM02_HPP_ */