package ppx_optcomp
Optional compilation for OCaml
Install
Dune Dependency
Authors
Maintainers
Sources
v0.17.1.tar.gz
md5=0bf43393409414c655c4473d79480fdf
sha512=2e7c41f168c004cf3be1cd768a5406c61af135c0b084ffdfc39555b4be8c21a227c56cffbfb66de8dc3de35f735277d330f3cc6762e6ba8708deebb78f9fd49b
doc/src/ppx_optcomp/interpreter.ml.html
Source file interpreter.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 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 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
open Base open Ppxlib open Ast_builder.Default module Filename = Stdlib.Filename module Parsing = Stdlib.Parsing module Type = struct type t = | Var of string | Bool | Int | Char | String | Tuple of t list let rec to_string = function | Var v -> "'" ^ v | Bool -> "bool" | Int -> "int" | Char -> "char" | String -> "string" | Tuple l -> "(" ^ String.concat ~sep:" * " (List.map l ~f:to_string) ^ ")" ;; end module Value = struct type t = | Bool of bool | Int of int | Char of char | String of string | Tuple of t list let ocaml_version = Stdlib.Scanf.sscanf Stdlib.Sys.ocaml_version "%d.%d.%d" (fun major minor patchlevel -> Tuple [ Int major; Int minor; Int patchlevel ]) ;; let os_type = String Stdlib.Sys.os_type let config_bool name = Bool (Ocaml_common.Config.config_var name |> Option.map ~f:Bool.of_string |> Option.value ~default:false) ;; let flambda_backend = config_bool "flambda_backend" let flambda = config_bool "flambda" let flambda2 = config_bool "flambda2" let host_is_i386 = Bool (Ocaml_common.Config.config_var "architecture" |> Option.map ~f:(fun arch -> String.equal arch "i386") |> Option.value ~default:false) ;; let rec to_expression loc t = match t with | Bool x -> ebool ~loc x | Int x -> eint ~loc x | Char x -> echar ~loc x | String x -> estring ~loc x | Tuple [] -> eunit ~loc | Tuple [ x ] -> to_expression loc x | Tuple l -> pexp_tuple ~loc (List.map l ~f:(to_expression loc)) ;; let rec to_pattern loc t = match t with | Bool x -> pbool ~loc x | Int x -> pint ~loc x | Char x -> pchar ~loc x | String x -> pstring ~loc x | Tuple [] -> punit ~loc | Tuple [ x ] -> to_pattern loc x | Tuple l -> ppat_tuple ~loc (List.map l ~f:(to_pattern loc)) ;; let to_string_pretty v = let e = to_expression Location.none v in Pprintast.string_of_expression e ;; let to_string v = let buf = Buffer.create 128 in let rec aux = function | Bool b -> Buffer.add_string buf (Bool.to_string b) | Int n -> Buffer.add_string buf (Int.to_string n) | Char ch -> Buffer.add_char buf ch | String s -> Buffer.add_string buf s | Tuple [] -> Buffer.add_string buf "()" | Tuple (x :: l) -> Buffer.add_char buf '('; aux x; List.iter l ~f:(fun x -> Buffer.add_string buf ", "; aux x); Buffer.add_char buf ')' in aux v; Buffer.contents buf ;; let rec type_ : t -> Type.t = function | Bool _ -> Bool | Int _ -> Int | Char _ -> Char | String _ -> String | Tuple l -> Tuple (List.map l ~f:type_) ;; end module Env : sig type t val init : t val empty : t val add : t -> var:string Location.loc -> value:Value.t -> t val undefine : t -> string Location.loc -> t val of_list : (string Location.loc * Value.t) list -> t val eval : t -> string Location.loc -> Value.t val is_defined : ?permissive:bool -> t -> string Location.loc -> bool val seen : t -> string Location.loc -> bool val to_expression : t -> expression end = struct type var_state = | Defined of Value.t | Undefined type entry = { loc : Location.t (** Location at which it was defined/undefined *) ; state : var_state } type t = entry Map.M(String).t let empty = Map.empty (module String) let to_expression t = pexp_apply ~loc:Location.none (evar ~loc:Location.none "env") (List.map (Map.to_alist t) ~f:(fun (var, { loc; state }) -> ( Labelled var , match state with | Defined v -> pexp_construct ~loc { txt = Lident "Defined"; loc } (Some (Value.to_expression loc v)) | Undefined -> pexp_construct ~loc { txt = Lident "Undefined"; loc } None ))) ;; let seen t (var : _ Loc.t) = Map.mem t var.txt let add t ~(var : _ Loc.t) ~value = Map.set t ~key:var.txt ~data:{ loc = var.loc; state = Defined value } ;; let undefine t (var : _ Loc.t) = Map.set t ~key:var.txt ~data:{ loc = var.loc; state = Undefined } ;; let of_list l = List.fold_left l ~init:empty ~f:(fun acc (var, value) -> add acc ~var ~value) ;; let init = of_list [ { loc = Location.none; txt = "ocaml_version" }, Value.ocaml_version ; { loc = Location.none; txt = "os_type" }, Value.os_type ; { loc = Location.none; txt = "flambda_backend" }, Value.flambda_backend ; { loc = Location.none; txt = "flambda" }, Value.flambda ; { loc = Location.none; txt = "flambda2" }, Value.flambda2 ; { loc = Location.none; txt = "host_is_i386" }, Value.host_is_i386 ] ;; let short_loc_string (loc : Location.t) = Printf.sprintf "%s:%d" loc.loc_start.pos_fname loc.loc_start.pos_lnum ;; let eval (t : t) (var : string Loc.t) = match Map.find t var.txt with | Some { state = Defined v; loc = _ } -> v | Some { state = Undefined; loc } -> Location.raise_errorf ~loc:var.loc "optcomp: %s is undefined (undefined at %s)" var.txt (short_loc_string loc) | None -> Location.raise_errorf ~loc:var.loc "optcomp: unbound value %s" var.txt ;; let is_defined ?(permissive = false) (t : t) (var : string Loc.t) = match Map.find t var.txt with | Some { state = Defined _; _ } -> true | Some { state = Undefined; _ } -> false | None -> if permissive then false else Location.raise_errorf ~loc:var.loc "optcomp: doesn't know about %s.\n\ You need to either define it or undefine it with #undef.\n\ Optcomp doesn't accept variables it doesn't know about to avoid typos." var.txt ;; end (* +-----------------------------------------------------------------+ | Expression evaluation | +-----------------------------------------------------------------+ *) let invalid_type loc expected real = Location.raise_errorf ~loc "optcomp: this expression has type %s but is used with type %s" (Type.to_string real) (Type.to_string expected) ;; let var_of_lid (id : _ Located.t) = match Longident.flatten_exn id.txt with | l -> { id with txt = String.concat ~sep:"." l } | exception _ -> Location.raise_errorf ~loc:id.loc "optcomp: invalid variable name" ;; let cannot_convert loc dst x = Location.raise_errorf ~loc "cannot convert %s to %s" (Value.to_string_pretty x) dst ;; let convert_from_string loc dst f x = try f x with | _ -> Location.raise_errorf ~loc "optcomp: cannot convert %S to %s" x dst ;; exception Pattern_match_failure of pattern * Value.t let lid_of_expr e = match e.pexp_desc with | Pexp_ident id | Pexp_construct (id, None) -> id | _ -> Location.raise_errorf ~loc:e.pexp_loc "optcomp: identifier expected" ;; let var_of_expr e = var_of_lid (lid_of_expr e) let not_supported e = Location.raise_errorf ~loc:e.pexp_loc "optcomp: expression not supported" ;; let parse_int loc x = match Int.of_string x with | v -> v | exception _ -> Location.raise_errorf ~loc "optcomp: invalid integer" ;; let rec eval env e : Value.t = let loc = e.pexp_loc in match e.pexp_desc with | Pexp_constant (Pconst_integer (x, None)) -> Int (parse_int loc x) | Pexp_constant (Pconst_char x) -> Char x | Pexp_constant (Pconst_string (x, _, _)) -> String x | Pexp_construct ({ txt = Lident "true"; _ }, None) -> Bool true | Pexp_construct ({ txt = Lident "false"; _ }, None) -> Bool false | Pexp_construct ({ txt = Lident "()"; _ }, None) -> Tuple [] | Pexp_tuple l -> Tuple (List.map l ~f:(eval env)) | Pexp_ident id | Pexp_construct (id, None) -> Env.eval env (var_of_lid id) | Pexp_apply ({ pexp_desc = Pexp_ident { txt = Lident s; _ }; _ }, args) -> let args = List.map args ~f:(fun (l, x) -> match l with | Nolabel -> x | _ -> not_supported e) in (match s, args with | "=", [ x; y ] -> eval_cmp env Poly.( = ) x y | "<", [ x; y ] -> eval_cmp env Poly.( < ) x y | ">", [ x; y ] -> eval_cmp env Poly.( > ) x y | "<=", [ x; y ] -> eval_cmp env Poly.( <= ) x y | ">=", [ x; y ] -> eval_cmp env Poly.( >= ) x y | "<>", [ x; y ] -> eval_cmp env Poly.( <> ) x y | "min", [ x; y ] -> eval_poly2 env Poly.min x y | "max", [ x; y ] -> eval_poly2 env Poly.max x y | "+", [ x; y ] -> eval_int2 env ( + ) x y | "-", [ x; y ] -> eval_int2 env ( - ) x y | "*", [ x; y ] -> eval_int2 env ( * ) x y | "/", [ x; y ] -> eval_int2 env ( / ) x y | "mod", [ x; y ] -> eval_int2 env Stdlib.( mod ) x y | "not", [ x ] -> Bool (not (eval_bool env x)) | "||", [ x; y ] -> eval_bool2 env ( || ) x y | "&&", [ x; y ] -> eval_bool2 env ( && ) x y | "^", [ x; y ] -> eval_string2 env ( ^ ) x y | "fst", [ x ] -> fst (eval_pair env x) | "snd", [ x ] -> snd (eval_pair env x) | "to_string", [ x ] -> String (Value.to_string (eval env x)) | "to_int", [ x ] -> Int (match eval env x with | String x -> convert_from_string loc "int" Int.of_string x | Int x -> x | Char x -> Char.to_int x | (Bool _ | Tuple _) as x -> cannot_convert loc "int" x) | "to_bool", [ x ] -> Bool (match eval env x with | String x -> convert_from_string loc "bool" Bool.of_string x | Bool x -> x | (Int _ | Char _ | Tuple _) as x -> cannot_convert loc "bool" x) | "to_char", [ x ] -> Char (match eval env x with | String x -> convert_from_string loc "char" (fun s -> assert (String.length s = 1); s.[0]) x | Char x -> x | Int x -> (match Char.of_int x with | Some x -> x | None -> Location.raise_errorf ~loc "optcomp: cannot convert %d to char" x) | (Bool _ | Tuple _) as x -> cannot_convert loc "char" x) | "show", [ x ] -> let v = eval env x in let ppf = Stdlib.Format.err_formatter in let pprinted = Value.to_string_pretty v in Stdlib.Format.fprintf ppf "%a:@.SHOW %s@." Location.print loc pprinted; v | "defined", [ x ] -> Bool (Env.is_defined env (var_of_expr x)) | "not_defined", [ x ] -> Bool (not (Env.is_defined env (var_of_expr x))) | "not_defined_permissive", [ x ] -> Bool (not (Env.is_defined ~permissive:true env (var_of_expr x))) | _ -> not_supported e) (* Let-binding *) | Pexp_let (Nonrecursive, vbs, e) -> let env = List.fold_left vbs ~init:env ~f:(fun new_env vb -> let v = eval env vb.pvb_expr in do_bind new_env vb.pvb_pat v) in eval env e (* Pattern matching *) | Pexp_match (e, cases) -> let v = eval env e in let rec loop = function | [] -> Location.raise_errorf ~loc "optcomp: cannot match %s against any of the cases" (Value.to_string v) | case :: rest -> (match bind env case.pc_lhs v with | exception Pattern_match_failure _ -> loop rest | env -> let guard_ok = match case.pc_guard with | None -> true | Some e -> eval_bool env e in if guard_ok then eval env case.pc_rhs else loop rest) in loop cases | _ -> not_supported e and bind env patt value = let loc = patt.ppat_loc in match patt.ppat_desc, value with | Ppat_any, _ -> env | Ppat_constant (Pconst_integer (x, None)), Int y when parse_int loc x = y -> env | Ppat_constant (Pconst_char x), Char y when Char.equal x y -> env | Ppat_constant (Pconst_string (x, _, _)), String y when String.equal x y -> env | Ppat_construct ({ txt = Lident "true"; _ }, None), Bool true -> env | Ppat_construct ({ txt = Lident "false"; _ }, None), Bool false -> env | Ppat_construct ({ txt = Lident "()"; _ }, None), Tuple [] -> env | Ppat_var var, _ -> Env.add env ~var ~value | Ppat_construct (id, None), _ -> Env.add env ~var:(var_of_lid id) ~value | Ppat_alias (patt, var), _ -> Env.add (bind env patt value) ~var ~value | Ppat_tuple x, Tuple y when List.length x = List.length y -> Stdlib.ListLabels.fold_left2 x y ~init:env ~f:bind | _ -> raise (Pattern_match_failure (patt, value)) and do_bind env patt value = try bind env patt value with | Pattern_match_failure (pat, v) -> Location.raise_errorf ~loc:pat.ppat_loc "Cannot match %s with this pattern" (Value.to_string_pretty v) and eval_same env ex ey = let vx = eval env ex and vy = eval env ey in let tx = Value.type_ vx and ty = Value.type_ vy in if Poly.equal tx ty then vx, vy else invalid_type ey.pexp_loc tx ty and eval_int env e = match eval env e with | Int x -> x | v -> invalid_type e.pexp_loc Int (Value.type_ v) and eval_bool env e = match eval env e with | Bool x -> x | v -> invalid_type e.pexp_loc Bool (Value.type_ v) and eval_string env e = match eval env e with | String x -> x | v -> invalid_type e.pexp_loc String (Value.type_ v) and eval_pair env e = match eval env e with | Tuple [ x; y ] -> x, y | v -> invalid_type e.pexp_loc (Tuple [ Var "a"; Var "b" ]) (Value.type_ v) and eval_int2 env f a b = let a = eval_int env a in let b = eval_int env b in Int (f a b) and eval_bool2 env f a b = let a = eval_bool env a in let b = eval_bool env b in Bool (f a b) and eval_string2 env f a b = let a = eval_string env a in let b = eval_string env b in String (f a b) and eval_cmp env f a b = let a, b = eval_same env a b in Bool (f a b) and eval_poly2 env f a b = let a, b = eval_same env a b in f a b ;; (* +-----------------------------------------------------------------+ | Environment serialization | +-----------------------------------------------------------------+ *) module EnvIO = struct let to_expression = Env.to_expression let of_expression expr = Ast_pattern.parse Ast_pattern.(pexp_apply (pexp_ident (lident (string "env"))) __) expr.pexp_loc expr (fun args -> List.fold args ~init:Env.empty ~f:(fun env arg -> match arg with | ( Labelled var , { pexp_desc = Pexp_construct ({ txt = Lident "Defined"; _ }, Some e) ; pexp_loc = loc ; _ } ) -> Env.add env ~var:{ txt = var; loc } ~value:(eval Env.empty e) | ( Labelled var , { pexp_desc = Pexp_construct ({ txt = Lident "Undefined"; _ }, None) ; pexp_loc = loc ; _ } ) -> Env.undefine env { txt = var; loc } | _, e -> Location.raise_errorf ~loc:e.pexp_loc "ppx_optcomp: invalid cookie")) ;; end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>