rustyfi

SATySFi, reimplemented in Rust. One
binary takes a .saty document and writes a PDF — same language, same packages,
same output, faster compilation, no OCaml toolchain to install.
It speaks both dialects: 0.0 (upstream v0.0.x) and 0.1 (dev-0-1-0),
and a document in one may use packages from the other.
Install
From latest release
$ # User-wide installation (~/.local/)
$ curl -fsSL https://raw.githubusercontent.com/yasuo-ozu/rustyfi/main/install.sh | bash
$ # System-wide installation (/usr/*)
$ curl -fsSL https://raw.githubusercontent.com/yasuo-ozu/rustyfi/main/install.sh | sudo bash
$ # Or manual prefix
$ curl -fsSL https://raw.githubusercontent.com/yasuo-ozu/rustyfi/main/install.sh | sudo bash -s -- --prefix /opt/rustyfi
$ curl -fsSL https://raw.githubusercontent.com/yasuo-ozu/rustyfi/main/install.sh | PREFIX=/opt/rustyfi sudo bash
$ rustyfi --version
From source
install.sh doubles as the installer for a checkout — run inside one, it uses
the binary you just built instead of downloading anything:
$ git clone https://github.com/yasuo-ozu/rustyfi && cd rustyfi
$ cargo build --release --bin rustyfi
$ sh download-fonts.sh # IPAex, Junicode, Latin Modern — pinned, ~175 MB
$ ./install.sh # --prefix DIR to put it elsewhere
Compile a document
@require: stdja-mini
document (|
title = {Milestone One};
author = {yasuo};
|) '<
+p { Hello, world! This is \emph{SATySFi-in-Rust}. }
>
$ rustyfi doc.saty
output written on doc.pdf (1 page(s), 2 line(s)).
A project with a Satyristes
Describe the project in a Satyristes (no opam file is required by rustyfi):
(library …) says what the project publishes: (packageDir "src") installs
every .satyh/.satyg under src/ as the package mylib. Install it into a
project-local root (.rustyfi/) and it becomes @require:-able:
$ rustyfi install . --dest .rustyfi
installed mylib 0.1.0 (1 path(s)):
dist/packages/mylib
$ rustyfi list --dest .rustyfi
mylib 0.1.0 (lang 0.0, 1 files)
.rustyfi/dist/packages/mylib
(libraryDoc …) is a build target rather than a package: rustyfi build runs
its (build …) commands in (workingDirectory …), then installs what
(sources …) names.
$ rustyfi build
rustyfi manual.saty
Package management
@require: resolves against lib roots (<root>/dist/packages/). Name one
with --lib-root or $RUSTYFI_LIB_ROOT and it is used alone; name none and
they are discovered, nearest first:
lib-rustyfi/above your document — a checked-out source tree.rustyfi/beside aSatyristes— a project-local install<exe>/../lib/rustyfi— the install this binary belongs to~/.local/lib/rustyfi, then/usr/local/lib/rustyfiand/usr/lib/rustyfi
All of them are searched in that order, so a package a project installed for itself layers over the system one rather than hiding it — and a clone needs no configuration at all.
To install someone else's package, the same binary is a Satyrographos analog:
$ rustyfi search font theano # keywords narrow: every one must match
$ rustyfi install ./satysfi-xpath # a local path, a .tar.gz, or a registry name
$ rustyfi install xpath easytable # install/uninstall take several at once
$ rustyfi install https://example.org/pkg.tar.gz#sha256=… # or a URL
$ rustyfi list
The default repository can live in your own config, so search and install
work outside any project:
# ~/.config/rustyfi/config.toml
[[]]
= "https://github.com/na4zagin3/satyrographos-repo"
[[]]
= "https://example.org/another-index"
Useful options
| flag | what it does |
|---|---|
-o <path> |
output path (default: the input with a .pdf extension) |
--format <fmt> |
pdf (HTML is on the html-support branch) |
--lib-root <dir> |
where @require: looks for packages |
--lang <v> |
0.0 (default) or 0.1; a use header auto-selects 0.1 |
--font <file> |
use a TrueType/OpenType file as the regular face |
--font-dir <dir> |
font root holding dist/hash/fonts.satysfi-hash |
--no-cache |
bypass the compile cache |
--no-aux |
do not read or write the .satysfi-aux cross-reference file |
--timing |
per-phase timing to stderr (load / typecheck / eval / render) |
Editor support
rustyfi lsp is a Language Server Protocol server speaking over stdio. Point
your editor's LSP client at it for the satysfi language:
$ rustyfi lsp # detect each file's generation from its own text
$ rustyfi lsp --lang 0.1 # analyse everything as 0.1
It answers diagnostics, hover, go-to-definition, completion and symbols — for both SATySFi generations, and on half-typed buffers.
Diagnostics
Lex and parse errors are reported for any buffer at all, under whichever
SATySFi generation the file is written in. Both 0.0.6 and 0.1 are supported,
and the generation is chosen per file the same way a compile chooses it for the
entry document — a use header or a val head selects 0.1, a @stage: header
or a let-* head selects 0.0, and a file that signals neither is checked
against both rather than guessed at. Measured against every
.saty/.satyh/.satyg file in this repository — 247 of them, 64 of which
are 0.1 — it reports no diagnostics at all on files that compile, in 0.56 s
for the whole set (30 ms worst case).
An analysis is also bounded: both grammars backtrack exponentially on some
half-typed inputs — 11.5 seconds on one 14 KB buffer, and climbing — so a parse
caps how much backtracking it may do and says so plainly when it hits the cap,
rather than freezing the editor. rustyfi itself does the same, with a larger
cap that scales with the file: a compiler is asked once and can afford to try
harder than an editor asked on every keystroke, but neither should run forever.
A parse stopped by the cap is reported as having given up, never as a syntax
error.
Type errors are reported for a document whose program can be resolved. A
type error in SATySFi is a property of a whole program, not of a file — the
entry document plus every @require:d package, in dependency order — so the
server resolves that program first, exactly as a compile does (rustyfi-loader
against the same library roots, then elaboration, typechecking and :> seal
checking; it stops before evaluation, so no fonts and no pages). The buffer's
own text stands in for its file, so unsaved edits are what gets checked.
Three things follow from doing it that way, and each is deliberate:
- When the program cannot be resolved, nothing is reported. No library root
configured, a
@require:naming a package that is not installed, auseheader document (whose packaging mode resolves dependencies from a pre-solvedrustyfi-deps.yamland has no seam for an in-memory buffer): all of these fall back to the parse tier and say nothing. A wall of "cannot resolve" on a file that is not at fault is worse than silence. - Library buffers are parse-only unless you ask.
rustyfi lsp --check-librariestypechecks a.satyh/.satygtoo, as a dependency of a synthetic document carrying its own headers. It is off by default because SATySFi's global-merge module model lets a library use a module it never@require:s —satysfi-base'stabular2.satyhcallsColor.blackand requires onlylistandtable— which is valid and cannot typecheck alone. Swept over every library this repository ships, 76 of 77 bundled packages and 68 of 68 resolvable corpus sources check clean; the exceptions are listed by name, with reasons, incrates/rustyfi-lsp/tests/project.rs. - An error from another file is not drawn on yours. Spans in this port
carry no file identity, and the program under analysis is a merge of many
files, so a span is only trusted when its own
(line, column, byte)triple matches this buffer. Otherwise the diagnostic goes to the top of the file and says where it really came from.
The cost is the reason the two tiers are separate: a parse is under a
millisecond, while resolving and typechecking a real document is 2 ms for a
two-file one and 100–200 ms for one with a full document class behind it (28
files, release build). --no-typecheck turns the whole-program tier off.
Hover, go-to-definition and completion
All three answer from one cursor → syntax mapping over the buffer, and all three under the same rule: say only what the file proves.
- Hover names what is under the cursor — an inline command, a module, a
variant constructor, a record label — and, when the file binds it, how it was
bound and on which line. Where the author wrote a type (an ascription, a
sig'sval, a synonym) it is shown, quoted from the buffer; no type is ever inferred, so none is ever wrong. A name that comes from a@require:d package still gets an answer, and that answer says it comes from elsewhere. - Go to definition jumps within the file, honouring shadowing, the five
identifier namespaces (
\cmd,+cmd, math\cmd, values, types) andModule.memberpaths, and it jumps from a@require:/@import:header to the file it names — resolved by the compiler's own loader, so the editor cannot disagree with the build. Where it cannot be sure it returns nothing: anopenof a module the file cannot see makes every name bound before it unresolvable, because thatopenmay be shadowing them. - Completion offers names actually in scope, and is deliberately quiet.
\in inline text offers inline commands,\inside${…}offers math commands,+offers block commands,M.offersM's own members, and a bare word in prose offers nothing at all.
All three keep working on a buffer that does not parse — and on one that does
not even lex, which is what {\emp is the moment you start typing a command:
everything written before the break is still answered about.
Symbols
Symbols fill the outline pane, the breadcrumb and "go to symbol", for one
file (textDocument/documentSymbol) and across the project
(workspace/symbol). Both generations' declaration forms are covered —
0.0.6's let/let-rec/let-inline/let-block/let-math/let-mutable/
type/module … : sig … end and the direct items in a signature, 0.1's
val family with its ~/persistent ~ stage qualifiers, type,
signature, include and nested modules, and both header families. A
module's members are its children, so a library folds down to one entry
rather than thirty. Over the same 247-file corpus the outline extraction finds
9,843 declarations in 1.2 s, and the only file that yields nothing is the one
that is zero bytes long.
The walk is deliberately structural — no name resolution, no types, no
following @require: — so it cannot produce a wrong answer, only an
incomplete one, and it works on a half-typed buffer: it reads the top-level
declaration sequence one declaration at a time, so an unfinished let at the
bottom of the file costs you that one symbol rather than the whole outline.
Configuration
--lib-root <dir> (or $RUSTYFI_LIB_ROOT, or the client's
initializationOptions.libRoot) serves both halves that need one: following a
@require: header to its package file, and resolving a buffer's dependency
graph for the type tier. @import:, being relative to the importing file,
needs no configuration. initializationOptions accepts lang, libRoot (a
string or an array), checkLibraries and typecheck, with the command line
winning wherever both speak.
As a library
Everything except the whole-program tier and workspace/symbol is also
available as a plain library function, with no LSP types in its signature, no
filesystem access and no default features needed —
rustyfi_lsp::analyze(source, lang) -> Vec<Diag>,
rustyfi_lsp::document_symbols(source, lang) -> Vec<Symbol>, and
build_model / hover / definition / completions. So a browser editor
compiled to wasm32-unknown-unknown gets exactly what the desktop one does.
The two exceptions are where the filesystem enters: the whole-program tier is
rustyfi_lsp::project::check, behind the (default-on) typecheck feature, and
searching a project for a symbol means reading it, so that part lives in the
server half.
Performance
Minimum CPU time over three interleaved runs against SATySFi
0.0.11, all five configurations measured in one pass (benchmark.py):
| doc | pages | rustyfi cold | rustyfi cached | SATySFi | --bytecomp |
warm aux |
|---|---|---|---|---|---|---|
| latexcmds | 12 | 0.22 s | 0.08 s | 1.07 s | 1.04 s | 0.67 s |
| enumitem | 27 | 0.96 s | 0.12 s | 2.54 s | 2.33 s | 1.46 s |
| easytable | 19 | 1.34 s | 0.14 s | 2.91 s | 2.85 s | 1.19 s |
| figbox | 21 | 1.28 s | 0.16 s | 2.55 s | 2.43 s | 1.12 s |
| slydifi | 30 | 1.21 s | 0.13 s | 1.74 s | 1.28 s | 1.16 s |
| xpath | 11 | 3.00 s | 0.10 s | 9.49 s | 2.65 s | 3.37 s |
Known gaps
- Fonts are named by file or hash entry, not by package: a document asking for
fonts-junicode:Junicode-Boldfalls back to a name heuristic. - Cross-version
decocrosses both ways now, including through optional arguments and nested module signatures — but not through an open optional row (nothing names the labels to forward) or a functor signature member. fontand 0.1'sparencross in neither direction, and no bridge would change that: both are representation forks rather than missing features. 0.0.6 has nofonttype at all, and 0.1'sparentakes a context where 0.0.6 takes three explicit scalars, with no way to recover the axis.- A 0.0.6 package that WRITES
codein atypedeclaration is refused rather than crossing: 0.0.6 has nocodespelling, so that text would silently acquire 0.1's meaning on the way in. Ordinary staged exports — the inferred kind, from&e— are unaffected and cross both ways.
The manual
The manual is written in SATySFi and typeset by the port itself, so every feature it uses is one that has to keep working.
- manual.pdf · source
manual/logo.saty— the logo above is not an image file but a document, drawn entirely withsatysfi-xpath(notes)
$ make -C manual # manual.pdf, logo.pdf, logo.png
Development
crates/
rustyfi-syntax/ mode-stack lexer and grammar (CST) for both dialects
rustyfi-lang/ elaboration, typechecker, evaluator, primitives
rustyfi-backend/ boxes and glue, line and page breaking, math
rustyfi-loader/ @require/@import resolution and load order
rustyfi-pdf/ PDF writer, font embedding
rustyfi-satyrographos/ package manager
rustyfi/ the binary
lib-rustyfi/ bundled packages: dist/ (0.0) and dist-v01/ (0.1)
layout-tests/ layout fidelity gate, corpus, probes, measurement
install.sh, download-fonts.sh, benchmark.py
License
MIT — see LICENSE.
Two sets of files bundled here are not covered by it and keep their own terms.
The fonts download-fonts.sh fetches carry the IPA Font License v1.0,
SIL OFL 1.1, the GUST Font License and DejaVu's, each copied next to the font it
covers. The SATySFi packages under lib-rustyfi/ are upstream's, LGPL-3.0.