package luv
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=ccecf47311b384b8b7437eaac92b4d0b3f091971ed10241f672b0c2a2c8a3a43
md5=efe61a4b4725d59901984022c02ef698
doc/luv/Luv/Error/index.html
Module Luv.Error
Source
Error handling.
See Error handling in the user guide and Error handling in libuv.
type t = [
| `E2BIG
| `EACCES
| `EADDRINUSE
| `EADDRNOTAVAIL
| `EAFNOSUPPORT
| `EAGAIN
| `EAI_ADDRFAMILY
| `EAI_AGAIN
| `EAI_BADFLAGS
| `EAI_BADHINTS
| `EAI_CANCELED
| `EAI_FAIL
| `EAI_FAMILY
| `EAI_MEMORY
| `EAI_NODATA
| `EAI_NONAME
| `EAI_OVERFLOW
| `EAI_PROTOCOL
| `EAI_SERVICE
| `EAI_SOCKTYPE
| `EALREADY
| `EBADF
| `EBUSY
| `ECANCELED
| `ECONNABORTED
| `ECONNREFUSED
| `ECONNRESET
| `EDESTADDRREQ
| `EEXIST
| `EFAULT
| `EFBIG
| `EFTYPE
| `EHOSTUNREACH
| `EILSEQ
| `EINTR
| `EINVAL
| `EIO
| `EISCONN
| `EISDIR
| `ELOOP
| `EMFILE
| `EMSGSIZE
| `ENAMETOOLONG
| `ENETDOWN
| `ENETUNREACH
| `ENFILE
| `ENOBUFS
| `ENODEV
| `ENOENT
| `ENOMEM
| `ENONET
| `ENOPROTOOPT
| `ENOSPC
| `ENOSYS
| `ENOTCONN
| `ENOTDIR
| `ENOTEMPTY
| `ENOTSOCK
| `ENOTSUP
| `ENOTTY
| `EOVERFLOW
| `EPERM
| `EPIPE
| `EPROTO
| `EPROTONOSUPPORT
| `EPROTOTYPE
| `ERANGE
| `EROFS
| `ESHUTDOWN
| `ESOCKTNOSUPPORT
| `ESPIPE
| `ESRCH
| `ETIMEDOUT
| `ETXTBSY
| `EXDEV
| `UNKNOWN
| `EOF
| `ENXIO
| `EMLINK
]
Error codes returned by libuv functions.
Binds libuv error codes, which resemble Unix error codes.
`EFTYPE
is available since Luv 0.5.5 and libuv 1.21.0.
`ENOTTY
is available since Luv 0.5.5 and libuv 1.16.0.
`EILSEQ
is available since libuv 1.32.0.
`EOVERFLOW
and `ESOCKTNOSUPPORT
are available since Luv 0.5.9 and libuv 1.42.0.
Luv.Require.(has eftype)
Luv.Require.(has enotty)
Luv.Require.(has eilseq)
Luv.Require.(has eoverflow)
Luv.Require.(has esocktnosupport)
Returns the error message corresponding to the given error code.
Binds uv_strerror_r
.
If you are using libuv 1.21.0 or earlier, Luv.Error.strerror `UNKNOWN
slowly leaks memory.
Returns the name of the given error code.
Binds uv_err_name_r
.
If you are using libuv 1.21.0 or earlier, Luv.Error.err_name `UNKNOWN
slowly leaks memory.
Converts a system error code to a libuv error code.
Binds uv_translate_sys_error
.
Requires libuv 1.10.0.
Feature check: Luv.Require.(has translate_sys_error)
If user code terminates a callback by raising an exception, the exception cannot be allowed to go up the call stack, because the callback was called by libuv (rather than OCaml code), and the exception would disrupt libuv book-keeping. Luv instead passes the exception to a global Luv exception handler. Luv.Error.set_on_unhandled_exception f
replaces this exception handler with f
.
For example, in
Luv.Error.set_on_unhandled_exception f;
Luv.File.mkdir "foo" (fun _ -> raise Exit);
the exception Exit
is passed to f
when mkdir
calls its callback.
It is recommended to avoid letting exceptions escape from callbacks in this way.
The default behavior, if Luv.Error.set_on_unhandled_exception
is never called, is for Luv to print the exception to STDERR and exit the process with exit code 2.
It is recommended not to call Luv.Error.set_on_unhandled_exception
from libraries based on Luv, but, instead, to leave the decision on how to handle exceptions up to the final application.