Goblint_lib.ServerInteractive server mode using JSON-RPC.
module InvariantParser = WitnessUtil.InvariantParsermodule VarQuery = Goblint_constraint.VarQuerymodule type ArgWrapper = sig ... endtype t = {mutable file : GoblintCil.Cil.file option;mutable max_ids : MaxIdUtil.max_ids;arg_wrapper : (module ArgWrapper) ResettableLazy.t;invariant_parser : InvariantParser.t ResettableLazy.t;input : Batteries.IO.input;output : unit Batteries.IO.output;}module type Request = sig ... endmodule Registry : sig ... endval registry : Registry.tmodule ParamParser (R : Request) : sig ... endmodule Function : sig ... endval handle_request : t -> Jsonrpc.Request.t -> Jsonrpc.Response.tval handle_packet : t -> Jsonrpc.Packet.t -> unitval serve : t -> unitval is_server_node : Node0.t -> boolIs node valid for lookup by location? Used for abstract debugging breakpoints.
val arg_wrapper : (module ArgWrapper) ResettableLazy.tval invariant_parser : InvariantParser.t ResettableLazy.tval make :
?input:BatIO.input ->
?output:unit BatIO.output ->
GoblintCil.Cil.file option ->
tval reparse : t -> GoblintCil.file * boolval virtual_changes : GoblintCil.file -> CompareCIL.change_infoval increment_data :
t ->
GoblintCil.file ->
bool ->
Analyses.increment_data option * boolmodule Locator : sig ... endval node_locator : Locator.t ResettableLazy.tval analyze : ?reset:bool -> t -> unit