package lsp
LSP protocol implementation in OCaml
Install
Dune Dependency
Authors
-
AAndrey Popp <8mayday@gmail.com>
-
RRusty Key <iam@stfoo.ru>
-
LLouis Roché <louis@louisroche.net>
-
OOleksiy Golovko <alexei.golovko@gmail.com>
-
RRudi Grinberg <me@rgrinberg.com>
-
SSacha Ayoun <sachaayoun@gmail.com>
-
Ccannorin <cannorin@gmail.com>
-
UUlugbek Abdullaev <ulugbekna@gmail.com>
-
Thibaut Mattio
-
MMax Lantas <mnxndev@outlook.com>
Maintainers
Sources
jsonrpc-1.10.3.tbz
sha256=a3ac1073b0728b94f4bdb0111772c0abaf7ff70324399450eab7156bfac151f1
sha512=bed6ddbde28088e43db0d40ab27056ba22537d19ffe8117a3da4c77676948f18708b06937dd2c972dce5c5822ea751c9c85cfa1ce3c1b3739460d4a24ebc2282
doc/src/lsp.filesystem_stubs/dune_filesystem_stubs.ml.html
Source file dune_filesystem_stubs.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
# 1 "submodules/dune/otherlibs/stdune/dune_filesystem_stubs/dune_filesystem_stubs.ml" module Unix_error = struct type t = Unix.error (* CR-someday amokhov: It would be nice to derive this instead. For now let's trust I haven't messed this up. *) let equal (x : t) (y : t) = match (x, y) with | E2BIG, E2BIG -> true | E2BIG, _ | _, E2BIG -> false | EACCES, EACCES -> true | EACCES, _ | _, EACCES -> false | EAGAIN, EAGAIN -> true | EAGAIN, _ | _, EAGAIN -> false | EBADF, EBADF -> true | EBADF, _ | _, EBADF -> false | EBUSY, EBUSY -> true | EBUSY, _ | _, EBUSY -> false | ECHILD, ECHILD -> true | ECHILD, _ | _, ECHILD -> false | EDEADLK, EDEADLK -> true | EDEADLK, _ | _, EDEADLK -> false | EDOM, EDOM -> true | EDOM, _ | _, EDOM -> false | EEXIST, EEXIST -> true | EEXIST, _ | _, EEXIST -> false | EFAULT, EFAULT -> true | EFAULT, _ | _, EFAULT -> false | EFBIG, EFBIG -> true | EFBIG, _ | _, EFBIG -> false | EINTR, EINTR -> true | EINTR, _ | _, EINTR -> false | EINVAL, EINVAL -> true | EINVAL, _ | _, EINVAL -> false | EIO, EIO -> true | EIO, _ | _, EIO -> false | EISDIR, EISDIR -> true | EISDIR, _ | _, EISDIR -> false | EMFILE, EMFILE -> true | EMFILE, _ | _, EMFILE -> false | EMLINK, EMLINK -> true | EMLINK, _ | _, EMLINK -> false | ENAMETOOLONG, ENAMETOOLONG -> true | ENAMETOOLONG, _ | _, ENAMETOOLONG -> false | ENFILE, ENFILE -> true | ENFILE, _ | _, ENFILE -> false | ENODEV, ENODEV -> true | ENODEV, _ | _, ENODEV -> false | ENOENT, ENOENT -> true | ENOENT, _ | _, ENOENT -> false | ENOEXEC, ENOEXEC -> true | ENOEXEC, _ | _, ENOEXEC -> false | ENOLCK, ENOLCK -> true | ENOLCK, _ | _, ENOLCK -> false | ENOMEM, ENOMEM -> true | ENOMEM, _ | _, ENOMEM -> false | ENOSPC, ENOSPC -> true | ENOSPC, _ | _, ENOSPC -> false | ENOSYS, ENOSYS -> true | ENOSYS, _ | _, ENOSYS -> false | ENOTDIR, ENOTDIR -> true | ENOTDIR, _ | _, ENOTDIR -> false | ENOTEMPTY, ENOTEMPTY -> true | ENOTEMPTY, _ | _, ENOTEMPTY -> false | ENOTTY, ENOTTY -> true | ENOTTY, _ | _, ENOTTY -> false | ENXIO, ENXIO -> true | ENXIO, _ | _, ENXIO -> false | EPERM, EPERM -> true | EPERM, _ | _, EPERM -> false | EPIPE, EPIPE -> true | EPIPE, _ | _, EPIPE -> false | ERANGE, ERANGE -> true | ERANGE, _ | _, ERANGE -> false | EROFS, EROFS -> true | EROFS, _ | _, EROFS -> false | ESPIPE, ESPIPE -> true | ESPIPE, _ | _, ESPIPE -> false | ESRCH, ESRCH -> true | ESRCH, _ | _, ESRCH -> false | EXDEV, EXDEV -> true | EXDEV, _ | _, EXDEV -> false | EWOULDBLOCK, EWOULDBLOCK -> true | EWOULDBLOCK, _ | _, EWOULDBLOCK -> false | EINPROGRESS, EINPROGRESS -> true | EINPROGRESS, _ | _, EINPROGRESS -> false | EALREADY, EALREADY -> true | EALREADY, _ | _, EALREADY -> false | ENOTSOCK, ENOTSOCK -> true | ENOTSOCK, _ | _, ENOTSOCK -> false | EDESTADDRREQ, EDESTADDRREQ -> true | EDESTADDRREQ, _ | _, EDESTADDRREQ -> false | EMSGSIZE, EMSGSIZE -> true | EMSGSIZE, _ | _, EMSGSIZE -> false | EPROTOTYPE, EPROTOTYPE -> true | EPROTOTYPE, _ | _, EPROTOTYPE -> false | ENOPROTOOPT, ENOPROTOOPT -> true | ENOPROTOOPT, _ | _, ENOPROTOOPT -> false | EPROTONOSUPPORT, EPROTONOSUPPORT -> true | EPROTONOSUPPORT, _ | _, EPROTONOSUPPORT -> false | ESOCKTNOSUPPORT, ESOCKTNOSUPPORT -> true | ESOCKTNOSUPPORT, _ | _, ESOCKTNOSUPPORT -> false | EOPNOTSUPP, EOPNOTSUPP -> true | EOPNOTSUPP, _ | _, EOPNOTSUPP -> false | EPFNOSUPPORT, EPFNOSUPPORT -> true | EPFNOSUPPORT, _ | _, EPFNOSUPPORT -> false | EAFNOSUPPORT, EAFNOSUPPORT -> true | EAFNOSUPPORT, _ | _, EAFNOSUPPORT -> false | EADDRINUSE, EADDRINUSE -> true | EADDRINUSE, _ | _, EADDRINUSE -> false | EADDRNOTAVAIL, EADDRNOTAVAIL -> true | EADDRNOTAVAIL, _ | _, EADDRNOTAVAIL -> false | ENETDOWN, ENETDOWN -> true | ENETDOWN, _ | _, ENETDOWN -> false | ENETUNREACH, ENETUNREACH -> true | ENETUNREACH, _ | _, ENETUNREACH -> false | ENETRESET, ENETRESET -> true | ENETRESET, _ | _, ENETRESET -> false | ECONNABORTED, ECONNABORTED -> true | ECONNABORTED, _ | _, ECONNABORTED -> false | ECONNRESET, ECONNRESET -> true | ECONNRESET, _ | _, ECONNRESET -> false | ENOBUFS, ENOBUFS -> true | ENOBUFS, _ | _, ENOBUFS -> false | EISCONN, EISCONN -> true | EISCONN, _ | _, EISCONN -> false | ENOTCONN, ENOTCONN -> true | ENOTCONN, _ | _, ENOTCONN -> false | ESHUTDOWN, ESHUTDOWN -> true | ESHUTDOWN, _ | _, ESHUTDOWN -> false | ETOOMANYREFS, ETOOMANYREFS -> true | ETOOMANYREFS, _ | _, ETOOMANYREFS -> false | ETIMEDOUT, ETIMEDOUT -> true | ETIMEDOUT, _ | _, ETIMEDOUT -> false | ECONNREFUSED, ECONNREFUSED -> true | ECONNREFUSED, _ | _, ECONNREFUSED -> false | EHOSTDOWN, EHOSTDOWN -> true | EHOSTDOWN, _ | _, EHOSTDOWN -> false | EHOSTUNREACH, EHOSTUNREACH -> true | EHOSTUNREACH, _ | _, EHOSTUNREACH -> false | ELOOP, ELOOP -> true | ELOOP, _ | _, ELOOP -> false | EOVERFLOW, EOVERFLOW -> true | EOVERFLOW, _ | _, EOVERFLOW -> false | EUNKNOWNERR x, EUNKNOWNERR y -> Int.equal x y module Detailed = struct type nonrec t = t * string * string let create error ~syscall ~arg = (error, syscall, arg) let catch f x = match f x with | res -> Ok res | exception Unix.Unix_error (error, syscall, arg) -> Error (create error ~syscall ~arg) let equal (a1, b1, c1) (a2, b2, c2) = equal a1 a2 && String.equal b1 b2 && String.equal c1 c2 let to_string_hum (error, syscall, arg) = Format.sprintf "%s(%s): %s" syscall arg (Unix.error_message error) end end module File_kind = struct type t = Unix.file_kind = | S_REG | S_DIR | S_CHR | S_BLK | S_LNK | S_FIFO | S_SOCK let to_string = function | S_REG -> "S_REG" | S_DIR -> "S_DIR" | S_CHR -> "S_CHR" | S_BLK -> "S_BLK" | S_LNK -> "S_LNK" | S_FIFO -> "S_FIFO" | S_SOCK -> "S_SOCK" let to_string_hum = function | S_REG -> "regular file" | S_DIR -> "directory" | S_CHR -> "character device" | S_BLK -> "block device" | S_LNK -> "symbolic link" | S_FIFO -> "named pipe" | S_SOCK -> "socket" let equal x y = match (x, y) with | S_REG, S_REG -> true | S_REG, _ | _, S_REG -> false | S_DIR, S_DIR -> true | S_DIR, _ | _, S_DIR -> false | S_CHR, S_CHR -> true | S_CHR, _ | _, S_CHR -> false | S_BLK, S_BLK -> true | S_BLK, _ | _, S_BLK -> false | S_LNK, S_LNK -> true | S_LNK, _ | _, S_LNK -> false | S_FIFO, S_FIFO -> true | S_FIFO, _ | _, S_FIFO -> false | S_SOCK, S_SOCK -> true module Option = struct [@@@warning "-37"] (* The values are constructed on the C-side *) type t = | S_REG | S_DIR | S_CHR | S_BLK | S_LNK | S_FIFO | S_SOCK | UNKNOWN let elim ~none ~some t = match t with | S_REG -> some (S_REG : Unix.file_kind) | S_DIR -> some S_DIR | S_CHR -> some S_CHR | S_BLK -> some S_BLK | S_LNK -> some S_LNK | S_FIFO -> some S_FIFO | S_SOCK -> some S_SOCK | UNKNOWN -> none () end end module Readdir_result = struct [@@@warning "-37"] (* The values are constructed on the C-side *) type t = | End_of_directory | Entry of string * File_kind.Option.t end external readdir_with_kind_if_available_unix : Unix.dir_handle -> Readdir_result.t = "caml__dune_filesystem_stubs__readdir" let readdir_with_kind_if_available_win32 : Unix.dir_handle -> Readdir_result.t = fun dir -> (* Windows also gives us the information about file kind and it's discarded by [readdir]. We could do better here, but the Windows code is more complicated. (there's an additional OCaml abstraction layer) *) match Unix.readdir dir with | exception End_of_file -> Readdir_result.End_of_directory | entry -> Entry (entry, UNKNOWN) let readdir_with_kind_if_available : Unix.dir_handle -> Readdir_result.t = if Stdlib.Sys.win32 then readdir_with_kind_if_available_win32 else readdir_with_kind_if_available_unix let read_directory_with_kinds_exn dir_path = let dir = Unix.opendir dir_path in Fun.protect ~finally:(fun () -> Unix.closedir dir) (fun () -> let rec loop acc = match readdir_with_kind_if_available dir with | Entry (("." | ".."), _) -> loop acc | End_of_directory -> acc | Entry (base, kind) -> let k kind = loop ((base, kind) :: acc) in let skip () = loop acc in File_kind.Option.elim kind ~none:(fun () -> match Unix.lstat (Filename.concat dir_path base) with | exception _ -> (* File disappeared between readdir & lstat system calls. Handle as if readdir never told us about it *) skip () | stat -> k stat.st_kind) ~some:k in loop []) let read_directory_with_kinds dir_path = Unix_error.Detailed.catch read_directory_with_kinds_exn dir_path let read_directory_exn dir_path = let dir = Unix.opendir dir_path in Fun.protect ~finally:(fun () -> Unix.closedir dir) (fun () -> let rec loop acc = match readdir_with_kind_if_available dir with | Entry (("." | ".."), _) -> loop acc | End_of_directory -> acc | Entry (base, _) -> loop (base :: acc) in loop []) let read_directory dir_path = Unix_error.Detailed.catch read_directory_exn dir_path
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>