Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetic rename.
[simgrid.git] / src / kernel / context / Context.cpp
1 /* Copyright (c) 2007-2018. 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 "mc/mc.h"
7
8 #include "src/kernel/context/Context.hpp"
9 #include "src/simix/smx_private.hpp"
10
11 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context);
12
13 /**
14  * @brief creates a new context for a user level process
15  * @param code a main function
16  * @param cleanup_func the function to call when the context stops
17  * @param simix_process
18  */
19 smx_context_t SIMIX_context_new(
20   std::function<void()> code,
21   void_pfn_smxprocess_t cleanup_func,
22   smx_actor_t simix_process)
23 {
24   xbt_assert(simix_global, "simix is not initialized, please call MSG_init first");
25   return simix_global->context_factory->create_context(
26     std::move(code), cleanup_func, simix_process);
27 }
28
29 namespace simgrid {
30 namespace kernel {
31 namespace context {
32
33 ContextFactoryInitializer factory_initializer = nullptr;
34
35 ContextFactory::~ContextFactory() = default;
36
37 Context* ContextFactory::self()
38 {
39   return SIMIX_context_get_current();
40 }
41
42 void ContextFactory::declare_context(void* context, std::size_t size)
43 {
44 #if SIMGRID_HAVE_MC
45   /* Store the address of the stack in heap to compare it apart of heap comparison */
46   if(MC_is_active())
47     MC_ignore_heap(context, size);
48 #endif
49 }
50
51 Context* ContextFactory::attach(void_pfn_smxprocess_t cleanup_func, smx_actor_t process)
52 {
53   xbt_die("Cannot attach with this ContextFactory.\n"
54     "Try using --cfg=contexts/factory:thread instead.\n");
55 }
56
57 Context* ContextFactory::create_maestro(std::function<void()> code, smx_actor_t process)
58 {
59   xbt_die("Cannot create_maestro with this ContextFactory.\n"
60     "Try using --cfg=contexts/factory:thread instead.\n");
61 }
62
63 Context::Context(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t actor)
64     : code_(std::move(code)), actor_(actor)
65 {
66   /* If the user provided a function for the process then use it.
67      Otherwise, it is the context for maestro and we should set it as the
68      current context */
69   if (has_code())
70     this->cleanup_func_ = cleanup_func;
71   else
72     SIMIX_context_set_current(this);
73 }
74
75 Context::~Context() = default;
76
77 void Context::stop()
78 {
79   if (this->cleanup_func_)
80     this->cleanup_func_(this->actor_);
81   this->actor_->suspended_ = 0;
82
83   this->iwannadie = false;
84   simgrid::simix::simcall([this] { SIMIX_process_cleanup(this->actor_); });
85   this->iwannadie = true;
86 }
87
88 AttachContext::~AttachContext() = default;
89
90 }}}
91
92 /** @brief Executes all the processes to run (in parallel if possible). */
93 void SIMIX_context_runall()
94 {
95   simix_global->context_factory->run_all();
96 }
97
98 /** @brief returns the current running context */
99 smx_context_t SIMIX_context_self()
100 {
101   if (simix_global && simix_global->context_factory)
102     return simix_global->context_factory->self();
103   else
104     return nullptr;
105 }
106