diff --git a/src/plugins/server/kernel_ast.ml b/src/plugins/server/kernel_ast.ml index f9fadabefdc55ff69331af8d18d584a978f44629..b3f8e006a82b6cf3d377705aec8812aca50a3026 100644 --- a/src/plugins/server/kernel_ast.ml +++ b/src/plugins/server/kernel_ast.ml @@ -554,6 +554,7 @@ struct rank: int; label: string; title: string; + enable: unit -> bool; pretty: Format.formatter -> Printer_tag.localizable -> unit } @@ -599,12 +600,13 @@ struct let infos = ref [] in Hashtbl.iter (fun _ info -> - match tgt with - | None -> infos := (info, `Null) :: !infos - | Some marker -> - let text = jtext info.pretty marker in - if not (Jbuffer.is_empty text) then - infos := (info, text) :: !infos + if info.enable () then + match tgt with + | None -> infos := (info, `Null) :: !infos + | Some marker -> + let text = jtext info.pretty marker in + if not (Jbuffer.is_empty text) then + infos := (info, text) :: !infos ) registry ; List.sort by_rank !infos @@ -614,9 +616,9 @@ struct let update () = Request.emit signal - let register ~id ~label ~title pretty = + let register ~id ~label ~title ?(enable = fun _ -> true) pretty = let rank = incr rankId ; !rankId in - let info = { id ; rank ; label ; title ; pretty } in + let info = { id ; rank ; label ; title ; enable ; pretty } in if Hashtbl.mem registry id then ( let msg = Format.sprintf "Server.Kernel_ast.register_info: duplicate %S" id in diff --git a/src/plugins/server/kernel_ast.mli b/src/plugins/server/kernel_ast.mli index 3dd3868e276126bdac58378ae05d4e88ae6e6730..c86dd151ffc4865f5f7ea90f53f1ac544d87b57c 100644 --- a/src/plugins/server/kernel_ast.mli +++ b/src/plugins/server/kernel_ast.mli @@ -73,12 +73,14 @@ sig Identifier [id] shall be unique. Label [label] shall be very short. Description shall succintly describe the kind of informations. + If the optional [enable] function is provided, the information printer is + only used when [enable ()] returns true. The printer is allowed to raise [Not_found] exception, which is interpreted as there is no information of this kind for the localizable. *) val register : - id:string -> label:string -> title:string -> + id:string -> label:string -> title:string -> ?enable:(unit -> bool) -> (Format.formatter -> Printer_tag.localizable -> unit) -> unit (** Updated informations signal *)