Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
objectify simix timers.
[simgrid.git] / include / simgrid / simix.hpp
1 /* Copyright (c) 2007-2019. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_SIMIX_HPP
8 #define SIMGRID_SIMIX_HPP
9
10 #include <simgrid/simix.h>
11 #include <xbt/functional.hpp>
12 #include <xbt/future.hpp>
13 #include <xbt/signal.hpp>
14
15 #include <boost/heap/fibonacci_heap.hpp>
16 #include <string>
17 #include <unordered_map>
18
19 XBT_PUBLIC void simcall_run_kernel(std::function<void()> const& code);
20
21 /** Execute some code in the kernel and block
22  *
23  * run_blocking() is a generic blocking simcall. It is given a callback
24  * which is executed immediately in the SimGrid kernel. The callback is
25  * responsible for setting the suitable logic for waking up the process
26  * when needed.
27  *
28  * @ref simix::kernelSync() is a higher level wrapper for this.
29  */
30 XBT_PUBLIC void simcall_run_blocking(std::function<void()> const& code);
31
32 template<class F> inline
33 void simcall_run_kernel(F& f)
34 {
35   simcall_run_kernel(std::function<void()>(std::ref(f)));
36 }
37 template<class F> inline
38 void simcall_run_blocking(F& f)
39 {
40   simcall_run_blocking(std::function<void()>(std::ref(f)));
41 }
42
43 namespace simgrid {
44 namespace simix {
45
46 /** Execute some code in the kernel/maestro
47  *
48  *  This can be used to enforce mutual exclusion with other simcall.
49  *  More importantly, this enforces a deterministic/reproducible ordering
50  *  of the operation with respect to other simcalls.
51  */
52 template <class F> typename std::result_of<F()>::type simcall(F&& code)
53 {
54   // If we are in the maestro, we take the fast path and execute the
55   // code directly without simcall mashalling/unmarshalling/dispatch:
56   if (SIMIX_is_maestro())
57     return std::forward<F>(code)();
58
59   // If we are in the application, pass the code to the maestro which
60   // executes it for us and reports the result. We use a std::future which
61   // conveniently handles the success/failure value for us.
62   typedef typename std::result_of<F()>::type R;
63   simgrid::xbt::Result<R> result;
64   simcall_run_kernel([&result, &code] { simgrid::xbt::fulfill_promise(result, std::forward<F>(code)); });
65   return result.get();
66 }
67
68 XBT_ATTRIB_DEPRECATED_v325("Please manifest if you actually need this function.")
69     XBT_PUBLIC const std::vector<smx_actor_t>& process_get_runnable();
70
71 // What's executed as SIMIX actor code:
72 typedef std::function<void()> ActorCode;
73
74 // Create an ActorCode based on a std::string
75 typedef std::function<ActorCode(std::vector<std::string> args)> ActorCodeFactory;
76
77 XBT_PUBLIC void register_function(const std::string& name, ActorCodeFactory factory);
78
79 typedef std::pair<double, Timer*> TimerQelt;
80 static boost::heap::fibonacci_heap<TimerQelt, boost::heap::compare<xbt::HeapComparator<TimerQelt>>> simix_timers;
81
82 /** @brief Timer datatype */
83 class Timer {
84   double date = 0.0;
85
86 public:
87   decltype(simix_timers)::handle_type handle_;
88
89   Timer(double date, simgrid::xbt::Task<void()> callback) : date(date), callback(std::move(callback)) {}
90
91   simgrid::xbt::Task<void()> callback;
92   double get_date() { return date; }
93   void remove();
94
95   template <class F> static inline Timer* set(double date, F callback)
96   {
97     return set(date, simgrid::xbt::Task<void()>(std::move(callback)));
98   }
99
100   template <class R, class T> static inline Timer* set(double date, R (*callback)(T*), T* arg)
101   {
102     return set(date, [callback, arg]() { callback(arg); });
103   }
104
105   static Timer* set(double date, void (*callback)(void*), void* arg);
106   static Timer* set(double date, simgrid::xbt::Task<void()> callback);
107   static double next() { return simix_timers.empty() ? -1.0 : simix_timers.top().first; }
108 };
109
110 } // namespace simix
111 } // namespace simgrid
112
113 XBT_PUBLIC smx_actor_t simcall_process_create(std::string name, simgrid::simix::ActorCode code, void* data,
114                                               sg_host_t host, std::unordered_map<std::string, std::string>* properties);
115
116 XBT_PUBLIC smx_timer_t SIMIX_timer_set(double date, simgrid::xbt::Task<void()> callback);
117
118
119 #endif