src/HOL/Tools/Sledgehammer/async_manager.ML
author smolkas
Wed, 28 Nov 2012 12:22:05 +0100
changeset 50258 1c708d7728c7
parent 48319 340187063d84
child 52048 9003b293e775
permissions -rw-r--r--
put annotate in own structure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41042
8275f52ac991 load "try" after "Metis" and move "Async_Manager" back to Sledgehammer
blanchet
parents: 40301
diff changeset
     1
(*  Title:      HOL/Tools/Sledgehammer/async_manager.ML
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     2
    Author:     Fabian Immler, TU Muenchen
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     3
    Author:     Makarius
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     4
    Author:     Jasmin Blanchette, TU Muenchen
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     5
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     6
Central manager for asynchronous diagnosis tool threads.
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     7
*)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     8
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
     9
signature ASYNC_MANAGER =
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    10
sig
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    11
  val break_into_chunks : string -> string list
37584
2e289dc13615 factor out thread creation
blanchet
parents: 37583
diff changeset
    12
  val launch :
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    13
    string -> Time.time -> Time.time -> string * string
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    14
    -> (unit -> bool * string) -> unit
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
    15
  val kill_threads : string -> string -> unit
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    16
  val has_running_threads : string -> bool
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
    17
  val running_threads : string -> string -> unit
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
    18
  val thread_messages : string -> string -> int option -> unit
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    19
end;
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    20
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    21
structure Async_Manager : ASYNC_MANAGER =
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    22
struct
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    23
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    24
(** preferences **)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    25
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    26
val message_store_limit = 20
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    27
val message_display_limit = 10
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    28
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    29
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    30
(** thread management **)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    31
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    32
fun implode_message (workers, work) =
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    33
  space_implode " " (Try.serial_commas "and" workers) ^ work
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    34
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    35
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    36
(* data structures over threads *)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    37
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    38
structure Thread_Heap = Heap
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    39
(
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    40
  type elem = Time.time * Thread.thread
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    41
  fun ord ((a, _), (b, _)) = Time.compare (a, b)
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    42
)
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    43
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    44
fun lookup_thread xs = AList.lookup Thread.equal xs
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    45
fun delete_thread xs = AList.delete Thread.equal xs
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    46
fun update_thread xs = AList.update Thread.equal xs
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    47
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    48
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    49
(* state of thread manager *)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    50
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    51
type state =
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
    52
  {manager: Thread.thread option,
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
    53
   timeout_heap: Thread_Heap.T,
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    54
   active:
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    55
     (Thread.thread
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    56
      * (string * Time.time * Time.time * (string * string))) list,
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    57
   canceling:  (Thread.thread * (string * Time.time * (string * string))) list,
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    58
   messages: (bool * (string * (string * string))) list,
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    59
   store: (string * (string * string)) list}
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    60
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    61
fun make_state manager timeout_heap active canceling messages store : state =
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    62
  {manager = manager, timeout_heap = timeout_heap, active = active,
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    63
   canceling = canceling, messages = messages, store = store}
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    64
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    65
val global_state = Synchronized.var "async_manager"
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    66
  (make_state NONE Thread_Heap.empty [] [] [] [])
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    67
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    68
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    69
(* unregister thread *)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    70
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    71
fun unregister (urgent, message) thread =
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    72
  Synchronized.change global_state
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    73
  (fn state as {manager, timeout_heap, active, canceling, messages, store} =>
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    74
    (case lookup_thread active thread of
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    75
      SOME (tool, _, _, desc as (worker, its_desc)) =>
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    76
        let
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    77
          val active' = delete_thread thread active
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    78
          val now = Time.now ()
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
    79
          val canceling' = (thread, (tool, now, desc)) :: canceling
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    80
          val message' =
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    81
            (worker, its_desc ^ (if message = "" then "" else "\n" ^ message))
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
    82
          val messages' = (urgent, (tool, message')) :: messages
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
    83
          val store' = (tool, message') ::
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    84
            (if length store <= message_store_limit then store
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    85
             else #1 (chop message_store_limit store))
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    86
        in make_state manager timeout_heap active' canceling' messages' store' end
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    87
    | NONE => state))
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    88
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    89
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    90
(* main manager thread -- only one may exist *)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    91
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    92
val min_wait_time = seconds 0.3
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
    93
