Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[java] Catch StopRequest during VM migration.
[simgrid.git] / src / bindings / java / JavaContext.cpp
1 /* Context switching within the JVM.                                        */
2
3 /* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "JavaContext.hpp"
9 #include "jxbt_utilities.hpp"
10 #include "simgrid/Exception.hpp"
11 #include "src/simix/smx_private.hpp"
12
13 #include <functional>
14 #include <utility>
15
16 extern JavaVM* __java_vm;
17
18 XBT_LOG_NEW_DEFAULT_CATEGORY(java, "MSG for Java(TM)");
19
20 namespace simgrid {
21 namespace kernel {
22 namespace context {
23
24 ContextFactory* java_factory()
25 {
26   XBT_INFO("Using regular java threads.");
27   return new JavaContextFactory();
28 }
29
30 JavaContextFactory::JavaContextFactory() : ContextFactory()
31 {
32   xbt_binary_name = xbt_strdup("java"); // Used by the backtrace displayer
33 }
34
35 JavaContextFactory::~JavaContextFactory()=default;
36
37 JavaContext* JavaContextFactory::create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup_fun,
38                                                 smx_actor_t actor)
39 {
40   return this->new_context<JavaContext>(std::move(code), cleanup_fun, actor);
41 }
42
43 void JavaContextFactory::run_all()
44 {
45   SerialThreadContext::run_all();
46 }
47
48 JavaContext::JavaContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process)
49     : SerialThreadContext(std::move(code), cleanup_func, process, false /* not maestro */)
50 {
51   /* ThreadContext already does all we need */
52 }
53
54 void JavaContext::start_hook()
55 {
56   Context::set_current(this); // We need to attach it also for maestro, in contrary to our ancestor
57
58   //Attach the thread to the JVM
59   JNIEnv *env;
60   XBT_ATTRIB_UNUSED jint error = __java_vm->AttachCurrentThread((void**)&env, nullptr);
61   xbt_assert((error == JNI_OK), "The thread could not be attached to the JVM");
62   this->jenv_ = env;
63 }
64
65 void JavaContext::stop_hook()
66 {
67     JNIEnv* env = this->jenv_;
68     env->DeleteGlobalRef(this->jprocess_);
69     XBT_ATTRIB_UNUSED jint error = __java_vm->DetachCurrentThread();
70     if (error != JNI_OK) {
71       /* This is probably a Java thread, ie an actor not created from the XML (and thus from the C++),
72        * but from Java with something like new Process().start().
73        *
74        * We should not even try to detach such threads. Instead, we throw a Java exception that will raise up
75        * until run_jprocess(), IIUC.
76        */
77       jxbt_throw_by_name(env, "org/simgrid/msg/ProcessKilledError", "Process killed");
78       XBT_DEBUG("Cannot detach the current thread");
79     }
80 }
81
82 }}} // namespace simgrid::kernel::context