X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/05a1845ae0f4e4ed1988408ec0e8f95671ff2501..fd9d52c0c7a9c96221fff2013cdeef05b6e979e2:/src/surf/network_constant.cpp diff --git a/src/surf/network_constant.cpp b/src/surf/network_constant.cpp index d7dd2ad8e1..1872ae1912 100644 --- a/src/surf/network_constant.cpp +++ b/src/surf/network_constant.cpp @@ -18,8 +18,6 @@ void surf_network_model_init_Constant() xbt_dynar_push(all_existing_models, &surf_network_model); routing_model_create(NULL); - - simgrid::surf::on_link.connect(netlink_parse_init); } namespace simgrid { @@ -30,6 +28,7 @@ namespace simgrid { xbt_die("Refusing to create the link %s: there is no link in the Constant network model. " "Please remove any link from your platform (and switch to routing='None')", name); + return nullptr; } double NetworkConstantModel::next_occuring_event(double /*now*/) @@ -63,55 +62,41 @@ namespace simgrid { action->latency_ = 0.0; } } - action->updateRemains(action->getCost() * delta / action->m_latInit); + action->updateRemains(action->getCost() * delta / action->initialLatency_); if (action->getMaxDuration() != NO_MAX_DURATION) action->updateMaxDuration(delta); if (action->getRemainsNoUpdate() <= 0) { action->finish(); - action->setState(SURF_ACTION_DONE); + action->setState(Action::State::done); } else if ((action->getMaxDuration() != NO_MAX_DURATION) && (action->getMaxDuration() <= 0)) { action->finish(); - action->setState(SURF_ACTION_DONE); + action->setState(Action::State::done); } } } - Action *NetworkConstantModel::communicate(NetCard *src, NetCard *dst, - double size, double rate) + Action *NetworkConstantModel::communicate(NetCard *src, NetCard *dst, double size, double rate) { - char *src_name = src->name(); - char *dst_name = dst->name(); - - XBT_IN("(%s,%s,%g,%g)", src_name, dst_name, size, rate); NetworkConstantAction *action = new NetworkConstantAction(this, size, sg_latency_factor); - XBT_OUT(); - networkCommunicateCallbacks(action, src, dst, size, rate); + Link::onCommunicate(action, src, dst); return action; } /********** * Action * **********/ - - int NetworkConstantAction::unref() + NetworkConstantAction::NetworkConstantAction(NetworkConstantModel *model_, double size, double latency) + : NetworkAction(model_, size, false) + , initialLatency_(latency) { - m_refcount--; - if (!m_refcount) { - if (action_hook.is_linked()) - p_stateSet->erase(p_stateSet->iterator_to(*this)); - delete this; - return 1; + latency_ = latency; + if (latency_ <= 0.0) { + stateSet_ = getModel()->getDoneActionSet(); + stateSet_->push_back(*this); } - return 0; - } - - void NetworkConstantAction::cancel() - { - return; - } - + }; } }