X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/121e1dc6ee0462b6f6f1f1570b0f48c61ee4ff9a..183a6118a95c570b0c66695505dab7dbebc0c7b3:/src/s4u/s4u_actor.cpp diff --git a/src/s4u/s4u_actor.cpp b/src/s4u/s4u_actor.cpp index de5b546865..ab6f3a1d3f 100644 --- a/src/s4u/s4u_actor.cpp +++ b/src/s4u/s4u_actor.cpp @@ -11,6 +11,9 @@ #include "simgrid/s4u/Mailbox.hpp" #include "src/kernel/context/Context.hpp" +#include "src/simix/smx_private.h" + +#include XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor, "S4U actors"); @@ -29,7 +32,7 @@ ActorPtr Actor::self() ActorPtr Actor::createActor(const char* name, s4u::Host* host, std::function code) { - smx_actor_t actor = simcall_process_create(name, std::move(code), nullptr, host, nullptr); + simgrid::simix::ActorImpl* actor = simcall_process_create(name, std::move(code), nullptr, host, nullptr); return actor->iface(); } @@ -37,7 +40,7 @@ ActorPtr Actor::createActor(const char* name, s4u::Host* host, const char* funct { simgrid::simix::ActorCodeFactory& factory = SIMIX_get_actor_code_factory(function); simgrid::simix::ActorCode code = factory(std::move(args)); - smx_actor_t actor = simcall_process_create(name, std::move(code), nullptr, host, nullptr); + simgrid::simix::ActorImpl* actor = simcall_process_create(name, std::move(code), nullptr, host, nullptr); return actor->iface(); } @@ -151,10 +154,37 @@ void Actor::killAll(int resetPid) simcall_process_killall(resetPid); } +/** Retrieve the property value (or nullptr if not set) */ +const char* Actor::property(const char* key) +{ + return (char*)xbt_dict_get_or_null(simcall_process_get_properties(pimpl_), key); +} +void Actor::setProperty(const char* key, const char* value) +{ + simgrid::simix::kernelImmediate([this, key, value] { + xbt_dict_set(simcall_process_get_properties(pimpl_), key, (char*)value, (void_f_pvoid_t) nullptr); + }); +} + // ***** this_actor ***** namespace this_actor { +/** Returns true if run from the kernel mode, and false if run from a real actor + * + * Everything that is run out of any actor (simulation setup before the engine is run, + * computing the model evolutions as a result to the actors' action, etc) is run in + * kernel mode, just as in any operating systems. + * + * In SimGrid, the actor in charge of doing the stuff in kernel mode is called Maestro, + * because it is the one scheduling when the others should move or wait. + */ +bool isMaestro() +{ + smx_actor_t process = SIMIX_process_self(); + return process == nullptr || process == simix_global->maestro_process; +} + void sleep_for(double duration) { if (duration > 0) @@ -175,36 +205,41 @@ e_smx_state_t execute(double flops) { void* recv(MailboxPtr chan) { void *res = nullptr; - Comm& c = Comm::recv_init(chan); - c.setDstData(&res,sizeof(res)); - c.wait(); + CommPtr c = Comm::recv_init(chan); + c->setDstData(&res, sizeof(res)); + c->wait(); return res; } void send(MailboxPtr chan, void* payload, double simulatedSize) { - Comm& c = Comm::send_init(chan); - c.setRemains(simulatedSize); - c.setSrcData(payload); - // c.start() is optional. - c.wait(); + CommPtr c = Comm::send_init(chan); + c->setRemains(simulatedSize); + c->setSrcData(payload); + // c->start() is optional. + c->wait(); } void send(MailboxPtr chan, void* payload, double simulatedSize, double timeout) { - Comm& c = Comm::send_init(chan); - c.setRemains(simulatedSize); - c.setSrcData(payload); - // c.start() is optional. - c.wait(timeout); + CommPtr c = Comm::send_init(chan); + c->setRemains(simulatedSize); + c->setSrcData(payload); + // c->start() is optional. + c->wait(timeout); } -Comm& isend(MailboxPtr chan, void* payload, double simulatedSize) +CommPtr isend(MailboxPtr chan, void* payload, double simulatedSize) { return Comm::send_async(chan, payload, simulatedSize); } -Comm& irecv(MailboxPtr chan, void** data) +void dsend(MailboxPtr chan, void* payload, double simulatedSize) +{ + Comm::send_detached(chan, payload, simulatedSize); +} + +CommPtr irecv(MailboxPtr chan, void** data) { return Comm::recv_async(chan, data); }