Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'fluidio' into 'master'
[simgrid.git] / src / kernel / actor / Simcall.cpp
1 /* Copyright (c) 2010-2022. 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 "Simcall.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "src/kernel/actor/ActorImpl.hpp"
9 #include "src/kernel/actor/SimcallObserver.hpp"
10 #include "src/kernel/context/Context.hpp"
11 #include "xbt/log.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_simcall, kernel, "transmuting from user request into kernel handlers");
14
15 namespace simgrid::kernel::actor {
16
17 /** @private
18  * @brief (in kernel mode) unpack the simcall and activate the handler
19  *
20  */
21 void ActorImpl::simcall_handle(int times_considered)
22 {
23   XBT_DEBUG("Handling simcall %p: %s", &simcall_, simcall_.get_cname());
24   if (simcall_.observer_ != nullptr)
25     simcall_.observer_->prepare(times_considered);
26   if (wannadie())
27     return;
28
29   xbt_assert(simcall_.call_ != Simcall::Type::NONE, "Asked to do the noop syscall on %s@%s", get_cname(),
30              get_host()->get_cname());
31
32   (*simcall_.code_)();
33   if (simcall_.call_ == Simcall::Type::RUN_ANSWERED)
34     simcall_answer();
35 }
36
37 /** @brief returns a printable string representing a simcall */
38 const char* Simcall::get_cname() const
39 {
40   if (observer_ != nullptr) {
41     static std::string name;
42     name              = boost::core::demangle(typeid(*observer_).name());
43     const char* cname = name.c_str();
44     if (name.rfind("simgrid::kernel::", 0) == 0)
45       cname += 17; // strip prefix "simgrid::kernel::"
46     return cname;
47   } else {
48     return to_c_str(call_);
49   }
50 }
51
52 } // namespace simgrid::kernel::actor