package ctypes
Combinators for binding to C libraries without writing any C
Install
Dune Dependency
Authors
Maintainers
Sources
0.23.0.tar.gz
sha256=cae47d815b27dd4c824a007f1145856044542fe2588d23a443ef4eefec360bf1
md5=b1af973ec9cf7867a63714e92df82f2a
doc/src/ctypes.stubs/cstubs_structs.ml.html
Source file cstubs_structs.ml
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
(* * Copyright (c) 2014 Jeremy Yallop. * * This file is distributed under the terms of the MIT License. * See the file LICENSE for details. *) [@@@warning "-9-27"] open Ctypes module type TYPE = sig include Ctypes_types.TYPE type 'a const val constant : string -> 'a typ -> 'a const val enum : string -> ?typedef:bool -> ?unexpected:(int64 -> 'a) -> ('a * int64 const) list -> 'a typ end module type BINDINGS = functor (F : TYPE) -> sig end let cstring s = (* Format a string for output as a C string literal. *) let mappings = [Str.regexp "\"", "\\\""; Str.regexp "\n", "\\n"] in let escaped = List.fold_left (fun s (r, r') -> Str.(global_replace r r') s) s mappings in "\""^ escaped ^"\"" let cprologue = [ "#include <stdio.h>"; "#include <stddef.h>"; "#include \"ctypes_cstubs_internals.h\""; ""; "int main(void)"; "{"; ] let cepilogue = [ " return 0;"; "}"; ] let mlprologue = [ "[@@@warning \"-9-27\"]"; "include Ctypes"; "let lift x = x"; "open Ctypes_static"; ] (* [puts fmt s] writes the call [puts(s);] on [fmt]. *) let puts fmt s = Format.fprintf fmt "@[puts@[(%s);@]@]@\n" (cstring s) (* [printf1 fmt s v] writes the call [printf(s, v);] on [fmt]. *) let printf1 fmt s v = Format.fprintf fmt "@[ctypes_printf@[(%s,@ %t);@]@]@\n" (cstring s) v (* [printf2 fmt s u v] writes the call [printf(s, u, v);] on [fmt]. *) let printf2 fmt s u v = Format.fprintf fmt "@[ctypes_printf@[(%s,@ %t,@ %t);@]@]@\n" (cstring s) u v (* [offsetof fmt t f] writes the call [offsetof(t, f)] on [fmt]. *) let offsetof fmt (t, f) = Format.fprintf fmt "@[offsetof@[(%s,@ %s)@]@]" t f (* [sizeof fmt t] writes the call [sizeof(t)] on [fmt]. *) let sizeof fmt t = Format.fprintf fmt "@[sizeof@[(%s)@]@]" t let alignmentof fmt t = offsetof fmt (Format.sprintf "struct { char c; %s x; }" t, "x") let write_c fmt body = List.iter (Format.fprintf fmt "@[%s@]@\n") cprologue; Format.fprintf fmt "@[<v 2>@\n@[%t@]@]@\n" body; List.iter (Format.fprintf fmt "%s@\n") cepilogue let cases fmt list prologue epilogue ~case = List.iter (puts fmt) prologue; List.iter case list; List.iter (puts fmt) epilogue let write_field fmt specs = let case = function | `Struct (tag, typedef), fname -> let foffset fmt = offsetof fmt (typedef, fname) in puts fmt (Printf.sprintf " | Struct ({ tag = %S; _} as s'), %S ->" tag fname); printf1 fmt " let f = {ftype; fname; foffset = %zu} in \n" foffset; puts fmt " (s'.fields <- BoxedField f :: s'.fields; f)"; | `Union (tag, typedef), fname -> let foffset fmt = offsetof fmt (typedef, fname) in puts fmt (Printf.sprintf " | Union ({ utag = %S; _} as s'), %S ->" tag fname); printf1 fmt " let f = {ftype; fname; foffset = %zu} in \n" foffset; puts fmt " (s'.ufields <- BoxedField f :: s'.ufields; f)"; | _ -> raise (Unsupported "Adding a field to non-structured type") in cases fmt specs [""; "let rec field : type t a. t typ -> string -> a typ -> (a, t) field ="; " fun s fname ftype -> match s, fname with";] ~case [" | View { ty; _ }, _ ->"; " let { ftype; foffset; fname } = field ty fname ftype in"; " { ftype; foffset; fname }"; " | _ -> failwith (\"Unexpected field \"^ fname)"] let write_seal fmt specs = let case = function | `Struct (tag, typedef) -> let ssize fmt = sizeof fmt typedef and salign fmt = alignmentof fmt typedef in puts fmt (Printf.sprintf " | Struct ({ tag = %S; spec = Incomplete _; _ } as s') ->" tag); printf2 fmt " s'.spec <- Complete { size = %zu; align = %zu }\n" ssize salign; | `Union (tag, typedef) -> let usize fmt = sizeof fmt typedef and ualign fmt = alignmentof fmt typedef in puts fmt (Printf.sprintf " | Union ({ utag = %S; uspec = None; _ } as s') ->" tag); printf2 fmt " s'.uspec <- Some { size = %zu; align = %zu }\n" usize ualign; | `Other -> raise (Unsupported "Sealing a non-structured type") in cases fmt specs [""; "let rec seal : type a. a typ -> unit = function"] ~case [" | Struct { tag; spec = Complete _; _ } ->"; " raise (ModifyingSealedType tag)"; " | Union { utag; uspec = Some _; _ } ->"; " raise (ModifyingSealedType utag)"; " | View { ty; _ } -> seal ty"; " | _ ->"; " raise (Unsupported \"Sealing a non-structured type\")"; ""] let primitive_format_string : type a. a Ctypes_primitive_types.prim -> string = fun p -> let open Ctypes_primitive_types in let sprintf = Printf.sprintf in let fail () = Printf.ksprintf failwith "Cannot retrieve constants of type %s" (Ctypes_primitives.name p) in match p, Ctypes_primitives.format_string p with | _, None -> fail () | Char, Some fmt -> sprintf "Char.chr (((%s) + 256) mod 256)" fmt | Schar, Some fmt -> fmt | Uchar, Some fmt -> sprintf "Unsigned.UChar.of_string \"%s\"" fmt | Bool, Some fmt -> sprintf "((%s) <> 0)" fmt | Short, Some fmt -> fmt | Int, Some fmt -> fmt | Long, Some fmt -> sprintf "Signed.Long.of_string \"%s\"" fmt | Llong, Some fmt -> sprintf "Signed.LLong.of_string \"%s\"" fmt | Ushort, Some fmt -> sprintf "Unsigned.UShort.of_string \"%s\"" fmt | Sint, Some fmt -> sprintf "Signed.SInt.of_string \"%s\"" fmt | Uint, Some fmt -> sprintf "Unsigned.UInt.of_string \"%s\"" fmt | Ulong, Some fmt -> sprintf "Unsigned.ULong.of_string \"%s\"" fmt | Ullong, Some fmt -> sprintf "Unsigned.ULLong.of_string \"%s\"" fmt | Size_t, Some fmt -> sprintf "Unsigned.Size_t.of_string \"%s\"" fmt | Int8_t, Some fmt -> fmt | Int16_t, Some fmt -> fmt | Int32_t, Some fmt -> fmt ^"l" | Int64_t, Some fmt -> fmt ^"L" | Uint8_t, Some fmt -> sprintf "Unsigned.UInt8.of_string \"%s\"" fmt | Uint16_t, Some fmt -> sprintf "Unsigned.UInt16.of_string \"%s\"" fmt | Uint32_t, Some fmt -> sprintf "Unsigned.UInt32.of_string \"%s\"" fmt | Uint64_t, Some fmt -> sprintf "Unsigned.UInt64.of_string \"%s\"" fmt | Camlint, Some fmt -> fmt | Nativeint, Some fmt -> fmt ^"n" (* Integer constant expressions cannot have non-integer type *) | Complex32, _ -> fail () | Complex64, _ -> fail () | Complexld, _ -> fail () | Float, _ -> fail () | Double, _ -> fail () | LDouble, _ -> fail () let rec ml_pat_and_exp_of_typ : type a. a typ -> string * string = fun ty -> match ty with | Ctypes_static.View { Ctypes_static.ty } -> let p, e = ml_pat_and_exp_of_typ ty in let x = Cstubs_c_language.fresh_var ~prefix:"read" () in let p' = Printf.sprintf "Ctypes_static.View { Ctypes_static.read = %s; ty = %s }" x p and e' = Printf.sprintf "(%s (%s))" x e in (p', e') | Ctypes_static.Primitive p -> let pat = (Format.asprintf "Ctypes_static.Primitive %a" Ctypes_path.format_path (Cstubs_public_name.constructor_cident_of_prim p)) and exp = primitive_format_string p in (pat, exp) | _ -> failwith "constant of non-primitive" let write_consts fmt consts = let case = function (name, Ctypes_static.BoxedType ty) -> let p, e = ml_pat_and_exp_of_typ ty in Format.fprintf fmt "{@[<v 2>@\n"; Format.fprintf fmt "enum { check_%s_const = (int)%s };@\n" name name; (* Since printf is variadic we can't rely on implicit conversions. We'll use assignment rather than casts to coerce to the correct type because casts typically result in silent truncation whereas narrowing assignments typically trigger warnings even on default compiler settings. *) Format.fprintf fmt "%a = (%s);@\n" (Ctypes.format_typ ~name:"v") ty name; printf1 fmt (Format.asprintf " | %s, %S ->@\n %s\n" p name e) (fun fmt -> Format.fprintf fmt "v"); Format.fprintf fmt "@]@\n}@\n" in cases fmt consts ["type 'a const = 'a"; "let constant (type t) name (t : t typ) : t = match t, name with"] ~case [" | _, s -> failwith (\"unmatched constant: \"^ s)"] let write_enums fmt enums = let case (name, typedef) = printf1 fmt (Format.sprintf " | %S -> \n Cstubs_internals.build_enum_type %S Ctypes_static.%%s ?typedef ?unexpected alist\n" name name) (fun fmt -> Format.fprintf fmt "ctypes_arithmetic_type_name(CTYPES_CLASSIFY_ARITHMETIC_TYPE(%s%s))" (if typedef then "" else "enum ") name) in cases fmt enums [""; "let enum (type a) name ?typedef ?unexpected (alist : (a * int64) list) ="; " match name with"] ~case [" | s ->"; " failwith (\"unmatched enum: \"^ s)"] let write_ml fmt fields structures consts enums = List.iter (puts fmt) mlprologue; write_field fmt fields; write_seal fmt structures; write_consts fmt consts; write_enums fmt enums let gen_c () = let fields = ref [] and structures = ref [] and consts = ref [] and enums = ref [] in let finally fmt = write_c fmt (fun fmt -> write_ml fmt !fields !structures !consts !enums) in let m = (module struct include Ctypes open Ctypes_static let rec field' : type a s r. string -> s typ -> string -> a typ -> (a, r) field = fun structname s fname ftype -> match s with | Struct { tag } -> fields := (`Struct (tag, structname), fname) :: !fields; { ftype; foffset = -1; fname} | Union { utag } -> fields := (`Union (utag, structname), fname) :: !fields; { ftype; foffset = -1; fname} | View { ty } -> field' structname ty fname ftype | _ -> raise (Unsupported "Adding a field to non-structured type") let field s fname ftype = field' (Ctypes.string_of_typ s) s fname ftype let rec seal' : type s. string -> s typ -> unit = fun structname -> function | Struct { tag } -> structures := `Struct (tag, structname) :: !structures | Union { utag } -> structures := `Union (utag, structname) :: !structures | View { ty } -> seal' structname ty | _ -> raise (Unsupported "Sealing a field to non-structured type") let seal ty = seal' (Ctypes.string_of_typ ty) ty type _ const = unit let constant name ty = consts := (name, Ctypes_static.BoxedType ty) :: !consts let enum name ?(typedef=false) ?unexpected alist = let () = enums := (name, typedef) :: !enums in let format_typ k fmt = Format.fprintf fmt "%s%s%t" (if typedef then "" else "enum ") name k in (* a dummy value of type 'a typ, mostly unusable *) view void ~format_typ ~read:(fun _ -> assert false) ~write:(fun _ -> assert false) end : TYPE) in (m, finally) let write_c fmt (module B : BINDINGS) = let m, finally = gen_c () in let module M = B((val m)) in finally fmt
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>