Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / s4u / s4u_actor.cpp
1 /* Copyright (c) 2006-2017. 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 "xbt/log.h"
7
8 #include "simgrid/s4u/Actor.hpp"
9 #include "simgrid/s4u/Comm.hpp"
10 #include "simgrid/s4u/Host.hpp"
11 #include "simgrid/s4u/Mailbox.hpp"
12
13 #include "src/kernel/context/Context.hpp"
14
15 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor, "S4U actors");
16
17 namespace simgrid {
18 namespace s4u {
19
20 // ***** Actor creation *****
21 ActorPtr Actor::self()
22 {
23   smx_context_t self_context = SIMIX_context_self();
24   if (self_context == nullptr)
25     return simgrid::s4u::ActorPtr();
26
27   return self_context->process()->iface();
28 }
29
30 ActorPtr Actor::createActor(const char* name, s4u::Host* host, std::function<void()> code)
31 {
32   smx_actor_t actor = simcall_process_create(name, std::move(code), nullptr, host, nullptr);
33   return actor->iface();
34 }
35
36 ActorPtr Actor::createActor(const char* name, s4u::Host* host, const char* function, std::vector<std::string> args)
37 {
38   simgrid::simix::ActorCodeFactory& factory = SIMIX_get_actor_code_factory(function);
39   simgrid::simix::ActorCode code = factory(std::move(args));
40   smx_actor_t actor                         = simcall_process_create(name, std::move(code), nullptr, host, nullptr);
41   return actor->iface();
42 }
43
44 // ***** Actor methods *****
45
46 void Actor::join() {
47   simcall_process_join(this->pimpl_, -1);
48 }
49
50 void Actor::setAutoRestart(bool autorestart) {
51   simcall_process_auto_restart_set(pimpl_,autorestart);
52 }
53
54 void Actor::onExit(int_f_pvoid_pvoid_t fun, void* data)
55 {
56   simcall_process_on_exit(pimpl_, fun, data);
57 }
58
59 void Actor::migrate(Host* new_host)
60 {
61   simcall_process_set_host(pimpl_, new_host);
62 }
63
64 s4u::Host* Actor::host()
65 {
66   return this->pimpl_->host;
67 }
68
69 const char* Actor::cname()
70 {
71   return this->pimpl_->name.c_str();
72 }
73
74 simgrid::xbt::string Actor::name()
75 {
76   return this->pimpl_->name;
77 }
78
79 aid_t Actor::pid()
80 {
81   return this->pimpl_->pid;
82 }
83
84 aid_t Actor::ppid()
85 {
86   return this->pimpl_->ppid;
87 }
88
89 void Actor::suspend()
90 {
91   simcall_process_suspend(pimpl_);
92 }
93
94 void Actor::resume()
95 {
96   simcall_process_resume(pimpl_);
97 }
98
99 int Actor::isSuspended()
100 {
101   return simcall_process_is_suspended(pimpl_);
102 }
103
104 void Actor::setKillTime(double time) {
105   simcall_process_set_kill_time(pimpl_,time);
106 }
107
108 double Actor::killTime()
109 {
110   return simcall_process_get_kill_time(pimpl_);
111 }
112
113 void Actor::kill(aid_t pid)
114 {
115   smx_actor_t process = SIMIX_process_from_PID(pid);
116   if(process != nullptr) {
117     simcall_process_kill(process);
118   } else {
119     std::ostringstream oss;
120     oss << "kill: ("<< pid <<") - No such process" << std::endl;
121     throw std::runtime_error(oss.str());
122   }
123 }
124
125 smx_actor_t Actor::getImpl() {
126   return pimpl_;
127 }
128
129 void Actor::kill() {
130   simcall_process_kill(pimpl_);
131 }
132
133 // ***** Static functions *****
134
135 ActorPtr Actor::byPid(aid_t pid)
136 {
137   smx_actor_t process = SIMIX_process_from_PID(pid);
138   if (process != nullptr)
139     return process->iface();
140   else
141     return ActorPtr();
142 }
143
144 void Actor::killAll()
145 {
146   simcall_process_killall(1);
147 }
148
149 void Actor::killAll(int resetPid)
150 {
151   simcall_process_killall(resetPid);
152 }
153
154 // ***** this_actor *****
155
156 namespace this_actor {
157
158 void sleep_for(double duration)
159 {
160   if (duration > 0)
161     simcall_process_sleep(duration);
162 }
163
164 XBT_PUBLIC(void) sleep_until(double timeout)
165 {
166   double now = SIMIX_get_clock();
167   if (timeout > now)
168     simcall_process_sleep(timeout - now);
169 }
170
171 e_smx_state_t execute(double flops) {
172   smx_activity_t s = simcall_execution_start(nullptr,flops,1.0/*priority*/,0./*bound*/);
173   return simcall_execution_wait(s);
174 }
175
176 void* recv(MailboxPtr chan) {
177   void *res = nullptr;
178   Comm& c = Comm::recv_init(chan);
179   c.setDstData(&res,sizeof(res));
180   c.wait();
181   return res;
182 }
183
184 void send(MailboxPtr chan, void* payload, double simulatedSize)
185 {
186   Comm& c = Comm::send_init(chan);
187   c.setRemains(simulatedSize);
188   c.setSrcData(payload);
189   // c.start() is optional.
190   c.wait();
191 }
192
193 void send(MailboxPtr chan, void* payload, double simulatedSize, double timeout)
194 {
195   Comm& c = Comm::send_init(chan);
196   c.setRemains(simulatedSize);
197   c.setSrcData(payload);
198   // c.start() is optional.
199   c.wait(timeout);
200 }
201
202 Comm& isend(MailboxPtr chan, void* payload, double simulatedSize)
203 {
204   return Comm::send_async(chan, payload, simulatedSize);
205 }
206
207 Comm& irecv(MailboxPtr chan, void** data)
208 {
209   return Comm::recv_async(chan, data);
210 }
211
212 aid_t pid()
213 {
214   return SIMIX_process_self()->pid;
215 }
216
217 aid_t ppid()
218 {
219   return SIMIX_process_self()->ppid;
220 }
221
222 std::string name()
223 {
224   return SIMIX_process_self()->name;
225 }
226
227 Host* host()
228 {
229   return SIMIX_process_self()->host;
230 }
231
232 void suspend()
233 {
234   simcall_process_suspend(SIMIX_process_self());
235 }
236
237 void resume()
238 {
239   simcall_process_resume(SIMIX_process_self());
240 }
241
242 int isSuspended()
243 {
244   return simcall_process_is_suspended(SIMIX_process_self());
245 }
246
247 void kill()
248 {
249   simcall_process_kill(SIMIX_process_self());
250 }
251
252 void onExit(int_f_pvoid_pvoid_t fun, void* data)
253 {
254   simcall_process_on_exit(SIMIX_process_self(), fun, data);
255 }
256
257 void migrate(Host* new_host)
258 {
259   simcall_process_set_host(SIMIX_process_self(), new_host);
260 }
261 }
262 }
263 }