X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e41d2dbe8c7406672257c3d37a2350882a380150..0c87bdf6f8519e321f3a18661cf624cc635e2040:/src/bindings/java/JavaContext.cpp diff --git a/src/bindings/java/JavaContext.cpp b/src/bindings/java/JavaContext.cpp index c796b18c0d..82de71b095 100644 --- a/src/bindings/java/JavaContext.cpp +++ b/src/bindings/java/JavaContext.cpp @@ -1,19 +1,19 @@ /* Context switching within the JVM. */ -/* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2018. 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. */ #include "JavaContext.hpp" -#include "jxbt_utilities.h" -#include "src/simix/smx_private.h" -#include "xbt/ex.hpp" +#include "jxbt_utilities.hpp" +#include "simgrid/Exception.hpp" +#include "src/simix/smx_private.hpp" #include #include -extern "C" JavaVM* __java_vm; +extern JavaVM* __java_vm; XBT_LOG_NEW_DEFAULT_CATEGORY(java, "MSG for Java(TM)"); @@ -38,17 +38,16 @@ JavaContext* JavaContextFactory::self() return static_cast(xbt_os_thread_get_extra_data()); } -JavaContext* JavaContextFactory::create_context( - std::function code, - void_pfn_smxprocess_t cleanup, smx_actor_t process) +JavaContext* JavaContextFactory::create_context(std::function code, void_pfn_smxprocess_t cleanup_fun, + smx_actor_t actor) { - return this->new_context(std::move(code), cleanup, process); + return this->new_context(std::move(code), cleanup_fun, actor); } void JavaContextFactory::run_all() { - for (smx_actor_t process : simgrid::simix::process_get_runnable()) { - static_cast(process->context)->resume(); + for (smx_actor_t const& process : simgrid::simix::process_get_runnable()) { + static_cast(process->context_)->resume(); } } @@ -57,31 +56,13 @@ JavaContext::JavaContext(std::function code, smx_actor_t process) : Context(std::move(code), cleanup_func, process) { - static int thread_amount=0; - thread_amount++; - - /* If the user provided a function for the process then use it otherwise is the context for maestro */ + /* If the user provided a function for the process then use it. Otherwise is the context for maestro */ if (has_code()) { - this->jprocess = nullptr; this->begin = xbt_os_sem_init(0); this->end = xbt_os_sem_init(0); - try { - this->thread = xbt_os_thread_create( - nullptr, JavaContext::wrapper, this, nullptr); - } - catch (xbt_ex& ex) { - char* str = bprintf( - "Failed to create context #%d. You may want to switch to Java coroutines to increase your limits (error: %s)." - "See the Install section of simgrid-java documentation (in doc/install.html) for more on coroutines.", - thread_amount, ex.what()); - xbt_ex new_exception(XBT_THROW_POINT, str); - new_exception.category = ex.category; - new_exception.value = ex.value; - std::throw_with_nested(std::move(new_exception)); - } + this->thread = xbt_os_thread_create(nullptr, JavaContext::wrapper, this, nullptr); } else { - this->thread = nullptr; xbt_os_thread_set_extra_data(this); } } @@ -130,7 +111,7 @@ void JavaContext::stop() // (as the ones created for the VM migration). The Java exception will not be catched anywhere. // Bad things happen currently if these actors get killed, unfortunately. jxbt_throw_by_name(env, "org/simgrid/msg/ProcessKilledError", - std::string("Process ") + this->process()->cname() + " killed from file JavaContext.cpp"); + std::string("Process ") + this->process()->get_cname() + " killed from file JavaContext.cpp"); // (remember that throwing a java exception from C does not break the C execution path. // Instead, it marks the exception to be raised when returning to the Java world and