1996-09-04 07:17:43 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1996-09-04 07:17:43 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy and Pascal Cuoq, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
2001-12-07 05:41:02 -08:00
|
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
|
|
(* the special exception on linking described in file ../../LICENSE. *)
|
1996-09-04 07:17:43 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* Initialization *)
|
|
|
|
|
|
|
|
external startup: unit -> unit = "win_startup"
|
|
|
|
external cleanup: unit -> unit = "win_cleanup"
|
|
|
|
|
|
|
|
let _ = startup(); at_exit cleanup
|
|
|
|
|
|
|
|
(* Errors *)
|
|
|
|
|
|
|
|
type error =
|
1998-05-11 11:42:59 -07:00
|
|
|
(* Errors defined in the POSIX standard *)
|
|
|
|
E2BIG (* Argument list too long *)
|
|
|
|
| EACCES (* Permission denied *)
|
|
|
|
| EAGAIN (* Resource temporarily unavailable; try again *)
|
|
|
|
| EBADF (* Bad file descriptor *)
|
|
|
|
| EBUSY (* Resource unavailable *)
|
|
|
|
| ECHILD (* No child process *)
|
|
|
|
| EDEADLK (* Resource deadlock would occur *)
|
|
|
|
| EDOM (* Domain error for math functions, etc. *)
|
|
|
|
| EEXIST (* File exists *)
|
|
|
|
| EFAULT (* Bad address *)
|
|
|
|
| EFBIG (* File too large *)
|
|
|
|
| EINTR (* Function interrupted by signal *)
|
|
|
|
| EINVAL (* Invalid argument *)
|
|
|
|
| EIO (* Hardware I/O error *)
|
|
|
|
| EISDIR (* Is a directory *)
|
|
|
|
| EMFILE (* Too many open files by the process *)
|
|
|
|
| EMLINK (* Too many links *)
|
|
|
|
| ENAMETOOLONG (* Filename too long *)
|
|
|
|
| ENFILE (* Too many open files in the system *)
|
|
|
|
| ENODEV (* No such device *)
|
|
|
|
| ENOENT (* No such file or directory *)
|
|
|
|
| ENOEXEC (* Not an executable file *)
|
|
|
|
| ENOLCK (* No locks available *)
|
|
|
|
| ENOMEM (* Not enough memory *)
|
|
|
|
| ENOSPC (* No space left on device *)
|
|
|
|
| ENOSYS (* Function not supported *)
|
|
|
|
| ENOTDIR (* Not a directory *)
|
|
|
|
| ENOTEMPTY (* Directory not empty *)
|
|
|
|
| ENOTTY (* Inappropriate I/O control operation *)
|
|
|
|
| ENXIO (* No such device or address *)
|
|
|
|
| EPERM (* Operation not permitted *)
|
|
|
|
| EPIPE (* Broken pipe *)
|
|
|
|
| ERANGE (* Result too large *)
|
|
|
|
| EROFS (* Read-only file system *)
|
|
|
|
| ESPIPE (* Invalid seek e.g. on a pipe *)
|
|
|
|
| ESRCH (* No such process *)
|
|
|
|
| EXDEV (* Invalid link *)
|
|
|
|
(* Additional errors, mostly BSD *)
|
|
|
|
| EWOULDBLOCK (* Operation would block *)
|
|
|
|
| EINPROGRESS (* Operation now in progress *)
|
|
|
|
| EALREADY (* Operation already in progress *)
|
|
|
|
| ENOTSOCK (* Socket operation on non-socket *)
|
|
|
|
| EDESTADDRREQ (* Destination address required *)
|
|
|
|
| EMSGSIZE (* Message too long *)
|
|
|
|
| EPROTOTYPE (* Protocol wrong type for socket *)
|
|
|
|
| ENOPROTOOPT (* Protocol not available *)
|
|
|
|
| EPROTONOSUPPORT (* Protocol not supported *)
|
|
|
|
| ESOCKTNOSUPPORT (* Socket type not supported *)
|
|
|
|
| EOPNOTSUPP (* Operation not supported on socket *)
|
|
|
|
| EPFNOSUPPORT (* Protocol family not supported *)
|
|
|
|
| EAFNOSUPPORT (* Address family not supported by protocol family *)
|
|
|
|
| EADDRINUSE (* Address already in use *)
|
|
|
|
| EADDRNOTAVAIL (* Can't assign requested address *)
|
|
|
|
| ENETDOWN (* Network is down *)
|
|
|
|
| ENETUNREACH (* Network is unreachable *)
|
|
|
|
| ENETRESET (* Network dropped connection on reset *)
|
|
|
|
| ECONNABORTED (* Software caused connection abort *)
|
|
|
|
| ECONNRESET (* Connection reset by peer *)
|
|
|
|
| ENOBUFS (* No buffer space available *)
|
|
|
|
| EISCONN (* Socket is already connected *)
|
|
|
|
| ENOTCONN (* Socket is not connected *)
|
|
|
|
| ESHUTDOWN (* Can't send after socket shutdown *)
|
|
|
|
| ETOOMANYREFS (* Too many references: can't splice *)
|
|
|
|
| ETIMEDOUT (* Connection timed out *)
|
|
|
|
| ECONNREFUSED (* Connection refused *)
|
|
|
|
| EHOSTDOWN (* Host is down *)
|
|
|
|
| EHOSTUNREACH (* No route to host *)
|
|
|
|
| ELOOP (* Too many levels of symbolic links *)
|
2002-03-06 08:55:20 -08:00
|
|
|
| EOVERFLOW
|
1998-05-11 11:42:59 -07:00
|
|
|
(* All other errors are mapped to EUNKNOWNERR *)
|
|
|
|
| EUNKNOWNERR of int (* Unknown error *)
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
exception Unix_error of error * string * string
|
|
|
|
|
1996-11-08 06:47:07 -08:00
|
|
|
let _ = Callback.register_exception "Unix.Unix_error"
|
1998-05-11 11:42:59 -07:00
|
|
|
(Unix_error(E2BIG, "", ""))
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
external error_message : error -> string = "unix_error_message"
|
|
|
|
|
|
|
|
let handle_unix_error f arg =
|
|
|
|
try
|
|
|
|
f arg
|
|
|
|
with Unix_error(err, fun_name, arg) ->
|
|
|
|
prerr_string Sys.argv.(0);
|
|
|
|
prerr_string ": \"";
|
|
|
|
prerr_string fun_name;
|
|
|
|
prerr_string "\" failed";
|
|
|
|
if String.length arg > 0 then begin
|
|
|
|
prerr_string " on \"";
|
|
|
|
prerr_string arg;
|
|
|
|
prerr_string "\""
|
|
|
|
end;
|
|
|
|
prerr_string ": ";
|
|
|
|
prerr_endline (error_message err);
|
|
|
|
exit 2
|
|
|
|
|
|
|
|
external environment : unit -> string array = "unix_environment"
|
2004-04-01 05:10:39 -08:00
|
|
|
external getenv: string -> string = "caml_sys_getenv"
|
1998-05-11 11:42:59 -07:00
|
|
|
external putenv: string -> string -> unit = "unix_putenv"
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
type process_status =
|
|
|
|
WEXITED of int
|
|
|
|
| WSIGNALED of int
|
|
|
|
| WSTOPPED of int
|
|
|
|
|
|
|
|
type wait_flag =
|
|
|
|
WNOHANG
|
|
|
|
| WUNTRACED
|
|
|
|
|
1997-09-03 07:38:02 -07:00
|
|
|
type file_descr
|
1996-09-04 07:17:43 -07:00
|
|
|
|
2004-04-01 05:10:39 -08:00
|
|
|
external execv : string -> string array -> 'a = "unix_execv"
|
|
|
|
external execve : string -> string array -> string array -> 'a = "unix_execve"
|
|
|
|
external execvp : string -> string array -> 'a = "unix_execvp"
|
|
|
|
external execvpe : string -> string array -> string array -> 'a = "unix_execvpe"
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
external waitpid : wait_flag list -> int -> int * process_status
|
|
|
|
= "win_waitpid"
|
|
|
|
external getpid : unit -> int = "unix_getpid"
|
|
|
|
|
1998-05-11 11:42:59 -07:00
|
|
|
let fork () = invalid_arg "Unix.fork not implemented"
|
2010-01-22 04:48:24 -08:00
|
|
|
let wait () = invalid_arg "Unix.wait not implemented"
|
1998-05-11 11:42:59 -07:00
|
|
|
let getppid () = invalid_arg "Unix.getppid not implemented"
|
|
|
|
let nice prio = invalid_arg "Unix.nice not implemented"
|
1998-05-10 09:42:53 -07:00
|
|
|
|
|
|
|
(* Basic file input/output *)
|
|
|
|
|
2003-01-06 06:52:57 -08:00
|
|
|
external filedescr_of_fd : int -> file_descr = "win_handle_fd"
|
1997-09-04 06:45:56 -07:00
|
|
|
|
2003-01-06 06:52:57 -08:00
|
|
|
let stdin = filedescr_of_fd 0
|
|
|
|
let stdout = filedescr_of_fd 1
|
|
|
|
let stderr = filedescr_of_fd 2
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
type open_flag =
|
|
|
|
O_RDONLY
|
|
|
|
| O_WRONLY
|
|
|
|
| O_RDWR
|
|
|
|
| O_NONBLOCK
|
|
|
|
| O_APPEND
|
|
|
|
| O_CREAT
|
|
|
|
| O_TRUNC
|
|
|
|
| O_EXCL
|
2002-06-07 02:49:45 -07:00
|
|
|
| O_NOCTTY
|
|
|
|
| O_DSYNC
|
|
|
|
| O_SYNC
|
|
|
|
| O_RSYNC
|
2011-12-13 08:18:13 -08:00
|
|
|
| O_SHARE_DELETE
|
2013-08-01 05:14:57 -07:00
|
|
|
| O_CLOEXEC
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
type file_perm = int
|
|
|
|
|
|
|
|
external openfile : string -> open_flag list -> file_perm -> file_descr
|
|
|
|
= "unix_open"
|
|
|
|
external close : file_descr -> unit = "unix_close"
|
|
|
|
external unsafe_read : file_descr -> string -> int -> int -> int
|
|
|
|
= "unix_read"
|
|
|
|
external unsafe_write : file_descr -> string -> int -> int -> int
|
|
|
|
= "unix_write"
|
2004-07-13 05:25:21 -07:00
|
|
|
external unsafe_single_write : file_descr -> string -> int -> int -> int
|
|
|
|
= "unix_single_write"
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
let read fd buf ofs len =
|
2002-07-12 02:47:54 -07:00
|
|
|
if ofs < 0 || len < 0 || ofs > String.length buf - len
|
1996-09-04 07:17:43 -07:00
|
|
|
then invalid_arg "Unix.read"
|
|
|
|
else unsafe_read fd buf ofs len
|
|
|
|
let write fd buf ofs len =
|
2002-07-12 02:47:54 -07:00
|
|
|
if ofs < 0 || len < 0 || ofs > String.length buf - len
|
1996-09-04 07:17:43 -07:00
|
|
|
then invalid_arg "Unix.write"
|
|
|
|
else unsafe_write fd buf ofs len
|
2004-07-13 05:25:21 -07:00
|
|
|
let single_write fd buf ofs len =
|
|
|
|
if ofs < 0 || len < 0 || ofs > String.length buf - len
|
|
|
|
then invalid_arg "Unix.single_write"
|
|
|
|
else unsafe_single_write fd buf ofs len
|
1996-09-04 07:17:43 -07:00
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* Interfacing with the standard input/output library *)
|
|
|
|
|
2013-09-04 08:12:37 -07:00
|
|
|
external in_channel_of_descr: file_descr -> in_channel
|
|
|
|
= "win_inchannel_of_filedescr"
|
|
|
|
external out_channel_of_descr: file_descr -> out_channel
|
|
|
|
= "win_outchannel_of_filedescr"
|
|
|
|
external descr_of_in_channel : in_channel -> file_descr
|
|
|
|
= "win_filedescr_of_channel"
|
|
|
|
external descr_of_out_channel : out_channel -> file_descr
|
|
|
|
= "win_filedescr_of_channel"
|
1996-09-04 07:17:43 -07:00
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* Seeking and truncating *)
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
type seek_command =
|
|
|
|
SEEK_SET
|
|
|
|
| SEEK_CUR
|
|
|
|
| SEEK_END
|
|
|
|
|
|
|
|
external lseek : file_descr -> int -> seek_command -> int = "unix_lseek"
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
let truncate name len = invalid_arg "Unix.truncate not implemented"
|
|
|
|
let ftruncate fd len = invalid_arg "Unix.ftruncate not implemented"
|
|
|
|
|
|
|
|
(* File statistics *)
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
type file_kind =
|
|
|
|
S_REG
|
|
|
|
| S_DIR
|
|
|
|
| S_CHR
|
|
|
|
| S_BLK
|
|
|
|
| S_LNK
|
|
|
|
| S_FIFO
|
|
|
|
| S_SOCK
|
|
|
|
|
|
|
|
type stats =
|
|
|
|
{ st_dev : int;
|
|
|
|
st_ino : int;
|
|
|
|
st_kind : file_kind;
|
|
|
|
st_perm : file_perm;
|
|
|
|
st_nlink : int;
|
|
|
|
st_uid : int;
|
|
|
|
st_gid : int;
|
|
|
|
st_rdev : int;
|
|
|
|
st_size : int;
|
1998-08-14 02:57:43 -07:00
|
|
|
st_atime : float;
|
|
|
|
st_mtime : float;
|
|
|
|
st_ctime : float }
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
external stat : string -> stats = "unix_stat"
|
1998-05-10 09:42:53 -07:00
|
|
|
let lstat = stat
|
2006-09-21 06:57:34 -07:00
|
|
|
external fstat : file_descr -> stats = "unix_fstat"
|
|
|
|
let isatty fd =
|
|
|
|
match (fstat fd).st_kind with S_CHR -> true | _ -> false
|
1998-05-10 09:42:53 -07:00
|
|
|
|
|
|
|
(* Operations on file names *)
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
external unlink : string -> unit = "unix_unlink"
|
|
|
|
external rename : string -> string -> unit = "unix_rename"
|
2001-04-10 04:15:05 -07:00
|
|
|
external link : string -> string -> unit = "unix_link"
|
1998-05-10 09:42:53 -07:00
|
|
|
|
2002-03-06 08:55:20 -08:00
|
|
|
(* Operations on large files *)
|
|
|
|
|
|
|
|
module LargeFile =
|
|
|
|
struct
|
2013-09-04 08:12:37 -07:00
|
|
|
external lseek : file_descr -> int64 -> seek_command -> int64
|
|
|
|
= "unix_lseek_64"
|
|
|
|
let truncate name len =
|
|
|
|
invalid_arg "Unix.LargeFile.truncate not implemented"
|
|
|
|
let ftruncate name len =
|
|
|
|
invalid_arg "Unix.LargeFile.ftruncate not implemented"
|
2002-03-06 08:55:20 -08:00
|
|
|
type stats =
|
|
|
|
{ st_dev : int;
|
|
|
|
st_ino : int;
|
|
|
|
st_kind : file_kind;
|
|
|
|
st_perm : file_perm;
|
|
|
|
st_nlink : int;
|
|
|
|
st_uid : int;
|
|
|
|
st_gid : int;
|
|
|
|
st_rdev : int;
|
|
|
|
st_size : int64;
|
|
|
|
st_atime : float;
|
|
|
|
st_mtime : float;
|
|
|
|
st_ctime : float;
|
|
|
|
}
|
|
|
|
external stat : string -> stats = "unix_stat_64"
|
|
|
|
let lstat = stat
|
2006-09-21 06:57:34 -07:00
|
|
|
external fstat : file_descr -> stats = "unix_fstat_64"
|
2002-03-06 08:55:20 -08:00
|
|
|
end
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* File permissions and ownership *)
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
type access_permission =
|
|
|
|
R_OK
|
|
|
|
| W_OK
|
|
|
|
| X_OK
|
|
|
|
| F_OK
|
|
|
|
|
1999-08-19 06:53:20 -07:00
|
|
|
external chmod : string -> file_perm -> unit = "unix_chmod"
|
1998-05-10 09:42:53 -07:00
|
|
|
let fchmod fd perm = invalid_arg "Unix.fchmod not implemented"
|
|
|
|
let chown file perm = invalid_arg "Unix.chown not implemented"
|
|
|
|
let fchown fd perm = invalid_arg "Unix.fchown not implemented"
|
|
|
|
let umask msk = invalid_arg "Unix.umask not implemented"
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
external access : string -> access_permission list -> unit = "unix_access"
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* Operations on file descriptors *)
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
external dup : file_descr -> file_descr = "unix_dup"
|
|
|
|
external dup2 : file_descr -> file_descr -> unit = "unix_dup2"
|
|
|
|
|
2003-01-06 08:44:21 -08:00
|
|
|
external set_nonblock : file_descr -> unit = "unix_set_nonblock"
|
|
|
|
external clear_nonblock : file_descr -> unit = "unix_clear_nonblock"
|
1998-05-10 09:42:53 -07:00
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
external set_close_on_exec : file_descr -> unit = "win_set_close_on_exec"
|
|
|
|
external clear_close_on_exec : file_descr -> unit = "win_clear_close_on_exec"
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* Directories *)
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
external mkdir : string -> file_perm -> unit = "unix_mkdir"
|
|
|
|
external rmdir : string -> unit = "unix_rmdir"
|
|
|
|
external chdir : string -> unit = "unix_chdir"
|
|
|
|
external getcwd : unit -> string = "unix_getcwd"
|
1998-10-20 05:50:49 -07:00
|
|
|
let chroot _ = invalid_arg "Unix.chroot not implemented"
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
type dir_entry =
|
|
|
|
Dir_empty
|
|
|
|
| Dir_read of string
|
|
|
|
| Dir_toread
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
type dir_handle =
|
|
|
|
{ dirname: string; mutable handle: int; mutable entry_read: dir_entry }
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
external findfirst : string -> string * int = "win_findfirst"
|
|
|
|
external findnext : int -> string= "win_findnext"
|
|
|
|
|
|
|
|
let opendir dirname =
|
|
|
|
try
|
2007-02-25 06:38:11 -08:00
|
|
|
let (first_entry, handle) = findfirst (Filename.concat dirname "*.*") in
|
1998-05-10 09:42:53 -07:00
|
|
|
{ dirname = dirname; handle = handle; entry_read = Dir_read first_entry }
|
1996-09-04 07:17:43 -07:00
|
|
|
with End_of_file ->
|
1998-05-10 09:42:53 -07:00
|
|
|
{ dirname = dirname; handle = 0; entry_read = Dir_empty }
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
let readdir d =
|
|
|
|
match d.entry_read with
|
|
|
|
Dir_empty -> raise End_of_file
|
|
|
|
| Dir_read name -> d.entry_read <- Dir_toread; name
|
|
|
|
| Dir_toread -> findnext d.handle
|
|
|
|
|
|
|
|
external win_findclose : int -> unit = "win_findclose"
|
|
|
|
|
|
|
|
let closedir d =
|
|
|
|
match d.entry_read with
|
|
|
|
Dir_empty -> ()
|
|
|
|
| _ -> win_findclose d.handle
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
let rewinddir d =
|
|
|
|
closedir d;
|
|
|
|
try
|
|
|
|
let (first_entry, handle) = findfirst (d.dirname ^ "\\*.*") in
|
1998-05-11 11:42:59 -07:00
|
|
|
d.handle <- handle; d.entry_read <- Dir_read first_entry
|
1998-05-10 09:42:53 -07:00
|
|
|
with End_of_file ->
|
|
|
|
d.handle <- 0; d.entry_read <- Dir_empty
|
|
|
|
|
1998-05-11 11:42:59 -07:00
|
|
|
(* Pipes *)
|
1998-05-10 09:42:53 -07:00
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
external pipe : unit -> file_descr * file_descr = "unix_pipe"
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
let mkfifo name perm = invalid_arg "Unix.mkfifo not implemented"
|
|
|
|
|
1998-05-11 11:42:59 -07:00
|
|
|
(* Symbolic links *)
|
|
|
|
|
|
|
|
let readlink path = invalid_arg "Unix.readlink not implemented"
|
|
|
|
let symlink path1 path2 = invalid_arg "Unix.symlink not implemented"
|
|
|
|
|
|
|
|
(* Locking *)
|
|
|
|
|
|
|
|
type lock_command =
|
|
|
|
F_ULOCK
|
|
|
|
| F_LOCK
|
|
|
|
| F_TLOCK
|
|
|
|
| F_TEST
|
1998-10-20 05:50:49 -07:00
|
|
|
| F_RLOCK
|
|
|
|
| F_TRLOCK
|
1998-05-11 11:42:59 -07:00
|
|
|
|
2002-04-30 08:00:48 -07:00
|
|
|
external lockf : file_descr -> lock_command -> int -> unit = "unix_lockf"
|
2013-09-03 06:10:56 -07:00
|
|
|
|
|
|
|
external terminate_process: int -> bool = "win_terminate_process"
|
|
|
|
|
|
|
|
let kill pid signo =
|
|
|
|
if signo <> Sys.sigkill then
|
|
|
|
invalid_arg "Unix.kill"
|
|
|
|
else
|
|
|
|
if not (terminate_process pid) then
|
|
|
|
raise(Unix_error(ESRCH, "kill", ""))
|
|
|
|
(* could be more precise *)
|
|
|
|
|
1998-08-08 09:53:42 -07:00
|
|
|
type sigprocmask_command = SIG_SETMASK | SIG_BLOCK | SIG_UNBLOCK
|
|
|
|
let sigprocmask cmd sigs = invalid_arg "Unix.sigprocmask not implemented"
|
|
|
|
let sigpending () = invalid_arg "Unix.sigpending not implemented"
|
|
|
|
let sigsuspend sigs = invalid_arg "Unix.sigsuspend not implemented"
|
1998-05-11 11:42:59 -07:00
|
|
|
let pause () = invalid_arg "Unix.pause not implemented"
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* Time functions *)
|
|
|
|
|
|
|
|
type process_times =
|
|
|
|
{ tms_utime : float;
|
|
|
|
tms_stime : float;
|
|
|
|
tms_cutime : float;
|
|
|
|
tms_cstime : float }
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
type tm =
|
|
|
|
{ tm_sec : int;
|
|
|
|
tm_min : int;
|
|
|
|
tm_hour : int;
|
|
|
|
tm_mday : int;
|
|
|
|
tm_mon : int;
|
|
|
|
tm_year : int;
|
|
|
|
tm_wday : int;
|
|
|
|
tm_yday : int;
|
|
|
|
tm_isdst : bool }
|
|
|
|
|
1998-08-14 02:57:43 -07:00
|
|
|
external time : unit -> float = "unix_time"
|
1997-09-04 06:45:56 -07:00
|
|
|
external gettimeofday : unit -> float = "unix_gettimeofday"
|
1998-08-14 02:57:43 -07:00
|
|
|
external gmtime : float -> tm = "unix_gmtime"
|
|
|
|
external localtime : float -> tm = "unix_localtime"
|
|
|
|
external mktime : tm -> float * tm = "unix_mktime"
|
1998-05-10 09:42:53 -07:00
|
|
|
let alarm n = invalid_arg "Unix.alarm not implemented"
|
1996-09-04 07:17:43 -07:00
|
|
|
external sleep : int -> unit = "unix_sleep"
|
2011-12-21 01:43:13 -08:00
|
|
|
external times: unit -> process_times = "unix_times"
|
1998-08-14 02:57:43 -07:00
|
|
|
external utimes : string -> float -> float -> unit = "unix_utimes"
|
1996-09-04 07:17:43 -07:00
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
type interval_timer =
|
|
|
|
ITIMER_REAL
|
|
|
|
| ITIMER_VIRTUAL
|
|
|
|
| ITIMER_PROF
|
|
|
|
|
|
|
|
type interval_timer_status =
|
|
|
|
{ it_interval: float;
|
|
|
|
it_value: float }
|
|
|
|
|
|
|
|
let getitimer it = invalid_arg "Unix.getitimer not implemented"
|
|
|
|
let setitimer it tm = invalid_arg "Unix.setitimer not implemented"
|
|
|
|
|
|
|
|
(* User id, group id *)
|
|
|
|
|
|
|
|
let getuid () = 1
|
|
|
|
let geteuid = getuid
|
|
|
|
let setuid id = invalid_arg "Unix.setuid not implemented"
|
|
|
|
|
|
|
|
let getgid () = 1
|
1998-05-11 11:42:59 -07:00
|
|
|
let getegid = getgid
|
1998-05-10 09:42:53 -07:00
|
|
|
let setgid id = invalid_arg "Unix.setgid not implemented"
|
|
|
|
|
|
|
|
let getgroups () = [|1|]
|
2009-04-01 09:50:10 -07:00
|
|
|
let setgroups _ = invalid_arg "Unix.setgroups not implemented"
|
|
|
|
let initgroups _ _ = invalid_arg "Unix.initgroups not implemented"
|
1998-05-10 09:42:53 -07:00
|
|
|
|
|
|
|
type passwd_entry =
|
|
|
|
{ pw_name : string;
|
|
|
|
pw_passwd : string;
|
|
|
|
pw_uid : int;
|
|
|
|
pw_gid : int;
|
|
|
|
pw_gecos : string;
|
|
|
|
pw_dir : string;
|
|
|
|
pw_shell : string }
|
|
|
|
|
|
|
|
type group_entry =
|
|
|
|
{ gr_name : string;
|
|
|
|
gr_passwd : string;
|
|
|
|
gr_gid : int;
|
|
|
|
gr_mem : string array }
|
|
|
|
|
|
|
|
let getlogin () = try Sys.getenv "USERNAME" with Not_found -> ""
|
|
|
|
let getpwnam x = raise Not_found
|
|
|
|
let getgrnam = getpwnam
|
|
|
|
let getpwuid = getpwnam
|
|
|
|
let getgrgid = getpwnam
|
|
|
|
|
|
|
|
(* Internet addresses *)
|
1996-09-04 07:17:43 -07:00
|
|
|
|
2004-04-27 06:49:50 -07:00
|
|
|
type inet_addr = string
|
|
|
|
|
|
|
|
let is_inet6_addr s = String.length s = 16
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
external inet_addr_of_string : string -> inet_addr
|
|
|
|
= "unix_inet_addr_of_string"
|
|
|
|
external string_of_inet_addr : inet_addr -> string
|
|
|
|
= "unix_string_of_inet_addr"
|
|
|
|
|
|
|
|
let inet_addr_any = inet_addr_of_string "0.0.0.0"
|
2004-04-27 06:49:50 -07:00
|
|
|
let inet_addr_loopback = inet_addr_of_string "127.0.0.1"
|
|
|
|
let inet6_addr_any =
|
|
|
|
try inet_addr_of_string "::" with Failure _ -> inet_addr_any
|
|
|
|
let inet6_addr_loopback =
|
|
|
|
try inet_addr_of_string "::1" with Failure _ -> inet_addr_loopback
|
1996-09-04 07:17:43 -07:00
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* Sockets *)
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
type socket_domain =
|
|
|
|
PF_UNIX
|
|
|
|
| PF_INET
|
2004-04-27 06:49:50 -07:00
|
|
|
| PF_INET6
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
type socket_type =
|
|
|
|
SOCK_STREAM
|
|
|
|
| SOCK_DGRAM
|
|
|
|
| SOCK_RAW
|
|
|
|
| SOCK_SEQPACKET
|
|
|
|
|
|
|
|
type sockaddr =
|
|
|
|
ADDR_UNIX of string
|
|
|
|
| ADDR_INET of inet_addr * int
|
|
|
|
|
2004-04-27 06:49:50 -07:00
|
|
|
let domain_of_sockaddr = function
|
|
|
|
ADDR_UNIX _ -> PF_UNIX
|
|
|
|
| ADDR_INET(a, _) -> if is_inet6_addr a then PF_INET6 else PF_INET
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
type shutdown_command =
|
|
|
|
SHUTDOWN_RECEIVE
|
|
|
|
| SHUTDOWN_SEND
|
|
|
|
| SHUTDOWN_ALL
|
|
|
|
|
|
|
|
type msg_flag =
|
|
|
|
MSG_OOB
|
|
|
|
| MSG_DONTROUTE
|
|
|
|
| MSG_PEEK
|
|
|
|
|
1999-02-24 08:35:33 -08:00
|
|
|
external socket : socket_domain -> socket_type -> int -> file_descr
|
|
|
|
= "unix_socket"
|
1998-05-11 11:42:59 -07:00
|
|
|
let socketpair dom ty proto = invalid_arg "Unix.socketpair not implemented"
|
1999-02-24 08:35:33 -08:00
|
|
|
external accept : file_descr -> file_descr * sockaddr = "unix_accept"
|
1996-09-04 07:17:43 -07:00
|
|
|
external bind : file_descr -> sockaddr -> unit = "unix_bind"
|
|
|
|
external connect : file_descr -> sockaddr -> unit = "unix_connect"
|
|
|
|
external listen : file_descr -> int -> unit = "unix_listen"
|
2010-01-22 04:48:24 -08:00
|
|
|
external shutdown : file_descr -> shutdown_command -> unit = "unix_shutdown"
|
1996-09-04 07:17:43 -07:00
|
|
|
external getsockname : file_descr -> sockaddr = "unix_getsockname"
|
|
|
|
external getpeername : file_descr -> sockaddr = "unix_getpeername"
|
|
|
|
|
|
|
|
external unsafe_recv :
|
|
|
|
file_descr -> string -> int -> int -> msg_flag list -> int
|
|
|
|
= "unix_recv"
|
|
|
|
external unsafe_recvfrom :
|
|
|
|
file_descr -> string -> int -> int -> msg_flag list -> int * sockaddr
|
|
|
|
= "unix_recvfrom"
|
|
|
|
external unsafe_send :
|
|
|
|
file_descr -> string -> int -> int -> msg_flag list -> int
|
|
|
|
= "unix_send"
|
|
|
|
external unsafe_sendto :
|
|
|
|
file_descr -> string -> int -> int -> msg_flag list -> sockaddr -> int
|
|
|
|
= "unix_sendto" "unix_sendto_native"
|
|
|
|
|
|
|
|
let recv fd buf ofs len flags =
|
2002-07-12 02:47:54 -07:00
|
|
|
if ofs < 0 || len < 0 || ofs > String.length buf - len
|
1996-09-04 07:17:43 -07:00
|
|
|
then invalid_arg "Unix.recv"
|
|
|
|
else unsafe_recv fd buf ofs len flags
|
|
|
|
let recvfrom fd buf ofs len flags =
|
2002-07-12 02:47:54 -07:00
|
|
|
if ofs < 0 || len < 0 || ofs > String.length buf - len
|
1996-09-04 07:17:43 -07:00
|
|
|
then invalid_arg "Unix.recvfrom"
|
|
|
|
else unsafe_recvfrom fd buf ofs len flags
|
|
|
|
let send fd buf ofs len flags =
|
2002-07-12 02:47:54 -07:00
|
|
|
if ofs < 0 || len < 0 || ofs > String.length buf - len
|
1996-09-04 07:17:43 -07:00
|
|
|
then invalid_arg "Unix.send"
|
|
|
|
else unsafe_send fd buf ofs len flags
|
|
|
|
let sendto fd buf ofs len flags addr =
|
2002-07-12 02:47:54 -07:00
|
|
|
if ofs < 0 || len < 0 || ofs > String.length buf - len
|
1996-09-04 07:17:43 -07:00
|
|
|
then invalid_arg "Unix.sendto"
|
|
|
|
else unsafe_sendto fd buf ofs len flags addr
|
|
|
|
|
2008-07-14 00:45:03 -07:00
|
|
|
type socket_bool_option =
|
|
|
|
SO_DEBUG
|
|
|
|
| SO_BROADCAST
|
|
|
|
| SO_REUSEADDR
|
|
|
|
| SO_KEEPALIVE
|
|
|
|
| SO_DONTROUTE
|
|
|
|
| SO_OOBINLINE
|
|
|
|
| SO_ACCEPTCONN
|
|
|
|
| TCP_NODELAY
|
2008-08-01 06:46:08 -07:00
|
|
|
| IPV6_ONLY
|
2008-07-14 00:45:03 -07:00
|
|
|
|
|
|
|
type socket_int_option =
|
|
|
|
SO_SNDBUF
|
|
|
|
| SO_RCVBUF
|
|
|
|
| SO_ERROR
|
|
|
|
| SO_TYPE
|
|
|
|
| SO_RCVLOWAT
|
|
|
|
| SO_SNDLOWAT
|
|
|
|
|
|
|
|
type socket_optint_option = SO_LINGER
|
|
|
|
|
|
|
|
type socket_float_option =
|
|
|
|
SO_RCVTIMEO
|
|
|
|
| SO_SNDTIMEO
|
|
|
|
|
|
|
|
type socket_error_option = SO_ERROR
|
|
|
|
|
|
|
|
module SO: sig
|
|
|
|
type ('opt, 'v) t
|
|
|
|
val bool: (socket_bool_option, bool) t
|
|
|
|
val int: (socket_int_option, int) t
|
|
|
|
val optint: (socket_optint_option, int option) t
|
|
|
|
val float: (socket_float_option, float) t
|
|
|
|
val error: (socket_error_option, error option) t
|
|
|
|
val get: ('opt, 'v) t -> file_descr -> 'opt -> 'v
|
|
|
|
val set: ('opt, 'v) t -> file_descr -> 'opt -> 'v -> unit
|
|
|
|
end = struct
|
|
|
|
type ('opt, 'v) t = int
|
|
|
|
let bool = 0
|
|
|
|
let int = 1
|
|
|
|
let optint = 2
|
|
|
|
let float = 3
|
|
|
|
let error = 4
|
2010-01-22 04:48:24 -08:00
|
|
|
external get: ('opt, 'v) t -> file_descr -> 'opt -> 'v
|
2008-07-14 00:45:03 -07:00
|
|
|
= "unix_getsockopt"
|
|
|
|
external set: ('opt, 'v) t -> file_descr -> 'opt -> 'v -> unit
|
|
|
|
= "unix_setsockopt"
|
|
|
|
end
|
|
|
|
|
|
|
|
let getsockopt fd opt = SO.get SO.bool fd opt
|
|
|
|
let setsockopt fd opt v = SO.set SO.bool fd opt v
|
|
|
|
|
|
|
|
let getsockopt_int fd opt = SO.get SO.int fd opt
|
|
|
|
let setsockopt_int fd opt v = SO.set SO.int fd opt v
|
|
|
|
|
|
|
|
let getsockopt_optint fd opt = SO.get SO.optint fd opt
|
|
|
|
let setsockopt_optint fd opt v = SO.set SO.optint fd opt v
|
|
|
|
|
|
|
|
let getsockopt_float fd opt = SO.get SO.float fd opt
|
|
|
|
let setsockopt_float fd opt v = SO.set SO.float fd opt v
|
|
|
|
|
|
|
|
let getsockopt_error fd = SO.get SO.error fd SO_ERROR
|
2001-07-27 05:52:05 -07:00
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
(* Host and protocol databases *)
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
type host_entry =
|
|
|
|
{ h_name : string;
|
|
|
|
h_aliases : string array;
|
|
|
|
h_addrtype : socket_domain;
|
|
|
|
h_addr_list : inet_addr array }
|
|
|
|
|
|
|
|
type protocol_entry =
|
|
|
|
{ p_name : string;
|
|
|
|
p_aliases : string array;
|
|
|
|
p_proto : int }
|
|
|
|
|
|
|
|
type service_entry =
|
|
|
|
{ s_name : string;
|
|
|
|
s_aliases : string array;
|
|
|
|
s_port : int;
|
|
|
|
s_proto : string }
|
|
|
|
|
|
|
|
external gethostname : unit -> string = "unix_gethostname"
|
|
|
|
external gethostbyname : string -> host_entry = "unix_gethostbyname"
|
|
|
|
external gethostbyaddr : inet_addr -> host_entry = "unix_gethostbyaddr"
|
|
|
|
external getprotobyname : string -> protocol_entry
|
|
|
|
= "unix_getprotobyname"
|
|
|
|
external getprotobynumber : int -> protocol_entry
|
|
|
|
= "unix_getprotobynumber"
|
|
|
|
|
|
|
|
external getservbyname : string -> string -> service_entry
|
|
|
|
= "unix_getservbyname"
|
|
|
|
external getservbyport : int -> string -> service_entry
|
|
|
|
= "unix_getservbyport"
|
|
|
|
|
2004-04-27 06:49:50 -07:00
|
|
|
type addr_info =
|
|
|
|
{ ai_family : socket_domain;
|
|
|
|
ai_socktype : socket_type;
|
|
|
|
ai_protocol : int;
|
|
|
|
ai_addr : sockaddr;
|
|
|
|
ai_canonname : string }
|
|
|
|
|
|
|
|
type getaddrinfo_option =
|
|
|
|
AI_FAMILY of socket_domain
|
|
|
|
| AI_SOCKTYPE of socket_type
|
|
|
|
| AI_PROTOCOL of int
|
|
|
|
| AI_NUMERICHOST
|
|
|
|
| AI_CANONNAME
|
|
|
|
| AI_PASSIVE
|
|
|
|
|
2012-07-13 05:15:57 -07:00
|
|
|
external getaddrinfo_system
|
|
|
|
: string -> string -> getaddrinfo_option list -> addr_info list
|
|
|
|
= "unix_getaddrinfo"
|
|
|
|
|
|
|
|
let getaddrinfo_emulation node service opts =
|
2004-04-27 06:49:50 -07:00
|
|
|
(* Parse options *)
|
|
|
|
let opt_socktype = ref None
|
|
|
|
and opt_protocol = ref 0
|
|
|
|
and opt_passive = ref false in
|
|
|
|
List.iter
|
|
|
|
(function AI_SOCKTYPE s -> opt_socktype := Some s
|
|
|
|
| AI_PROTOCOL p -> opt_protocol := p
|
|
|
|
| AI_PASSIVE -> opt_passive := true
|
|
|
|
| _ -> ())
|
|
|
|
opts;
|
|
|
|
(* Determine socket types and port numbers *)
|
|
|
|
let get_port ty kind =
|
|
|
|
if service = "" then [ty, 0] else
|
|
|
|
try
|
|
|
|
[ty, int_of_string service]
|
|
|
|
with Failure _ ->
|
|
|
|
try
|
|
|
|
[ty, (getservbyname service kind).s_port]
|
2010-01-22 04:48:24 -08:00
|
|
|
with Not_found -> []
|
2004-04-27 06:49:50 -07:00
|
|
|
in
|
|
|
|
let ports =
|
|
|
|
match !opt_socktype with
|
|
|
|
| None ->
|
|
|
|
get_port SOCK_STREAM "tcp" @ get_port SOCK_DGRAM "udp"
|
|
|
|
| Some SOCK_STREAM ->
|
|
|
|
get_port SOCK_STREAM "tcp"
|
|
|
|
| Some SOCK_DGRAM ->
|
|
|
|
get_port SOCK_DGRAM "udp"
|
|
|
|
| Some ty ->
|
|
|
|
if service = "" then [ty, 0] else [] in
|
|
|
|
(* Determine IP addresses *)
|
|
|
|
let addresses =
|
|
|
|
if node = "" then
|
|
|
|
if List.mem AI_PASSIVE opts
|
|
|
|
then [inet_addr_any, "0.0.0.0"]
|
|
|
|
else [inet_addr_loopback, "127.0.0.1"]
|
|
|
|
else
|
|
|
|
try
|
|
|
|
[inet_addr_of_string node, node]
|
|
|
|
with Failure _ ->
|
|
|
|
try
|
|
|
|
let he = gethostbyname node in
|
|
|
|
List.map
|
|
|
|
(fun a -> (a, he.h_name))
|
|
|
|
(Array.to_list he.h_addr_list)
|
|
|
|
with Not_found ->
|
|
|
|
[] in
|
|
|
|
(* Cross-product of addresses and ports *)
|
|
|
|
List.flatten
|
2010-01-22 04:48:24 -08:00
|
|
|
(List.map
|
2004-04-27 06:49:50 -07:00
|
|
|
(fun (ty, port) ->
|
|
|
|
List.map
|
|
|
|
(fun (addr, name) ->
|
|
|
|
{ ai_family = PF_INET;
|
|
|
|
ai_socktype = ty;
|
|
|
|
ai_protocol = !opt_protocol;
|
|
|
|
ai_addr = ADDR_INET(addr, port);
|
|
|
|
ai_canonname = name })
|
|
|
|
addresses)
|
|
|
|
ports)
|
|
|
|
|
2012-07-13 05:15:57 -07:00
|
|
|
let getaddrinfo node service opts =
|
|
|
|
try
|
|
|
|
List.rev(getaddrinfo_system node service opts)
|
|
|
|
with Invalid_argument _ ->
|
|
|
|
getaddrinfo_emulation node service opts
|
|
|
|
|
2004-04-27 06:49:50 -07:00
|
|
|
type name_info =
|
|
|
|
{ ni_hostname : string;
|
|
|
|
ni_service : string }
|
|
|
|
|
|
|
|
type getnameinfo_option =
|
|
|
|
NI_NOFQDN
|
|
|
|
| NI_NUMERICHOST
|
|
|
|
| NI_NAMEREQD
|
|
|
|
| NI_NUMERICSERV
|
|
|
|
| NI_DGRAM
|
|
|
|
|
2012-07-13 05:15:57 -07:00
|
|
|
external getnameinfo_system
|
|
|
|
: sockaddr -> getnameinfo_option list -> name_info
|
|
|
|
= "unix_getnameinfo"
|
|
|
|
|
|
|
|
let getnameinfo_emulation addr opts =
|
2004-04-27 06:49:50 -07:00
|
|
|
match addr with
|
|
|
|
| ADDR_UNIX f ->
|
|
|
|
{ ni_hostname = ""; ni_service = f } (* why not? *)
|
|
|
|
| ADDR_INET(a, p) ->
|
|
|
|
let hostname =
|
|
|
|
try
|
|
|
|
if List.mem NI_NUMERICHOST opts then raise Not_found;
|
|
|
|
(gethostbyaddr a).h_name
|
|
|
|
with Not_found ->
|
|
|
|
if List.mem NI_NAMEREQD opts then raise Not_found;
|
|
|
|
string_of_inet_addr a in
|
|
|
|
let service =
|
|
|
|
try
|
|
|
|
if List.mem NI_NUMERICSERV opts then raise Not_found;
|
|
|
|
let kind = if List.mem NI_DGRAM opts then "udp" else "tcp" in
|
|
|
|
(getservbyport p kind).s_name
|
|
|
|
with Not_found ->
|
|
|
|
string_of_int p in
|
|
|
|
{ ni_hostname = hostname; ni_service = service }
|
|
|
|
|
2012-07-13 05:15:57 -07:00
|
|
|
let getnameinfo addr opts =
|
|
|
|
try
|
|
|
|
getnameinfo_system addr opts
|
|
|
|
with Invalid_argument _ ->
|
|
|
|
getnameinfo_emulation addr opts
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
(* High-level process management (system, popen) *)
|
|
|
|
|
|
|
|
external win_create_process : string -> string -> string option ->
|
|
|
|
file_descr -> file_descr -> file_descr -> int
|
|
|
|
= "win_create_process" "win_create_process_native"
|
|
|
|
|
2004-06-12 05:47:36 -07:00
|
|
|
let make_cmdline args =
|
|
|
|
let maybe_quote f =
|
|
|
|
if String.contains f ' ' || String.contains f '\"'
|
|
|
|
then Filename.quote f
|
|
|
|
else f in
|
|
|
|
String.concat " " (List.map maybe_quote (Array.to_list args))
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
let create_process prog args fd1 fd2 fd3 =
|
2004-06-12 05:47:36 -07:00
|
|
|
win_create_process prog (make_cmdline args) None fd1 fd2 fd3
|
1997-05-19 08:42:21 -07:00
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
let create_process_env prog args env fd1 fd2 fd3 =
|
2004-06-12 05:47:36 -07:00
|
|
|
win_create_process prog (make_cmdline args)
|
1996-09-17 07:43:05 -07:00
|
|
|
(Some(String.concat "\000" (Array.to_list env) ^ "\000"))
|
2010-01-22 04:48:24 -08:00
|
|
|
fd1 fd2 fd3
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
external system: string -> process_status = "win_system"
|
|
|
|
|
|
|
|
type popen_process =
|
|
|
|
Process of in_channel * out_channel
|
|
|
|
| Process_in of in_channel
|
|
|
|
| Process_out of out_channel
|
1999-10-18 02:43:24 -07:00
|
|
|
| Process_full of in_channel * out_channel * in_channel
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
let popen_processes = (Hashtbl.create 7 : (popen_process, int) Hashtbl.t)
|
|
|
|
|
1999-10-18 02:43:24 -07:00
|
|
|
let open_proc cmd optenv proc input output error =
|
1996-09-04 07:17:43 -07:00
|
|
|
let shell =
|
|
|
|
try Sys.getenv "COMSPEC"
|
1996-09-05 06:32:25 -07:00
|
|
|
with Not_found -> raise(Unix_error(ENOEXEC, "open_proc", cmd)) in
|
1996-09-04 07:17:43 -07:00
|
|
|
let pid =
|
1999-10-18 02:43:24 -07:00
|
|
|
win_create_process shell (shell ^ " /c " ^ cmd) optenv
|
|
|
|
input output error in
|
1996-09-04 07:17:43 -07:00
|
|
|
Hashtbl.add popen_processes proc pid
|
|
|
|
|
|
|
|
let open_process_in cmd =
|
|
|
|
let (in_read, in_write) = pipe() in
|
1996-09-05 06:32:25 -07:00
|
|
|
set_close_on_exec in_read;
|
1999-08-06 06:21:41 -07:00
|
|
|
let inchan = in_channel_of_descr in_read in
|
1999-10-18 02:43:24 -07:00
|
|
|
open_proc cmd None (Process_in inchan) stdin in_write stderr;
|
1996-09-04 07:17:43 -07:00
|
|
|
close in_write;
|
|
|
|
inchan
|
|
|
|
|
|
|
|
let open_process_out cmd =
|
|
|
|
let (out_read, out_write) = pipe() in
|
1996-09-05 06:32:25 -07:00
|
|
|
set_close_on_exec out_write;
|
1999-08-06 06:21:41 -07:00
|
|
|
let outchan = out_channel_of_descr out_write in
|
1999-10-18 02:43:24 -07:00
|
|
|
open_proc cmd None (Process_out outchan) out_read stdout stderr;
|
1996-09-04 07:17:43 -07:00
|
|
|
close out_read;
|
|
|
|
outchan
|
|
|
|
|
|
|
|
let open_process cmd =
|
|
|
|
let (in_read, in_write) = pipe() in
|
|
|
|
let (out_read, out_write) = pipe() in
|
1996-09-05 06:32:25 -07:00
|
|
|
set_close_on_exec in_read;
|
|
|
|
set_close_on_exec out_write;
|
1999-08-06 06:21:41 -07:00
|
|
|
let inchan = in_channel_of_descr in_read in
|
|
|
|
let outchan = out_channel_of_descr out_write in
|
1999-10-18 02:43:24 -07:00
|
|
|
open_proc cmd None (Process(inchan, outchan)) out_read in_write stderr;
|
1999-08-19 06:33:29 -07:00
|
|
|
close out_read; close in_write;
|
1996-09-04 07:17:43 -07:00
|
|
|
(inchan, outchan)
|
|
|
|
|
1999-10-18 02:43:24 -07:00
|
|
|
let open_process_full cmd env =
|
|
|
|
let (in_read, in_write) = pipe() in
|
|
|
|
let (out_read, out_write) = pipe() in
|
|
|
|
let (err_read, err_write) = pipe() in
|
|
|
|
set_close_on_exec in_read;
|
|
|
|
set_close_on_exec out_write;
|
|
|
|
set_close_on_exec err_read;
|
|
|
|
let inchan = in_channel_of_descr in_read in
|
|
|
|
let outchan = out_channel_of_descr out_write in
|
|
|
|
let errchan = in_channel_of_descr err_read in
|
1999-10-18 02:49:08 -07:00
|
|
|
open_proc cmd (Some(String.concat "\000" (Array.to_list env) ^ "\000"))
|
|
|
|
(Process_full(inchan, outchan, errchan))
|
1999-10-18 02:43:24 -07:00
|
|
|
out_read in_write err_write;
|
|
|
|
close out_read; close in_write; close err_write;
|
|
|
|
(inchan, outchan, errchan)
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
let find_proc_id fun_name proc =
|
|
|
|
try
|
|
|
|
let pid = Hashtbl.find popen_processes proc in
|
|
|
|
Hashtbl.remove popen_processes proc;
|
|
|
|
pid
|
|
|
|
with Not_found ->
|
|
|
|
raise(Unix_error(EBADF, fun_name, ""))
|
|
|
|
|
|
|
|
let close_process_in inchan =
|
|
|
|
let pid = find_proc_id "close_process_in" (Process_in inchan) in
|
|
|
|
close_in inchan;
|
|
|
|
snd(waitpid [] pid)
|
|
|
|
|
|
|
|
let close_process_out outchan =
|
|
|
|
let pid = find_proc_id "close_process_out" (Process_out outchan) in
|
|
|
|
close_out outchan;
|
|
|
|
snd(waitpid [] pid)
|
|
|
|
|
|
|
|
let close_process (inchan, outchan) =
|
|
|
|
let pid = find_proc_id "close_process" (Process(inchan, outchan)) in
|
|
|
|
close_in inchan; close_out outchan;
|
|
|
|
snd(waitpid [] pid)
|
|
|
|
|
1999-10-18 02:49:08 -07:00
|
|
|
let close_process_full (inchan, outchan, errchan) =
|
|
|
|
let pid =
|
|
|
|
find_proc_id "close_process_full"
|
|
|
|
(Process_full(inchan, outchan, errchan)) in
|
|
|
|
close_in inchan; close_out outchan; close_in errchan;
|
|
|
|
snd(waitpid [] pid)
|
|
|
|
|
1997-09-04 06:45:56 -07:00
|
|
|
(* Polling *)
|
|
|
|
|
|
|
|
external select :
|
|
|
|
file_descr list -> file_descr list -> file_descr list -> float ->
|
|
|
|
file_descr list * file_descr list * file_descr list = "unix_select"
|
|
|
|
|
1996-09-04 07:17:43 -07:00
|
|
|
(* High-level network functions *)
|
|
|
|
|
|
|
|
let open_connection sockaddr =
|
|
|
|
let sock =
|
2012-07-13 05:15:57 -07:00
|
|
|
socket (domain_of_sockaddr sockaddr) SOCK_STREAM 0 in
|
|
|
|
try
|
|
|
|
connect sock sockaddr;
|
|
|
|
set_close_on_exec sock;
|
|
|
|
(in_channel_of_descr sock, out_channel_of_descr sock)
|
|
|
|
with exn ->
|
|
|
|
close sock; raise exn
|
1996-09-04 07:17:43 -07:00
|
|
|
|
|
|
|
let shutdown_connection inchan =
|
|
|
|
shutdown (descr_of_in_channel inchan) SHUTDOWN_SEND
|
|
|
|
|
1998-05-10 09:42:53 -07:00
|
|
|
let establish_server server_fun sockaddr =
|
2004-11-30 09:06:19 -08:00
|
|
|
invalid_arg "Unix.establish_server not implemented"
|
1998-05-10 09:42:53 -07:00
|
|
|
|
|
|
|
(* Terminal interface *)
|
|
|
|
|
|
|
|
type terminal_io = {
|
|
|
|
mutable c_ignbrk: bool;
|
|
|
|
mutable c_brkint: bool;
|
|
|
|
mutable c_ignpar: bool;
|
|
|
|
mutable c_parmrk: bool;
|
|
|
|
mutable c_inpck: bool;
|
|
|
|
mutable c_istrip: bool;
|
|
|
|
mutable c_inlcr: bool;
|
|
|
|
mutable c_igncr: bool;
|
|
|
|
mutable c_icrnl: bool;
|
|
|
|
mutable c_ixon: bool;
|
|
|
|
mutable c_ixoff: bool;
|
|
|
|
mutable c_opost: bool;
|
|
|
|
mutable c_obaud: int;
|
|
|
|
mutable c_ibaud: int;
|
|
|
|
mutable c_csize: int;
|
|
|
|
mutable c_cstopb: int;
|
|
|
|
mutable c_cread: bool;
|
|
|
|
mutable c_parenb: bool;
|
|
|
|
mutable c_parodd: bool;
|
|
|
|
mutable c_hupcl: bool;
|
|
|
|
mutable c_clocal: bool;
|
|
|
|
mutable c_isig: bool;
|
|
|
|
mutable c_icanon: bool;
|
|
|
|
mutable c_noflsh: bool;
|
|
|
|
mutable c_echo: bool;
|
|
|
|
mutable c_echoe: bool;
|
|
|
|
mutable c_echok: bool;
|
|
|
|
mutable c_echonl: bool;
|
|
|
|
mutable c_vintr: char;
|
|
|
|
mutable c_vquit: char;
|
|
|
|
mutable c_verase: char;
|
|
|
|
mutable c_vkill: char;
|
|
|
|
mutable c_veof: char;
|
|
|
|
mutable c_veol: char;
|
|
|
|
mutable c_vmin: int;
|
|
|
|
mutable c_vtime: int;
|
|
|
|
mutable c_vstart: char;
|
|
|
|
mutable c_vstop: char
|
|
|
|
}
|
|
|
|
|
|
|
|
type setattr_when = TCSANOW | TCSADRAIN | TCSAFLUSH
|
|
|
|
|
|
|
|
let tcgetattr fd = invalid_arg "Unix.tcgetattr not implemented"
|
|
|
|
let tcsetattr fd wh = invalid_arg "Unix.tcsetattr not implemented"
|
|
|
|
let tcsendbreak fd n = invalid_arg "Unix.tcsendbreak not implemented"
|
|
|
|
let tcdrain fd = invalid_arg "Unix.tcdrain not implemented"
|
|
|
|
|
|
|
|
type flush_queue = TCIFLUSH | TCOFLUSH | TCIOFLUSH
|
|
|
|
let tcflush fd q = invalid_arg "Unix.tcflush not implemented"
|
|
|
|
type flow_action = TCOOFF | TCOON | TCIOFF | TCION
|
|
|
|
let tcflow fd fl = invalid_arg "Unix.tcflow not implemented"
|
|
|
|
let setsid () = invalid_arg "Unix.setsid not implemented"
|