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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
(***********************************************************************)
(* *)
(* CamlIDL *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1999 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0 *)
(* *)
(***********************************************************************)
(* $Id: intf.ml,v 1.23 2004/07/08 09:51:21 xleroy Exp $ *)
(* Handling of COM-style interfaces *)
open Utils
open Printf
open Variables
open Idltypes
open Cvttyp
open Cvtval
open Funct
type interface =
{ intf_name: string; (* Name of interface *)
intf_mod: string; (* Name of defining module *)
mutable intf_super: interface; (* Super-interface *)
mutable intf_methods: function_decl list; (* Methods *)
mutable intf_uid: string } (* Unique interface ID *)
(* Print a method type *)
let out_method_type oc meth =
let (ins, outs) = ml_view meth in
begin match ins with
[] -> ()
| _ -> out_ml_types oc "->" ins;
fprintf oc " -> "
end;
out_ml_types oc "*" outs
(* Print the ML abstract type identifying the interface *)
let ml_declaration oc intf =
fprintf oc "%s\n" (String.uncapitalize intf.intf_name)
(* Declare the class *)
let ml_class_declaration oc intf =
let mlintf = String.uncapitalize intf.intf_name in
let mlsuper = String.uncapitalize intf.intf_super.intf_name in
fprintf oc "class %s_class :\n" mlintf;
fprintf oc " %s Com.interface ->\n" mlintf;
fprintf oc " object\n";
if intf.intf_super.intf_name <> "IUnknown"
&& intf.intf_super.intf_name <> "IDispatch"
then fprintf oc " inherit %s_class\n" mlsuper;
List.iter
(fun meth ->
fprintf oc " method %s: %a\n"
(String.uncapitalize meth.fun_name) out_method_type meth)
intf.intf_methods;
fprintf oc " end\n\n";
(* Declare the IID *)
if intf.intf_uid <> "" then
fprintf oc "val iid_%s : %s Com.iid\n" mlintf mlintf;
(* Declare the conversion functions *)
fprintf oc "val use_%s : %s Com.interface -> %s_class\n"
mlintf mlintf mlintf;
fprintf oc "val make_%s : #%s_class -> %s Com.interface\n"
mlintf mlintf mlintf;
fprintf oc "val %s_of_%s : %s Com.interface -> %a Com.interface\n\n"
mlsuper mlintf mlintf
out_mltype_name (intf.intf_super.intf_mod,
intf.intf_super.intf_name)
(* Declare the interface in C *)
let rec declare_vtbl oc self intf =
if intf.intf_name = "IUnknown" || intf.intf_name = "IDispatch" then begin
iprintf oc "DECLARE_VTBL_PADDING\n";
iprintf oc "HRESULT (STDMETHODCALLTYPE *QueryInterface)(struct %s *, IID *, void **);\n"
self;
iprintf oc "ULONG (STDMETHODCALLTYPE *AddRef)(struct %s *);\n" self;
iprintf oc "ULONG (STDMETHODCALLTYPE *Release)(struct %s *);\n" self;
if intf.intf_name = "IDispatch" then begin
iprintf oc "HRESULT (STDMETHODCALLTYPE *GetTypeInfoCount)(struct %s *, UINT *);\n" self;
iprintf oc "HRESULT (STDMETHODCALLTYPE *GetTypeInfo)(struct %s *, UINT, LCID, ITypeInfo **);\n" self;
iprintf oc "HRESULT (STDMETHODCALLTYPE *GetIDsOfNames)(struct %s *, REFIID, OLECHAR**, UINT, LCID, DISPID *);\n" self;
iprintf oc "HRESULT (STDMETHODCALLTYPE *Invoke)(struct %s *, DISPID, REFIID, LCID, WORD, DISPPARAMS *, VARIANT *, EXCEPINFO *, UINT *);\n" self
end
end else begin
declare_vtbl oc self intf.intf_super;
List.iter
(fun m ->
iprintf oc "%a(struct %s * self"
out_c_decl (sprintf "(STDMETHODCALLTYPE *%s)" m.fun_name,
m.fun_res)
self;
List.iter
(fun (name, inout, ty) ->
fprintf oc ",\n\t\t/*%a*/ %a" out_inout inout out_c_decl (name, ty))
m.fun_params;
fprintf oc ");\n")
intf.intf_methods
end
let rec declare_class oc self intf =
if intf.intf_name = "IUnknown" || intf.intf_name = "IDispatch" then begin
iprintf oc "virtual HRESULT STDMETHODCALLTYPE QueryInterface(IID *, void **);\n";
iprintf oc "virtual ULONG STDMETHODCALLTYPE AddRef();\n";
iprintf oc "virtual ULONG STDMETHODCALLTYPE Release();\n";
if intf.intf_name = "IDispatch" then begin
iprintf oc "virtual HRESULT STDMETHODCALLTYPE GetTypeInfoCount(UINT *);\n";
iprintf oc "virtual HRESULT STDMETHODCALLTYPE GetTypeInfo(UINT, LCID, ITypeInfo **);\n";
iprintf oc "virtual HRESULT STDMETHODCALLTYPE GetIDsOfNames(REFIID, OLECHAR**, UINT, LCID, DISPID *);\n";
iprintf oc "virtual HRESULT STDMETHODCALLTYPE Invoke(DISPID, REFIID, LCID, WORD, DISPPARAMS *, VARIANT *, EXCEPINFO *, UINT *);\n"
end
end else begin
declare_class oc self intf.intf_super;
List.iter
(fun m ->
iprintf oc "virtual %a("
out_c_decl (sprintf "STDMETHODCALLTYPE %s" m.fun_name,
m.fun_res);
let first = ref true in
List.iter
(fun (name, inout, ty) ->
if !first then first := false else fprintf oc ",\n\t\t";
fprintf oc "/*%a*/ %a" out_inout inout out_c_decl (name, ty))
m.fun_params;
fprintf oc ");\n")
intf.intf_methods
end
let c_declaration oc intf =
if intf.intf_methods = [] then begin
fprintf oc "struct %s;\n" intf.intf_name
end else begin
fprintf oc "#ifdef __cplusplus\n";
fprintf oc "struct %s {\n" intf.intf_name;
increase_indent();
declare_class oc intf.intf_name intf;
decrease_indent();
fprintf oc "};\n#else\n";
fprintf oc "struct %sVtbl {\n" intf.intf_name;
increase_indent();
declare_vtbl oc intf.intf_name intf;
decrease_indent();
fprintf oc "};\n";
fprintf oc "struct %s {\n" intf.intf_name;
fprintf oc " struct %sVtbl * lpVtbl;\n" intf.intf_name;
fprintf oc "};\n";
fprintf oc "#endif\n";
fprintf oc "_CAMLIDL_EXTERN_C IID IID_%s;\n\n" intf.intf_name
end
(* Define the wrapper classes *)
let ml_class_definition oc intf =
let intfname = String.uncapitalize intf.intf_name in
let supername = String.uncapitalize intf.intf_super.intf_name in
(* Define the IID *)
if intf.intf_uid <> "" then
fprintf oc "let iid_%s = Com._parse_iid \"%s\"\n"
intfname intf.intf_uid;
(* Define the coercion function to the super class *)
fprintf oc "let %s_of_%s (intf : %s Com.interface) = (Obj.magic intf : %a Com.interface)\n\n"
supername intfname intfname
out_mltype_name (intf.intf_super.intf_mod,
intf.intf_super.intf_name);
(* Declare the C wrappers for invoking the methods from Caml *)
let self_type =
Type_pointer(Ref, Type_interface(!module_name, intf.intf_name)) in
List.iter
(fun meth ->
let prim =
{ fun_name = sprintf "%s_%s" intf.intf_name meth.fun_name;
fun_mod = intf.intf_mod;
fun_res = meth.fun_res;
fun_params = ("this", In, self_type) :: meth.fun_params;
fun_mlname = None;
fun_call = None;
fun_dealloc = None;
fun_blocking = false } in
Funct.ml_declaration oc prim)
intf.intf_methods;
fprintf oc "\n";
(* Define the wrapper class *)
fprintf oc "class %s_class (intf : %s Com.interface) =\n" intfname intfname;
fprintf oc " object\n";
if intf.intf_super.intf_name <> "IUnknown"
&& intf.intf_super.intf_name <> "IDispatch" then
fprintf oc " inherit (%s_class (%s_of_%s intf))\n"
supername supername intfname;
List.iter
(fun meth ->
let methname = String.uncapitalize meth.fun_name in
fprintf oc " method %s = %s_%s intf\n"
methname intfname meth.fun_name)
intf.intf_methods;
fprintf oc " end\n\n";
(* Define the conversion functions *)
fprintf oc "let use_%s = new %s_class\n" intfname intfname;
fprintf oc "external make_%s : #%s_class -> %s Com.interface = \"camlidl_makeintf_%s_%s\"\n\n"
intfname intfname intfname !module_name intf.intf_name
(* If context is needed, set it up (indefinite allocation, persistent
interface refs) *)
let output_context before after =
if !need_context then begin
fprintf before
" struct camlidl_ctx_struct _ctxs = { CAMLIDL_ADDREF, NULL };\n";
fprintf before " camlidl_ctx _ctx = &_ctxs;\n"
end
(* Generate callback wrapper for calling an ML method from C *)
let emit_callback_wrapper oc intf meth =
current_function := sprintf "%s::%s" intf.intf_name meth.fun_name;
need_context := false;
let (ins, outs) = ml_view meth in
let pref = Prefix.enter_function meth.fun_params in
(* Emit function header *)
let fun_name =
sprintf "camlidl_%s_%s_%s_callback"
!module_name intf.intf_name meth.fun_name in
fprintf oc "%a(" out_c_decl ("STDMETHODCALLTYPE " ^ fun_name, meth.fun_res);
fprintf oc "\n\tstruct %s * this" intf.intf_name;
List.iter
(fun (name, inout, ty) ->
fprintf oc ",\n\t/* %a */ %a" out_inout inout out_c_decl (name, ty))
meth.fun_params;
fprintf oc ")\n{\n";
(* Declare locals to hold ML arguments and result, and C result if any *)
let num_ins = List.length ins in
fprintf oc " value _varg[%d] = { " (num_ins + 1);
for i = 0 to num_ins do fprintf oc "0, " done;
fprintf oc "};\n";
fprintf oc " value _vres;\n";
if meth.fun_res <> Type_void then
fprintf oc " %a;\n" out_c_decl ("_res", meth.fun_res);
(* Convert inputs from C to Caml *)
let pc = divert_output() in
increase_indent();
iprintf pc "Begin_roots_block(_varg, %d)\n" (num_ins + 1);
increase_indent();
iprintf pc
"_varg[0] = ((struct camlidl_intf *) this)->caml_object;\n";
iter_index
(fun pos (name, ty) -> c_to_ml pc pref ty name (sprintf "_varg[%d]" pos))
1 ins;
decrease_indent();
iprintf pc "End_roots();\n";
(* The method label *)
let label =
(Obj.magic
(Oo.public_method_label (String.uncapitalize meth.fun_name)) : int) in
(* Do the callback *)
iprintf pc "_vres = callbackN_exn(caml_get_public_method(_varg[0], Val_int(%d)), %d, _varg);\n"
label (num_ins + 1);
(* Check if exception occurred *)
begin match meth.fun_res with
Type_named(_, "HRESULT") ->
iprintf pc "if (Is_exception_result(_vres))\n";
iprintf pc " return camlidl_result_exception(\"%s.%s\", \
Extract_exception(_vres));\n"
!module_name !current_function;
iprintf pc "_res = S_OK;\n"
| Type_named(_, ("HRESULT_int" | "HRESULT_bool")) ->
iprintf pc "if (Is_exception_result(_vres))\n";
iprintf pc " return camlidl_result_exception(\"%s.%s\", \
Extract_exception(_vres));\n"
!module_name !current_function
| _ ->
iprintf pc "if (Is_exception_result(_vres))\n";
iprintf pc " camlidl_uncaught_exception(\"%s\", \
Extract_exception(_vres));\n"
!current_function
end;
(* Convert outputs from Caml to C *)
let convert_output ty src dst =
match (dst, scrape_const ty) with
("_res", _) -> ml_to_c pc false pref ty src dst
| (_, Type_pointer(_, ty')) -> ml_to_c pc false pref ty' src ("*" ^ dst)
| (_, _) ->
error (sprintf "Out parameter `%s' must be a pointer" dst) in
begin match outs with
[] -> ()
| [name, ty] ->
convert_output ty "_vres" name
| _ ->
iter_index
(fun pos (name, ty) ->
convert_output ty (sprintf "Field(_vres, %d)" pos) name)
0 outs
end;
output_context oc pc;
(* Return result if any *)
if meth.fun_res <> Type_void then
iprintf pc "return _res;\n";
output_variable_declarations oc;
decrease_indent();
end_diversion oc;
fprintf oc "}\n\n"
(* Declare external callback wrapper *)
let declare_callback_wrapper oc intf meth =
let (ins, outs) = ml_view meth in
(* Emit function header *)
let fun_name =
sprintf "camlidl_%s_%s_%s_callback"
!module_name intf.intf_name meth.fun_name in
fprintf oc "extern %a(" out_c_decl (fun_name, meth.fun_res);
fprintf oc "\n\tstruct %s * this" intf.intf_name;
List.iter
(fun (name, inout, ty) ->
fprintf oc ",\n\t/* %a */ %a" out_inout inout out_c_decl (name, ty))
meth.fun_params;
fprintf oc ");\n\n"
(* Generate the vtable for an interface (for the make_ conversion) *)
let rec emit_vtbl oc intf =
if intf.intf_name = "IUnknown" || intf.intf_name = "IDispatch" then begin
fprintf oc " (void *) camlidl_QueryInterface,\n";
fprintf oc " (void *) camlidl_AddRef,\n";
fprintf oc " (void *) camlidl_Release,\n";
if intf.intf_name = "IDispatch" then begin
fprintf oc " (void *) camlidl_GetTypeInfoCount,\n";
fprintf oc " (void *) camlidl_GetTypeInfo,\n";
fprintf oc " (void *) camlidl_GetIDsOfNames,\n";
fprintf oc " (void *) camlidl_Invoke,\n"
end
end else begin
emit_vtbl oc intf.intf_super;
List.iter
(fun m -> fprintf oc " /* %s */ (void *) camlidl_%s_%s_%s_callback,\n"
m.fun_name !module_name intf.intf_name m.fun_name)
intf.intf_methods
end
let emit_vtable oc intf =
fprintf oc "struct %sVtbl camlidl_%s_%s_vtbl = {\n"
intf.intf_name !module_name intf.intf_name;
fprintf oc " VTBL_PADDING\n";
emit_vtbl oc intf;
fprintf oc "};\n\n"
(* Generate the make_ conversion (takes an ML object, wraps it into
a COM interface) *)
let rec is_dispinterface intf =
if intf.intf_name = "IDispatch" then true
else if intf.intf_name = "IUnknown" then false
else is_dispinterface intf.intf_super
let emit_make_interface oc intf =
let disp = if is_dispinterface intf then 1 else 0 in
fprintf oc "value camlidl_makeintf_%s_%s(value vobj)\n"
!module_name intf.intf_name;
fprintf oc "{\n";
if intf.intf_uid = "" then
fprintf oc " return camlidl_make_interface(&camlidl_%s_%s_vtbl, vobj, NULL, %d);\n"
!module_name intf.intf_name disp
else
fprintf oc " return camlidl_make_interface(&camlidl_%s_%s_vtbl, vobj, &IID_%s, %d);\n"
!module_name intf.intf_name intf.intf_name disp;
fprintf oc "}\n\n"
(* Definition of the translation functions *)
let emit_transl oc intf =
List.iter (Funct.emit_method_wrapper oc intf.intf_name) intf.intf_methods;
List.iter (emit_callback_wrapper oc intf) intf.intf_methods;
emit_vtable oc intf;
emit_make_interface oc intf
(* Declare the translation functions *)
let declare_transl oc intf =
List.iter (declare_callback_wrapper oc intf) intf.intf_methods
|