Skip to content

.sys.* — system info and control

Process-level introspection (build, memory, host info) and command-style operations (shell-out, profiler toggle, IPC listener bind, env dump, GC trigger). The dotted .sys.<name> builtins are the typed entry points; .sys.cmd parses a colon-style command string and dispatches to the same handlers — used by the REPL's :listen 5000 style commands.

Restricted under -U

.sys.exec, .sys.cmd, and .sys.listen are RAY_FN_RESTRICTED — they can either run arbitrary shell commands or change the process's network surface. The introspection entries (.sys.args, .sys.build, .sys.info, .sys.mem, .sys.gc, .sys.env, .sys.timeit) are unrestricted.

Reference

Function Arity Flags Description
.sys.args variadic Command-line arguments as a typed dict.
.sys.build variadic Version + build date as a dict.
.sys.info variadic Host facts: cores, page size, total memory.
.sys.mem variadic Allocator statistics.
.sys.gc variadic Garbage-collect hint (no-op; returns 0).
.sys.env variadic Count or list of globally bound names.
.sys.exec unary restricted Run a shell command; return its exit code.
.sys.cmd unary restricted Dispatch a colon-command string.
.sys.listen unary restricted Bind an IPC listener on a TCP port.
.sys.timeit variadic Toggle / set the per-expression profiler.

.sys.args

Signature: (.sys.args). Returns the process's command-line arguments as a dictionary. Because the launcher flags have a known format, each top-level value carries its natural type; everything after a -- separator is collected into a user subdict (string → string), so an application can read its own options without colliding with Rayforce's own flags.

Key Type Source flag Notes
file str -f / positional Script path; empty if none.
port i64 -p IPC listen port; 0 if unset.
cores i64 -c Worker-pool size; 0 = auto.
timeit bool -t Profiler enabled at startup.
interactive bool -i Force the REPL after a script.
log str -l / -L Journal base path; empty if none.
user dict after -- The application's own arguments.

The top-level schema is stable — every launcher key is always present with its effective value (the default when the flag wasn't passed), so (get (.sys.args) 'port) never misses. Auth passwords (-u / -U) are deliberately not exposed.

user parsing. Tokens after -- are paired -key value / --key value: a token starting with - is a key (leading dashes stripped to a symbol), and the next token is its value — unless that token also starts with -, in which case the value is the empty string (a bare flag). Duplicate keys keep the last value.

;; launched as:  ./rayforce app.rfl -- -opt 123 --verbose
(.sys.args)
;; => {file:"app.rfl" port:0 cores:0 timeit:false interactive:false log:0Nc
;;     user:{opt:"123" verbose:0Nc}}

(at (.sys.args) 'user)     ;; just the application's options
;; => {opt:"123" verbose:0Nc}

(get (.sys.args) 'port)    ;; a typed launcher value
;; => 0

Empty strings render as 0Nc in the REPL (log and the bare verbose flag above). See passing arguments to a script for the launcher side.

.sys.build

Signature: (.sys.build). Returns a dict with version (string) and build-date (string). Both fall back to "unknown" when the build didn't define RAYFORCE_VERSION / RAYFORCE_BUILD_DATE.

(.sys.build)
;; => {version: "0.3.1", build-date: "2026-05-27"}

.sys.info

Signature: (.sys.info). Returns {cores: i64, page-size: i64, total-mem: i64} on POSIX. On Windows the response is {cores: 1} (a fallback — the sysconf-backed values aren't wired).

(.sys.info)
;; => {cores: 10, page-size: 16384, total-mem: 68719476736}

.sys.mem

Signature: (.sys.mem). Returns the buddy allocator's running counters:

Key Meaning
alloc-count Cumulative ray_alloc calls.
bytes-allocated Live bytes held by ray_t objects.
peak-bytes High-watermark since process start.
slab-hits Cumulative fast-path slab allocations.
sys-current Currently-allocated bytes from the system allocator.
(.sys.mem)
;; => {alloc-count: 12345, bytes-allocated: 524288, peak-bytes: 2097152, ...}

.sys.gc

Signature: (.sys.gc). No-op stub — Rayforce uses reference counting, so there's no global collector to kick. Kept as a registered builtin so existing scripts that call it don't error. Returns 0.

.sys.env

Signature: (.sys.env). From a script / IPC context returns the count of globally bound names (i64). In a REPL context the same dispatcher prints one line per binding (name + type label) and returns null — the variadic registration accommodates both forms.

(.sys.env)
;; => 42  (number of global bindings)

.sys.exec

Signature: (.sys.exec "command"). Runs command through system(3) and returns its exit status as an i64. Used pervasively in tests to set up / tear down /tmp fixtures.

Errors: type (arg not a string), domain (null pointer).

(.sys.exec "rm -rf /tmp/scratch")   ;; => 0
(.sys.exec "false")                  ;; => 256  (waitpid-encoded)

.sys.cmd

Signature: (.sys.cmd "name args"). Parses a colon-style command name (without the leading :) and dispatches. Names supported: timeit/t, listen, env, clear, help/?, q/quit. Unknown names fall back to system() (so (.sys.cmd "ls /tmp") works too).

clear, help, and q are REPL-only — invoking them from a script returns a domain error rather than silently no-op'ing.

(.sys.cmd "listen 5000")   ;; => listener id
(.sys.cmd "env")           ;; => binding count
(.sys.cmd "timeit 1")      ;; => 1   (profiler enabled)

.sys.listen

Signature: (.sys.listen port). Binds an IPC listener on port using the runtime's main poll. Returns the listener id (i64).

Errors: type (port not an int / not parseable from string), domain (port outside [1, 65535]), nyi (no main loop — embedded library without a poll), io (bind failure, e.g. port already in use).

(.sys.listen 5000)
;; => 12  (listener id)

.sys.timeit

Signature: (.sys.timeit [flag]). Toggles the per-expression profiler. Calling with no argument flips the current state; passing 0 disables, anything non-zero enables. Returns the new state as i64 (0/1).

(.sys.timeit 1)   ;; enable profiling
(select {from: trades by: sym total: (sum qty)})
;; (timings printed for each subexpression)
(.sys.timeit 0)   ;; disable

See also

  • .os.* — filesystem and env-variable primitives that don't shell out.
  • .ipc.* — the client side; .sys.listen binds the server.
  • .time.*.time.now / .time.timer.set for measurement and scheduling without the profiler.