X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7f4f03348bd07609e258eb3b545bdafc2c881847..b8df87e176f27b25534f27d7e240defa32ca35bc:/src/bindings/java/JavaContext.hpp diff --git a/src/bindings/java/JavaContext.hpp b/src/bindings/java/JavaContext.hpp index dfbf821cdb..47fe472983 100644 --- a/src/bindings/java/JavaContext.hpp +++ b/src/bindings/java/JavaContext.hpp @@ -1,5 +1,6 @@ -/* Copyright (c) 2009-2010, 2012-2014. The SimGrid Team. - * All rights reserved. */ +/* Context switching within the JVM. */ + +/* 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. */ @@ -8,62 +9,50 @@ #define SIMGRID_JAVA_JAVA_CONTEXT_HPP #include - #include -#include -#include -#include - +#include "simgrid/simix.h" +#include "src/kernel/context/ContextThread.hpp" #include "src/simix/smx_private.hpp" +#include "xbt/xbt_os_thread.h" -#include "jmsg.h" -#include "jmsg_process.h" +#include "jmsg.hpp" namespace simgrid { -namespace java { +namespace kernel { +namespace context { class JavaContext; class JavacontextFactory; -class JavaContext : public simgrid::simix::Context { +class JavaContext : public simgrid::kernel::context::SerialThreadContext { public: // The java process instance bound with the msg process structure: - jobject jprocess = nullptr; + jobject jprocess_ = nullptr; // JNI interface pointer associated to this thread: - JNIEnv *jenv = nullptr; - xbt_os_thread_t thread = nullptr; - // Sempahore used to schedule/yield the process: - xbt_os_sem_t begin = nullptr; - // Semaphore used to schedule/unschedule the process: - xbt_os_sem_t end = nullptr; -public: + JNIEnv* jenv_ = nullptr; + friend class JavaContextFactory; JavaContext(std::function code, void_pfn_smxprocess_t cleanup_func, - smx_process_t process); - ~JavaContext() override; + smx_actor_t process); + + void start_hook() override; void stop() override; - void suspend() override; - void resume(); -private: - static void* wrapper(void *data); }; -class JavaContextFactory : public simgrid::simix::ContextFactory { +class JavaContextFactory : public simgrid::kernel::context::ContextFactory { public: JavaContextFactory(); ~JavaContextFactory() override; - JavaContext* self() override; JavaContext* create_context(std::function code, - void_pfn_smxprocess_t, smx_process_t process) override; + void_pfn_smxprocess_t, smx_actor_t process) override; void run_all() override; }; -XBT_PRIVATE simgrid::simix::ContextFactory* java_factory(); +XBT_PRIVATE simgrid::kernel::context::ContextFactory* java_factory(); XBT_PRIVATE void java_main_jprocess(jobject process); -} -} +}}} // namespace simgrid::kernel::context #endif /* !_XBT_CONTEXT_JAVA_H */