package merlin-lib
Merlin's libraries
Install
Dune Dependency
Authors
Maintainers
Sources
merlin-4.14-500.tbz
sha256=ec23f324f875520cd8897f303cc6d4e595f3d7000914d410729f16b86ad1d70e
sha512=8db22100cc0af65b08f456a2a7af84e75396f5869ee7552f1f5888a1c0279d1d85e6eecb3a677ae6f0973a99823cddba0563843ce216197255667342ef161885
doc/src/merlin-lib.ocaml_utils/load_path.ml.html
Source file load_path.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
(**************************************************************************) (* *) (* OCaml *) (* *) (* Jeremie Dimino, Jane Street Europe *) (* *) (* Copyright 2018 Jane Street Group LLC *) (* *) (* All rights reserved. This file is distributed under the terms of *) (* the GNU Lesser General Public License version 2.1, with the *) (* special exception on linking described in the file LICENSE. *) (* *) (**************************************************************************) open Local_store module STbl = Misc.String.Tbl (* Mapping from basenames to full filenames *) type registry = string STbl.t let files : registry ref = s_table STbl.create 42 let files_uncap : registry ref = s_table STbl.create 42 module Dir = struct type t = { path : string; files : string list; } let path t = t.path let files t = t.files let find t fn = if List.mem fn t.files then Some (Filename.concat t.path fn) else None let find_uncap t fn = let fn = String.uncapitalize_ascii fn in let search base = if String.uncapitalize_ascii base = fn then Some (Filename.concat t.path base) else None in List.find_map search t.files let create path = { path; files = Array.to_list (Directory_content_cache.read path) } let check t = Directory_content_cache.check t.path end type auto_include_callback = (Dir.t -> string -> string option) -> string -> string let dirs = s_ref [] let no_auto_include _ _ = raise Not_found let auto_include_callback = ref no_auto_include let reset () = assert (not Config.merlin || Local_store.is_bound ()); STbl.clear !files; STbl.clear !files_uncap; dirs := []; auto_include_callback := no_auto_include let get () = List.rev !dirs let get_paths () = List.rev_map Dir.path !dirs (* Optimized version of [add] below, for use in [init] and [remove_dir]: since we are starting from an empty cache, we can avoid checking whether a unit name already exists in the cache simply by adding entries in reverse order. *) let prepend_add dir = List.iter (fun base -> let fn = Filename.concat dir.Dir.path base in STbl.replace !files base fn; STbl.replace !files_uncap (String.uncapitalize_ascii base) fn ) dir.Dir.files let init ~auto_include l = assert (not Config.merlin || Local_store.is_bound ()); let rec loop_changed acc = function | [] -> Some acc | new_path :: new_rest -> loop_changed (Dir.create new_path :: acc) new_rest in let rec loop_unchanged acc new_paths old_dirs = match new_paths, old_dirs with | [], [] -> None | new_path :: new_rest, [] -> loop_changed (Dir.create new_path :: acc) new_rest | [], _ :: _ -> Some acc | new_path :: new_rest, old_dir :: old_rest -> if String.equal new_path (Dir.path old_dir) then begin if Dir.check old_dir then begin loop_unchanged (old_dir :: acc) new_rest old_rest end else begin loop_changed (Dir.create new_path :: acc) new_rest end end else begin loop_changed (Dir.create new_path :: acc) new_rest end in match loop_unchanged [] l (List.rev !dirs) with | None -> () | Some new_dirs -> reset (); dirs := new_dirs; List.iter prepend_add new_dirs; auto_include_callback := auto_include let remove_dir dir = assert (not Config.merlin || Local_store.is_bound ()); let new_dirs = List.filter (fun d -> Dir.path d <> dir) !dirs in if List.compare_lengths new_dirs !dirs <> 0 then begin reset (); List.iter prepend_add new_dirs; dirs := new_dirs end (* General purpose version of function to add a new entry to load path: We only add a basename to the cache if it is not already present in the cache, in order to enforce left-to-right precedence. *) let add dir = assert (not Config.merlin || Local_store.is_bound ()); List.iter (fun base -> let fn = Filename.concat dir.Dir.path base in if not (STbl.mem !files base) then STbl.replace !files base fn; let ubase = String.uncapitalize_ascii base in if not (STbl.mem !files_uncap ubase) then STbl.replace !files_uncap ubase fn) dir.Dir.files; dirs := dir :: !dirs let append_dir = add let add_dir dir = add (Dir.create dir) (* Add the directory at the start of load path - so basenames are unconditionally added. *) let prepend_dir dir = assert (not Config.merlin || Local_store.is_bound ()); prepend_add dir; dirs := !dirs @ [dir] let is_basename fn = Filename.basename fn = fn (* let auto_include_libs libs alert find_in_dir fn = let scan (lib, lazy dir) = let file = find_in_dir dir fn in let alert_and_add_dir _ = alert lib; append_dir dir in Option.iter alert_and_add_dir file; file in match List.find_map scan libs with | Some base -> base | None -> raise Not_found *) (* let auto_include_otherlibs = (* Ensure directories are only ever scanned once *) let expand = Misc.expand_directory Config.standard_library in let otherlibs = let read_lib lib = lazy (Dir.create (expand ("+" ^ lib))) in List.map (fun lib -> (lib, read_lib lib)) ["dynlink"; "str"; "unix"] in auto_include_libs otherlibs *) let find fn = assert (not Config.merlin || Local_store.is_bound ()); try if is_basename fn && not !Sys.interactive then STbl.find !files fn else Misc.find_in_path (get_paths ()) fn with Not_found -> !auto_include_callback Dir.find fn let find_uncap fn = assert (not Config.merlin || Local_store.is_bound ()); try if is_basename fn && not !Sys.interactive then STbl.find !files_uncap (String.uncapitalize_ascii fn) else Misc.find_in_path_uncap (get_paths ()) fn with Not_found -> let fn_uncap = String.uncapitalize_ascii fn in !auto_include_callback Dir.find_uncap fn_uncap
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>