Module Picos_stdio.Unix Source A transparently asynchronous replacement for a subset of the Unix module that comes with OCaml.
In this module operations on file descriptors, such as read and write and others, including select , implicitly block, in a scheduler friendly manner, to await for the file descriptor to become available for the operation. This works best with file descriptors set to non-blocking mode .
In addition to operations on file descriptors, in this module
also block in a scheduler friendly manner. Additionally
also block in a scheduler friendly manner except on Windows.
⚠️ Shared (i.e. inherited or inheritable or duplicated ) file descriptors, such as stdin , stdout , and stderr , typically should not be put into non-blocking mode, because that affects all of the parties using the shared file descriptors. However, for non-shared file descriptors non-blocking mode improves performance significantly with this module.
⚠️ Beware that this does not currently try to work around any limitations of the Unix module that comes with OCaml. In particular, on Windows, only sockets can be put into non-blocking mode. Also, on Windows, scheduler friendly blocking only works properly with non-blocking file descriptors, i.e. sockets.
⚠️ This module uses Picos_select and you may need to configure it at start of your application.
Please consult the documentation of the Unix module that comes with OCaml.
Opaque type alias for Unix.file_descr .
⚠️ Please consider the reference counting of file descriptors as an internal implementation detail and avoid depending on it.
close file_descr marks the file descriptor as to be closed.
ℹ️ The file descriptor will either be closed immediately or after all concurrently running transparently asynchronous operations with the file descriptor have finished.
⚠️ After calling close no new operations should be started with the file descriptor.
type error = Unix.error = | E2BIG | EACCES | EAGAIN | EBADF | EBUSY | ECHILD | EDEADLK | EDOM | EEXIST | EFAULT | EFBIG | EINTR | EINVAL | EIO | EISDIR | EMFILE | EMLINK | ENAMETOOLONG | ENFILE | ENODEV | ENOENT | ENOEXEC | ENOLCK | ENOMEM | ENOSPC | ENOSYS | ENOTDIR | ENOTEMPTY | ENOTTY | ENXIO | EPERM | EPIPE | ERANGE | EROFS | ESPIPE | ESRCH | EXDEV | EWOULDBLOCK | EINPROGRESS | EALREADY | ENOTSOCK | EDESTADDRREQ | EMSGSIZE | EPROTOTYPE | ENOPROTOOPT | EPROTONOSUPPORT | ESOCKTNOSUPPORT | EOPNOTSUPP | EPFNOSUPPORT | EAFNOSUPPORT | EADDRINUSE | EADDRNOTAVAIL | ENETDOWN | ENETUNREACH | ENETRESET | ECONNABORTED | ECONNRESET | ENOBUFS | EISCONN | ENOTCONN | ESHUTDOWN | ETOOMANYREFS | ETIMEDOUT | ECONNREFUSED | EHOSTDOWN | EHOSTUNREACH | ELOOP | EOVERFLOW | EUNKNOWNERR of intexception Unix_error of error * string * stringval error_message : error -> stringval handle_unix_error : ('a -> 'b ) -> 'a -> 'b val environment : unit -> string array val unsafe_environment : unit -> string array val getenv : string -> stringval unsafe_getenv : string -> stringval putenv : string -> string -> unittype process_status = Unix.process_status = | WEXITED of int| WSIGNALED of int| WSTOPPED of intval execv : string -> string array -> 'a val execve : string -> string array -> string array -> 'a val execvp : string -> string array -> 'a val execvpe : string -> string array -> string array -> 'a val getppid : unit -> inttype open_flag = Unix.open_flag = | O_RDONLY | O_WRONLY | O_RDWR | O_NONBLOCK | O_APPEND | O_CREAT | O_TRUNC | O_EXCL | O_NOCTTY | O_DSYNC | O_SYNC | O_RSYNC | O_SHARE_DELETE | O_CLOEXEC | O_KEEPEXEC val truncate : string -> int -> unittype file_kind = Unix.file_kind = | S_REG | S_DIR | S_CHR | S_BLK | S_LNK | S_FIFO | S_SOCK type stats = Unix.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; st_atime : float; st_mtime : float; st_ctime : float; } val stat : string -> stats val lstat : string -> stats val unlink : string -> unitval rename : string -> string -> unitval link : ?follow :bool -> string -> string -> unitval realpath : string -> stringval chown : string -> int -> int -> unitval rmdir : string -> unitval chdir : string -> unitval getcwd : unit -> stringval chroot : string -> unitval symlink : ?to_dir :bool -> string -> string -> unitval has_symlink : unit -> boolval readlink : string -> stringselect rds wrs exs timeout is like Deps.Unix.select, but uses Picos_select to avoid blocking the thread.
🐌 You may find composing multi file descriptor awaits via other means with Picos_select more flexible and efficient.
type lock_command = Unix.lock_command = | F_ULOCK | F_LOCK | F_TLOCK | F_TEST | F_RLOCK | F_TRLOCK val kill : int -> int -> unitval sigpending : unit -> int list type process_times = Unix.process_times = { tms_utime : float; tms_stime : float; tms_cutime : float; tms_cstime : float; } type tm = Unix.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; } val gettimeofday : unit -> floatval localtime : float -> tm val mktime : tm -> float * tm Source val sleepf : float -> unitval utimes : string -> float -> float -> unitval geteuid : unit -> intval getegid : unit -> intval getgroups : unit -> int array val setgroups : int array -> unitval initgroups : string -> int -> unittype passwd_entry = Unix.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 = Unix.group_entry = { gr_name : string; gr_passwd : string; gr_gid : int; gr_mem : string array ; } val getlogin : unit -> stringval inet_addr_of_string : string -> inet_addr val string_of_inet_addr : inet_addr -> stringtype socket_type = Unix.socket_type = | SOCK_STREAM | SOCK_DGRAM | SOCK_RAW | SOCK_SEQPACKET type msg_flag = Unix.msg_flag = | MSG_OOB | MSG_DONTROUTE | MSG_PEEK type socket_bool_option = Unix.socket_bool_option = | SO_DEBUG | SO_BROADCAST | SO_REUSEADDR | SO_KEEPALIVE | SO_DONTROUTE | SO_OOBINLINE | SO_ACCEPTCONN | TCP_NODELAY | IPV6_ONLY | SO_REUSEPORT type socket_int_option = Unix.socket_int_option = | SO_SNDBUF | SO_RCVBUF | SO_ERROR | SO_TYPE | SO_RCVLOWAT | SO_SNDLOWAT type protocol_entry = Unix.protocol_entry = { p_name : string; p_aliases : string array ; p_proto : int; } type service_entry = Unix.service_entry = { s_name : string; s_aliases : string array ; s_port : int; s_proto : string; } val gethostname : unit -> stringtype name_info = Unix.name_info = { ni_hostname : string; ni_service : string; } type getnameinfo_option = Unix.getnameinfo_option = | NI_NOFQDN | NI_NUMERICHOST | NI_NAMEREQD | NI_NUMERICSERV | NI_DGRAM type terminal_io = Unix.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;}