X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e3adb6026f929615076da0e5a32dc35a02db573..3d2bffb7542628af525b2507d2a5035ead215ff2:/src/kernel/context/ContextThread.hpp diff --git a/src/kernel/context/ContextThread.hpp b/src/kernel/context/ContextThread.hpp index 77923bf92f..22e381484c 100644 --- a/src/kernel/context/ContextThread.hpp +++ b/src/kernel/context/ContextThread.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2009-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,55 +8,102 @@ #ifndef SIMGRID_SIMIX_THREAD_CONTEXT_HPP #define SIMGRID_SIMIX_THREAD_CONTEXT_HPP -#include +#include "simgrid/simix.hpp" +#include "src/kernel/context/Context.hpp" +#include "src/xbt/OsSemaphore.hpp" +#include namespace simgrid { -namespace simix { +namespace kernel { +namespace context { -class ThreadContext; -class ThreadContextFactory; - -class ThreadContext : public AttachContext { +class XBT_PUBLIC ThreadContext : public AttachContext { public: - friend ThreadContextFactory; - ThreadContext(std::function code, - void_pfn_smxprocess_t cleanup_func, - smx_process_t process, bool maestro =false); + ThreadContext(std::function code, smx_actor_t actor, bool maestro); + ThreadContext(const ThreadContext&) = delete; + ThreadContext& operator=(const ThreadContext&) = delete; ~ThreadContext() override; void stop() override; void suspend() override; void attach_start() override; void attach_stop() override; + + bool is_maestro() const { return is_maestro_; } + void release(); // unblock context's start() + void wait(); // wait for context's yield() + private: /** A portable thread */ - xbt_os_thread_t thread_ = nullptr; - /** Semaphore used to schedule/yield the process */ - xbt_os_sem_t begin_ = nullptr; - /** Semaphore used to schedule/unschedule */ - xbt_os_sem_t end_ = nullptr; -private: - static void* wrapper(void *param); - static void* maestro_wrapper(void *param); + std::thread* thread_ = nullptr; + /** Semaphore used to schedule/yield the actor (not needed when the maestro is in main, but harmless then) */ + xbt::OsSemaphore begin_{0}; + /** Semaphore used to schedule/unschedule (not needed when the maestro is in main, but harmless then) */ + xbt::OsSemaphore end_{0}; + bool is_maestro_; + + void start(); // match a call to release() + void yield(); // match a call to yield() + virtual void start_hook() { /* empty placeholder, called after start(). Used in parallel mode and Java */} + virtual void yield_hook() { /* empty placeholder, called before yield(). Used in parallel mode */} + virtual void stop_hook() { /* empty placeholder, called at stop(). Used in Java */} + + static void wrapper(ThreadContext* context); +}; + +class XBT_PUBLIC SerialThreadContext : public ThreadContext { +public: + SerialThreadContext(std::function code, smx_actor_t actor, bool maestro) + : ThreadContext(std::move(code), actor, maestro) + { + } + + static void run_all(); +}; + +class ParallelThreadContext : public ThreadContext { public: - void start(); + ParallelThreadContext(std::function code, smx_actor_t actor, bool maestro) + : ThreadContext(std::move(code), actor, maestro) + { + } + + static void initialize(); + static void finalize(); + static void run_all(); + +private: + static xbt::OsSemaphore* thread_sem_; + + void start_hook() override; + void yield_hook() override; }; class ThreadContextFactory : public ContextFactory { public: ThreadContextFactory(); + ThreadContextFactory(const ThreadContextFactory&) = delete; + ThreadContextFactory& operator=(const ThreadContextFactory&) = delete; ~ThreadContextFactory() override; - ThreadContext* create_context(std::function code, - void_pfn_smxprocess_t cleanup_func, smx_process_t process) override; + ThreadContext* create_context(std::function code, smx_actor_t actor) override + { + bool maestro = not code; + return create_context(std::move(code), actor, maestro); + } void run_all() override; - ThreadContext* self() override; // Optional methods: - ThreadContext* attach(void_pfn_smxprocess_t cleanup_func, smx_process_t process) override; - ThreadContext* create_maestro(std::function code, smx_process_t process) override; -}; + ThreadContext* attach(smx_actor_t actor) override { return create_context(std::function(), actor, false); } + ThreadContext* create_maestro(std::function code, smx_actor_t actor) override + { + return create_context(std::move(code), actor, true); + } -} -} +private: + bool parallel_; + + ThreadContext* create_context(std::function code, smx_actor_t actor, bool maestro); +}; +}}} // namespace -#endif \ No newline at end of file +#endif