package octez-libs
A package that contains multiple base libraries used by the Octez suite
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65
doc/src/octez-libs.stdlib-unix/sys_info.ml.html
Source file sys_info.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
(*****************************************************************************) (* Open Source License *) (* Copyright (c) 2018 Nomadic Labs, <contact@nomadic-labs.com> *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) (* to deal in the Software without restriction, including without limitation *) (* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) (* and/or sell copies of the Software, and to permit persons to whom the *) (* Software is furnished to do so, subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be included *) (* in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) (* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) (* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) (* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) (* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) (* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) open Memory open Error_monad type Error_monad.error += Unix_system_info_failure of string let () = Error_monad.register_error_kind `Temporary ~id:"unix.system_info" ~title:"Unix System_info failure" ~description:"Unix System_info failure" ~pp:(fun ppf s -> Format.fprintf ppf "@[<v 2>Unix system_info failure %s@]" s) Data_encoding.(obj1 (req "failure" string)) (function Unix_system_info_failure s -> Some s | _ -> None) (fun s -> Unix_system_info_failure s) let error_info process error = Unix_system_info_failure (Format.asprintf "Unix_system_info_failure (%s: %s)" process error) type sysname = Linux | Darwin | Unknown of string let uname () = Lwt.catch (fun () -> let open Lwt_syntax in let* s = Lwt_process.with_process_in ~env:[|"LC_ALL=C"|] ("uname", [|"uname"|]) (fun pc -> Lwt_io.read_line pc#stdout) in match s with | "Linux" -> Lwt.return_ok Linux | "Darwin" -> Lwt.return_ok Darwin | os -> Lwt.return_ok (Unknown os)) (function | exn -> Lwt.return_error (error_info "uname" (Printexc.to_string exn))) let page_size sysname = let open Lwt_result_syntax in let get_conf_process = match sysname with | Linux -> Ok ("getconf", [|"getconf"; "PAGE_SIZE"|]) | Darwin -> Ok ("pagesize", [|"pagesize"|]) | Unknown _ -> Error (error_info "pagesize" "Unknown unix system") in let*? process = get_conf_process in Lwt.catch (fun () -> Lwt_process.with_process_in process ~env:[|"LC_ALL=C"|] (fun pc -> let*! ps = Lwt_io.read_line pc#stdout in Lwt.return_ok (int_of_string ps))) (function | exn -> Lwt.return_error (error_info "pagesize" (Printexc.to_string exn))) let linux_statm pid = Lwt.catch (fun () -> let open Lwt_syntax in let fname = Format.asprintf "/proc/%d/statm" pid in let* b = Lwt_unix.file_exists fname in match b with | true -> Lwt_io.with_file ~mode:Input fname (fun ic -> let* line = Lwt_io.read_line ic in match List.map Int64.of_string @@ TzString.split_no_empty ' ' line with | size :: resident :: :: text :: lib :: data :: dt :: _ -> ( let* r = page_size Linux in match r with | Error e -> Lwt.return_error e | Ok page_size -> Lwt.return_ok (Statm { page_size; size; resident; shared; text; lib; data; dt; })) | _ -> Lwt.return_error (error_info "procfs statm" "Unexpected proc/<pid>/statm format")) | false -> Lwt.return_error (error_info "procfs statm" (Format.asprintf "%s not found" fname))) (function | exn -> Lwt.return_error (error_info "procfs statm" (Printexc.to_string exn))) let darwin_ps pid = Lwt.catch (fun () -> let open Lwt_syntax in Lwt_process.with_process_in ~env:[|"LC_ALL=C"|] ("ps", [|"ps"; "-o"; "pid,%mem,rss"; "-p"; string_of_int pid|]) (fun pc -> let* o = Lwt_io.read_line_opt pc#stdout in match o with | None -> Lwt.return_error (error_info "ps" "Unexpected ps answer (1st line)") | Some _ -> ( (* first line is useless *) let* o = Lwt_io.read_line_opt pc#stdout in match o with | None -> Lwt.return_error (error_info "ps" "Unexpected ps answer (2nd line)") | Some ps_stats -> ( match TzString.split_no_empty ' ' ps_stats with | _pid :: mem :: resident :: _ -> ( let* r = page_size Darwin in match r with | Error e -> Lwt.return_error e | Ok page_size -> Lwt.return_ok (Ps { page_size; mem = float_of_string mem; resident = Int64.of_string resident; })) | _ -> Lwt.return_error (error_info "ps" "Unexpected answer")) ))) (function | exn -> Lwt.return_error (error_info "ps" (Printexc.to_string exn))) let memory_stats () = let open Lwt_syntax in let pid = Unix.getpid () in let* r = uname () in match r with | Error e -> Lwt.return_error e | Ok Linux -> linux_statm pid | Ok Darwin -> darwin_ps pid | _ -> Lwt.return_error (error_info "memory_stats" "Unknown unix system")
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>