Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[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, tmgr_trace_t bw_trace,
51       double lat_initial, tmgr_trace_t lat_trace,
52       int initiallyOn, tmgr_trace_t state_trace,
53       e_surf_link_sharing_policy_t policy,
54       xbt_dict_t properties) override;
55   void updateActionsStateLazy(double now, double delta) override;
56   void updateActionsStateFull(double now, double delta) override;
57   Action *communicate(NetCard *src, NetCard *dst, double size, double rate) override;
58   bool next_occuring_event_isIdempotent() override {return true;}
59   virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {};
60 protected:
61   bool m_haveGap = false;
62 };
63
64 /************
65  * Resource *
66  ************/
67
68 class NetworkCm02Link : public Link {
69 public:
70   NetworkCm02Link(NetworkCm02Model *model, const char *name, xbt_dict_t props,
71       lmm_system_t system,
72       double constraint_value,
73       int initiallyOn, tmgr_trace_t state_trace,
74       double bw_peak, tmgr_trace_t bw_trace,
75       double lat_initial, tmgr_trace_t lat_trace,
76       e_surf_link_sharing_policy_t policy);
77
78   void apply_event(tmgr_trace_iterator_t event, double value) override;
79   void updateBandwidth(double value) override;
80   void updateLatency(double value) override;
81   virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {};
82 };
83
84
85 /**********
86  * Action *
87  **********/
88 class NetworkCm02Action : public NetworkAction {
89   friend Action *NetworkCm02Model::communicate(NetCard *src, NetCard *dst, double size, double rate);
90   friend NetworkSmpiModel;
91
92 public:
93   NetworkCm02Action(Model *model, double cost, bool failed)
94      : NetworkAction(model, cost, failed) {};
95   void updateRemainingLazy(double now);
96 protected:
97   double m_senderGap;
98 };
99
100 }
101 }
102
103 #endif /* SURF_NETWORK_CM02_HPP_ */