val max_wait_time = seconds 10.0
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    94
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    95
fun replace_all bef aft =
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    96
  let
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    97
    fun aux seen "" = String.implode (rev seen)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    98
      | aux seen s =
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
    99
        if String.isPrefix bef s then
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   100
          aux seen "" ^ aft ^ aux [] (unprefix bef s)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   101
        else
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   102
          aux (String.sub (s, 0) :: seen) (String.extract (s, 1, NONE))
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   103
  in aux [] end
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   104
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   105
(* This is a workaround for Proof General's off-by-a-few sendback display bug,
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   106
   whereby "pr" in "proof" is not highlighted. *)
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   107
val break_into_chunks = space_explode "\000" o replace_all "\n\n" "\000"
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   108
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   109
fun print_new_messages () =
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   110
  Synchronized.change_result global_state
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   111
      (fn {manager, timeout_heap, active, canceling, messages, store} =>
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   112
          messages
43055
6e0cb8044734 better merging of similar outputs
blanchet
parents: 43029
diff changeset
   113
          |> List.partition
6e0cb8044734 better merging of similar outputs
blanchet
parents: 43029
diff changeset
   114
                 (fn (urgent, _) =>
6e0cb8044734 better merging of similar outputs
blanchet
parents: 43029
diff changeset
   115
                     (null active andalso null canceling) orelse urgent)
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   116
          ||> (fn postponed_messages =>
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   117
                  make_state manager timeout_heap active canceling
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   118
                                     postponed_messages store))
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   119
  |> map (fn (_, (tool, (worker, work))) => ((tool, work), worker))
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   120
  |> AList.group (op =)
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   121
  |> List.app (fn ((_, ""), _) => ()
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   122
                | ((tool, work), workers) =>
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   123
                  tool ^ ": " ^
47945
blanchet
parents: 47529
diff changeset
   124
                  implode_message (workers |> sort_distinct string_ord, work)
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   125
                  |> break_into_chunks
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   126
                  |> List.app Output.urgent_message)
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   127
39006
a02cb5717677 remove time information in output, since it's confusing anyway
blanchet
parents: 38990
diff changeset
   128
