Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
don't compute the amount of hosts if we don't use it
[simgrid.git] / src / surf / network_constant.cpp
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 #include "network_constant.hpp"
8 #include "surf/random_mgr.h"
9
10 #include "host_interface.hpp"
11 #include "src/surf/platform.hpp"
12
13 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_network);
14
15 /*********
16  * Model *
17  *********/
18 void surf_network_model_init_Constant()
19 {
20   xbt_assert(surf_network_model == NULL);
21   surf_network_model = new simgrid::surf::NetworkConstantModel();
22
23   routing_model_create(NULL);
24
25   simgrid::surf::on_link.connect([](sg_platf_link_cbarg_t link){
26       xbt_die("There is no link in the Constant network model. "
27           "Please remove any link from your platform (and switch to routing='None')");
28   });
29
30
31   simgrid::surf::Model *model = surf_network_model;
32   xbt_dynar_push(all_existing_models, &model);
33 }
34
35 namespace simgrid {
36 namespace surf {
37
38 double NetworkConstantModel::shareResources(double /*now*/)
39 {
40   NetworkConstantAction *action = NULL;
41   double min = -1.0;
42
43   ActionList *actionSet = getRunningActionSet();
44   for(ActionList::iterator it(actionSet->begin()), itend(actionSet->end())
45          ; it != itend ; ++it) {
46         action = static_cast<NetworkConstantAction*>(&*it);
47         if (action->m_latency > 0 && (min < 0 || action->m_latency < min))
48             min = action->m_latency;
49   }
50
51   return min;
52 }
53
54 void NetworkConstantModel::updateActionsState(double /*now*/, double delta)
55 {
56   NetworkConstantAction *action = NULL;
57   ActionList *actionSet = getRunningActionSet();
58   for(ActionList::iterator it(actionSet->begin()), itNext=it, itend(actionSet->end())
59      ; it != itend ; it=itNext) {
60     ++itNext;
61         action = static_cast<NetworkConstantAction*>(&*it);
62     if (action->m_latency > 0) {
63       if (action->m_latency > delta) {
64         double_update(&(action->m_latency), delta, sg_surf_precision);
65       } else {
66         action->m_latency = 0.0;
67       }
68     }
69     action->updateRemains(action->getCost() * delta / action->m_latInit);
70     if (action->getMaxDuration() != NO_MAX_DURATION)
71       action->updateMaxDuration(delta);
72
73     if (action->getRemainsNoUpdate() <= 0) {
74       action->finish();
75       action->setState(SURF_ACTION_DONE);
76     } else if ((action->getMaxDuration() != NO_MAX_DURATION)
77                && (action->getMaxDuration() <= 0)) {
78       action->finish();
79       action->setState(SURF_ACTION_DONE);
80     }
81   }
82 }
83
84 Action *NetworkConstantModel::communicate(NetCard *src, NetCard *dst,
85                                          double size, double rate)
86 {
87   char *src_name = src->getName();
88   char *dst_name = dst->getName();
89
90   XBT_IN("(%s,%s,%g,%g)", src_name, dst_name, size, rate);
91   NetworkConstantAction *action = new NetworkConstantAction(this, size, sg_latency_factor);
92   XBT_OUT();
93
94   networkCommunicateCallbacks(action, src, dst, size, rate);
95   return action;
96 }
97
98 /**********
99  * Action *
100  **********/
101
102 int NetworkConstantAction::unref()
103 {
104   m_refcount--;
105   if (!m_refcount) {
106         if (action_hook.is_linked())
107           p_stateSet->erase(p_stateSet->iterator_to(*this));
108     delete this;
109   return 1;
110   }
111   return 0;
112 }
113
114 void NetworkConstantAction::cancel()
115 {
116   return;
117 }
118
119 }
120 }