X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b2852b7c61948f495d7437ffaa7fd9aced12849c..8d9c110f5bf839dcb7426f7750c09b3ff196bdf3:/docs/source/app_s4u.rst diff --git a/docs/source/app_s4u.rst b/docs/source/app_s4u.rst index 8695720ee5..f12436c7f7 100644 --- a/docs/source/app_s4u.rst +++ b/docs/source/app_s4u.rst @@ -82,6 +82,7 @@ provides many helper functions to simplify the code of actors. - :ref:`class Comm `: Communication activity, started on Mailboxes and consuming links. - :ref:`class Exec `: Computation activity, started on Host and consuming CPU resources. - :ref:`class Io `: I/O activity, started on and consuming disks. + - :ref:`class ActivtySet `: Bag of activities, to wait for any of the set, or all of them. - **Synchronization Objects**: Classical IPC that actors can use @@ -165,29 +166,11 @@ Every kind of activity can be asynchronous. :cpp:func:`s4u::Disk::write_async() `; and :ref:`s4u::ExecPtr ` are created with :cpp:func:`s4u::Host::exec_async() `. -In the future, it will become possible to have asynchronous IPC such as asynchronous mutex lock requests. - -The following example shows how to have several concurrent -communications ongoing. First, you have to declare a vector in which -we will store the ongoing communications. It is also useful to have a -vector of mailboxes. - -.. literalinclude:: ../../examples/cpp/comm-waitall/s4u-comm-waitall.cpp - :language: c++ - :start-after: init-begin - :end-before: init-end - :dedent: 2 - -Then, you start all the communications that should occur concurrently with -:cpp:func:`s4u::Mailbox::put_async() `. -Finally, the actor waits for the completion of all of them at once -with :cpp:func:`s4u::Comm::wait_all() `. - -.. literalinclude:: ../../examples/cpp/comm-waitall/s4u-comm-waitall.cpp - :language: c++ - :start-after: put-begin - :end-before: put-end - :dedent: 2 +In the future, it will become possible to have asynchronous IPC such as asynchronous mutex lock requests (it is already possible +internally, but the interface is not exposed in S4U yet). + +If you want for the completion of any activity in a given set, to react to the earlier occuring completion, then you need an +:ref:`activity set `. Please refer to the :ref:`relevant examples ` for more information. ===================== Activities Life Cycle @@ -279,8 +262,8 @@ on the data you want to get from the mailbox. To model such settings in SimGrid, you'd have one mailbox per potential topic, and subscribe to each topic individually with a :cpp:func:`get_async() ` on each mailbox. -Then, use :cpp:func:`Comm::wait_any() ` -to get the first message on any of the mailboxes you are subscribed to. +Then, use an :ref:`class ActivtySet ` to get the first +message on any of the mailboxes you are subscribed to. The mailboxes are not located on the network, and you can access them without any latency. The network delays are only related to the @@ -2293,12 +2276,7 @@ Life cycle .. doxygenfunction:: simgrid::s4u::Comm::cancel .. doxygenfunction:: simgrid::s4u::Comm::start .. doxygenfunction:: simgrid::s4u::Comm::test - .. doxygenfunction:: simgrid::s4u::Comm::test_any(const std::vector< CommPtr >& comms) .. doxygenfunction:: simgrid::s4u::Comm::wait - .. doxygenfunction:: simgrid::s4u::Comm::wait_all(const std::vector< CommPtr >& comms) - .. doxygenfunction:: simgrid::s4u::Comm::wait_all_for(const std::vector< CommPtr >& comms, double timeout) - .. doxygenfunction:: simgrid::s4u::Comm::wait_any(const std::vector< CommPtr >& comms) - .. doxygenfunction:: simgrid::s4u::Comm::wait_any_for(const std::vector< CommPtr >& comms, double timeout) .. doxygenfunction:: simgrid::s4u::Comm::wait_for .. doxygenfunction:: simgrid::s4u::Comm::wait_until @@ -2307,21 +2285,14 @@ Life cycle .. automethod:: simgrid.Comm.cancel .. automethod:: simgrid.Comm.start .. automethod:: simgrid.Comm.test - .. automethod:: simgrid.Comm.test_any .. automethod:: simgrid.Comm.wait .. automethod:: simgrid.Comm.wait_for - .. automethod:: simgrid.Comm.wait_all - .. automethod:: simgrid.Comm.wait_all_for - .. automethod:: simgrid.Comm.wait_any - .. automethod:: simgrid.Comm.wait_any_for .. automethod:: simgrid.Comm.wait_until .. group-tab:: C .. doxygenfunction:: sg_comm_test .. doxygenfunction:: sg_comm_wait - .. doxygenfunction:: sg_comm_wait_all - .. doxygenfunction:: sg_comm_wait_any Suspending and resuming a communication --------------------------------------- @@ -2373,6 +2344,11 @@ Signals .. autoclass:: simgrid.Exec + .. group-tab:: C + + .. doxygentypedef:: sg_exec_t + .. doxygentypedef:: const_sg_exec_t + Basic management ---------------- @@ -2398,9 +2374,6 @@ Basic management #include - .. doxygentypedef:: sg_exec_t - .. doxygentypedef:: const_sg_exec_t - Querying info ------------- @@ -2445,9 +2418,6 @@ Life cycle .. doxygenfunction:: simgrid::s4u::Exec::start .. doxygenfunction:: simgrid::s4u::Exec::test .. doxygenfunction:: simgrid::s4u::Exec::wait - .. doxygenfunction:: simgrid::s4u::Exec::wait_any(const std::vector< ExecPtr >& execs) - .. doxygenfunction:: simgrid::s4u::Exec::wait_any_for(const std::vector< ExecPtr >& execs, double timeout) - .. doxygenfunction:: simgrid::s4u::Exec::wait_for .. group-tab:: Python @@ -2462,9 +2432,6 @@ Life cycle .. doxygenfunction:: sg_exec_cancel(sg_exec_t exec); .. doxygenfunction:: sg_exec_test(sg_exec_t exec); .. doxygenfunction:: sg_exec_wait(sg_exec_t exec); - .. doxygenfunction:: sg_exec_wait_for(sg_exec_t exec, double timeout); - .. doxygenfunction:: sg_exec_wait_any_for(sg_exec_t* execs, size_t count, double timeout); - .. doxygenfunction:: sg_exec_wait_any(sg_exec_t* execs, size_t count); Suspending and resuming an execution ------------------------------------ @@ -2549,16 +2516,11 @@ Life cycle .. doxygenfunction:: simgrid::s4u::Io::start .. doxygenfunction:: simgrid::s4u::Io::test .. doxygenfunction:: simgrid::s4u::Io::wait - .. doxygenfunction:: simgrid::s4u::Io::wait_for - .. doxygenfunction:: simgrid::s4u::Io::wait_any(const std::vector &ios) - .. doxygenfunction:: simgrid::s4u::Io::wait_any_for(const std::vector &ios, double timeout) .. group-tab:: Python .. automethod:: simgrid.Io.test .. automethod:: simgrid.Io.wait - .. automethod:: simgrid.Io.wait_any_for - .. automethod:: simgrid.Io.wait_any Signals ------- @@ -2576,6 +2538,120 @@ Signals .. doxygenfunction:: simgrid::s4u::Io::on_resumed_cb .. doxygenfunction:: simgrid::s4u::Io::on_veto_cb +.. _API_s4u_ActivitySet: + +==================== +⁣  class ActivitySet +==================== + +.. tabs:: + + .. group-tab:: C++ + + .. doxygenclass:: simgrid::s4u::ActivitySet + + .. group-tab:: Python + + .. autoclass:: simgrid.ActivitySet + + .. group-tab:: C + + .. doxygentypedef:: sg_activityset_t + .. doxygentypedef:: const_sg_activityset_t + +Basic management +---------------- + +.. tabs:: + + .. group-tab:: C++ + + .. code-block:: C++ + + #include + + .. doxygentypedef:: ActivitySetPtr + + .. group-tab:: Python + + .. code:: Python + + from simgrid import ActivitySet + + .. group-tab:: C + + .. code-block:: C + + #include + + .. doxygenfunction:: sg_activity_set_init + .. doxygenfunction:: sg_activity_set_delete + +Managing activities +------------------- + +.. tabs:: + + .. group-tab:: C++ + + .. doxygenfunction:: simgrid::s4u::ActivitySet::push + .. doxygenfunction:: simgrid::s4u::ActivitySet::erase + .. doxygenfunction:: simgrid::s4u::ActivitySet::empty + .. doxygenfunction:: simgrid::s4u::ActivitySet::size + + .. group-tab:: Python + + .. automethod:: simgrid.ActivitySet.push() + .. automethod:: simgrid.ActivitySet.erase() + .. automethod:: simgrid.ActivitySet.empty() + .. automethod:: simgrid.ActivitySet.size() + + .. group-tab:: c + + .. doxygenfunction:: sg_activity_set_push + .. doxygenfunction:: sg_activity_set_erase + .. doxygenfunction:: sg_activity_set_empty + .. doxygenfunction:: sg_activity_set_size + +Interacting with the set +------------------------ + +.. tabs:: + + .. group-tab:: C++ + + .. doxygenfunction:: simgrid::s4u::ActivitySet::test_any + .. doxygenfunction:: simgrid::s4u::ActivitySet::wait_all + .. doxygenfunction:: simgrid::s4u::ActivitySet::wait_all_for + .. doxygenfunction:: simgrid::s4u::ActivitySet::wait_any + .. doxygenfunction:: simgrid::s4u::ActivitySet::wait_any_for + + .. group-tab:: Python + + .. automethod:: simgrid.ActivitySet.test_any() + .. automethod:: simgrid.ActivitySet.wait_all() + .. automethod:: simgrid.ActivitySet.wait_all_for() + .. automethod:: simgrid.ActivitySet.wait_any() + .. automethod:: simgrid.ActivitySet.wait_any_for() + + .. group-tab:: c + + .. doxygenfunction:: sg_activity_set_test_any + .. doxygenfunction:: sg_activity_set_wait_all + .. doxygenfunction:: sg_activity_set_wait_all_for + .. doxygenfunction:: sg_activity_set_wait_any + .. doxygenfunction:: sg_activity_set_wait_any_for + .. doxygenfunction:: sg_activity_unref + +Dealing with failed activities +------------------------------ + +.. tabs:: + + .. group-tab:: C++ + + .. doxygenfunction:: simgrid::s4u::ActivitySet::get_failed_activity() + .. doxygenfunction:: simgrid::s4u::ActivitySet::has_failed_activities() .. _API_s4u_Tasks: @@ -2811,7 +2887,7 @@ Basic management .. doxygentypedef:: MutexPtr - .. doxygenfunction:: simgrid::s4u::Mutex::create() + .. doxygenfunction:: simgrid::s4u::Mutex::create .. group-tab:: Python