package conan
Identify type of your file (such as the MIME type)
Install
Dune Dependency
Authors
Maintainers
Sources
conan-0.0.6.tbz
sha256=b210257b881715ffb9dcbf88678c8559ec2aef26795a5304afd5a8b4bbf11e16
sha512=5b46c70c237a6c40b1119bdc33e30fb4911d9f60e5b6bc3976604a0a4bd17635ecbb0862b9944e6022090ab0f1d01bd5e1832b465a7c2c5328e88d7cf23c2e40
doc/src/conan/tree.ml.html
Source file tree.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 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
let () = Printexc.record_backtrace true let ( <.> ) f g x = f (g x) let invalid_arg fmt = Format.kasprintf invalid_arg fmt let pf = Format.fprintf type 'a fmt = { fmt : 'r. unit -> ('a -> 'r, 'r) Fmt.fmt; str : Parse.message } let fmt { fmt; _ } = fmt type operation = | Rule : Offset.t * ('test, 'v) Ty.t * 'test Test.t * 'v fmt -> operation | Name : Offset.t * string -> operation | Use : { offset : Offset.t; invert : bool; name : string } -> operation | MIME : string -> operation | Extension : string list -> operation type elt = { operation : operation; filename : string option; line : int option; } let pp_message ppf = function | `No_space str -> pf ppf "\b%s" str | `Space str -> pf ppf "%s" str let pp_operation ppf = function | Rule (offset, ty, test, fmt) -> pf ppf "%a\t%a\t%a\t%a" Offset.pp offset Ty.pp ty Test.pp test pp_message fmt.str | Name (offset, name) -> pf ppf "%a\t%s" Offset.pp offset name | Use { offset; invert = false; name } -> pf ppf "%a\t%s" Offset.pp offset name | Use { offset; invert = true; name } -> pf ppf "\\^%a\t%s" Offset.pp offset name | MIME v -> pf ppf "!:mime %s" v | Extension vs -> pf ppf "!:ext %s" (String.concat "/" vs) let pp_operation_with_debug ppf t = match (t.filename, t.line) with | None, None | Some _, None | None, Some _ -> pp_operation ppf t.operation | Some filename, Some line -> pf ppf "[%s:%d] - %a" filename line pp_operation t.operation type t = Node of (elt * t) list | Done let rec depth = function | Done | Node [] -> 1 | Node lst -> List.rev_map (fun (_, t) -> depth t) lst |> maximum |> ( + ) 1 and maximum = function [] -> 0 | x :: r -> max x (maximum r) let rec weight = function | Done | Node [] -> 1 | Node lst -> List.rev_map (fun (_, t) -> weight t) lst |> List.fold_left ( + ) (List.length lst) let serialize_message ppf = function | `No_space str -> Format.fprintf ppf "`No_space %S" str | `Space str -> Format.fprintf ppf "`Space %S" str let serialize_operation ppf = function | Rule (offset, ty, test, { str; _ }) -> Format.fprintf ppf "let ty = @[<hov>%a@] in@ @[<2>Conan.Tree.Unsafe.rule@ ~offset:@[%a@]@ \ ty@ @[%a@]@ @[%a@]@]" Ty.serialize ty Serialize.(parens Offset.serialize) offset Serialize.(parens Test.serialize) test Serialize.(parens serialize_message) str | Name (offset, name) -> Format.fprintf ppf "@[<2>Conan.Tree.Unsafe.name@ ~offset:@[%a@]@ %S@]" Serialize.(parens Offset.serialize) offset name | Use { offset; invert; name } -> Format.fprintf ppf "@[<2>Conan.Tree.Unsafe.use@ ~offset:@[%a@]@ ~invert:%b@ %S@]" Serialize.(parens Offset.serialize) offset invert name | MIME str -> Format.fprintf ppf "@[<2>Conan.Tree.Unsafe.mime@ %S@]" str | Extension vs -> Format.fprintf ppf "@[<2>Conan.Tree.Unsafe.extension@ %a@]" Serialize.(list string) vs let serialize_elt ppf { operation; filename; line } = Format.fprintf ppf "@[<2>Conan.Tree.Unsafe.elt@ ?filename:@[%a@]@ ?line:@[%a@]@ @[%a@]@]" Serialize.(parens (option string)) filename Serialize.(parens (option int)) line Serialize.(parens serialize_operation) operation let rec serialize ppf = function | Done -> Format.fprintf ppf "Conan.Tree.Unsafe.leaf" | Node lst -> let serialize = Serialize.(pair serialize_elt serialize) in Format.fprintf ppf "@[<2>Conan.Tree.Unsafe.node@ %a@]" Serialize.(list serialize) lst let pp_level ppf n = let rec go = function | 0 -> () | n -> pf ppf ">"; go (pred n) in go (max n 0) let pp ppf tree = let rec go level = function | Done -> () | Node lst -> let lst = List.rev lst in let iter (rule, tree) = pf ppf "%a%a\n%!" pp_level level pp_operation_with_debug rule; go (succ level) tree in List.iter iter lst in go 0 tree let system_long = Size.long let indirect_1 ?(size = system_long) v = let f = function | `Dir v -> Offset.Value v | `Ind v -> Offset.(Relative (Read (Value v, size))) in Arithmetic.map ~f v let indirect_0 (return, (offset, size, disp)) = let open Offset in let size = Option.value ~default:system_long size in let offset = match (disp, offset) with | None, `Rel offset -> Relative (Value offset) | None, `Abs offset -> Absolute (Value offset) | Some disp, `Rel offset -> let calculation = indirect_1 ~size disp in Calculation (Relative (Value offset), calculation) | Some disp, `Abs offset -> let calculation = indirect_1 ~size disp in Calculation (Absolute (Value offset), calculation) in match return with | `Rel -> Relative (Read (offset, size)) | `Abs -> Absolute (Read (offset, size)) let offset = function | `Abs offset -> Offset.(Absolute (Value offset)) | `Rel offset -> Offset.(Relative (Value offset)) | `Ind ind -> indirect_0 ind type _k = Ty : ('test, 'v) Ty.t -> _k type _t = Test : 'test Test.t -> _t type _f = Format : 'v fmt -> _f let calculation : cast:(int64 -> 'v) -> int64 Arithmetic.t option -> 'v Arithmetic.t = fun ~cast:f -> function | None -> Arithmetic.add (f 0L) | Some c -> Arithmetic.map ~f c let percent = Sub.v "%" let rec force_to_use_any_formatter s = let open Sub in match cut ~sep:percent s with | None -> None | Some (x, r) -> ( match head r with | None -> None | Some '%' -> ( match force_to_use_any_formatter (tail r) with | None -> None | Some r -> Some (to_string x ^ "%%" ^ r)) | _ -> let flags, r = span ~sat:Fmt.is_flag r in let padding, r = span ~sat:Fmt.is_digit r in let r = tail r in Some (to_string x ^ "%" ^ to_string flags ^ to_string padding ^ "!" ^ to_string r)) let key_of_ty : type test v. string -> (test, v) Ty.t -> v Fmt.Hmap.Key.key = fun message ty0 -> let any = Fmt.Hmap.Key.create () in let (Fmt.Ty ty1) = Fmt.ty_of_string ~any message in match (ty0, ty1) with | Byte _, Int End -> Pps.char_to_int | Long _, Int End -> Pps.int32_to_int | _ -> invalid_arg "Impossible to convert %a to %a on %S" Ty.pp ty0 Fmt.pp_ty ty1 message let format_of_ty : type test v. (test, v) Ty.t -> _ -> (v -> 'r, 'r) Fmt.fmt = fun ty message -> let with_space, message = match message with | `No_space message -> (false, message) | `Space "" -> (false, "") | `Space message -> (true, message) in let with_space fmt = if not with_space then fmt else Fmt.((pp_string $ " ") :: fmt) in let any = Fmt.Hmap.Key.create () in try match ty with | Default -> let fmt = Fmt.of_string ~any message Fmt.End in with_space Fmt.([ ignore ] ^^ fmt) | Offset -> with_space (Fmt.of_string ~any message Fmt.(Int64 End)) | Clear -> let fmt = Fmt.of_string ~any message Fmt.End in with_space Fmt.([ ignore ] ^^ fmt) | Byte _ -> with_space (Fmt.of_string ~any message Fmt.(Char End)) | Search _ -> with_space (Fmt.of_string ~any message Fmt.(String End)) | Unicode_string _ -> with_space (Fmt.of_string ~any message Fmt.(String End)) | Short _ -> with_space (Fmt.of_string ~any message Fmt.(Int End)) | Long _ -> with_space (Fmt.of_string ~any message Fmt.(Int32 End)) | Quad _ -> with_space (Fmt.of_string ~any message Fmt.(Int64 End)) | Float _ -> with_space (Fmt.of_string ~any message Fmt.(Float End)) | Double _ -> with_space (Fmt.of_string ~any message Fmt.(Float End)) | Regex _ -> with_space (Fmt.of_string ~any message Fmt.(Any (Pps.ropes_to_string, End))) | Pascal_string -> with_space (Fmt.of_string ~any message Fmt.(String End)) | Date _ -> with_space (Fmt.of_string ~any message Fmt.(String End)) | Indirect _ -> assert false with _ -> ( match force_to_use_any_formatter (Sub.v message) with | Some message1 -> let key = key_of_ty message ty in with_space (Fmt.of_string message1 ~any:key Fmt.(Any (key, End))) | None -> with_space Fmt.([ ignore ] ^^ of_string ~any message End)) let padding_of_string_format : type test v. (test, v) Ty.t -> _ -> int option = fun ty message -> let fmt = format_of_ty ty message in let rec go : type ty v. int option -> (ty, v) Fmt.fmt -> int option = fun padding fmt -> match (padding, fmt) with | padding, [] -> padding | None, String (Lit (_, n)) :: fmt -> go (Some n) fmt | Some n, String (Lit (_, m)) :: fmt -> go (Some (max n m)) fmt | padding, _ :: fmt -> go padding fmt in go None fmt (* TODO: "\\0" -> "\000", it's an hack! *) let normalize_regex str = let zero = Sub.v "\\0" in let rec go str = match Sub.cut ~sep:zero str with | Some (a, b) -> let b = go b in Sub.concat [ a; Sub.v "\000"; b ] | None -> str in Sub.to_string (go (Sub.v str)) type date = [ `Date | `Ldate | `Qdate | `Qldate | `Qwdate ] let rule : Parse.rule -> operation = fun ((_level, o), ty, test, message) -> let offset = offset o in let (Ty ty) = match ty with | _, `Offset -> Ty Ty.offset | _, `Default -> Ty Ty.default | _, `Clear -> Ty Ty.clear | _, `Regex (Some (case_insensitive, start, line, limit)) -> let kind = if line then `Line else `Byte in Ty (Ty.regex ~case_insensitive ~start ~limit kind) | _, `Regex None -> Ty (Ty.regex `Byte) | _, `String16 endian -> Ty (Ty.str_unicode endian) | _, `String8 (Some (b, _B, c, _C)) -> Ty (Ty.search ~lower_case_insensitive:c ~upper_case_insensitive:_C (if b || _B then `Binary else `Text) 0L ~pattern:"") | _, `Search None | _, `String8 None -> Ty (Ty.search `Text ~pattern:"" 0L) | _, `Search (Some (flags, range)) -> let range = Option.value ~default:0L range in let lower_case_insensitive = List.exists (( = ) `c) flags in let upper_case_insensitive = List.exists (( = ) `C) flags in let compact_whitespaces = List.exists (( = ) `W) flags in let optional_blank = List.exists (( = ) `w) flags in let trim = List.exists (( = ) `T) flags in let kind = match ( List.exists (( = ) `b) flags, List.exists (( = ) `B) flags, List.exists (( = ) `t) flags ) with | true, true, false | true, false, false | false, true, false -> `Binary | _, _, _ -> `Text in Ty (Ty.search ~compact_whitespaces ~optional_blank ~lower_case_insensitive ~upper_case_insensitive ~trim kind ~pattern:"" range) | _, `Indirect rel -> Ty (Ty.indirect (if rel then `Rel else `Abs)) | _, `Numeric (endian, (#date as date), c) -> let cast = Ptime.Span.of_int_s <.> Int64.to_int in Ty (Ty.date date endian (calculation ~cast c)) | unsigned, `Numeric (_endian, `Byte, c) -> let cast = Char.chr <.> ( land ) 0xff <.> Int64.to_int in Ty (Ty.numeric ~unsigned Integer.byte (calculation ~cast c)) | unsigned, `Numeric (Some ((`BE | `LE) as endian), `Short, c) -> let cast = Int64.to_int in Ty (Ty.numeric ~unsigned ~endian Integer.short (calculation ~cast c)) | unsigned, `Numeric (_, `Short, c) -> let cast = Int64.to_int in Ty (Ty.numeric ~unsigned Integer.short (calculation ~cast c)) | unsigned, `Numeric (endian, `Long, c) -> let cast = Int64.to_int32 in Ty (Ty.numeric ~unsigned ?endian:(endian :> Ty.endian option) Integer.int32 (calculation ~cast c)) | unsigned, `Numeric (endian, `Quad, c) -> Ty (Ty.numeric ~unsigned ?endian:(endian :> Ty.endian option) Integer.int64 (calculation ~cast:(fun x -> x) c)) | unsigned, `Numeric (endian, `Double, c) -> let cast = Int64.float_of_bits in Ty (Ty.double ~unsigned ?endian:(endian :> Ty.endian option) (calculation ~cast c)) | unsigned, `Numeric (endian, `Float, c) -> let cast = Int64.float_of_bits in Ty (Ty.float ~unsigned ?endian:(endian :> Ty.endian option) (calculation ~cast c)) in let (Test test) = match (test, ty) with | `True, _ -> Test Test.always_true | `Numeric c, Offset -> let c = Comparison.map ~f:fst c in Test (Test.numeric Integer.int64 (Comparison.map ~f:Number.to_int64 c)) | `Numeric c, Byte _ -> let c = Comparison.map ~f:fst c in Test (Test.numeric Integer.byte (Comparison.map ~f:Number.to_byte c)) | `Numeric c, Short _ -> let c = Comparison.map ~f:fst c in Test (Test.numeric Integer.short (Comparison.map ~f:Number.to_short c)) | `Numeric c, Long _ -> let c = Comparison.map ~f:fst c in Test (Test.numeric Integer.int32 (Comparison.map ~f:Number.to_int32 c)) | `Numeric c, Quad _ -> let c = Comparison.map ~f:fst c in Test (Test.numeric Integer.int64 (Comparison.map ~f:Number.to_int64 c)) | `Numeric c, Double _ -> let c = Comparison.map ~f:fst c in let c = Comparison.map ~f:Number.to_float c in Test (Test.float c) | `Numeric c, Float _ -> let c = Comparison.map ~f:fst c in let c = Comparison.map ~f:Number.to_float c in Test (Test.float c) | `String c, Search _ | `String c, Pascal_string -> Test (Test.string c) | `String c, Unicode_string endian -> Test (Test.str_unicode endian c) | `String c, Regex _ -> ( let f v = Re.Posix.re (normalize_regex v) in try Test (Test.regex (Comparison.map ~f c)) with _ -> Test Test.always_false) | `Numeric c, Search _ -> (* XXX(dinosaure): choose [string] repr instead [numeric] repr. *) let c = Comparison.map ~f:snd c in Test (Test.string c) | `Numeric c, Date _ -> let c = Comparison.map ~f:fst c in Test (Test.date (Comparison.map ~f:Number.to_ptime c)) | `Numeric c, ty -> let c = Comparison.map ~f:fst c in let v = Comparison.value c in invalid_arg "Impossible to test a number (%a) with the given type: %a" Number.pp v Ty.pp ty | `String c, ty -> let v = Comparison.value c in invalid_arg "Impossible to test a string (%S) with the given type: %a" v Ty.pp ty in let make : type test0 test1 v. test0 Test.t -> (test1, v) Ty.t -> operation = fun test ty -> match (test, ty) with | True, Default | String _, Default | Numeric _, Default | Float _, Default | Unicode_string _, Default -> Rule ( offset, ty, Test.always_true, { fmt = (fun () -> format_of_ty ty message); str = message } ) | True, Clear | String _, Clear | Numeric _, Clear -> Rule ( offset, ty, Test.always_true, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Regex c, Regex _ -> Rule ( offset, ty, Test.regex c, { fmt = (fun () -> format_of_ty ty message); str = message } ) | String c, Unicode_string _ -> let pattern = Comparison.value c in Rule ( offset, Ty.with_pattern pattern ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | String c, Search { range; _ } -> let pattern = Comparison.value c in let range = max range ((Int64.of_int <.> String.length) pattern) in let range = match padding_of_string_format ty message with | Some n -> max range (Int64.of_int n) | None -> range in Rule ( offset, (Ty.with_range range <.> Ty.with_pattern pattern) ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Length _, Search _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Numeric (Int64, _), Offset -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Numeric (Byte, _), Byte _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Numeric (Short, _), Short _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Numeric (Int32, _), Long _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Numeric (Int64, _), Quad _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Date _, Date _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Float _, Double _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Float _, Float _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | Unicode_string _, Unicode_string _ -> Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) | True, _ -> Rule ( offset, ty, Test.always_true, { fmt = (fun () -> format_of_ty ty message); str = message } ) | False, _ -> Rule ( offset, ty, Test.always_false, { fmt = (fun () -> format_of_ty ty message); str = message } ) | test, ty -> invalid_arg "Impossible to operate a test (%a) on the given value (%a)" Test.pp test Ty.pp ty in make test ty let name : _ -> operation = fun ((_level, o), name) -> let offset = offset o in Name (offset, name) let use : _ -> operation = fun ((_level, o), invert, name) -> let offset = offset o in Use { offset; invert; name } let mime : _ -> operation = fun v -> MIME v let ext : _ -> operation = fun v -> Extension v exception Not_implemented let operation ~max = function | `Rule (((level, _), _, _, _) as v) -> let rule = rule v in (level, rule) | `Name (((level, _), _) as v) -> let name = name v in (level, name) | `Use (((level, _), _, _) as v) -> let use = use v in (level, use) | `Mime v -> (max, mime v) | `Ext vs -> (max, ext vs) | _ -> raise Not_implemented let rec left = function | Done | Node [] -> 0 | Node ((_, hd) :: _) -> 1 + left hd let rec depth_left = function | Done | Node [] -> 0 | Node ((_, hd) :: _) -> 1 + depth_left hd let operation_with_debug ?filename ?line operation = { operation; filename; line } let empty = Done let append tree ?filename ?line:n (line : Parse.line) = match line with | `Rule _ | `Name _ | `Use _ | `Mime _ | `Ext _ -> let max = depth_left tree in let level, operation = operation ~max line in let operation = operation_with_debug ?filename ?line:n operation in if level <= left tree then let rec go cur tree = if cur = level then match tree with | Done -> Node [ (operation, Done) ] | Node l -> Node ((operation, Done) :: l) else match tree with | Done | Node [] -> Node [ (operation, Done) ] | Node ((x, hd) :: tl) -> let hd = go (succ cur) hd in Node ((x, hd) :: tl) in go 0 tree else tree | _ -> tree let merge a b = match (a, b) with | Done, Done -> Done | Done, Node _ -> b | Node _, Done -> a | Node a, Node b -> Node (a @ b) let operation { operation; _ } = operation module Unsafe = struct let rule ~offset ty test message = Rule ( offset, ty, test, { fmt = (fun () -> format_of_ty ty message); str = message } ) let name ~offset name = Name (offset, name) let use ~offset ~invert name = Use { offset; invert; name } let mime str = MIME str let extension str = Extension str let elt ?filename ?line operation = { operation; filename; line } let node lst = Node lst let leaf = Done end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>