7 type platform
= | Punknown
| Plinux
| Posx
| Psun
| Pbsd
| Pcygwin
;;
9 let asciilower = let auld = Char.code 'A'
- Char.code '
a'
in function
10 | ('A'
..'Z'
) as c
-> Char.code c
- auld |> Char.chr
14 let tempfailureretry f
a =
16 try f
a with Unix.Unix_error
(Unix.EINTR
, _
, _
) -> g ()
20 external cloexec
: Unix.file_descr
-> unit = "ml_cloexec";;
21 external hasdata
: Unix.file_descr
-> bool = "ml_hasdata";;
22 external toutf8
: int -> string = "ml_keysymtoutf8";;
23 external mbtoutf8
: string -> string = "ml_mbtoutf8";;
24 external spawn
: string -> (Unix.file_descr
* int) list
-> int = "ml_spawn";;
25 external platform
: unit -> (platform
* string array
) = "ml_platform";;
27 let now = Unix.gettimeofday
;;
28 let platform, uname
= platform ();;
29 let dolog fmt
= Format.ksprintf prerr_endline fmt
;;
32 | Unix.Unix_error
(e
, s, a) -> Printf.sprintf
"%s(%s) : %s (%d)"
33 s a (Unix.error_message e
) (Obj.magic e
)
34 | exn
-> Printexc.to_string exn
37 let error fmt
= Printf.kprintf failwith fmt
;;
39 module IntSet
= Set.Make
(struct type t
= int let compare = (-) end);;
41 let emptystr s = String.length
s = 0;;
42 let nonemptystr s = String.length
s > 0;;
43 let bound v minv maxv
= max minv
(min maxv v
);;
47 then failwith
"spawn not implemented under cygwin yet"
53 type t
= private string
54 val of_string
: string -> t
55 val to_string
: t
-> string
65 let (~
<) = Opaque.of_string;;
66 let (~
>) = Opaque.to_string;;
68 let int_of_string_with_suffix s =
69 let l = String.length
s in
75 | 'k'
| 'K'
-> String.sub
s 0 p, 10
76 | 'm'
| 'M'
-> String.sub
s 0 p, 20
77 | '
g'
| 'G'
-> String.sub
s 0 p, 30
81 let n = int_of_string
s1 in
82 let m = n lsl shift
in
84 then error "value too large"
88 let string_with_suffix_of_int n =
92 let units = [(30, "G"); (20, "M"); (10, "K")] in
98 then string_of_int
h ^
s
100 let s = Printf.sprintf
"_%03d%s" h s in
106 let rec find = function
108 | (shift
, suffix
) :: rest
->
109 if (n land ((1 lsl shift
) - 1)) = 0
110 then prettyint (n lsr shift
) ^ suffix
116 let color_of_string s =
117 Scanf.sscanf
s "%d/%d/%d" (fun r
g b ->
118 (float r
/. 256.0, float g /. 256.0, float b /. 256.0)
122 let color_to_string (r
, g, b) =
123 let r = truncate
(r *. 256.0)
124 and g = truncate
(g *. 256.0)
125 and b = truncate
(b *. 256.0) in
126 Printf.sprintf
"%d/%d/%d" r g b
130 if Filename.is_relative path
132 let cwd = Sys.getcwd
() in
133 if Filename.is_implicit path
134 then Filename.concat
cwd path
135 else Filename.concat
cwd (Filename.basename path
)
147 try tempfailureretry Unix.close fd
148 with exn
-> f
@@ exntos exn
152 let getenvwithdef name def
=
153 match Sys.getenv name
with
155 | exception Not_found
-> def
158 let newlinere = Str.regexp
"[\r\n]";;
159 let percentsre = Str.regexp
"%s";;
160 let whitere = Str.regexp
"[ \t]";;
165 let b = Buffer.create
(String.length
s + 1) in
166 Buffer.add_string
b s;
171 let btod b = if b then 1 else 0;;
173 let splitatchar s c
= let open String
in
175 | pos
-> sub
s 0 pos
, sub
s (pos
+1) (length
s - pos
- 1)
176 | exception Not_found
-> s, E.s
179 let boundastep h step
=
181 then bound step ~
-h 0
185 let withoutlastutf8 s =
186 let len = String.length
s in
194 let b = Char.code
s.[pos
] in
195 if b land 0b11000000 = 0b11000000
200 if Char.code
s.[len-1] land 0x80 = 0
204 String.sub
s 0 first;
209 let b = Buffer.create
l in
210 let s = Bytes.create
l in
212 let n = tempfailureretry (Unix.read fd
s 0) l in
214 then Buffer.contents
b
216 Buffer.add_subbytes
b s 0 n;
223 let filecontents path
=
224 let fd = Unix.openfile path
[Unix.O_RDONLY
] 0o0
in
225 match fdcontents fd with
227 error "failed to read contents of %s: %s" path
@@ exntos exn
229 Ne.clo fd @@ error "failed to close descriptor for %s: %s" path
;
233 let getcmdoutput errfun cmd
=
234 let reperror fmt
= Printf.kprintf errfun fmt
in
235 let clofail s e
= error "failed to close %s: %s" s e
in
236 match Unix.pipe
() with
238 reperror "pipe failed: %s" @@ exntos exn
;
241 match spawn cmd
[r, -1; w
, 1] with
243 reperror "failed to execute %S: %s" cmd
@@ exntos exn
;
246 Ne.clo w
@@ clofail "write end of the pipe";
248 match Unix.waitpid
[] pid
with
250 reperror "waitpid on %S %d failed: %s" cmd pid
@@ exntos exn
;
252 | _pid
, Unix.WEXITED
0 ->
254 match fdcontents r with
256 reperror "failed to read output of %S: %s" cmd
@@ exntos exn
;
259 let l = String.length
s in
260 if l > 0 && s.[l-1] = '
\n'
261 then String.sub
s 0 (l-1)
264 | _pid
, Unix.WEXITED
n ->
265 reperror "%S exited with error code %d" cmd
n;
267 | _pid
, Unix.WSIGNALED
n ->
268 reperror "%S was killed with signal %d" cmd
n;
270 | _pid
, Unix.WSTOPPED
n ->
271 reperror "%S was stopped by signal %d" cmd
n;
274 Ne.clo r @@ clofail "read end of the pipe";
279 let re = Str.regexp
{|.*\
(\
(https?\
|ftp\
|mailto\
|file\
)://[^
]+\
).*|} in
281 if Str.string_match
re s 0
282 then Str.matched_group
1 s
286 let substratis s pos subs
=
287 let subslen = String.length subs
in
288 if String.length
s - pos
>= subslen
290 let rec cmp i
= i
= subslen || (s.[pos
+i
] = subs
.[i
]) && cmp (i
+1)