X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9abfa55c584ef8f2e6049ec2b03ffff56a3d6f43..a4eb5efea24b01bda48fb4dc7c7600de78b4578b:/src/s4u/s4u_actor.cpp diff --git a/src/s4u/s4u_actor.cpp b/src/s4u/s4u_actor.cpp index 8d4f299385..3d8a38ed30 100644 --- a/src/s4u/s4u_actor.cpp +++ b/src/s4u/s4u_actor.cpp @@ -1,99 +1,308 @@ -/* Copyright (c) 2006-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "../../include/simgrid/s4u/actor.hpp" -#include "../../include/simgrid/s4u/mailbox.hpp" #include "xbt/log.h" -#include "msg/msg_private.h" -#include "msg/msg_mailbox.h" -#include "simgrid/s4u/host.hpp" +#include "simgrid/s4u/Actor.hpp" +#include "simgrid/s4u/Comm.hpp" +#include "simgrid/s4u/Host.hpp" +#include "simgrid/s4u/Mailbox.hpp" -XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor,"S4U actors"); +#include "src/kernel/context/Context.hpp" +#include "src/simix/smx_private.h" -/* C main function of a actor, running this->main */ -static int s4u_actor_runner(int argc, char **argv) { +#include - smx_process_t smx_proc = SIMIX_process_self(); - simgrid::s4u::Actor *actor = (simgrid::s4u::Actor*) SIMIX_process_self_get_data(smx_proc); - int res = actor->main(argc,argv); - return res; +XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor, "S4U actors"); + +namespace simgrid { +namespace s4u { + +// ***** Actor creation ***** +ActorPtr Actor::self() +{ + smx_context_t self_context = SIMIX_context_self(); + if (self_context == nullptr) + return simgrid::s4u::ActorPtr(); + + return self_context->process()->iface(); +} + +ActorPtr Actor::createActor(const char* name, s4u::Host* host, std::function code) +{ + simgrid::simix::ActorImpl* actor = simcall_process_create(name, std::move(code), nullptr, host, nullptr); + return actor->iface(); +} + +ActorPtr Actor::createActor(const char* name, s4u::Host* host, const char* function, std::vector args) +{ + simgrid::simix::ActorCodeFactory& factory = SIMIX_get_actor_code_factory(function); + simgrid::simix::ActorCode code = factory(std::move(args)); + simgrid::simix::ActorImpl* actor = simcall_process_create(name, std::move(code), nullptr, host, nullptr); + return actor->iface(); +} + +void intrusive_ptr_add_ref(Actor* actor) +{ + xbt_assert(actor != nullptr); + intrusive_ptr_add_ref(actor->pimpl_); +} +void intrusive_ptr_release(Actor* actor) +{ + xbt_assert(actor != nullptr); + intrusive_ptr_release(actor->pimpl_); +} + +// ***** Actor methods ***** + +void Actor::join() { + simcall_process_join(this->pimpl_, -1); +} + +void Actor::setAutoRestart(bool autorestart) { + simcall_process_auto_restart_set(pimpl_,autorestart); +} + +void Actor::onExit(int_f_pvoid_pvoid_t fun, void* data) +{ + simcall_process_on_exit(pimpl_, fun, data); +} + +void Actor::migrate(Host* new_host) +{ + simgrid::simix::kernelImmediate([this, new_host]() { pimpl_->new_host = new_host; }); +} + +s4u::Host* Actor::getHost() +{ + return this->pimpl_->host; +} + +void Actor::daemonize() +{ + simgrid::simix::kernelImmediate([this]() { pimpl_->daemonize(); }); +} + +const char* Actor::getCname() +{ + return this->pimpl_->name.c_str(); +} + +simgrid::xbt::string Actor::getName() +{ + return this->pimpl_->name; +} + +aid_t Actor::getPid() +{ + return this->pimpl_->pid; +} + +aid_t Actor::getPpid() +{ + return this->pimpl_->ppid; +} + +void Actor::suspend() +{ + simcall_process_suspend(pimpl_); +} + +void Actor::resume() +{ + simgrid::simix::kernelImmediate([this] { pimpl_->resume(); }); +} + +int Actor::isSuspended() +{ + return simgrid::simix::kernelImmediate([this] { return pimpl_->suspended; }); +} + +void Actor::setKillTime(double time) { + simcall_process_set_kill_time(pimpl_,time); +} + +/** \brief Get the kill time of an actor(or 0 if unset). */ +double Actor::getKillTime() +{ + return SIMIX_timer_get_date(pimpl_->kill_timer); +} + +void Actor::kill(aid_t pid) +{ + smx_actor_t process = SIMIX_process_from_PID(pid); + if(process != nullptr) { + simcall_process_kill(process); + } else { + std::ostringstream oss; + oss << "kill: ("<< pid <<") - No such process" << std::endl; + throw std::runtime_error(oss.str()); + } +} + +smx_actor_t Actor::getImpl() { + return pimpl_; +} + +void Actor::kill() { + simcall_process_kill(pimpl_); +} + +// ***** Static functions ***** + +ActorPtr Actor::byPid(aid_t pid) +{ + smx_actor_t process = SIMIX_process_from_PID(pid); + if (process != nullptr) + return process->iface(); + else + return ActorPtr(); +} + +void Actor::killAll() +{ + simcall_process_killall(1); +} + +void Actor::killAll(int resetPid) +{ + simcall_process_killall(resetPid); } +/** Retrieve the property value (or nullptr if not set) */ +const char* Actor::getProperty(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 ***** -using namespace simgrid; +namespace this_actor { -s4u::Actor::Actor(const char *name, s4u::Host *host, int argc, char **argv) - : s4u::Actor::Actor(name,host, argc,argv, -1) { +/** 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; } -s4u::Actor::Actor(const char *name, s4u::Host *host, int argc, char **argv, double killTime) { - p_smx_process = simcall_process_create(name, s4u_actor_runner, this, host->getName(), killTime, argc, argv, NULL/*properties*/,0); - xbt_assert(p_smx_process,"Cannot create the actor"); -// TRACE_msg_process_create(procname, simcall_process_get_PID(p_smx_process), host->getInferior()); -// simcall_process_on_exit(p_smx_process,(int_f_pvoid_pvoid_t)TRACE_msg_process_kill,p_smx_process); +void sleep_for(double duration) +{ + if (duration > 0) + simcall_process_sleep(duration); } -s4u::Actor *s4u::Actor::current() { - smx_process_t smx_proc = SIMIX_process_self(); - return (simgrid::s4u::Actor*) SIMIX_process_self_get_data(smx_proc); +XBT_PUBLIC(void) sleep_until(double timeout) +{ + double now = SIMIX_get_clock(); + if (timeout > now) + simcall_process_sleep(timeout - now); } -s4u::Actor *s4u::Actor::byPid(int pid) { - return (simgrid::s4u::Actor*) SIMIX_process_self_get_data(SIMIX_process_from_PID(pid)); + +void execute(double flops) +{ + smx_activity_t s = simcall_execution_start(nullptr,flops,1.0/*priority*/,0./*bound*/); + simcall_execution_wait(s); } -void s4u::Actor::setAutoRestart(bool autorestart) { - simcall_process_auto_restart_set(p_smx_process,autorestart); +void* recv(MailboxPtr chan) { + return chan->get(); } -s4u::Host *s4u::Actor::getHost() { - return s4u::Host::byName(sg_host_name(simcall_process_get_host(p_smx_process))); +void* recv(MailboxPtr chan, double timeout) +{ + return chan->get(timeout); } -const char* s4u::Actor::getName() { - return simcall_process_get_name(p_smx_process); + +void send(MailboxPtr chan, void* payload, double simulatedSize) +{ + chan->put(payload, simulatedSize); } -int s4u::Actor::getPid(){ - return simcall_process_get_PID(p_smx_process); + +void send(MailboxPtr chan, void* payload, double simulatedSize, double timeout) +{ + chan->put(payload, simulatedSize, timeout); +} + +CommPtr isend(MailboxPtr chan, void* payload, double simulatedSize) +{ + return chan->put_async(payload, simulatedSize); } -void s4u::Actor::setKillTime(double time) { - simcall_process_set_kill_time(p_smx_process,time); +CommPtr irecv(MailboxPtr chan, void** data) +{ + return chan->get_async(data); } -double s4u::Actor::getKillTime() { - return simcall_process_get_kill_time(p_smx_process); + +aid_t getPid() +{ + return SIMIX_process_self()->pid; } -void s4u::Actor::killAll() { - simcall_process_killall(1); + +aid_t getPpid() +{ + return SIMIX_process_self()->ppid; } -void s4u::Actor::kill() { - simcall_process_kill(p_smx_process); + +std::string getName() +{ + return SIMIX_process_self()->name; } -void s4u::Actor::sleep(double duration) { - simcall_process_sleep(duration); +Host* getHost() +{ + return SIMIX_process_self()->host; } -void s4u::Actor::execute(double flops) { - simcall_process_execute(NULL,flops,1.0/*priority*/,0./*bound*/, 0L/*affinity*/); +void suspend() +{ + simcall_process_suspend(SIMIX_process_self()); } -char *s4u::Actor::recvstr(Mailbox &chan) { - char *res=NULL; - size_t res_size=sizeof(res); +void resume() +{ + smx_actor_t process = SIMIX_process_self(); + simgrid::simix::kernelImmediate([process] { process->resume(); }); +} - simcall_comm_recv(chan.getInferior(),&res,&res_size,NULL,NULL,NULL,-1 /* timeout */,-1 /*rate*/); +bool isSuspended() +{ + smx_actor_t process = SIMIX_process_self(); + return simgrid::simix::kernelImmediate([process] { return process->suspended; }); +} - return res; +void kill() +{ + simcall_process_kill(SIMIX_process_self()); } -void s4u::Actor::sendstr(Mailbox &chan, const char*msg) { - char *msg_cpy=xbt_strdup(msg); - smx_synchro_t comm = simcall_comm_isend(p_smx_process, chan.getInferior(), strlen(msg), - -1/*rate*/, msg_cpy, sizeof(void *), - NULL, NULL, NULL,NULL/*data*/, 0); - simcall_comm_wait(comm, -1/*timeout*/); + +void onExit(int_f_pvoid_pvoid_t fun, void* data) +{ + simcall_process_on_exit(SIMIX_process_self(), fun, data); } +void migrate(Host* new_host) +{ + smx_actor_t process = SIMIX_process_self(); + simgrid::simix::kernelImmediate([process, new_host] { process->new_host = new_host; }); +} +} +} +}