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
|
(******************************************************************************
* Core *
* *
* Copyright (C) 2008- Jane Street Holding, LLC *
* Contact: opensource@janestreet.com *
* WWW: http://www.janestreet.com/ocaml *
* *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
* *
******************************************************************************)
INCLUDE "config.mlh"
IFDEF LINUX_EXT THEN
open Unix
open Std_internal
external sendfile :
sock : file_descr -> fd : file_descr -> pos : int -> len : int -> int
= "linux_sendfile_stub"
let sendfile ?(pos = 0) ?len ~fd sock =
let len =
match len with
| Some len -> len
| None -> (fstat fd).st_size - pos
in
sendfile ~sock ~fd ~pos ~len
(* Raw result of sysinfo syscall *)
module Raw_sysinfo = struct
type t = {
uptime : int;
load1 : int;
load5 : int;
load15 : int;
total_ram : int;
free_ram : int;
shared_ram : int;
buffer_ram : int;
total_swap : int;
free_swap : int;
procs : int;
totalhigh : int;
freehigh : int;
mem_unit : int;
}
end
(* Result of sysinfo syscall *)
type sysinfo = {
uptime : Span.t;
load1 : int;
load5 : int;
load15 : int;
total_ram : int;
free_ram : int;
shared_ram : int;
buffer_ram : int;
total_swap : int;
free_swap : int;
procs : int;
totalhigh : int;
freehigh : int;
mem_unit : int;
} with sexp, bin_io
external raw_sysinfo : unit -> Raw_sysinfo.t = "linux_sysinfo"
let sysinfo () =
let raw = raw_sysinfo () in
{
uptime = Span.of_int_sec raw.Raw_sysinfo.uptime;
load1 = raw.Raw_sysinfo.load1;
load5 = raw.Raw_sysinfo.load5;
load15 = raw.Raw_sysinfo.load15;
total_ram = raw.Raw_sysinfo.total_ram;
free_ram = raw.Raw_sysinfo.free_ram;
shared_ram = raw.Raw_sysinfo.shared_ram;
buffer_ram = raw.Raw_sysinfo.buffer_ram;
total_swap = raw.Raw_sysinfo.total_swap;
free_swap = raw.Raw_sysinfo.free_swap;
procs = raw.Raw_sysinfo.procs;
totalhigh = raw.Raw_sysinfo.totalhigh;
freehigh = raw.Raw_sysinfo.freehigh;
mem_unit = raw.Raw_sysinfo.mem_unit;
}
(* If you update this type, you also must update linux_tcpopt_bool,
in the C stubs. (And do make sure you get the order correct) *)
type tcp_bool_option = TCP_CORK with sexp, bin_io
external gettcpopt_bool :
file_descr -> tcp_bool_option -> bool = "linux_gettcpopt_bool_stub"
external settcpopt_bool :
file_descr -> tcp_bool_option -> bool -> unit = "linux_settcpopt_bool_stub"
external unsafe_send_nonblocking_no_sigpipe :
file_descr -> pos : int -> len : int -> string -> int
= "linux_send_nonblocking_no_sigpipe_stub"
let unsafe_send_nonblocking_no_sigpipe fd ~pos ~len buf =
let res = unsafe_send_nonblocking_no_sigpipe fd ~pos ~len buf in
if res = -1 then None
else Some res
external unsafe_send_no_sigpipe :
file_descr -> pos : int -> len : int -> string -> int
= "linux_send_no_sigpipe_stub"
let check_send_args ?pos ?len buf =
let str_len = String.length buf in
let pos =
match pos with
| None -> 0
| Some pos ->
if pos < 0 then invalid_arg "send_nonblocking_no_sigpipe: pos < 0";
if pos > str_len then
invalid_arg "send_nonblocking_no_sigpipe: pos > str_len";
pos
in
let len =
match len with
| None -> str_len - pos
| Some len ->
if len < 0 then invalid_arg "send_nonblocking_no_sigpipe: pos < 0";
if pos + len > str_len then
invalid_arg "send_nonblocking_no_sigpipe: pos + len > str_len";
len
in
(pos, len)
let send_nonblocking_no_sigpipe sock ?pos ?len buf =
let (pos, len) = check_send_args ?pos ?len buf in
unsafe_send_nonblocking_no_sigpipe sock ~pos ~len buf
let send_no_sigpipe sock ?pos ?len buf =
let (pos, len) = check_send_args ?pos ?len buf in
unsafe_send_no_sigpipe sock ~pos ~len buf
external unsafe_sendmsg_nonblocking_no_sigpipe :
file_descr -> string Core_unix.IOVec.t array -> int -> int
= "linux_sendmsg_nonblocking_no_sigpipe_stub"
let unsafe_sendmsg_nonblocking_no_sigpipe fd iovecs count =
let res = unsafe_sendmsg_nonblocking_no_sigpipe fd iovecs count in
if res = -1 then None
else Some res
let sendmsg_nonblocking_no_sigpipe sock ?count iovecs =
let count =
match count with
| None -> Array.length iovecs
| Some count ->
if count < 0 then
invalid_arg "sendmsg_nonblocking_no_sigpipe: count < 0";
let n_iovecs = Array.length iovecs in
if count > n_iovecs then
invalid_arg "sendmsg_nonblocking_no_sigpipe: count > n_iovecs";
count
in
unsafe_sendmsg_nonblocking_no_sigpipe sock iovecs count
module Clock = struct
type t
(* These functions should be in Unix, but due to the dependency on Time,
this is not possible (cyclic dependency). *)
external get_time : t -> float = "unix_clock_gettime"
let get_time t = Span.of_float (get_time t)
external set_time : t -> float -> unit = "unix_clock_settime"
let set_time t s = set_time t (Span.to_float s)
external get_resolution : t -> float = "unix_clock_getres"
let get_resolution t = Span.of_float (get_resolution t)
external get : Thread.t -> t = "unix_pthread_getcpuclockid"
external get_process_clock :
unit -> t = "unix_clock_process_cputime_id_stub"
external get_thread_clock :
unit -> t = "unix_clock_thread_cputime_id_stub"
end
external pr_set_pdeathsig : Signal.t -> unit = "linux_pr_set_pdeathsig_stub"
external pr_get_pdeathsig : unit -> Signal.t = "linux_pr_get_pdeathsig_stub"
external pr_set_name_first16 : string -> unit = "linux_pr_set_name"
external pr_get_name : unit -> string = "linux_pr_get_name"
let file_descr_realpath fd =
Core_filename.realpath ("/proc/self/fd/" ^ string_of_int (Core_unix.int_of_file_descr fd))
let out_channel_realpath oc = file_descr_realpath (descr_of_out_channel oc)
let in_channel_realpath ic = file_descr_realpath (descr_of_in_channel ic)
external sched_setaffinity :
pid : int -> cpuset : int list -> unit = "linux_sched_setaffinity"
let cores () =
let ic = open_in "/proc/cpuinfo" in
let rec loop count =
let line =
try Some (input_line ic) with
| End_of_file -> None
in
match line with
| None -> count
| Some line ->
match Core_string.lsplit2 ~on:':' line with
| None -> loop count
| Some (label, _) ->
if Core_string.(=) (Core_string.rstrip label) "processor" then
loop (count + 1)
else
loop count
in
let num_cores = loop 0 in
close_in_noerr ic;
if num_cores > 0 then num_cores
else failwith "failed to parse /proc/cpuinfo"
;;
ENDIF
|