Skip to content
Snippets Groups Projects
Commit a321788c authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[eva/server] computed hook

parent 377c8a3c
No related branches found
No related tags found
No related merge requests found
...@@ -54,6 +54,8 @@ type domain = { ...@@ -54,6 +54,8 @@ type domain = {
let signal = Request.signal ~package ~name:"changed" let signal = Request.signal ~package ~name:"changed"
~descr:(Md.plain "Emitted when EVA results has changed") ~descr:(Md.plain "Emitted when EVA results has changed")
let () = Analysis.register_computed_hook (fun () -> Request.emit signal)
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
(* --- Marker Utilities --- *) (* --- Marker Utilities --- *)
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
......
...@@ -127,9 +127,16 @@ let current_analyzer () = (module (val (snd !ref_analyzer)): S) ...@@ -127,9 +127,16 @@ let current_analyzer () = (module (val (snd !ref_analyzer)): S)
Useful for the GUI parts that depend on it. *) Useful for the GUI parts that depend on it. *)
module Analyzer_Hook = Hook.Build (struct type t = (module S) end) module Analyzer_Hook = Hook.Build (struct type t = (module S) end)
(* Set of hooks called whenever the current Analyzer is computed.
Useful for the GUI parts that depend on it. *)
module Computed_Hook = Hook.Build (struct type t = unit end)
(* Register a new hook. *) (* Register a new hook. *)
let register_hook = Analyzer_Hook.extend let register_hook = Analyzer_Hook.extend
(* Register a new computed hook. *)
let register_computed_hook = Computed_Hook.extend
(* Sets the current Analyzer module for a given configuration. (* Sets the current Analyzer module for a given configuration.
Calls the hooks above. *) Calls the hooks above. *)
let set_current_analyzer config (analyzer: (module Analyzer)) = let set_current_analyzer config (analyzer: (module Analyzer)) =
...@@ -169,7 +176,8 @@ let force_compute () = ...@@ -169,7 +176,8 @@ let force_compute () =
let kf, lib_entry = Globals.entry_point () in let kf, lib_entry = Globals.entry_point () in
reset_analyzer (); reset_analyzer ();
let module Analyzer = (val snd !ref_analyzer) in let module Analyzer = (val snd !ref_analyzer) in
Analyzer.compute_from_entry_point ~lib_entry kf Analyzer.compute_from_entry_point ~lib_entry kf ;
Computed_Hook.apply ()
(* Resets the Analyzer when the current project is changed. *) (* Resets the Analyzer when the current project is changed. *)
let () = let () =
......
...@@ -70,6 +70,10 @@ val register_hook: ((module S) -> unit) -> unit ...@@ -70,6 +70,10 @@ val register_hook: ((module S) -> unit) -> unit
is changed. This happens when a new analysis is run with different is changed. This happens when a new analysis is run with different
abstractions than before, or when the current project is changed. *) abstractions than before, or when the current project is changed. *)
val register_computed_hook: (unit -> unit) -> unit
(** Registers a hook that will be called each time the [current] analyzer
has been computed. *)
val force_compute : unit -> unit val force_compute : unit -> unit
(** Perform a full analysis, starting from the [main] function. *) (** Perform a full analysis, starting from the [main] function. *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment