Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into actor-yield
[simgrid.git] / src / simix / smx_private.hpp
1 /* Copyright (c) 2007-2017. 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 #ifndef SIMIX_PRIVATE_HPP
7 #define SIMIX_PRIVATE_HPP
8
9 #include "simgrid/s4u/Actor.hpp"
10 #include "src/kernel/context/Context.hpp"
11 #include <csignal>
12
13 #include <map>
14 #include <vector>
15
16 /********************************** Simix Global ******************************/
17
18 namespace simgrid {
19 namespace simix {
20
21 class Global {
22   friend bool simgrid::s4u::this_actor::isMaestro();
23
24 public:
25   smx_context_factory_t context_factory = nullptr;
26   std::vector<smx_actor_t> process_to_run;
27   std::vector<smx_actor_t> process_that_ran;
28   std::map<aid_t, smx_actor_t> process_list;
29 #if SIMGRID_HAVE_MC
30   /* MCer cannot read the std::map above in the remote process, so we copy the info it needs in a dynar.
31    * FIXME: This is supposed to be a temporary hack.
32    * A better solution would be to change the split between MCer and MCed, where the responsibility
33    *   to compute the list of the enabled transitions goes to the MCed.
34    * That way, the MCer would not need to have the list of actors on its side.
35    * These info could be published by the MCed to the MCer in a way inspired of vd.so
36    */
37   xbt_dynar_t actors_vector = xbt_dynar_new(sizeof(smx_actor_t), nullptr);
38 #endif
39   xbt_swag_t process_to_destroy = nullptr;
40   smx_actor_t maestro_process   = nullptr;
41
42   // Maps function names to actor code:
43   std::unordered_map<std::string, simgrid::simix::ActorCodeFactory> registered_functions;
44
45   // This might be used when no corresponding function name is registered:
46   simgrid::simix::ActorCodeFactory default_function;
47
48   smx_creation_func_t create_process_function = nullptr;
49   void_pfn_smxprocess_t kill_process_function = nullptr;
50   /** Callback used when killing a SMX_process */
51   void_pfn_smxprocess_t cleanup_process_function = nullptr;
52   xbt_os_mutex_t mutex                           = nullptr;
53
54   std::vector<simgrid::xbt::Task<void()>> tasks;
55   std::vector<simgrid::xbt::Task<void()>> tasksTemp;
56
57   std::vector<simgrid::simix::ActorImpl*> daemons;
58 };
59 }
60 }
61
62 extern "C" {
63
64 XBT_PUBLIC_DATA(std::unique_ptr<simgrid::simix::Global>) simix_global;
65
66 XBT_PUBLIC(void) SIMIX_clean();
67
68 /******************************** Exceptions *********************************/
69 /** @brief Ask to the provided simix process to raise the provided exception */
70 #define SMX_EXCEPTION(issuer, cat, val, msg)                                                                           \
71   if (1) {                                                                                                             \
72     smx_actor_t _smx_throw_issuer = (issuer); /* evaluate only once */                                                 \
73     xbt_ex e(XBT_THROW_POINT, msg);                                                                                    \
74     e.category                   = cat;                                                                                \
75     e.value                      = val;                                                                                \
76     _smx_throw_issuer->exception = std::make_exception_ptr(e);                                                         \
77   } else                                                                                                               \
78   ((void)0)
79 }
80
81 #endif