/* Copyright (c) 2013 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include #include "runtime/thread.h" #include "runtime/interrupt.h" #include "runtime/exception.h" #include "runtime/memory.h" #include "runtime/object.h" #include "lean/lean.h" #include "util/io.h" namespace lean { LEAN_THREAD_VALUE(size_t, g_max_heartbeat, 0); LEAN_THREAD_VALUE(size_t, g_heartbeat, 0); extern "C" LEAN_EXPORT obj_res lean_internal_get_default_max_heartbeat() { #ifdef LEAN_DEFAULT_MAX_HEARTBEAT return lean_box(LEAN_DEFAULT_MAX_HEARTBEAT); #else return lean_box(0); #endif } void inc_heartbeat() { g_heartbeat++; } void reset_heartbeat() { g_heartbeat = 0; } void set_max_heartbeat(size_t max) { g_max_heartbeat = max; } extern "C" LEAN_EXPORT obj_res lean_internal_set_max_heartbeat(usize max) { set_max_heartbeat(max); return lean_box(0); } size_t get_max_heartbeat() { return g_max_heartbeat; } void set_max_heartbeat_thousands(unsigned max) { g_max_heartbeat = static_cast(max) * 1000; } scope_heartbeat::scope_heartbeat(size_t max):flet(g_heartbeat, max) {} LEAN_EXPORT scope_max_heartbeat::scope_max_heartbeat(size_t max):flet(g_max_heartbeat, max) {} // separate definition to allow breakpoint in debugger void throw_heartbeat_exception() { throw heartbeat_exception(); } void check_heartbeat() { inc_heartbeat(); if (g_max_heartbeat > 0 && g_heartbeat > g_max_heartbeat) throw_heartbeat_exception(); } LEAN_THREAD_VALUE(lean_object *, g_cancel_tk, nullptr); LEAN_EXPORT scope_cancel_tk::scope_cancel_tk(lean_object * o):flet(g_cancel_tk, o) {} // `IO.CancelToken` is `structure { promise : IO.Promise Unit; setRef : IO.Ref Bool }`. We read // the `Bool` flag (field 1) directly: cheaper than walking the promise's task state, and this // is on the hot `Core.checkInterrupted` path. Must stay in sync with the field order in // `Init/System/CancelToken.lean`. static bool cancel_tk_is_set(lean_object * tk) { lean_object * setRef = lean_ctor_get(tk, 1); return lean_unbox(lean_to_ref(setRef)->m_value) != 0; } void check_interrupted() { if (g_cancel_tk) { // `g_cancel_tk` is owned by the enclosing `scope_cancel_tk`, so it stays alive for the // duration of this call without an explicit `inc_ref`. if (cancel_tk_is_set(g_cancel_tk) && !std::uncaught_exceptions()) { throw interrupted(); } } } void check_system(char const * component_name, bool do_check_interrupted) { check_stack(component_name); check_memory(component_name); if (do_check_interrupted) { check_interrupted(); check_heartbeat(); } } void sleep_for(unsigned ms, unsigned step_ms) { if (step_ms == 0) step_ms = 1; unsigned rounds = ms / step_ms; chrono::milliseconds c(step_ms); chrono::milliseconds r(ms % step_ms); for (unsigned i = 0; i < rounds; i++) { this_thread::sleep_for(c); check_interrupted(); } this_thread::sleep_for(r); check_interrupted(); } }