Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill dead code.
[simgrid.git] / src / kernel / activity / ActivityImpl.cpp
1 /* Copyright (c) 2007-2021. 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 #include "src/kernel/activity/ActivityImpl.hpp"
7 #include "simgrid/modelchecker.h"
8 #include "src/mc/mc_replay.hpp"
9 #include "src/simix/smx_private.hpp"
10 #include <boost/range/algorithm.hpp>
11 #include <cmath> // isfinite()
12
13 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_process);
14
15 namespace simgrid {
16 namespace kernel {
17 namespace activity {
18
19 ActivityImpl::~ActivityImpl()
20 {
21   clean_action();
22   XBT_DEBUG("Destroy activity %p", this);
23 }
24
25 void ActivityImpl::register_simcall(smx_simcall_t simcall)
26 {
27   simcalls_.push_back(simcall);
28   simcall->issuer_->waiting_synchro_ = this;
29 }
30
31 void ActivityImpl::unregister_simcall(smx_simcall_t simcall)
32 {
33   // Remove the first occurrence of simcall:
34   auto j = boost::range::find(simcalls_, simcall);
35   if (j != simcalls_.end())
36     simcalls_.erase(j);
37 }
38
39 void ActivityImpl::clean_action()
40 {
41   if (surf_action_) {
42     surf_action_->unref();
43     surf_action_ = nullptr;
44   }
45 }
46
47 double ActivityImpl::get_remaining() const
48 {
49   return surf_action_ ? surf_action_->get_remains() : 0;
50 }
51
52 const char* ActivityImpl::get_state_str() const
53 {
54   return to_c_str(state_);
55 }
56
57 bool ActivityImpl::test()
58 {
59   if (state_ != State::WAITING && state_ != State::RUNNING) {
60     finish();
61     return true;
62   }
63   return false;
64 }
65
66 void ActivityImpl::wait_for(actor::ActorImpl* issuer, double timeout)
67 {
68   XBT_DEBUG("Wait for execution of synchro %p, state %s", this, to_c_str(state_));
69   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
70
71   /* Associate this simcall to the synchro */
72   register_simcall(&issuer->simcall_);
73
74   xbt_assert(not MC_is_active() && not MC_record_replay_is_active(), "MC is currently not supported here.");
75
76   /* If the synchro is already finished then perform the error handling */
77   if (state_ != State::RUNNING)
78     finish();
79   else if (timeout == 0.) {
80     // still running and timeout == 0 ? We need to report a timeout
81     state_ = State::TIMEOUT;
82     finish();
83   } else {
84     /* we need a sleep action (even when the timeout is infinite) to be notified of host failures */
85     set_timeout(timeout);
86   }
87 }
88
89 void ActivityImpl::suspend()
90 {
91   if (surf_action_ == nullptr)
92     return;
93   XBT_VERB("This activity is suspended (remain: %f)", surf_action_->get_remains());
94   surf_action_->suspend();
95   on_suspended(*this);
96 }
97
98 void ActivityImpl::resume()
99 {
100   if (surf_action_ == nullptr)
101     return;
102   XBT_VERB("This activity is resumed (remain: %f)", surf_action_->get_remains());
103   surf_action_->resume();
104   on_resumed(*this);
105 }
106
107 void ActivityImpl::cancel()
108 {
109   XBT_VERB("Activity %p is canceled", this);
110   if (surf_action_ != nullptr)
111     surf_action_->cancel();
112   state_ = State::CANCELED;
113 }
114
115 // boost::intrusive_ptr<Activity> support:
116 void intrusive_ptr_add_ref(ActivityImpl* activity)
117 {
118   activity->refcount_.fetch_add(1, std::memory_order_relaxed);
119 }
120
121 void intrusive_ptr_release(ActivityImpl* activity)
122 {
123   if (activity->refcount_.fetch_sub(1, std::memory_order_release) == 1) {
124     std::atomic_thread_fence(std::memory_order_acquire);
125     delete activity;
126   }
127 }
128 xbt::signal<void(ActivityImpl const&)> ActivityImpl::on_resumed;
129 xbt::signal<void(ActivityImpl const&)> ActivityImpl::on_suspended;
130 }
131 }
132 } // namespace simgrid::kernel::activity::