Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Deprecate the bindings of a deprecated function
[simgrid.git] / src / bindings / python / simgrid_python.cpp
1 /* Copyright (c) 2018-2023. 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 <pybind11/pybind11.h> // Must come before our own stuff
7
8 #include <pybind11/functional.h>
9 #include <pybind11/stl.h>
10
11 #include "simgrid/kernel/ProfileBuilder.hpp"
12 #include "simgrid/kernel/routing/NetPoint.hpp"
13 #include "simgrid/plugins/load.h"
14 #include <simgrid/Exception.hpp>
15 #include <simgrid/s4u/ActivitySet.hpp>
16 #include <simgrid/s4u/Actor.hpp>
17 #include <simgrid/s4u/Barrier.hpp>
18 #include <simgrid/s4u/Comm.hpp>
19 #include <simgrid/s4u/Disk.hpp>
20 #include <simgrid/s4u/Engine.hpp>
21 #include <simgrid/s4u/Exec.hpp>
22 #include <simgrid/s4u/Host.hpp>
23 #include <simgrid/s4u/Io.hpp>
24 #include <simgrid/s4u/Link.hpp>
25 #include <simgrid/s4u/Mailbox.hpp>
26 #include <simgrid/s4u/Mutex.hpp>
27 #include <simgrid/s4u/NetZone.hpp>
28 #include <simgrid/s4u/Semaphore.hpp>
29 #include <simgrid/s4u/Task.hpp>
30 #include <simgrid/version.h>
31
32 #include <algorithm>
33 #include <memory>
34 #include <string>
35 #include <vector>
36
37 namespace py = pybind11;
38 using simgrid::s4u::Activity;
39 using simgrid::s4u::ActivityPtr;
40 using simgrid::s4u::ActivitySet;
41 using simgrid::s4u::ActivitySetPtr;
42 using simgrid::s4u::Actor;
43 using simgrid::s4u::ActorPtr;
44 using simgrid::s4u::Barrier;
45 using simgrid::s4u::BarrierPtr;
46 using simgrid::s4u::Comm;
47 using simgrid::s4u::CommPtr;
48 using simgrid::s4u::CommTask;
49 using simgrid::s4u::CommTaskPtr;
50 using simgrid::s4u::Disk;
51 using simgrid::s4u::Engine;
52 using simgrid::s4u::ExecTask;
53 using simgrid::s4u::ExecTaskPtr;
54 using simgrid::s4u::Host;
55 using simgrid::s4u::Io;
56 using simgrid::s4u::IoTask;
57 using simgrid::s4u::IoTaskPtr;
58 using simgrid::s4u::Link;
59 using simgrid::s4u::Mailbox;
60 using simgrid::s4u::Mutex;
61 using simgrid::s4u::MutexPtr;
62 using simgrid::s4u::Semaphore;
63 using simgrid::s4u::SemaphorePtr;
64 using simgrid::s4u::Task;
65 using simgrid::s4u::TaskPtr;
66
67 XBT_LOG_NEW_DEFAULT_CATEGORY(python, "python");
68
69 namespace {
70
71 std::string get_simgrid_version()
72 {
73   int major;
74   int minor;
75   int patch;
76   sg_version_get(&major, &minor, &patch);
77   return simgrid::xbt::string_printf("%i.%i.%i", major, minor, patch);
78 }
79 } // namespace
80
81 PYBIND11_DECLARE_HOLDER_TYPE(T, boost::intrusive_ptr<T>)
82
83 PYBIND11_MODULE(simgrid, m)
84 {
85   m.doc() = "SimGrid userspace API";
86
87   m.attr("simgrid_version") = get_simgrid_version();
88
89   // Swapped contexts are broken, starting from pybind11 v2.8.0.  Use thread contexts by default.
90   simgrid::s4u::Engine::set_config("contexts/factory:thread");
91
92   // Internal exception used to kill actors and sweep the RAII chimney (free objects living on the stack)
93   static py::object pyForcefulKillEx(py::register_exception<simgrid::ForcefulKillException>(m, "ActorKilled"));
94
95   py::register_exception<simgrid::NetworkFailureException>(m, "NetworkFailureException");
96   py::register_exception<simgrid::TimeoutException>(m, "TimeoutException");
97   py::register_exception<simgrid::HostFailureException>(m, "HostFailureException");
98   py::register_exception<simgrid::StorageFailureException>(m, "StorageFailureException");
99   py::register_exception<simgrid::VmFailureException>(m, "VmFailureException");
100   py::register_exception<simgrid::CancelException>(m, "CancelException");
101   py::register_exception<simgrid::AssertionError>(m, "AssertionError");
102
103   /* this_actor namespace */
104   m.def_submodule("this_actor", "Bindings of the s4u::this_actor namespace. See the C++ documentation for details.")
105       .def(
106           "debug", [](const char* s) { XBT_DEBUG("%s", s); }, "Display a logging message of 'debug' priority.")
107       .def(
108           "info", [](const char* s) { XBT_INFO("%s", s); }, "Display a logging message of 'info' priority.")
109       .def(
110           "warning", [](const char* s) { XBT_WARN("%s", s); }, "Display a logging message of 'warning' priority.")
111       .def(
112           "error", [](const char* s) { XBT_ERROR("%s", s); }, "Display a logging message of 'error' priority.")
113       .def("execute", py::overload_cast<double, double>(&simgrid::s4u::this_actor::execute),
114            py::call_guard<py::gil_scoped_release>(),
115            "Block the current actor, computing the given amount of flops at the given priority.", py::arg("flops"),
116            py::arg("priority") = 1)
117       .def("exec_init", py::overload_cast<double>(&simgrid::s4u::this_actor::exec_init),
118            py::call_guard<py::gil_scoped_release>())
119       .def("exec_async", py::overload_cast<double>(&simgrid::s4u::this_actor::exec_async),
120            py::call_guard<py::gil_scoped_release>())
121       .def("parallel_execute", &simgrid::s4u::this_actor::parallel_execute, py::call_guard<py::gil_scoped_release>(),
122            "Run a parallel task (requires the 'ptask_L07' model)")
123       .def("exec_init",
124            py::overload_cast<const std::vector<simgrid::s4u::Host*>&, const std::vector<double>&,
125                              const std::vector<double>&>(&simgrid::s4u::this_actor::exec_init),
126            py::call_guard<py::gil_scoped_release>(), "Initiate a parallel task (requires the 'ptask_L07' model)")
127       .def("get_host", &simgrid::s4u::this_actor::get_host, "Retrieves host on which the current actor is located")
128       .def("set_host", &simgrid::s4u::this_actor::set_host, py::call_guard<py::gil_scoped_release>(),
129            "Moves the current actor to another host.", py::arg("dest"))
130       .def("sleep_for", static_cast<void (*)(double)>(&simgrid::s4u::this_actor::sleep_for),
131            py::call_guard<py::gil_scoped_release>(), "Block the actor sleeping for that amount of seconds.",
132            py::arg("duration"))
133       .def("sleep_until", static_cast<void (*)(double)>(&simgrid::s4u::this_actor::sleep_until),
134            py::call_guard<py::gil_scoped_release>(), "Block the actor sleeping until the specified timestamp.",
135            py::arg("duration"))
136       .def("suspend", &simgrid::s4u::this_actor::suspend, py::call_guard<py::gil_scoped_release>(),
137            "Suspend the current actor, that is blocked until resume()ed by another actor.")
138       .def("yield_", &simgrid::s4u::this_actor::yield, py::call_guard<py::gil_scoped_release>(), "Yield the actor")
139       .def("exit", &simgrid::s4u::this_actor::exit, py::call_guard<py::gil_scoped_release>(), "kill the current actor")
140       .def(
141           "on_exit",
142           [](py::object fun) {
143             fun.inc_ref(); // keep alive after return
144             const py::gil_scoped_release gil_release;
145             simgrid::s4u::this_actor::on_exit([fun_p = fun.ptr()](bool failed) {
146               const py::gil_scoped_acquire py_context; // need a new context for callback
147               try {
148                 const auto fun = py::reinterpret_borrow<py::function>(fun_p);
149                 fun(failed);
150               } catch (const py::error_already_set& e) {
151                 xbt_die("Error while executing the on_exit lambda: %s", e.what());
152               }
153             });
154           },
155           "Define a lambda to be called when the actor ends. It takes a bool parameter indicating whether the actor "
156           "was killed. If False, the actor finished peacefully.")
157       .def("get_pid", &simgrid::s4u::this_actor::get_pid, "Retrieves PID of the current actor")
158       .def("get_ppid", &simgrid::s4u::this_actor::get_ppid,
159            "Retrieves PPID of the current actor (i.e., the PID of its parent).");
160
161   /* Class Engine */
162   py::class_<Engine>(m, "Engine", "Simulation Engine")
163       .def(py::init([](std::vector<std::string> args) {
164              auto argc = static_cast<int>(args.size());
165              std::vector<char*> argv(args.size() + 1); // argv[argc] is nullptr
166              std::transform(begin(args), end(args), begin(argv), [](std::string& s) { return &s.front(); });
167              // Currently this can be dangling, we should wrap this somehow.
168              return new simgrid::s4u::Engine(&argc, argv.data());
169            }),
170            "The constructor should take the parameters from the command line, as is ")
171       .def_property_readonly_static(
172           "clock", [](py::object /* self */) { return Engine::get_clock(); },
173           "The simulation time, ie the amount of simulated seconds since the simulation start.")
174       .def_property_readonly_static(
175           "instance", [](py::object /* self */) { return Engine::get_instance(); }, "Retrieve the simulation engine")
176       .def("host_by_name", &Engine::host_by_name_or_null,
177            "Retrieve a host by its name, or None if it does not exist in the platform.")
178       .def_property_readonly("all_hosts", &Engine::get_all_hosts, "Returns the list of all hosts found in the platform")
179       .def_property_readonly("all_links", &Engine::get_all_links, "Returns the list of all links found in the platform")
180       .def_property_readonly("all_netpoints", &Engine::get_all_netpoints)
181       .def_property_readonly("netzone_root", &Engine::get_netzone_root,
182                              "Retrieve the root netzone, containing all others.")
183       .def("netpoint_by_name", &Engine::netpoint_by_name_or_null)
184       .def("netzone_by_name", &Engine::netzone_by_name_or_null)
185       .def("set_config", py::overload_cast<const std::string&>(&Engine::set_config),
186            "Change one of SimGrid's configurations")
187       .def("load_platform", &Engine::load_platform, "Load a platform file describing the environment")
188       .def("load_deployment", &Engine::load_deployment, "Load a deployment file and launch the actors that it contains")
189       .def("mailbox_by_name_or_create", &Engine::mailbox_by_name_or_create, py::call_guard<py::gil_scoped_release>(),
190            py::arg("name"), "Find a mailbox from its name or create one if it does not exist")
191       .def("run", &Engine::run, py::call_guard<py::gil_scoped_release>(), "Run the simulation until its end")
192       .def("run_until", py::overload_cast<double>(&Engine::run_until, py::const_),
193            py::call_guard<py::gil_scoped_release>(), "Run the simulation until the given date",
194            py::arg("max_date") = -1)
195       .def(
196           "register_actor",
197           [](Engine* e, const std::string& name, py::object fun_or_class) {
198             fun_or_class.inc_ref(); // keep alive after return
199             const py::gil_scoped_release gil_release;
200             e->register_actor(name, [fun_or_class_p = fun_or_class.ptr()](std::vector<std::string> args) {
201               const py::gil_scoped_acquire py_context;
202               try {
203                 /* Convert the std::vector into a py::tuple */
204                 py::tuple params(args.size() - 1);
205                 for (size_t i = 1; i < args.size(); i++)
206                   params[i - 1] = py::cast(args[i]);
207
208                 const auto fun_or_class = py::reinterpret_borrow<py::object>(fun_or_class_p);
209                 py::object res          = fun_or_class(*params);
210                 /* If I was passed a class, I just built an instance, so I need to call it now */
211                 if (py::isinstance<py::function>(res))
212                   res();
213               } catch (const py::error_already_set& ex) {
214                 if (ex.matches(pyForcefulKillEx)) {
215                   XBT_VERB("Actor killed");
216                   simgrid::ForcefulKillException::do_throw(); // Forward that ForcefulKill exception
217                 }
218                 throw;
219               }
220             });
221           },
222           "Registers the main function of an actor")
223       .def("set_log_control", [](Engine*, const std::string& settings) { xbt_log_control_set(settings.c_str()); });
224
225   /* Class Netzone */
226   py::class_<simgrid::s4u::NetZone, std::unique_ptr<simgrid::s4u::NetZone, py::nodelete>> netzone(
227       m, "NetZone", "Networking Zones. See the C++ documentation for details.");
228   netzone.def_static("create_full_zone", &simgrid::s4u::create_full_zone, "Creates a zone of type FullZone")
229       .def_static("create_torus_zone", &simgrid::s4u::create_torus_zone, "Creates a cluster of type Torus")
230       .def_static("create_fatTree_zone", &simgrid::s4u::create_fatTree_zone, "Creates a cluster of type Fat-Tree")
231       .def_static("create_dragonfly_zone", &simgrid::s4u::create_dragonfly_zone, "Creates a cluster of type Dragonfly")
232       .def_static("create_star_zone", &simgrid::s4u::create_star_zone, "Creates a zone of type Star")
233       .def_static("create_floyd_zone", &simgrid::s4u::create_floyd_zone, "Creates a zone of type Floyd")
234       .def_static("create_dijkstra_zone", &simgrid::s4u::create_floyd_zone, "Creates a zone of type Dijkstra")
235       .def_static("create_vivaldi_zone", &simgrid::s4u::create_vivaldi_zone, "Creates a zone of type Vivaldi")
236       .def_static("create_empty_zone", &simgrid::s4u::create_empty_zone, "Creates a zone of type Empty")
237       .def_static("create_wifi_zone", &simgrid::s4u::create_wifi_zone, "Creates a zone of type Wi-Fi")
238       .def("add_route",
239            [](simgrid::s4u::NetZone* self, simgrid::kernel::routing::NetPoint* src,
240               simgrid::kernel::routing::NetPoint* dst, simgrid::kernel::routing::NetPoint* gw_src,
241               simgrid::kernel::routing::NetPoint* gw_dst, const std::vector<simgrid::s4u::LinkInRoute>& links,
242               bool symmetrical) {
243              PyErr_WarnEx(PyExc_DeprecationWarning, // XBT_ATTRIB_DEPRECATED_v335. Once removed, uncomment the
244                                                     // deprecation of the AddRoute function in C++
245                           "Please call add_route either from Host to Host or NetZone to NetZone. This call will be "
246                           "removed after SimGrid v3.35.",
247                           1);
248              self->add_route(src, dst, gw_src, gw_dst, links, symmetrical);
249            })
250       .def("add_route",
251            py::overload_cast<const simgrid::s4u::Host*, const simgrid::s4u::Host*,
252                              const std::vector<simgrid::s4u::LinkInRoute>&, bool>(&simgrid::s4u::NetZone::add_route),
253            "Add a route between 2 netpoints")
254       .def("add_route",
255            py::overload_cast<const simgrid::s4u::Host*, const simgrid::s4u::Host*,
256                              const std::vector<const simgrid::s4u::Link*>&>(&simgrid::s4u::NetZone::add_route),
257            "Add a route between 2 netpoints")
258       .def("create_host", py::overload_cast<const std::string&, double>(&simgrid::s4u::NetZone::create_host),
259            "Creates a host")
260       .def("create_host",
261            py::overload_cast<const std::string&, const std::string&>(&simgrid::s4u::NetZone::create_host),
262            "Creates a host")
263       .def("create_host",
264            py::overload_cast<const std::string&, const std::vector<double>&>(&simgrid::s4u::NetZone::create_host),
265            "Creates a host")
266       .def("create_host",
267            py::overload_cast<const std::string&, const std::vector<std::string>&>(&simgrid::s4u::NetZone::create_host),
268            "Creates a host")
269       .def("create_link", py::overload_cast<const std::string&, double>(&simgrid::s4u::NetZone::create_link),
270            "Creates a network link")
271       .def("create_link",
272            py::overload_cast<const std::string&, const std::string&>(&simgrid::s4u::NetZone::create_link),
273            "Creates a network link")
274       .def("create_link",
275            py::overload_cast<const std::string&, const std::vector<double>&>(&simgrid::s4u::NetZone::create_link),
276            "Creates a network link")
277       .def("create_link",
278            py::overload_cast<const std::string&, const std::vector<std::string>&>(&simgrid::s4u::NetZone::create_link),
279            "Creates a network link")
280       .def("create_split_duplex_link",
281            py::overload_cast<const std::string&, double>(&simgrid::s4u::NetZone::create_split_duplex_link),
282            "Creates a split-duplex link")
283       .def("create_split_duplex_link",
284            py::overload_cast<const std::string&, const std::string&>(&simgrid::s4u::NetZone::create_split_duplex_link),
285            "Creates a split-duplex link")
286       .def("create_router", &simgrid::s4u::NetZone::create_router, "Create a router")
287       .def("set_parent", &simgrid::s4u::NetZone::set_parent, "Set the parent of this zone")
288       .def("set_property", &simgrid::s4u::NetZone::set_property, "Add a property to this zone")
289       .def_property_readonly("netpoint", &simgrid::s4u::NetZone::get_netpoint,
290                              "Retrieve the netpoint associated to this zone")
291       .def("seal", &simgrid::s4u::NetZone::seal, "Seal this NetZone")
292       .def_property_readonly("name", &simgrid::s4u::NetZone::get_name,
293                              "The name of this network zone (read-only property).")
294       .def(
295           "__repr__", [](const simgrid::s4u::NetZone net) { return "NetZone(" + net.get_name() + ")"; },
296           "Textual representation of the NetZone");
297
298   /* Class ClusterCallbacks */
299   py::class_<simgrid::s4u::ClusterCallbacks>(m, "ClusterCallbacks", "Callbacks used to create cluster zones")
300       .def(py::init<const std::function<simgrid::s4u::ClusterCallbacks::ClusterNetPointCb>&,
301                     const std::function<simgrid::s4u::ClusterCallbacks::ClusterLinkCb>&,
302                     const std::function<simgrid::s4u::ClusterCallbacks::ClusterLinkCb>&>());
303
304   /* Class FatTreeParams */
305   py::class_<simgrid::s4u::FatTreeParams>(m, "FatTreeParams", "Parameters to create a Fat-Tree zone")
306       .def(py::init<unsigned int, const std::vector<unsigned int>&, const std::vector<unsigned int>&,
307                     const std::vector<unsigned int>&>());
308
309   /* Class DragonflyParams */
310   py::class_<simgrid::s4u::DragonflyParams>(m, "DragonflyParams", "Parameters to create a Dragonfly zone")
311       .def(py::init<const std::pair<unsigned int, unsigned int>&, const std::pair<unsigned int, unsigned int>&,
312                     const std::pair<unsigned int, unsigned int>&, unsigned int>());
313
314   /* Class Host */
315   py::class_<simgrid::s4u::Host, std::unique_ptr<Host, py::nodelete>> host(
316       m, "Host", "Simulated host. See the C++ documentation for details.");
317   host.def_static("by_name", &Host::by_name, py::arg("name"), "Retrieves a host from its name, or die")
318       .def(
319           "route_to",
320           [](const simgrid::s4u::Host* h, const simgrid::s4u::Host* to) {
321             auto* list = new std::vector<Link*>();
322             double bw  = 0;
323             h->route_to(to, *list, &bw);
324             return make_tuple(list, bw);
325           },
326           "Retrieves the list of links and the bandwidth between two hosts.")
327       .def(
328           "set_speed_profile",
329           [](Host* h, const std::string& profile, double period) {
330             h->set_speed_profile(simgrid::kernel::profile::ProfileBuilder::from_string("", profile, period));
331           },
332           py::call_guard<py::gil_scoped_release>(),
333           "Specify a profile modeling the external load according to an exhaustive list. "
334           "Each line of the profile describes timed events as ``date ratio``. "
335           "For example, the following content describes an host which computational speed is initially 1 (i.e, 100%) "
336           "and then halved after 42 seconds:\n\n"
337           ".. code-block:: python\n\n"
338           "   \"\"\"\n"
339           "   0 1.0\n"
340           "   42 0.5\n"
341           "   \"\"\"\n\n"
342           ".. warning:: Don't get fooled: bandwidth and latency profiles of links contain absolute values,"
343           " while speed profiles of hosts contain ratios.\n\n"
344           "The second function parameter is the periodicity: the time to wait after the last event to start again over "
345           "the list. Set it to -1 to not loop over.")
346       .def(
347           "set_state_profile",
348           [](Host* h, const std::string& profile, double period) {
349             h->set_state_profile(simgrid::kernel::profile::ProfileBuilder::from_string("", profile, period));
350           },
351           py::call_guard<py::gil_scoped_release>(),
352           "Specify a profile modeling the churn. "
353           "Each line of the profile describes timed events as ``date boolean``, where the boolean (0 or 1) tells "
354           "whether the host is on. "
355           "For example, the following content describes a link which turns off at t=1 and back on at t=2:\n\n"
356           ".. code-block:: python\n\n"
357           "   \"\"\"\n"
358           "   1.0 0\n"
359           "   2.0 1\n"
360           "   \"\"\"\n\n"
361           "The second function parameter is the periodicity: the time to wait after the last event to start again over "
362           "the list. Set it to -1 to not loop over.")
363       .def_property_readonly("pstate_count", &Host::get_pstate_count, "Retrieve the count of defined pstate levels")
364       .def("pstate_speed", &Host::get_pstate_speed, "Retrieve the maximal speed at the given pstate")
365       .def_property_readonly("netpoint", &Host::get_netpoint, "Retrieve the netpoint associated to this zone")
366       .def_property_readonly("disks", &Host::get_disks, "The list of disks on this host (read-only).")
367       .def("get_disks", &Host::get_disks, "Retrieve the list of disks in this host")
368       .def_property("core_count", &Host::get_core_count,
369                     py::cpp_function(&Host::set_core_count, py::call_guard<py::gil_scoped_release>()),
370                     "Manage the number of cores in the CPU")
371       .def("set_coordinates", &Host::set_coordinates, py::call_guard<py::gil_scoped_release>(),
372            "Set the coordinates of this host")
373       .def("set_sharing_policy", &simgrid::s4u::Host::set_sharing_policy, py::call_guard<py::gil_scoped_release>(),
374            "Describe how the CPU is shared", py::arg("policy"), py::arg("cb") = simgrid::s4u::NonLinearResourceCb())
375       .def("create_disk", py::overload_cast<const std::string&, double, double>(&Host::create_disk),
376            py::call_guard<py::gil_scoped_release>(), "Create a disk")
377       .def("create_disk",
378            py::overload_cast<const std::string&, const std::string&, const std::string&>(&Host::create_disk),
379            py::call_guard<py::gil_scoped_release>(), "Create a disk")
380       .def("seal", &Host::seal, py::call_guard<py::gil_scoped_release>(), "Seal this host")
381       .def("turn_off", &Host::turn_off, py::call_guard<py::gil_scoped_release>(), "Turn off this host")
382       .def("turn_on", &Host::turn_on, py::call_guard<py::gil_scoped_release>(), "Turn on this host")
383       .def_property("pstate", &Host::get_pstate,
384                     py::cpp_function(&Host::set_pstate, py::call_guard<py::gil_scoped_release>()),
385                     "The current pstate (read/write property).")
386       .def_static("current", &Host::current, py::call_guard<py::gil_scoped_release>(),
387                   "Retrieves the host on which the running actor is located.")
388       .def_property_readonly("name", &Host::get_name, "The name of this host (read-only property).")
389       .def_property_readonly("load", &Host::get_load,
390                              "Returns the current computation load (in flops per second), NOT taking the external load "
391                              "into account. This is the currently achieved speed (read-only property).")
392       .def_property_readonly(
393           "speed", &Host::get_speed,
394           "The peak computing speed in flops/s at the current pstate, NOT taking the external load into account. "
395           "This is the max potential speed (read-only property).")
396       .def_property_readonly("available_speed", &Host::get_available_speed,
397                              "Get the available speed ratio, between 0 and 1.\n"
398                              "This accounts for external load (see :py:func:`set_speed_profile() "
399                              "<simgrid.Host.set_speed_profile>`) (read-only property).")
400       .def_static(
401           "on_creation_cb",
402           [](py::object cb) {
403             cb.inc_ref(); // keep alive after return
404             const py::gil_scoped_release gil_release;
405             Host::on_creation_cb([cb_p = cb.ptr()](Host& h) {
406               const py::gil_scoped_acquire py_context; // need a new context for callback
407               try {
408                 const auto fun = py::reinterpret_borrow<py::function>(cb_p);
409                 fun(&h);
410               } catch (const py::error_already_set& e) {
411                 xbt_die("Error while executing the on_creation lambda : %s", e.what());
412               }
413             });
414           },
415           "")
416       .def(
417           "__repr__", [](const Host* h) { return "Host(" + h->get_name() + ")"; },
418           "Textual representation of the Host.");
419
420   m.def("sg_host_load_plugin_init", [host]() {
421     sg_host_load_plugin_init();
422
423     static_cast<pybind11::class_<simgrid::s4u::Host, std::unique_ptr<simgrid::s4u::Host, pybind11::nodelete>>>(host)
424         .def(
425             "reset_load", [](const Host* h) { sg_host_load_reset(h); }, py::call_guard<py::gil_scoped_release>(),
426             "Reset counters of the host load plugin for this host.")
427         .def_property_readonly(
428             "current_load", [](const Host* h) { return sg_host_get_current_load(h); }, "Current load of the host.")
429         .def_property_readonly(
430             "avg_load", [](const Host* h) { return sg_host_get_avg_load(h); }, "Average load of the host.")
431         .def_property_readonly(
432             "idle_time", [](const Host* h) { return sg_host_get_idle_time(h); }, "Idle time of the host")
433         .def_property_readonly(
434             "total_idle_time", [](const Host* h) { return sg_host_get_total_idle_time(h); },
435             "Total idle time of the host.")
436         .def_property_readonly(
437             "computed_flops", [](const Host* h) { return sg_host_get_computed_flops(h); },
438             "Computed flops of the host.");
439   });
440
441   py::enum_<simgrid::s4u::Host::SharingPolicy>(host, "SharingPolicy")
442       .value("NONLINEAR", simgrid::s4u::Host::SharingPolicy::NONLINEAR)
443       .value("LINEAR", simgrid::s4u::Host::SharingPolicy::LINEAR)
444       .export_values();
445
446   /* Class Disk */
447   py::class_<simgrid::s4u::Disk, std::unique_ptr<simgrid::s4u::Disk, py::nodelete>> disk(
448       m, "Disk", "Simulated disk. See the C++ documentation for details.");
449   disk.def("read", py::overload_cast<sg_size_t, double>(&simgrid::s4u::Disk::read, py::const_),
450            py::call_guard<py::gil_scoped_release>(), "Read data from disk", py::arg("size"), py::arg("priority") = 1)
451       .def("write", py::overload_cast<sg_size_t, double>(&simgrid::s4u::Disk::write, py::const_),
452            py::call_guard<py::gil_scoped_release>(), "Write data in disk", py::arg("size"), py::arg("priority") = 1)
453       .def("read_async", &simgrid::s4u::Disk::read_async, py::call_guard<py::gil_scoped_release>(),
454            "Non-blocking read data from disk")
455       .def("write_async", &simgrid::s4u::Disk::write_async, py::call_guard<py::gil_scoped_release>(),
456            "Non-blocking write data in disk")
457       .def("set_sharing_policy", &simgrid::s4u::Disk::set_sharing_policy, py::call_guard<py::gil_scoped_release>(),
458            "Set sharing policy for this disk", py::arg("op"), py::arg("policy"),
459            py::arg("cb") = simgrid::s4u::NonLinearResourceCb())
460       .def("seal", &simgrid::s4u::Disk::seal, py::call_guard<py::gil_scoped_release>(), "Seal this disk")
461       .def_property_readonly("name", &simgrid::s4u::Disk::get_name, "The name of this disk (read-only property).")
462       .def(
463           "__repr__", [](const Disk* d) { return "Disk(" + d->get_name() + ")"; },
464           "Textual representation of the Disk");
465   py::enum_<simgrid::s4u::Disk::SharingPolicy>(disk, "SharingPolicy")
466       .value("NONLINEAR", simgrid::s4u::Disk::SharingPolicy::NONLINEAR)
467       .value("LINEAR", simgrid::s4u::Disk::SharingPolicy::LINEAR)
468       .export_values();
469   py::enum_<simgrid::s4u::Disk::Operation>(disk, "Operation")
470       .value("READ", simgrid::s4u::Disk::Operation::READ)
471       .value("WRITE", simgrid::s4u::Disk::Operation::WRITE)
472       .value("READWRITE", simgrid::s4u::Disk::Operation::READWRITE)
473       .export_values();
474
475   /* Class NetPoint */
476   py::class_<simgrid::kernel::routing::NetPoint, std::unique_ptr<simgrid::kernel::routing::NetPoint, py::nodelete>>
477       netpoint(m, "NetPoint", "NetPoint object");
478
479   /* Class Link */
480   py::class_<Link, std::unique_ptr<Link, py::nodelete>> link(m, "Link",
481                                                              "Network link. See the C++ documentation for details.");
482   link.def("set_latency", py::overload_cast<const std::string&>(&Link::set_latency),
483            py::call_guard<py::gil_scoped_release>(),
484            "Set the latency as a string. Accepts values with units, such as â€˜1s’ or â€˜7ms’.\nFull list of accepted "
485            "units: w (week), d (day), h, s, ms, us, ns, ps.")
486       .def("set_latency", py::overload_cast<double>(&Link::set_latency), py::call_guard<py::gil_scoped_release>(),
487            "Set the latency as a float (in seconds).")
488       .def("set_bandwidth", &Link::set_bandwidth, py::call_guard<py::gil_scoped_release>(),
489            "Set the bandwidth (in byte per second).")
490       .def(
491           "set_bandwidth_profile",
492           [](Link* l, const std::string& profile, double period) {
493             l->set_bandwidth_profile(simgrid::kernel::profile::ProfileBuilder::from_string("", profile, period));
494           },
495           py::call_guard<py::gil_scoped_release>(),
496           "Specify a profile modeling the external load according to an exhaustive list. "
497           "Each line of the profile describes timed events as ``date bandwidth`` (in bytes per second). "
498           "For example, the following content describes a link which bandwidth changes to 40 Mb/s at t=4, and to 6 "
499           "Mb/s at t=8:\n\n"
500           ".. code-block:: python\n\n"
501           "   \"\"\"\n"
502           "   4.0 40000000\n"
503           "   8.0 60000000\n"
504           "   \"\"\"\n\n"
505           ".. warning:: Don't get fooled: bandwidth and latency profiles of links contain absolute values,"
506           " while speed profiles of hosts contain ratios.\n\n"
507           "The second function parameter is the periodicity: the time to wait after the last event to start again over "
508           "the list. Set it to -1 to not loop over.")
509       .def(
510           "set_latency_profile",
511           [](Link* l, const std::string& profile, double period) {
512             l->set_latency_profile(simgrid::kernel::profile::ProfileBuilder::from_string("", profile, period));
513           },
514           py::call_guard<py::gil_scoped_release>(),
515           "Specify a profile modeling the external load according to an exhaustive list. "
516           "Each line of the profile describes timed events as ``date latency`` (in seconds). "
517           "For example, the following content describes a link which latency changes to 1ms (0.001s) at t=1, and to 2s "
518           "at t=2:\n\n"
519           ".. code-block:: python\n\n"
520           "   \"\"\"\n"
521           "   1.0 0.001\n"
522           "   2.0 2\n"
523           "   \"\"\"\n\n"
524           ".. warning:: Don't get fooled: bandwidth and latency profiles of links contain absolute values,"
525           " while speed profiles of hosts contain ratios.\n\n"
526           "The second function parameter is the periodicity: the time to wait after the last event to start again over "
527           "the list. Set it to -1 to not loop over.")
528       .def(
529           "set_state_profile",
530           [](Link* l, const std::string& profile, double period) {
531             l->set_state_profile(simgrid::kernel::profile::ProfileBuilder::from_string("", profile, period));
532           },
533           "Specify a profile modeling the churn. "
534           "Each line of the profile describes timed events as ``date boolean``, where the boolean (0 or 1) tells "
535           "whether the link is on. "
536           "For example, the following content describes a link which turns off at t=1 and back on at t=2:\n\n"
537           ".. code-block:: python\n\n"
538           "   \"\"\"\n"
539           "   1.0 0\n"
540           "   2.0 1\n"
541           "   \"\"\"\n\n"
542           "The second function parameter is the periodicity: the time to wait after the last event to start again over "
543           "the list. Set it to -1 to not loop over.")
544
545       .def("turn_on", &Link::turn_on, py::call_guard<py::gil_scoped_release>(), "Turns the link on.")
546       .def("turn_off", &Link::turn_off, py::call_guard<py::gil_scoped_release>(), "Turns the link off.")
547       .def("is_on", &Link::is_on, "Check whether the link is on.")
548
549       .def("set_sharing_policy", &Link::set_sharing_policy, py::call_guard<py::gil_scoped_release>(),
550            "Set sharing policy for this link")
551       .def("set_concurrency_limit", &Link::set_concurrency_limit, py::call_guard<py::gil_scoped_release>(),
552            "Set concurrency limit for this link")
553       .def("set_host_wifi_rate", &Link::set_host_wifi_rate, py::call_guard<py::gil_scoped_release>(),
554            "Set level of communication speed of given host on this Wi-Fi link")
555       .def_static("by_name", &Link::by_name, "Retrieves a Link from its name, or dies")
556       .def("seal", &Link::seal, py::call_guard<py::gil_scoped_release>(), "Seal this link")
557       .def_property_readonly("name", &Link::get_name, "The name of this link")
558       .def_property_readonly("bandwidth", &Link::get_bandwidth,
559                              "The bandwidth (in bytes per second) (read-only property).")
560       .def_property_readonly("latency", &Link::get_latency, "The latency (in seconds) (read-only property).")
561       .def(
562           "__repr__", [](const Link* l) { return "Link(" + l->get_name() + ")"; },
563           "Textual representation of the Link");
564   py::enum_<Link::SharingPolicy>(link, "SharingPolicy")
565       .value("NONLINEAR", Link::SharingPolicy::NONLINEAR)
566       .value("WIFI", Link::SharingPolicy::WIFI)
567       .value("SPLITDUPLEX", Link::SharingPolicy::SPLITDUPLEX)
568       .value("SHARED", Link::SharingPolicy::SHARED)
569       .value("FATPIPE", Link::SharingPolicy::FATPIPE)
570       .export_values();
571
572   /* Class LinkInRoute */
573   py::class_<simgrid::s4u::LinkInRoute> linkinroute(m, "LinkInRoute", "Abstraction to add link in routes");
574   linkinroute.def(py::init<const Link*>());
575   linkinroute.def(py::init<const Link*, simgrid::s4u::LinkInRoute::Direction>());
576   py::enum_<simgrid::s4u::LinkInRoute::Direction>(linkinroute, "Direction")
577       .value("UP", simgrid::s4u::LinkInRoute::Direction::UP)
578       .value("DOWN", simgrid::s4u::LinkInRoute::Direction::DOWN)
579       .value("NONE", simgrid::s4u::LinkInRoute::Direction::NONE)
580       .export_values();
581
582   /* Class Split-Duplex Link */
583   py::class_<simgrid::s4u::SplitDuplexLink, Link, std::unique_ptr<simgrid::s4u::SplitDuplexLink, py::nodelete>>(
584       m, "SplitDuplexLink", "Network split-duplex link")
585       .def_property_readonly("link_up", &simgrid::s4u::SplitDuplexLink::get_link_up, "Get link direction up")
586       .def_property_readonly("link_down", &simgrid::s4u::SplitDuplexLink::get_link_down, "Get link direction down");
587
588   /* Class Mailbox */
589   py::class_<simgrid::s4u::Mailbox, std::unique_ptr<Mailbox, py::nodelete>>(
590       m, "Mailbox", "Mailbox. See the C++ documentation for details.")
591       .def(
592           "__repr__", [](const Mailbox* self) { return "Mailbox(" + self->get_name() + ")"; },
593           "Textual representation of the Mailbox")
594       .def_static("by_name", &Mailbox::by_name, py::call_guard<py::gil_scoped_release>(), py::arg("name"),
595                   "Retrieve a Mailbox from its name")
596       .def_property_readonly("name", &Mailbox::get_name, "The name of that mailbox (read-only property).")
597       .def_property_readonly("ready", &Mailbox::ready,
598                              "Check if there is a communication ready to be consumed from a mailbox.")
599       .def(
600           "put",
601           [](Mailbox* self, py::object data, uint64_t size, double timeout) {
602             auto* data_ptr = data.inc_ref().ptr();
603             const py::gil_scoped_release gil_release;
604             self->put(data_ptr, size, timeout);
605           },
606           "Blocking data transmission with a timeout")
607       .def(
608           "put",
609           [](Mailbox* self, py::object data, uint64_t size) {
610             auto* data_ptr = data.inc_ref().ptr();
611             const py::gil_scoped_release gil_release;
612             self->put(data_ptr, size);
613           },
614           "Blocking data transmission")
615       .def(
616           "put_async",
617           [](Mailbox* self, py::object data, uint64_t size) {
618             auto* data_ptr = data.inc_ref().ptr();
619             const py::gil_scoped_release gil_release;
620             return self->put_async(data_ptr, size);
621           },
622           "Non-blocking data transmission")
623       .def(
624           "put_init",
625           [](Mailbox* self, py::object data, uint64_t size) {
626             auto* data_ptr = data.inc_ref().ptr();
627             const py::gil_scoped_release gil_release;
628             return self->put_init(data_ptr, size);
629           },
630           "Creates (but don’t start) a data transmission to that mailbox.")
631       .def(
632           "get", [](Mailbox* self) { return py::reinterpret_steal<py::object>(self->get<PyObject>()); },
633           py::call_guard<py::gil_scoped_release>(), "Blocking data reception")
634       .def(
635           "get_async", [](Mailbox* self) -> CommPtr { return self->get_async(); },
636           py::call_guard<py::gil_scoped_release>(),
637           "Non-blocking data reception. Use data.get() to get the python object after the communication has finished")
638       .def("set_receiver", &Mailbox::set_receiver, py::call_guard<py::gil_scoped_release>(),
639            "Sets the actor as permanent receiver");
640
641   /* class Activity */
642   py::class_<Activity, ActivityPtr>(m, "Activity", "Activity. See the C++ documentation for details.");
643
644   /* Class Comm */
645   py::class_<Comm, CommPtr, Activity>(m, "Comm", "Communication. See the C++ documentation for details.")
646       .def_property_readonly("dst_data_size", &Comm::get_dst_data_size, py::call_guard<py::gil_scoped_release>(),
647                              "Retrieve the size of the received data.")
648       .def_property_readonly("mailbox", &Comm::get_mailbox, py::call_guard<py::gil_scoped_release>(),
649                              "Retrieve the mailbox on which this comm acts.")
650       .def_property_readonly("sender", &Comm::get_sender, py::call_guard<py::gil_scoped_release>())
651       .def_property_readonly("state_str", &Comm::get_state_str, py::call_guard<py::gil_scoped_release>(),
652                              "Retrieve the Comm state as string")
653       .def_property_readonly("remaining", &Comm::get_remaining, py::call_guard<py::gil_scoped_release>(),
654                              "Remaining amount of work that this Comm entails")
655       .def_property_readonly("start_time", &Comm::get_start_time, py::call_guard<py::gil_scoped_release>(),
656                              "Time at which this Comm started")
657       .def_property_readonly("finish_time", &Comm::get_finish_time, py::call_guard<py::gil_scoped_release>(),
658                              "Time at which this Comm finished")
659       .def_property_readonly("is_suspended", &Comm::is_suspended, py::call_guard<py::gil_scoped_release>(),
660                              "Whether this Comm is suspended")
661       .def("set_payload_size", &Comm::set_payload_size, py::call_guard<py::gil_scoped_release>(), py::arg("bytes"),
662            "Specify the amount of bytes which exchange should be simulated.")
663       .def("set_rate", &Comm::set_rate, py::call_guard<py::gil_scoped_release>(), py::arg("rate"),
664            "Sets the maximal communication rate (in byte/sec). Must be done before start")
665       .def("cancel", &Comm::cancel, py::call_guard<py::gil_scoped_release>(),
666            py::return_value_policy::reference_internal, "Cancel the activity.")
667       .def("start", &Comm::start, py::call_guard<py::gil_scoped_release>(), py::return_value_policy::reference_internal,
668            "Starts a previously created activity. This function is optional: you can call wait() even if you didn't "
669            "call start()")
670       .def("suspend", &Comm::suspend, py::call_guard<py::gil_scoped_release>(),
671            py::return_value_policy::reference_internal, "Suspend the activity.")
672       .def("resume", &Comm::resume, py::call_guard<py::gil_scoped_release>(),
673            py::return_value_policy::reference_internal, "Resume the activity.")
674       .def("test", &Comm::test, py::call_guard<py::gil_scoped_release>(),
675            "Test whether the communication is terminated.")
676       .def("wait", &Comm::wait, py::call_guard<py::gil_scoped_release>(),
677            "Block until the completion of that communication.")
678       .def("wait_for", &Comm::wait_for, py::call_guard<py::gil_scoped_release>(), py::arg("timeout"),
679            "Block until the completion of that communication, or raises TimeoutException after the specified timeout.")
680       .def("wait_until", &Comm::wait_until, py::call_guard<py::gil_scoped_release>(), py::arg("time_limit"),
681            "Block until the completion of that communication, or raises TimeoutException after the specified time.")
682       .def(
683           "get_payload",
684           [](const Comm* self) { return py::reinterpret_steal<py::object>((PyObject*)self->get_payload()); },
685           py::call_guard<py::gil_scoped_release>(),
686           "Retrieve the message's payload of a get_async. You cannot call this until after the comm termination.")
687       .def("detach", py::overload_cast<>(&Comm::detach), py::return_value_policy::reference_internal,
688            py::call_guard<py::gil_scoped_release>(),
689            "Start the comm, and ignore its result. It can be completely forgotten after that.")
690       .def_static("sendto", &Comm::sendto, py::call_guard<py::gil_scoped_release>(), py::arg("from"), py::arg("to"),
691                   py::arg("simulated_size_in_bytes"), "Do a blocking communication between two arbitrary hosts.")
692       .def_static("sendto_init", py::overload_cast<Host*, Host*>(&Comm::sendto_init),
693                   py::call_guard<py::gil_scoped_release>(), py::arg("from"), py::arg("to"),
694                   "Creates a communication between the two given hosts, bypassing the mailbox mechanism.")
695       .def_static("sendto_async", &Comm::sendto_async, py::call_guard<py::gil_scoped_release>(), py::arg("from"),
696                   py::arg("to"), py::arg("simulated_size_in_bytes"),
697                   "Do a blocking communication between two arbitrary hosts.\n\nThis initializes a communication that "
698                   "completely bypass the mailbox and actors mechanism. There is really no limit on the hosts involved. "
699                   "In particular, the actor does not have to be on one of the involved hosts.");
700
701   /* Class Io */
702   py::class_<simgrid::s4u::Io, simgrid::s4u::IoPtr, Activity>(m, "Io",
703                                                               "I/O activities. See the C++ documentation for details.")
704       .def("test", &simgrid::s4u::Io::test, py::call_guard<py::gil_scoped_release>(),
705            "Test whether the I/O is terminated.")
706       .def("wait", &simgrid::s4u::Io::wait, py::call_guard<py::gil_scoped_release>(),
707            "Block until the completion of that I/O operation");
708
709   /* Class Exec */
710   py::class_<simgrid::s4u::Exec, simgrid::s4u::ExecPtr, Activity>(m, "Exec",
711                                                                   "Execution. See the C++ documentation for details.")
712       .def_property_readonly("remaining", &simgrid::s4u::Exec::get_remaining, py::call_guard<py::gil_scoped_release>(),
713                              "Amount of flops that remain to be computed until completion (read-only property).")
714       .def_property_readonly("remaining_ratio", &simgrid::s4u::Exec::get_remaining_ratio,
715                              py::call_guard<py::gil_scoped_release>(),
716                              "Amount of work remaining until completion from 0 (completely done) to 1 (nothing done "
717                              "yet) (read-only property).")
718       .def_property("host", &simgrid::s4u::Exec::get_host, &simgrid::s4u::Exec::set_host,
719                     "Host on which this execution runs. Only the first host is returned for parallel executions. "
720                     "Changing this value migrates the execution.")
721       .def_property_readonly("is_suspended", &simgrid::s4u::Exec::is_suspended,
722                              py::call_guard<py::gil_scoped_release>(), "Whether this Exec is suspended")
723       .def("test", &simgrid::s4u::Exec::test, py::call_guard<py::gil_scoped_release>(),
724            "Test whether the execution is terminated.")
725       .def("cancel", &simgrid::s4u::Exec::cancel, py::call_guard<py::gil_scoped_release>(), "Cancel that execution.")
726       .def("start", &simgrid::s4u::Exec::start, py::call_guard<py::gil_scoped_release>(), "Start that execution.")
727       .def("suspend", &simgrid::s4u::Exec::suspend, py::call_guard<py::gil_scoped_release>(), "Suspend that execution.")
728       .def("resume", &simgrid::s4u::Exec::resume, py::call_guard<py::gil_scoped_release>(), "Resume that execution.")
729       .def("wait", &simgrid::s4u::Exec::wait, py::call_guard<py::gil_scoped_release>(),
730            "Block until the completion of that execution.")
731       .def("wait_for", &simgrid::s4u::Exec::wait_for, py::call_guard<py::gil_scoped_release>(), py::arg("timeout"),
732            "Block until the completion of that activity, or raises TimeoutException after the specified timeout.");
733
734   /* Class Semaphore */
735   py::class_<Semaphore, SemaphorePtr>(m, "Semaphore",
736                                       "A classical semaphore, but blocking in the simulation world. See the C++ "
737                                       "documentation for details.")
738       .def(py::init<>(&Semaphore::create), py::call_guard<py::gil_scoped_release>(), py::arg("capacity"),
739            "Semaphore constructor.")
740       .def("acquire", &Semaphore::acquire, py::call_guard<py::gil_scoped_release>(),
741            "Acquire on the semaphore object with no timeout. Blocks until the semaphore is acquired.")
742       .def("acquire_timeout", &Semaphore::acquire_timeout, py::call_guard<py::gil_scoped_release>(), py::arg("timeout"),
743            "Acquire on the semaphore object with no timeout. Blocks until the semaphore is acquired or return "
744            "true if it has not been acquired after the specified timeout.")
745       .def("release", &Semaphore::release, py::call_guard<py::gil_scoped_release>(), "Release the semaphore.")
746       .def_property_readonly("capacity", &Semaphore::get_capacity, py::call_guard<py::gil_scoped_release>(),
747                              "Get the semaphore capacity.")
748       .def_property_readonly("would_block", &Semaphore::would_block, py::call_guard<py::gil_scoped_release>(),
749                              "Check whether trying to acquire the semaphore would block (in other word, checks whether "
750                              "this semaphore has capacity).")
751       // Allow semaphores to be automatically acquired/released with a context manager: `with semaphore: ...`
752       .def("__enter__", &Semaphore::acquire, py::call_guard<py::gil_scoped_release>())
753       .def("__exit__",
754            [](Semaphore* self, const py::object&, const py::object&, const py::object&) { self->release(); });
755
756   /* Class Mutex */
757   py::class_<Mutex, MutexPtr>(m, "Mutex",
758                               "A classical mutex, but blocking in the simulation world."
759                               "See the C++ documentation for details.")
760       .def(py::init<>(&Mutex::create), py::call_guard<py::gil_scoped_release>(),
761            "Mutex constructor (pass True as a parameter to get a recursive Mutex).", py::arg("recursive") = false)
762       .def("lock", &Mutex::lock, py::call_guard<py::gil_scoped_release>(), "Block until the mutex is acquired.")
763       .def("try_lock", &Mutex::try_lock, py::call_guard<py::gil_scoped_release>(),
764            "Try to acquire the mutex. Return true if the mutex was acquired, false otherwise.")
765       .def("unlock", &Mutex::unlock, py::call_guard<py::gil_scoped_release>(), "Release the mutex.")
766       // Allow mutexes to be automatically acquired/released with a context manager: `with mutex: ...`
767       .def("__enter__", &Mutex::lock, py::call_guard<py::gil_scoped_release>())
768       .def(
769           "__exit__", [](Mutex* self, const py::object&, const py::object&, const py::object&) { self->unlock(); },
770           py::call_guard<py::gil_scoped_release>());
771
772   /* Class Barrier */
773   py::class_<Barrier, BarrierPtr>(m, "Barrier", "A classical barrier, but blocking in the simulation world.")
774       .def(py::init<>(&Barrier::create), py::call_guard<py::gil_scoped_release>(), py::arg("expected_actors"),
775            "Barrier constructor.")
776       .def("wait", &Barrier::wait, py::call_guard<py::gil_scoped_release>(),
777            "Blocks into the barrier. Every waiting actors will be unlocked once the expected amount of actors reaches "
778            "the barrier.");
779
780   /* Class Actor */
781   py::class_<simgrid::s4u::Actor, ActorPtr>(m, "Actor",
782                                             "An actor is an independent stream of execution in your distributed "
783                                             "application. See the C++ documentation for details.")
784       .def(
785           "create",
786           [](const std::string& name, Host* h, py::object fun, py::args args) {
787             fun.inc_ref();  // keep alive after return
788             args.inc_ref(); // keep alive after return
789             const py::gil_scoped_release gil_release;
790             return simgrid::s4u::Actor::create(name, h, [fun_p = fun.ptr(), args_p = args.ptr()]() {
791               const py::gil_scoped_acquire py_context;
792               try {
793                 const auto fun  = py::reinterpret_borrow<py::object>(fun_p);
794                 const auto args = py::reinterpret_borrow<py::args>(args_p);
795                 fun(*args);
796               } catch (const py::error_already_set& ex) {
797                 if (ex.matches(pyForcefulKillEx)) {
798                   XBT_VERB("Actor killed");
799                   simgrid::ForcefulKillException::do_throw(); // Forward that ForcefulKill exception
800                 }
801                 throw;
802               }
803             });
804           },
805           "Create an actor from a function or an object. See the :ref:`example <s4u_ex_actors_create>`.")
806       .def_property(
807           "host", &Actor::get_host, py::cpp_function(&Actor::set_host, py::call_guard<py::gil_scoped_release>()),
808           "The host on which this actor is located. Changing this value migrates the actor.\n\n"
809           "If the actor is currently blocked on an execution activity, the activity is also migrated to the new host. "
810           "If it’s blocked on another kind of activity, an error is raised as the mandated code is not written yet. "
811           "Please report that bug if you need it.\n\n"
812           "Asynchronous activities started by the actor are not migrated automatically, so you have to take care of "
813           "this yourself (only you knows which ones should be migrated). ")
814       .def_property_readonly("name", &Actor::get_cname, "The name of this actor (read-only property).")
815       .def_property_readonly("pid", &Actor::get_pid, "The PID (unique identifier) of this actor (read-only property).")
816       .def_property_readonly("ppid", &Actor::get_ppid,
817                              "The PID (unique identifier) of the actor that created this one (read-only property).")
818       .def_static("by_pid", &Actor::by_pid, py::arg("pid"), "Retrieve an actor by its PID")
819       .def("set_auto_restart", &Actor::set_auto_restart, py::call_guard<py::gil_scoped_release>(),
820            "Specify whether the actor shall restart when its host reboots.")
821       .def("daemonize", &Actor::daemonize, py::call_guard<py::gil_scoped_release>(),
822            "This actor will be automatically terminated when the last non-daemon actor finishes (more info in the C++ "
823            "documentation).")
824       .def("is_daemon", &Actor::is_daemon,
825            "Returns True if that actor is a daemon and will be terminated automatically when the last non-daemon actor "
826            "terminates.")
827       .def("join", py::overload_cast<double>(&Actor::join, py::const_), py::call_guard<py::gil_scoped_release>(),
828            "Wait for the actor to finish (more info in the C++ documentation).", py::arg("timeout") = -1)
829       .def("kill", &Actor::kill, py::call_guard<py::gil_scoped_release>(), "Kill that actor")
830       .def("self", &Actor::self, "Retrieves the current actor.")
831       .def("is_suspended", &Actor::is_suspended, "Returns True if that actor is currently suspended.")
832       .def("suspend", &Actor::suspend, py::call_guard<py::gil_scoped_release>(),
833            "Suspend that actor, that is blocked until resume()ed by another actor.")
834       .def("resume", &Actor::resume, py::call_guard<py::gil_scoped_release>(),
835            "Resume that actor, that was previously suspend()ed.")
836       .def_static("kill_all", &Actor::kill_all, py::call_guard<py::gil_scoped_release>(),
837                   "Kill all actors but the caller.")
838       .def(
839           "__repr__", [](const ActorPtr a) { return "Actor(" + a->get_name() + ")"; },
840           "Textual representation of the Actor");
841
842   /* Enum Class IoOpType */
843   py::enum_<simgrid::s4u::Io::OpType>(m, "IoOpType")
844       .value("READ", simgrid::s4u::Io::OpType::READ)
845       .value("WRITE", simgrid::s4u::Io::OpType::WRITE);
846
847   /* Class Task */
848   py::class_<Task, TaskPtr>(m, "Task", "Task. See the C++ documentation for details.")
849       .def_static(
850           "on_start_cb",
851           [](py::object cb) {
852             cb.inc_ref(); // keep alive after return
853             const py::gil_scoped_release gil_release;
854             Task::on_start_cb([cb_p = cb.ptr()](Task* op) {
855               const py::gil_scoped_acquire py_context; // need a new context for callback
856               py::reinterpret_borrow<py::function>(cb_p)(op);
857             });
858           },
859           "Add a callback called when each task starts.")
860       .def_static(
861           "on_completion_cb",
862           [](py::object cb) {
863             cb.inc_ref(); // keep alive after return
864             const py::gil_scoped_release gil_release;
865             Task::on_completion_cb([cb_p = cb.ptr()](Task* op) {
866               const py::gil_scoped_acquire py_context; // need a new context for callback
867               py::reinterpret_borrow<py::function>(cb_p)(op);
868             });
869           },
870           "Add a callback called when each task ends.")
871       .def_property_readonly("name", &Task::get_name, "The name of this task (read-only).")
872       .def_property_readonly("successors", &Task::get_successors, "The successors of this task (read-only).")
873       .def_property("amount", &Task::get_amount, &Task::set_amount, "The amount of work to do for this task.")
874       .def(
875           "get_count", [](const TaskPtr t) { return t->get_count("instance_0"); },
876           "The execution count of this task instance_0.")
877       .def(
878           "get_count", [](const TaskPtr t, const std::string& instance) { return t->get_count(instance); },
879           "The execution count of this task instance.")
880       .def("enqueue_firings", py::overload_cast<int>(&Task::enqueue_firings), py::call_guard<py::gil_scoped_release>(),
881            py::arg("n"), "Enqueue firings for this task.")
882       .def("add_successor", py::overload_cast<TaskPtr>(&Task::add_successor), py::call_guard<py::gil_scoped_release>(),
883            py::arg("op"), "Add a successor to this task.")
884       .def("remove_successor", py::overload_cast<TaskPtr>(&Task::remove_successor),
885            py::call_guard<py::gil_scoped_release>(), py::arg("op"), "Remove a successor of this task.")
886       .def("remove_all_successors", &Task::remove_all_successors, py::call_guard<py::gil_scoped_release>(),
887            "Remove all successors of this task.")
888       .def("on_this_start_cb", py::overload_cast<const std::function<void(Task*)>&>(&Task::on_this_start_cb),
889            py::arg("func"), "Add a callback called when this task starts.")
890       .def("on_this_completion_cb", py::overload_cast<const std::function<void(Task*)>&>(&Task::on_this_completion_cb),
891            py::arg("func"), "Add a callback called when this task ends.")
892       .def(
893           "__repr__", [](const TaskPtr op) { return "Task(" + op->get_name() + ")"; },
894           "Textual representation of the Task");
895
896   /* Class CommTask */
897   py::class_<CommTask, CommTaskPtr, Task>(m, "CommTask", "Communication Task. See the C++ documentation for details.")
898       .def_static("init", py::overload_cast<const std::string&>(&CommTask::init),
899                   py::call_guard<py::gil_scoped_release>(), py::arg("name"), "CommTask constructor")
900       .def_static("init", py::overload_cast<const std::string&, double, Host*, Host*>(&CommTask::init),
901                   py::call_guard<py::gil_scoped_release>(), py::arg("name"), py::arg("bytes"), py::arg("source"),
902                   py::arg("destination"), "CommTask constructor")
903       .def_property("source", &CommTask::get_source, &CommTask::set_source, "The source of the communication.")
904       .def_property("destination", &CommTask::get_destination, &CommTask::set_destination,
905                     "The destination of the communication.")
906       .def_property("bytes", &CommTask::get_bytes, &CommTask::set_bytes, "The amount of bytes to send.")
907       .def(
908           "__repr__", [](const CommTaskPtr c) { return "CommTask(" + c->get_name() + ")"; },
909           "Textual representation of the CommTask");
910
911   /* Class ExecTask */
912   py::class_<ExecTask, ExecTaskPtr, Task>(m, "ExecTask", "Execution Task. See the C++ documentation for details.")
913       .def_static("init", py::overload_cast<const std::string&>(&ExecTask::init),
914                   py::call_guard<py::gil_scoped_release>(), py::arg("name"), "ExecTask constructor")
915       .def_static("init", py::overload_cast<const std::string&, double, Host*>(&ExecTask::init),
916                   py::call_guard<py::gil_scoped_release>(), py::arg("name"), py::arg("flops"), py::arg("host"),
917                   "CommTask constructor.")
918       .def_property("host", &ExecTask::get_host, &ExecTask::set_host, "The host of the execution.")
919       .def_property("flops", &ExecTask::get_flops, &ExecTask::set_flops, "The amount of flops to execute.")
920       .def(
921           "__repr__", [](const ExecTaskPtr e) { return "ExecTask(" + e->get_name() + ")"; },
922           "Textual representation of the ExecTask");
923
924   /* Class IoTask */
925   py::class_<IoTask, IoTaskPtr, Task>(m, "IoTask", "IO Task. See the C++ documentation for details.")
926       .def_static("init", py::overload_cast<const std::string&>(&IoTask::init),
927                   py::call_guard<py::gil_scoped_release>(), py::arg("name"), "IoTask constructor")
928       .def_static("init", py::overload_cast<const std::string&, double, Disk*, Io::OpType>(&IoTask::init),
929                   py::call_guard<py::gil_scoped_release>(), py::arg("name"), py::arg("bytes"), py::arg("disk"),
930                   py::arg("type"), "IoTask constructor.")
931       .def_property("disk", &IoTask::get_disk, &IoTask::set_disk, "The disk of the IO.")
932       .def_property("bytes", &IoTask::get_bytes, &IoTask::set_bytes, "The amount of bytes to process.")
933       .def_property("type", &IoTask::get_bytes, &IoTask::set_bytes, "The type of IO.")
934       .def(
935           "__repr__", [](const IoTaskPtr io) { return "IoTask(" + io->get_name() + ")"; },
936           "Textual representation of the IoTask");
937
938   /* Class ActivitySet */
939   py::class_<ActivitySet, ActivitySetPtr>(m, "ActivitySet", "ActivitySet. See the C++ documentation for details.")
940       .def(py::init([](std::vector<simgrid::s4u::ActivityPtr> activities) {
941              auto* ret = new ActivitySet();
942              for (auto a : activities)
943                ret->push(a);
944              return ActivitySetPtr(ret);
945            }),
946            "The constructor should take the parameters from the command line, as is ")
947       .def(py::init([]() { return ActivitySetPtr(new ActivitySet()); }),
948            "The constructor should take the parameters from the command line, as is ")
949
950       .def("push", &ActivitySet::push, py::call_guard<py::gil_scoped_release>(), py::arg("activity"),
951            "Add an activity to the set")
952       .def("erase", &ActivitySet::erase, py::call_guard<py::gil_scoped_release>(), py::arg("activity"),
953            "Remove that activity from the set")
954       .def_property_readonly("size", &ActivitySet::size, "Count of activities in the set")
955       .def("empty", &ActivitySet::empty, "Returns whether the set is empty")
956       .def("has_failed_activities", &ActivitySet::has_failed_activities,
957            "Returns whether there is any failed activities")
958       .def("get_failed_activity", &ActivitySet::get_failed_activity, "Returns a failed activity from the set, or None")
959
960       .def("wait_all_for", &ActivitySet::wait_all_for, py::call_guard<py::gil_scoped_release>(), py::arg("timeout"),
961            "Wait for the completion of all activities in the set, but not longer than the provided timeout")
962       .def("wait_all", &ActivitySet::wait_all, py::call_guard<py::gil_scoped_release>(),
963            "Wait for the completion of all activities in the set, endlessly")
964       .def("test_any", &ActivitySet::test_any, py::call_guard<py::gil_scoped_release>(),
965            "Returns the first terminated activity if any, or None if no activity is terminated")
966       .def("wait_any_for", &ActivitySet::wait_any_for, py::call_guard<py::gil_scoped_release>(), py::arg("timeout"),
967            "Wait for the completion of one activity in the set, but not longer than the provided timeout")
968       .def("wait_any", &ActivitySet::wait_any, py::call_guard<py::gil_scoped_release>(),
969            "Wait for the completion of one activity in the set, endlessly")
970
971       .def(
972           "__repr__", [](const ActivitySetPtr as) { return "ActivitySet([...])"; },
973           "Textual representation of the ActivitySet");
974 }