3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00
z3/src/api/ml/z3.ml
Christoph M. Wintersteiger b193b827ed ML API bugfixes
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
2015-01-19 15:44:42 +00:00

182 lines
4.3 KiB
OCaml

(*
Copyright (C) 2012 Microsoft Corporation
Author: CM Wintersteiger (cwinter) 2012-12-17
*)
open Z3enums
open Z3native
module Log =
struct
let m_is_open = false
(* CMW: "open" seems to be an invalid function name*)
let open_ fn = let rv = (open_log fn) in
Printf.printf "ol returned %d\n" rv ;
((int2lbool rv) == L_TRUE)
let close = close_log
let append s = append_log s
end
module Version =
struct
let major = let (x, _, _, _) = get_version in x
let minor = let (_, x, _, _) = get_version in x
let build = let (_, _, x, _) = get_version in x
let revision = let (_, _, _, x) = get_version in x
let to_string =
string_of_int major ^ "." ^
string_of_int minor ^ "." ^
string_of_int build ^ "." ^
string_of_int revision ^ "."
end
class virtual idisposable =
object
method virtual dispose : unit
end
class context settings =
object (self)
inherit idisposable
val mutable m_n_ctx : Z3native.z3_context =
let cfg = mk_config in
let f e = (set_param_value cfg (fst e) (snd e)) in
(List.iter f settings) ;
let v = mk_context_rc cfg in
del_config(cfg) ;
v
val mutable m_refCount : int = 0
initializer
Gc.finalise (fun self -> self#dispose) self
method dispose : unit =
if m_refCount == 0 then (
Printf.printf "Disposing %d \n" (Oo.id self) ;
(del_context m_n_ctx)
) else (
(* re-queue for finalization? *)
)
method sub_one_ctx_obj = m_refCount <- m_refCount - 1
method add_one_ctx_obj = m_refCount <- m_refCount + 1
method get_native = m_n_ctx
end
class virtual z3object ctx_init obj_init =
object (self)
inherit idisposable
val mutable m_ctx : context = ctx_init
val mutable m_n_obj : Z3native.ptr option = obj_init
initializer
(match m_n_obj with
| Some (x) -> self#incref x;
m_ctx#add_one_ctx_obj
| None -> ()
);
Gc.finalise (fun self -> self#dispose) self
method virtual incref : Z3native.ptr -> unit
method virtual decref : Z3native.ptr -> unit
(*
Disposes of the underlying native Z3 object.
*)
method dispose =
Printf.printf "Disposing z3object %d \n" (Oo.id self) ;
(match m_n_obj with
| Some (x) -> self#decref x; m_n_obj <- None; m_ctx#sub_one_ctx_obj
| None -> ()
);
method get_native_object = m_n_obj
method set_native_object x =
(match x with
| Some(x) -> self#incref x
| None -> ()
);
(match m_n_obj with
| Some(x) -> self#decref x
| None -> ()
);
m_n_obj <- x
method get_context = m_ctx
method get_native_context = m_ctx#get_native
(*
method array_to_native a =
let f e = e#get_native_object in
(Array.map f a)
method array_length a =
match a with
| Some(x) -> (Array.length x)
| None -> 0
*)
end
class symbol ctx_init obj_init =
object (self)
inherit z3object ctx_init obj_init
method incref o = ()
method decref o = ()
end
class int_symbol ctx_init obj_init =
object(self)
inherit symbol ctx_init obj_init
end
class string_symbol ctx_init obj_init =
object(self)
inherit symbol ctx_init obj_init
end
module Symbol =
struct
let create ctx obj =
match obj with
| Some(x) -> (
match (int2symbol_kind (get_symbol_kind ctx#get_native x)) with
| INT_SYMBOL -> (new int_symbol ctx obj :> symbol)
| STRING_SYMBOL -> (new string_symbol ctx obj :> symbol)
)
| None -> raise (Exception "Can't create null objects")
let kind o = match o#m_n_obj with
| Some(x) -> (int2symbol_kind (get_symbol_kind o#get_native_context x))
| _ -> raise (Exception "Underlying object lost")
let is_int_symbol o = match o#m_n_obj with
| Some(x) -> x#kind == INT_SYMBOL
| _ -> false
let is_string_symbol o = match o#m_n_obj with
| Some(x) -> x#kind == STRING_SYMBOL
| _ -> false
let get_int o = match o#m_n_obj with
| Some(x) -> (get_symbol_int o#get_native_context x)
| None -> 0
let get_string o = match o#m_n_obj with
| Some(x) -> (get_symbol_string o#get_native_context x)
| None -> ""
let to_string o = match o#m_n_obj with
| Some(x) ->
(
match (kind o) with
| INT_SYMBOL -> (string_of_int (get_symbol_int o#get_native_context x))
| STRING_SYMBOL -> (get_symbol_string o#get_native_context x)
)
| None -> ""
end