1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
open Expr
open Type
open Expert
let simple_param ?input ?output ?name pty =
fst (simple_param ~binds:[] ?input ?output ~used_in_call:true ?name pty)
let input = simple_param ~input:true ~output:false
let output = simple_param ~output:true ~input:false
let inout = simple_param ~input:true ~output:true
let ignored = simple_param ~input:false ~output:false
let int : mlc =
builtin_mltypes "int" ~c_type:"intptr_t" ~c2ml:"Val_long" ~ml2c:"Long_val"
~unbox_attribute:Untagged ~unbox_version:(4, 3)
let size_t : mlc =
builtin_mltypes "int" ~u_type:"intptr_t" ~c_type:"size_t" ~u2c:"(size_t)"
~ml2u:"Long_val" ~c2ml:"Val_long" ~ml2c:"(size_t)Long_val" ~c2u:"(intptr_t)"
~unbox_attribute:Untagged ~unbox_version:(4, 3)
let int_trunc : mlc =
builtin_mltypes "int" ~u_type:"intptr_t" ~c_type:"int" ~c2ml:"Val_int"
~ml2c:"Int_val" ~u2c:"(int)" ~c2u:"(intptr_t)" ~unbox_attribute:Untagged
~unbox_version:(4, 3)
let double : mlc =
builtin_mltypes "float" ~c_type:"double" ~c2ml:"caml_copy_double"
~ml2c:"Double_val" ~unbox_attribute:Unboxed ~unbox_version:(4, 3)
let int32 : mlc =
builtin_mltypes "int32" ~c_type:"int32_t" ~c2ml:"caml_copy_int32"
~ml2c:"Int32_val" ~unbox_attribute:Unboxed ~unbox_version:(4, 3)
let int64 : mlc =
builtin_mltypes "int64" ~c_type:"int64_t" ~c2ml:"caml_copy_int64"
~ml2c:"Int64_val" ~unbox_attribute:Unboxed ~unbox_version:(4, 3)
let nativeint : mlc =
builtin_mltypes "nativeint" ~c_type:"intptr_t" ~c2ml:"caml_copy_nativeint"
~ml2c:"Nativeint_val" ~unbox_attribute:Unboxed ~unbox_version:(4, 3)
let bool : mlc =
builtin_mltypes "bool" ~c_type:"int" ~c2ml:"Val_bool" ~ml2c:"Bool_val"
~unbox_attribute:Untagged ~unbox_version:(5, 2)
let string_nt = Expert.string_nt
let ptr_ref = ptr_ref
let func_id ~ml ?result ~call_params fid params =
print_ml_fun ~call_params fid ~mlname:ml ~params ?result
let func_res ?ml ?result ?call_params fname params =
let call_params = Option.value call_params ~default:params in
let ml = Option.value ~default:fname ml in
let fid =
let vars_used_in_calls =
List.filter_map (fun p -> Option.map fst p.pused_in_call) call_params
in
let pp_result fmt = function
| None -> ()
| Some r -> Fmt.pf fmt "%a = " pp_var r.rc
in
expr "%a%a;" pp_result result pp_call (existing fname vars_used_in_calls, [])
in
func_id ~ml ?result ~call_params fid params
let func ?ml ?result ?ignored_result ?call_params fname params =
let result =
match (result, ignored_result) with
| Some _, Some _ ->
failwith "Camlid.Helper.func: can't set both result and ignored_result"
| Some rty, None -> Some (Expert.simple_result rty)
| None, Some rty ->
let rc = Var.mk "res" rty.cty.cty in
let bind' code = Expr.binds [ (rty.cty.c, e_addr rc) ] code in
Some { routput = PONone; rc; rfree = Option.map bind' rty.cty.free }
| None, None -> None
in
func_res ?ml ?result ?call_params fname params
type with_length = { t : Type.param; len : Type.param }
let input_array ?owned ?(output = false) ?(input = true) ?(name = "array") ty =
let a_len = array_length ?owned ty in
let io_a_len, _ = Expert.simple_param ~input ~output a_len ~name in
let a = t_field ty io_a_len in
let len_ptr = len_field io_a_len |> use_new_param_only_in_call in
{ t = a; len = len_ptr }
let output_array ?owned ?(output = true) ?(input = false) ?name ty =
let a = input_array ?owned ~output ~input ?name ty in
{ t = deref_in_call a.t; len = deref_in_call a.len }
let fixed_length_array ?init ?owned ?(input = false) ?(output = true)
?(len_used_in_call = false) ?(name = "array") ty =
let len, len_pc =
Expert.simple_param ~input:true ~used_in_call:len_used_in_call size_t
~name:(name ^ "_len")
in
let a_len =
simple_param ~input ~output (array ?init ?owned ~len:len_pc ty) ~name
in
{ t = a_len; len }
let input_string ?owned ?(input = true) ?(output = false) ?(name = "string") ()
=
let a_len = string_length ?owned () in
let io_a_len, _ = Expert.simple_param ~input ~output a_len ~name in
let a = get_field (expr "char *") "t" io_a_len in
let len_ptr = len_field io_a_len |> use_new_param_only_in_call in
{ t = a; len = len_ptr }
let output_string ?owned ?(input = false) ?(output = true) ?(name = "string") ()
=
let a = input_string ?owned ~input ~output ~name () in
{ t = deref_in_call a.t; len = deref_in_call a.len }
let fixed_length_string ?init ?owned ?(input = false) ?(output = true)
?(len_used_in_call = false) ?(name = "string") () =
let len, len_pc =
Expert.simple_param ~input:true ~used_in_call:len_used_in_call size_t
~name:(name ^ "_len")
in
let a_len =
simple_param ~input ~output (string_fixed_length ?init ?owned len_pc) ~name
in
{ t = a_len; len }
let file_struct =
let id = ID.mk "file_s" in
toplevel id "struct %a { char* t; size_t len; FILE *file;};@." pp_id id
let string_as_FILE_ptr =
let cty = typedef "file" "struct %a" pp_def file_struct in
let v = Var.mk "v" (expr "value") in
let c = Var.mk "c" (expr "%a" pp_def cty) in
let v' = Var.mk "v" (expr "value *") in
let c' = Var.mk "c" (expr "%a *" pp_def cty) in
let malloc { fmt } =
fmt "%a->file = open_memstream(&(%a->t),&(%a->len));" pp_var c' pp_var c'
pp_var c'
in
{
mlty = expr "string";
conv =
Boxed
{
ml2c =
call_codef "ml2c"
[ (v', e_addr v); (c', e_addr c) ]
(fun { fmt } ->
malloc { fmt };
fmt "fwrite(String_val(*%a),caml_string_length(*%a),1,%a->file)"
pp_var v' pp_var v' pp_var c');
c2ml =
call_codef "c2ml"
[ (v', e_addr v); (c', e_addr c) ]
(fun { fmt } ->
fmt "fflush(%a->file);@ " pp_var c';
fmt "fflush(stdout);@ ";
fmt "*%a = caml_alloc_string(%a->len);@ " pp_var v' pp_var c';
fmt "memcpy(&Byte(*%a,0),%a->t,%a->len);" pp_var v' pp_var c'
pp_var c');
};
cty =
{
cty = e_def cty;
init =
Some (call_codef "init" [ (v', e_addr v); (c', e_addr c) ] malloc);
init_expr = expr "((%a) { 0 })" pp_def cty;
free = Some (expr "fclose(%a.file);" pp_var c);
in_call = Some (expr "%a.file" pp_var c);
c;
};
v;
}
let input_value ml = input (value ml)
let output_value ml = output (value ml) |> deref_in_call
let abstract ?initialize ?get ?set ?internal ~ml ~c () : mlc =
let cty = typedef "abstract" "%s" c in
let icty =
match internal with
| None -> cty
| Some internal -> typedef "abstract_intern" "%s" internal
in
let initialize =
Option.map
(fun initialize ->
let c = Var.mk "c" (expr "%a *" pp_def cty) in
{ initialize = calli_existing initialize [ c ]; c })
initialize
in
let get =
Option.map
(fun get ->
let c = Var.mk "c" (expr "%a *" pp_def cty) in
let i = Var.mk "i" (expr "%a *" pp_def icty) in
{ get = calli_existing get [ c; i ]; c; i })
get
in
let set =
Option.map
(fun set ->
let c = Var.mk "c" (expr "%a *" pp_def cty) in
let i = Var.mk "i" (expr "%a *" pp_def icty) in
{ set = calli_existing set [ i; c ]; c; i })
set
in
Expert.abstract ?initialize ?set ?get ~icty ~cty ~ml ()
(** Encapsulate a c type into an custom ml type *)
let custom ?initialize ?finalize ?hash ?compare ?get ?set ?internal ~ml ~c () =
let cty = expr "%s" c in
let icty = match internal with None -> cty | Some c -> expr "%s" c in
let get = Option.map (mk_get ~icty ~cty) get in
let set = Option.map (mk_set ~icty ~cty) set in
let finalize = Option.map (mk_finalize ~icty) finalize in
let hash = Option.map (mk_hash ~icty) hash in
let compare = Option.map (mk_compare ~icty) compare in
let initialize = Option.map (mk_initialize ~cty) initialize in
custom ?initialize ?finalize ?hash ?compare ?get ?set ~ml ~icty ~cty ()
let custom_ptr ?initialize ?finalize ?hash ?compare ?malloc ~ml ~c () =
let cty = expr "%s" c in
let icty = cty in
let finalize = Option.map (mk_finalize ~icty) finalize in
let hash = Option.map (mk_hash ~icty) hash in
let compare = Option.map (mk_compare ~icty) compare in
let initialize = Option.map (mk_initialize ~cty) initialize in
custom_ptr ?initialize ?finalize ?hash ?compare ?malloc ~ml ~cty ()
let algdata ml_type l =
let t = AlgData.algdata ml_type l in
let others = List.map (fun c -> c.AlgData.smart_constructor) t.constrs in
let cty = typedef "algdata" "%a" pp_expr t.ty.cty.cty in
let cty = Expr.dimplicit cty others in
{ t.ty with cty = { t.ty.cty with cty = e_def cty } }
let module_ name l =
expr "@[<hv 3>module %s = struct@ %a@ end@]" name Fmt.(list ~sep:sp pp_expr) l
let ml_alias name typedef = expr "@[type %s = %a@]" name pp_expr typedef.mlty
let copy typedef ?vars ?exprs string =
Expert.copy ~copy:(mk_copy ~cty:typedef.cty.cty ?exprs ?vars string) typedef
let ret_option_if typedef =
let status, v_status = Expert.simple_param bool in
let status = deref_in_call status in
(status, Expert.ret_option_if (e_var v_status) typedef)
let get_expression ~name ty s =
Expert.get_expression ~mlname:name ty (expr "%s" s)
let map_param_in_call ?(name = "arg") ~ty param fmt =
Expert.map_param_in_call ~name
(fun _ e -> (expr "%s" ty, expr "%(%a%)" fmt pp_expr e))
param
let do_nothing ml = func_id ~ml ~call_params:[] ?result:None (expr "")
let convert ?c_to_mlc ?mlc_to_c ?(using = []) ~mlc ~c () =
let mk ~src ~dst =
Option.map (fun name ->
Expert.mk_converter ~src ~dst name ~vars:(fun ~dst ~src ->
[ dst; src ] @ using))
in
Expert.convert
?c_to_mlc:(mk c_to_mlc ~dst:mlc.cty ~src:c)
?mlc_to_c:(mk mlc_to_c ~dst:c ~src:mlc.cty)
~mlc ~c ()
let on_stack ?init_expr ?initialize ?clear cty =
let cty = expr "%s" cty in
let initialize = Option.map (mk_initialize ~cty) initialize in
let clear = Option.map (mk_initialize ~cty) clear in
let c = Var.mk "c" cty in
let pp_f f =
let pp_init fmt f =
Fmt.pf fmt "%a" pp_expr_binds (f.initialize, [ (f.c, e_addr c) ])
in
expro "%a" Fmt.(option pp_init) f
in
{
cty;
init = pp_f initialize;
init_expr =
(match init_expr with
| Some s -> expr "%s" s
| None -> expr "((%a) { 0 })" pp_expr cty);
free = pp_f clear;
in_call = None;
c;
}