fun check_thread_manager () = Synchronized.change global_state
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   129
  (fn state as {manager, timeout_heap, active, canceling, messages, store} =>
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   130
    if (case manager of SOME thread => Thread.isActive thread | NONE => false) then state
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   131
    else let val manager = SOME (Toplevel.thread false (fn () =>
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   132
      let
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   133
        fun time_limit timeout_heap =
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   134
          (case try Thread_Heap.min timeout_heap of
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   135
            NONE => Time.+ (Time.now (), max_wait_time)
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   136
          | SOME (time, _) => time)
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   137
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   138
        (*action: find threads whose timeout is reached, and interrupt canceling threads*)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   139
        fun action {manager, timeout_heap, active, canceling, messages, store} =
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   140
          let val (timeout_threads, timeout_heap') =
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   141
            Thread_Heap.upto (Time.now (), Thread.self ()) timeout_heap
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   142
          in
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   143
            if null timeout_threads andalso null canceling then
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   144
              NONE
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   145
            else
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   146
              let
44112
ef876972fdc1 more explicit Simple_Thread.interrupt_unsynchronized, to emphasize its meaning;
wenzelm
parents: 43055
diff changeset
   147
                val _ = List.app (Simple_Thread.interrupt_unsynchronized o #1) canceling
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   148
                val canceling' = filter (Thread.isActive o #1) canceling
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   149
                val state' = make_state manager timeout_heap' active canceling' messages store
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   150
              in SOME (map #2 timeout_threads, state') end
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   151
          end
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   152
      in
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   153
        while Synchronized.change_result global_state
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   154
          (fn state as {timeout_heap, active, canceling, messages, store, ...} =>
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   155
            if null active andalso null canceling andalso null messages
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   156
            then (false, make_state NONE timeout_heap active canceling messages store)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   157
            else (true, state))
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   158
        do
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   159
          (Synchronized.timed_access global_state
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   160
               (SOME o time_limit o #timeout_heap) action
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   161
           |> these
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   162
           |> List.app (unregister (false, "Timed out."));
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   163
           print_new_messages ();
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   164
           (* give threads some time to respond to interrupt *)
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   165
           OS.Process.sleep min_wait_time)
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   166
      end))
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   167
    in make_state manager timeout_heap active canceling messages store end)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   168
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   169
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   170
(* register thread *)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   171
39006
a02cb5717677 remove time information in output, since it's confusing anyway
blanchet
parents: 38990
diff changeset
   172
fun register tool birth_time death_time desc thread =
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   173
 (Synchronized.change global_state
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   174
    (fn {manager, timeout_heap, active, canceling, messages, store} =>
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   175
      let
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   176
        val timeout_heap' = Thread_Heap.insert (death_time, thread) timeout_heap
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   177
        val active' = update_thread (thread, (tool, birth_time, death_time, desc)) active
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   178
        val state' = make_state manager timeout_heap' active' canceling messages store
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   179
      in state' end);
39006
a02cb5717677 remove time information in output, since it's confusing anyway
blanchet
parents: 38990
diff changeset
   180
  check_thread_manager ())
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   181
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   182
39006
a02cb5717677 remove time information in output, since it's confusing anyway
blanchet
parents: 38990
diff changeset
   183
fun launch tool birth_time death_time desc f =
37584
2e289dc13615 factor out thread creation
blanchet
parents: 37583
diff changeset
   184
  (Toplevel.thread true
2e289dc13615 factor out thread creation
blanchet
parents: 37583
diff changeset
   185
       (fn () =>
2e289dc13615 factor out thread creation
blanchet
parents: 37583
diff changeset
   186
           let
2e289dc13615 factor out thread creation
blanchet
parents: 37583
diff changeset
   187
             val self = Thread.self ()
39006
a02cb5717677 remove time information in output, since it's confusing anyway
blanchet
parents: 38990
diff changeset
   188
             val _ = register tool birth_time death_time desc self
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   189
           in unregister (f ()) self end);
37584
2e289dc13615 factor out thread creation
blanchet
parents: 37583
diff changeset
   190
   ())
2e289dc13615 factor out thread creation
blanchet
parents: 37583
diff changeset
   191
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   192
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   193
(** user commands **)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   194
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   195
(* kill threads *)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   196
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   197
fun kill_threads tool das_wort_worker = Synchronized.change global_state
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   198
  (fn {manager, timeout_heap, active, canceling, messages, store} =>
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   199
    let
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   200
      val killing =
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   201
        map_filter (fn (th, (tool', _, _, desc)) =>
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   202
                       if tool' = tool then SOME (th, (tool', Time.now (), desc))
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   203
                       else NONE) active
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   204
      val state' = make_state manager timeout_heap [] (killing @ canceling) messages store
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   205
      val _ =
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   206
        if null killing then ()
45573
22d003b5b32e less offensive terminology
blanchet
parents: 44112
diff changeset
   207
        else Output.urgent_message ("Interrupted active " ^ das_wort_worker ^ "s.")
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   208
    in state' end)
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   209
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   210
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   211
(* running threads *)
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   212
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   213
fun seconds time = string_of_int (Time.toSeconds time) ^ " s"
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   214
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   215
fun has_running_threads tool =
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   216
  exists (fn (_, (tool', _, _, _)) => tool' = tool)
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   217
         (#active (Synchronized.value global_state))
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   218
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   219
fun running_threads tool das_wort_worker =
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   220
  let
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   221
    val {active, canceling, ...} = Synchronized.value global_state
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   222
    val now = Time.now ()
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   223
    fun running_info (_, (tool', birth_time, death_time, desc)) =
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   224
      if tool' = tool then
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   225
        SOME ("Running: " ^ seconds (Time.- (now, birth_time)) ^ " -- " ^
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   226
              seconds (Time.- (death_time, now)) ^ " to live:\n" ^
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   227
              op ^ desc)
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   228
      else
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   229
        NONE
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   230
    fun canceling_info (_, (tool', death_time, desc)) =
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   231
      if tool' = tool then
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   232
        SOME ("Trying to interrupt " ^ das_wort_worker ^ " since " ^
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   233
              seconds (Time.- (now, death_time)) ^ ":\n" ^ op ^ desc)
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   234
      else
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   235
        NONE
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   236
    val running =
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   237
      case map_filter running_info active of
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   238
        [] => ["No " ^ das_wort_worker ^ "s running."]
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   239
      | ss => "Running " ^ das_wort_worker ^ "s " :: ss
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   240
    val interrupting =
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   241
      case map_filter canceling_info canceling of
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   242
        [] => []
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   243
      | ss => "Interrupting " ^ das_wort_worker ^ "s " :: ss
40132
7ee65dbffa31 renamed Output.priority to Output.urgent_message to emphasize its special role more clearly;
wenzelm
parents: 39376
diff changeset
   244
  in Output.urgent_message (space_implode "\n\n" (running @ interrupting)) end
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   245
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   246
fun thread_messages tool das_wort_worker opt_limit =
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   247
  let
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   248
    val limit = the_default message_display_limit opt_limit
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   249
    val tool_store = Synchronized.value global_state
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   250
                     |> #store |> filter (curry (op =) tool o fst)
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   251
    val header =
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   252
      "Recent " ^ das_wort_worker ^ " messages" ^
37585
c2ed8112ce57 multiplexing
blanchet
parents: 37584
diff changeset
   253
        (if length tool_store <= limit then ":"
48319
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   254
         else " (" ^ string_of_int limit ^ " displayed):")
340187063d84 use async manager to manage MaSh learners to make sure they get killed cleanly
blanchet
parents: 47945
diff changeset
   255
    val ss = tool_store |> chop limit |> #1 |> map (op ^ o snd)
43005
c96f06bffd90 merge timeout messages from several ATPs into one message to avoid clutter
blanchet
parents: 41042
diff changeset
   256
  in List.app Output.urgent_message (header :: maps break_into_chunks ss) end
37583
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   257
9ce2451647d5 factored non-ATP specific code from "ATP_Manager" out, so that it can be reused for the LEO-II integration
blanchet
parents:
diff changeset
   258
end;