This library is a proof of concept for implementing:
- effect handling on top of Lua's coroutines (in pure Lua)
- and on top of that effect handling system (i.e. without further use of
coroutines):
- fibers (lightweight threads)
- asynchronous I/O
Some basic asynchronous I/O support is given for:
- byte streams over local sockets or TCP sockets (including TCP server support)
- subprocesses with stdin, stdout, and stderr
Moreover, a small example for integration with a third party C library
(libpq from PostgreSQL) is included (Lua module neumond.pgeff
, written in
C).
Web applications can be built using the neumond.scgi
module, which allows
creating an SCGI application server using fibers and asynchronous I/O.
neumond.effect
(effect handling)neumond.yield
(abstract yield effect)neumond.fiber
(lightweight threads)neumond.wait_posix_fiber
neumond.wait
(platform independent waiting)neumond.wait_posix
(waiting for I/O on POSIX platforms)neumond.wait_posix_blocking
(waiting through blocking)neumond.wait_posix_fiber
(waiting in a fiber environment)neumond.runtime
(runtime for POSIX platforms)
neumond.eio
(basic I/O)
neumond.sync
(synchronization)
neumond.lkq
(kqueue interface)neumond.wait_posix_blocking
neumond.wait_posix_fiber
neumond.nbio
(basic non-blocking I/O interface written in C)neumond.eio
Names of modules written in C are marked as italic in the above tree. Duplicates due to multiple dependencies are non-bold.
Further modules are neumond.web
, neumond.scgi
, neumond.pgeff
, and
neumond.subprocess
. Those are not documented in this documentation file; see
source code instead.
This module provides a multi-fiber asynchronous I/O runtime for POSIX platforms. Use as follows:
local runtime = require "neumond.runtime"
local function main(...)
-- You may spawn fibers or perform asynchronous I/O here.
-- For example:
local wait = require "neumond.wait"
wait.timeout(1)() -- waits 1 second
end
return runtime(main, ...)
In addition to providing a runtime for fibers and asynchronous I/O, the
runtime
function will also stringify any uncaught errors and append stack
traces (see also effect.stringify_errors
).
Module for algebraic effect handling implemented in pure Lua with no dependencies other than Lua's standard library.
The effect
module allows to perform an effect (similar to an exception),
which will then bubble up the stack until it hits a handler that "catches" the
effect. Distinct from exception handlers, an effect handler may decide to
resume the program flow at the position where the effect has been performed
and also optionally modify the final return value of that continuation.
The following example demonstrates control flow using effects:
local effect = require "neumond.effect"
-- Define a new effect named "log":
local log = effect.new("log")
-- Function that uses the "log" effect
-- (without knowing what the log effect actually does):
function foo()
local success = log("Hello World!")
assert(success == true)
end
-- Run code while handling the log effect by printing:
local retval = effect.handle(
{
-- The following function gets called when "log" is performed:
[log] = function(resume, message)
print(message)
return resume(true) -- resume and pass return values (42 in this case)
end,
},
function()
-- Anything in this function uses the above log handler
-- that prints the message and resumes.
foo()
log("Good bye.")
return 42
end
)
assert(retval == 42)
The module provides the following functions and tables:
-
effect.new(name)
returns an object that is suitable to be used as an effect. Note that any other object can be used as an effect as well, but an objectx
returned by this function is automatically callable such thatx(...)
is a short form foreffect.perform(x, ...)
. Moreover, the generated object has a string representation (using the__tostring
metamethod) including thename
, which may be useful for debugging. -
effect.perform(eff, ...)
performs the effecteff
with optional arguments. May or may not return. -
effect.handle(handlers, action, ...)
calls theaction
function with given arguments and, during execution of the action function, handles those effects which are listed as key in thehandlers
table. The value in the handlers table is the corresponding handler, which is is a function that retrieves a continuation object (usually named "resume
") as first argument followed by optional arguments that have been passed to theeffect.perform
function. Handlers may resume the action by calling the continuation, where optional arguments are returned byeffect.perform
then. If a continuation object needs to be called after an effect handler returned, it needs to be made persistent with theresume:persistent()
method and can later be called or discontinued withresume:discontinue()
(which closes all to-be-closed variables of the action).effect.handle
returns the return values of the action function or the return values of the first invoked handler; return values of later invoked handlers or of the resumed action are returned by the correspondingresume
calls. -
effect.default_handlers
is a table that maps an effect to a default handler function. If no effect handler but only a default handler is found, then the respective default handler function will be called with the arguments that have been passed toeffect.perform
(without a continuation object) and the return values of the default handler function are passed back to the caller ofeffect.perform
. -
effect.pcall(func, ...)
callsfunc(...)
and catches errors. Returnstrue
followed by the return values offunc
in case of success, andfalse
followed by an error message in case of a caught error. It differs from Lua's built-inpcall
as it automatically attaches a stack trace to the error message (or stores it in an ephemeron if the error message is not a string) and it will not catch errors that are used to implement discontinuations. Useeffect.pcall
as a drop-in replacement for Lua'spcall
if you deal with effects that may discontinue an action (e.g. when an effect handler does not resume). -
effect.stringify_error(message)
converts an error message into a string while appending any stored stack traces for that error message. -
effect.stringify_errors(func, ...)
callsfunc(...)
and ensures that thrown error objects (except those used to implement discontinuations) are automatically stringified and get a stack trace appended. This function should be used as an outer wrapper if non-string error objects may be thrown, in order to see stack traces in case of unhandled errors. -
effect.pcall_stringify_errors(...)
is equivalent toeffect.pcall(effect.stringify_errors, ...)
but implemented slightly more efficiently.
A continuation resume
(as passed to an effect handler) provides the following
methods:
-
resume(...)
resumes the continuation with given arguments. -
resume:call(func, ...)
resumes the continuation and callsfunc(...)
in that context. The return values offunc
are passed to the performer of the effect (i.e. returned byeffect.perform
). -
resume:call_only(func, ...)
callsfunc(...)
in the context as if it was called whereeffect.perform
was invoked. Whenfunc
returns, its return values are returned by the:call_only
method. The continuation isn't resumed further but can still be resumed later. -
resume:traceback()
generates a stack trace of the continuation. -
resume:perform(eff, ...)
performs the effecteff
in the current context while providing a continuation to the respective effect handler, which represents the same continuation asresume
. This method can be used to pass effects further down the stack, e.g. when an effect handler sometimes does not want to handle a particular effect. The original continuation (resume
) must not be used after invoking this method. -
resume:persistent()
disables automatic discontinuation when the effect handler returns. The method returnsresume
for convenience. -
resume:discontinue()
closes all to-be-closed variables of the action, i.e. runs finalizers. This is implemented by throwing a special error object within the action and catching it.
Module for yielding. The module also serves as an effect, thus it is possible to write:
local yield = require "neumond.yield"
yield()
The module's only effect (itself) is:
yield()
allows an environment to yield and allow other program code to be executed. It is a no-op if no effect handler foryield
is installed.
Module for lightweight threads implemented in pure Lua by using the effect
module.
The module provides the following functions (of which some are implemented as effects, but usually shouldn't be handled manually):
-
fiber.scope(action, ...)
runs theaction
function with given arguments as a fiber and allows spawning additional fibers from within that fiber.fiber.scope
returns as soon asaction
returns, in which case any spawned fibers withinaction
(that have not terminated yet) are automatically killed. Note that effect handlers installed from within theaction
function do not affect spawned fibers unless spawning the fibers is further wrapped within another invocation offiber.scope
. -
fiber.try_current()
obtains a handle for the currently running fiber or returnsnil
if there is no fiber running (e.g. when called from outsidefiber.scope
'saction
function). -
fiber.current()
obtains a handle for the currently running fiber. This function raises an error if there is no fiber running. -
fiber.sleep()
puts the currently running fiber to sleep. This function raises an error if there is no fiber running. -
fiber.yield()
allows the main loop to execute a different fiber.fiber.yield
is simply an alias for moduleyield
(which is an effect) and is a no-op if there is no fiber running. -
fiber.suicide()
kills the currently running fiber without providing a return value. It is equivalent tofiber.current():kill()
but slightly faster. This function raises an error if there is no fiber running. -
fiber.spawn(action, ...)
runs theaction
function with given arguments in a separate fiber and returns a handle for the spawned fiber. This function raises an error if there is no fiber running, i.e. it must be called from within anaction
passed tofiber.scope(action, ...)
or a previousfiber.spawn(action, ...)
call. -
fiber.pending()
returnstrue
if there is any woken fiber andfalse
if no other fiber is woken (or if there is no fiber running at all). This function can be used to check if it's okay to make a main event loop wait for I/O (e.g. by using an OS call that blocks execution). -
fiber.handle(handlers, action, ...)
is equivalent toeffect.handle(handlers, fiber.scope, action, ...)
and acts likeeffect.handle
but additionally applies the effect handling to all spawned fibers within theaction
function. Any spawned fibers withinaction
get killed onceaction
returns.
A fiber handle f
provides the following attributes and methods:
-
f:wake()
wakes up fiberf
if it has not terminated yet. -
f:kill()
kills fiberf
if it has not terminated yet. -
f.results
is a table containing the return value of the action function of fiberf
, ornil
if the action has not terminated yet, orfalse
if it has been killed. -
f:await()
puts the currently running fiber to sleep until fiberf
has terminated. The method then returns its return values. If the awaited fiber got killed, the current fiber will be killed as well. -
f:try_await()
puts the currently running fiber to sleep until fiberf
has terminated. Iff
was killed, this method returnsfalse
, otherwise returnstrue
followed byf
's return values.
The module provides the following effects (but no handlers) for waiting:
-
wait.select(...)
waits until one of several listed events occurred. Each event is denoted by two arguments, i.e. the number of arguments passed to the select effect must be a multiple of two. This module only defines the following arguments:"handle"
followed by a handle returned by some other functions in this module
But in a POSIX environment (see
wait_posix
module), other modules are expected to additionally support:"fd_read"
followed by an integer file descriptor"fd_write"
followed by an integer file descriptor"pid"
followed by an integer process ID
When passing a handle
h
towait.select
by callingwait.select(..., "handle", h, ...)
, then, afterwait.select
returns,h.ready
indicates if the corresponding event occurred.h.ready
must be reset tofalse
when wanting to reuse the handle to wait for the next event (e.g. another occurrence of the next interval tick).Note that
wait.select
is allowed to sporadically wake up. Calling a handle, in contrast, will repeatedly usewait.select
until the handle is ready. -
wait.timeout(seconds)
starts a timer that elapses after givenseconds
and returns a callable handle that, when called, waits until the time has elapsed. The handle can be closed by storing it in a<close>
variable that eventually goes out of scope to ensure cleanup (otherwise resource cleanup may be delayed until the time has elapsed or garbage collection happens). The callable handle may also be passed to thewait.select
effect (after the string"handle"
). -
wait.interval(seconds)
creates an interval with givenseconds
and returns a callable handle that, when called, waits until the next interval has elapsed. The handle can be closed by storing it in a<close>
variable that eventually goes out of scope to ensure cleanup (otherwise resource cleanup may be delayed until garbage collection is performed). The callable handle may also be passed to thewait.select
effect (after the string"handle"
). -
wait.notify()
creates and returns a handlesleeper
and a functionwaker
. Callingsleeper
will wait untilwaker
has been called. Thewaker
function may be called first, in which case the next call tosleper
will return immediately. Thesleeper
handle may also be passed to thewait.select
effect (after the string"handle"
).
Module providing additional effects and functions for waiting on POSIX platforms.
The module provides the following effects:
-
wait_posix.select(...)
which is an alias forwait.select(...)
. -
wait_posix.catch_signal(sig)
starts listening for signalsig
and returns a callable handle, which, upon calling, waits until a signal has been delivered. The callable handle may also be passed to thewait.select
effect (after the string"handle"
). -
wait_posix.deregister_fd(fd)
must be performed before closing a file descriptorfd
that is currently waited on. The effect resumes immediately with no value and can be safely performed multiple times on the same file descriptor and does not raise any error in that case. In a multi-fiber environment, a fiber waiting for reading from or writing to that file desciptor will be woken up.
Since, in a POSIX environment, wait.select
is also expected to wait for file
descriptors and process IDs, the following convenience functions are provided:
-
wait_posix.wait_fd_read(fd)
waits until file descriptorfd
is ready for reading. -
wait_posix.wait_fd_write(fd)
waits until file descriptorfd
is ready for writing. -
wait_posix.wait_pid(pid)
waits until process with process IDpid
has terminated.
It is not allowed to wait for the same resource more than once in parallel except for those resources where a handle for waiting is created. Reading and writing are considered as two different resources in that matter. Where handles are created for waiting, each handle must not be used more than once in parallel. Violating these rules may result in an error or unspecified behavior, e.g. deadlocks.
The sync
module uses the effects provided by the wait
module to provide the
following synchronization functions:
-
sync.notify()
is an alias forwait.notify()
. -
sync.mutex()
returns a mutexm
. Callingm
locks the mutex and returns a guard that should be stored in a<close>
variable which will unlock the mutex when closed.A mutex protected section looks as follows:
local mutex = wait.mutex() local func() local guard <close> = mutex() -- do stuff here end
-
sync.queue(size)
returns a FIFO queueq
with givensize
. Useq:push(e)
to push an elemente
andq:pop()
to pop an element. Methodspush
andpop
will wait if the queue is full or empty, respectively. Use#q
to obtain the number of buffered elements plus minus any pending pushes and pops.q:push(e)
will return immediately if#q < q.size
andq:pop()
will return immediately if#q > 0
.
Module for basic I/O, using non-blocking I/O (through the neumond.nbio
Lua
module written in C) and the neumond.wait_posix
module to wait for I/O.
With the exception of depending on POSIX file descriptors, this module generic
in regard to how "waiting" is implemented. In particular, eio
does not depend
on the fiber
module, and whenever there is a need to wait for I/O, the
effects of the wait_posix
module are performed. In order to use eio
,
appropriate handlers have to be installed. One way to achieve this is to use
wait_posix_fiber.main(action, ...)
as in the following example:
local wait_posix_fiber = require "neumond.wait_posix_fiber"
local eio = require "neumond.eio"
wait_posix_fiber.main(
function()
eio.stdout:flush("Hello World!\n")
end
)
Available functions:
-
eio.open(path, flags)
opens a file at the givenpath
and returns an I/O handle on success (nil
and error message otherwise). The optionalflags
argument is a string containing a comma separated list of one or more of the following flags:r
: read-onlyw
: write-onlyrw
: read and writeappend
: each write appends to filecreate
: create file if not existingtruncate
: if existing, truncate file to a size of zeroexclusive
: report error if file already exists
Note that
r
,w
, andrw
are mutually exclusive and exactly only one of them must be specified unlessflags
isnil
(which then defaults to"r"
). -
eio.localconnect(path)
initiates opening a local socket connection with the socket on the filesystem given bypath
and returns an I/O handle on success (nil
and error message otherwise). -
eio.tcpconnect(host, port)
initiates opening a TCP connection to the givenhost
andport
and returns an I/O handle on success (nil
and error message otherwise). -
eio.locallisten(path)
listens for connections to a local socket given bypath
on the filesystem and returns a listener handle on success (nil
and error message otherwise). A pre-existing socket entry in the file system is unlinked automatically and permissions of the new socket are set to world read- and writeable. -
eio.tcplisten(host, port)
runs a TCP server at the given interface (host
) andport
and returns a listener handle on success (nil
and error message otherwise). -
eio.execute(file, ...)
executesfile
with optional arguments in a subprocess and returns a child handle on success (nil
and error message otherwise). Note that no shell is involved unlessfile
is a shell. The search path for executables (PATH
environment variable) applies. -
eio.catch_signal(sig)
is an alias forwaitio.catch_signal(sig)
. -
eio.timeout(seconds)
is an alias forwaitio.timeout(seconds)
. -
eio.interval(seconds)
is an alias forwaitio.interval(seconds)
.
Note that name resolution is blocking, even though any other I/O is handled async.
A listener handle l
provides the following methods:
-
l:accept()
waits until an incoming connection or I/O error. Returns an I/O handle on success (nil
and error message otherwise). -
l:close()
closes the listener. This function returns immediately and does not report any errors.
A child handle c
provides the following attributes and methods:
-
c:kill(sig)
kills the process with signal numbersig
(defaults to9
for SIGKILL). -
c:wait()
waits until the process has terminated and returns a positive exit code or a negated signal number, depending on how the process terminated. -
c.stdin
,c.stdout
,c.stderr
are I/O handles connected with the process' stdin, stderr, and stdout, respectively.
An I/O handle h
provides the following attributes and methods:
-
h:read(maxlen, terminator)
waits repeatedly untilmaxlen
bytes could be read, aterminator
byte was read, EOF occurred, or an I/O error occurred (whichever happens first). If all bytes or some bytes followed by EOF could be read, it returns a string containing the read data. If EOF occurred before any bytes could be read, returns the empty string (""
). Returnsnil
and an error message in case of an I/O error. Be aware that ifmaxlen
is absent ornil
, there is no boundary on the number of bytes read and input data may cause unbounded memory allocation. Ifterminator
is absent ornil
, then it is always attempted to readmaxlen
bytes or until EOF ifmaxlen
isnil
. This method may read more bytes than requested and/or read beyond the terminator byte and will then buffer that data for the next invocation of theread
method. -
h:read_unbuffered(maxlen)
waits until some data is available for reading or an I/O error occurred. It then reads a maximum number ofmaxlen
bytes. The return value may be shorter thanmaxlen
even if there was no EOF. However, the empty string (""
) is only returned on EOF and if no bytes could be read before the EOF occured. Returnsnil
and an error message in case of an I/O error. Ifmaxlen
is absent ornil
, some (finite) default value will be used. -
h:read_nonblocking(maxlen)
acts likeh:read_unbuffered(maxlen)
but returns immediately with an empty string if no data is available. To avoid ambiguities, EOF is indicated by returningfalse
(and an error message). I/O errors are indicated bynil
and an error message. Ifmaxlen
is absent ornil
, some (finite) default value will be used. -
h:unread(data, ...)
putsdata
at beginning of read buffer, which can be used to "undo" reading, similar to theungetc
C function but allowing to put back more than one byte at a time. -
h:write(data, ...)
waits repeatedly until alldata
could be stored in a buffer and/or written out. Returnstrue
on success,false
and an error message in case of a disconnected receiver (broken pipe), andnil
and an error message in case of other I/O errors. Multiple arguments may be supplied in which case they get concatenated. -
h:flush(data, ...)
waits repeatedly until all buffered data and the optionally passeddata
could be written out. Returnstrue
on success,false
and an error message in case of a disconnected receiver (broken pipe), andnil
and an error message in case of other I/O errors. Multiple arguments may be supplied in which case they get concatenated. -
h:shutdown()
closes the sending part but not the receiving part of a connection. This function returns immediately and may discard any non-flushed data. Returnstrue
on success, ornil
and an error message otherwise. -
h:close()
closes the handle (sending and receiving part). Any non-flushed data may be discarded. This function returns immediately and does not report any errors.
There are three preopened handles eio.stdin
, eio.stdout
, and
eio.stderr
, which may exhibit blocking behavior, however.
On Linux, libkqueue
is needed. Some older versions of this library do not
properly support waiting for either reading or writing on the same file
descriptor at the same time. See the release notes for libkqueue
version 2.4.0. Unfortunately, some Linux distributions ship with old versions
of that library. For example, Ubuntu 22.04 LTS as well as Ubuntu 24.04 LTS ship
with version 2.3.1, which is subject to this bug.
Also note that the provided Makefile
is a BSD Makefile. Use bmake
instead of make
on Linux platforms.
The I/O related modules of this library support POSIX operating systems (Linux,
BSD, etc.) only. In particular, there is no support for Microsoft Windows.
However, it is possible to use the effect
and fiber
modules on Windows,
since those are implemented in pure Lua and do not have any operating system
dependencies.
See also "One-shot Algebraic Effects as Coroutines", 21st International Symposium on Trends in Functional Programming (TFP), 2020, (post symposium) by Satoru Kawahara and Yukiyoshi Kameyama, Department of Computer Science, University of Tsukuba, Japan, who provide theoretic background and also presented a similar implementation of (one-shot) algebraic effects in Lua based on coroutines.