| .forgejo/workflows | ||
| .vscode | ||
| crates | ||
| packaging | ||
| .gitattributes | ||
| .gitignore | ||
| build.bat | ||
| build.sh | ||
| Cargo.lock | ||
| Cargo.toml | ||
| config_example.toml | ||
| LICENSE | ||
| README.md | ||
| rust-toolchain.toml | ||
QuickSearch
A fast local file indexer and search tool. QuickSearch walks your chosen folders into a compact SQLite index (FTS5 full-text + zstd-compressed text sidecar), keeps it fresh automatically with filesystem watchers and periodic reindexing, and serves ranked search-as-you-type results in a compact egui desktop app, or straight to your terminal.
AI Disclaimer
QuickSearch has a core designed by it's developer and built by hand, however the majority of it's codebase including it's GUI was designed by a human and built using AI agents with human review, improvements, and testing.
GitHub Mirror
The primary home of this software is: https://code.karsttech.com/jeremy/quick_search
The code is also mirrored to GitHub for easier bug reporting and issue tracking: https://github.com/DataScienceDIY/quick_search
Build & run
./build.sh # Linux
build.bat # Windows
These take a fresh machine all the way to a running app: install whatever
build dependencies are missing, build release, then launch the GUI. Each
setup stage is skipped when what it provides is already there, so a normal
run costs one cargo build. build.sh installs Linux system packages with
the distribution's package manager via sudo (apt/dnf/pacman/zypper) and the
Rust toolchain with rustup; build.bat uses winget and rustup. Both take
--check to report dependency status without installing or building,
--no-run to stop after the build, and -- to pass the rest to the binary.
build.sh also takes --installer, which adds NSIS and the mingw-w64 cross
toolchain to what it installs and builds the Windows installer instead of
launching anything — see Install (Windows).
Building by hand needs a Rust toolchain plus, on every platform, a C toolchain
and Perl: SQLCipher, zstd and OpenSSL are compiled from bundled C sources, and
OpenSSL's Configure is a Perl script. rust-toolchain.toml pins the compiler
version and the cross-compilation targets, so rustup installs the right ones on
the first cargo command and no rustup target add is needed. The old
WebKit/WebView dependencies (setup.sh) are gone; the GUI renders with
OpenGL via egui.
- Linux: working OpenGL 3.3 drivers;
xdg-desktop-portal(present on all mainstream desktops) provides the native folder picker. On minimal images you may needbuild-essential perl pkg-config. No X11, Wayland or xkbcommon-devpackages are needed: winit dlopens the display stack at run time, so only the runtime libraries matter. - Windows: Visual Studio 2022 Build Tools with the "Desktop development
with C++" workload (MSVC v143 plus a Windows SDK), and Perl (Strawberry
Perl); NASM is optional and only enables OpenSSL's assembly paths. The GNU
target needs only a mingw-w64 toolchain, and cross-compiles from Linux —
cargo build --release -p quicksearch-gui --target x86_64-pc-windows-gnuwithgcc-mingw-w64-x86-64installed, which is how CI produces the Windows binaries. Note that Windows ships only a software OpenGL 1.1 driver, so a bare VM or an RDP session without a vendor GPU driver cannot create a context and the window will fail to open. - macOS: Xcode command line tools (
build.shdoes not auto-install these — only Linux package managers are handled).
cargo build --release -p quicksearch-gui # binaries: target/release/quicksearch{,-cli}
cargo run -p quicksearch-gui # or just run it
cargo test -p quicksearch-core # backend test suite
Two binaries are produced. quicksearch is the desktop app; on Windows it
is built as a window-subsystem app so no console appears behind it.
quicksearch-cli is terminal search — a console app, so pipes, redirection
and exit codes behave normally. On Unix quicksearch also does both, and
quicksearch-cli is simply the same tool under a clearer name.
Install (Debian / Ubuntu)
./packaging/build-deb.sh
sudo apt install ./dist/quicksearch_1.0.2_amd64.deb
The script builds the release binary, strips it, and assembles a .deb with
dpkg-deb. It needs no cargo-deb, no debhelper and no SVG rasteriser —
only dpkg-deb and desktop-file-utils, both standard on Debian and Ubuntu.
Useful flags: --no-build to package a binary you already built, --no-strip
to keep debug symbols, -o DIR to write elsewhere. DEB_MAINTAINER overrides
the packaging maintainer.
The package installs:
| Path | Contents |
|---|---|
/usr/bin/quicksearch |
the desktop app, which also does terminal search |
/usr/bin/quicksearch-cli |
terminal search only |
/usr/share/applications/quicksearch.desktop |
menu entry, so QuickSearch appears in the app launcher |
/usr/share/icons/hicolor/{16,22,24,32,48,64,128,256}x*/apps/ |
icons at each size |
/usr/share/icons/hicolor/scalable/apps/quicksearch.svg |
the source icon |
/usr/share/metainfo/com.karsttech.quicksearch.metainfo.xml |
AppStream data, so software centres show a real listing |
/usr/share/man/man1/quicksearch{,-cli}.1.gz |
man quicksearch; the -cli page is a .so stub pointing at it |
/usr/share/doc/quicksearch/ |
copyright, changelog, README, config_example.toml |
Installing registers the menu entry and the icon: dpkg triggers owned by
desktop-file-utils and hicolor-icon-theme refresh both caches, so no
maintainer scripts are involved and apt remove reverses it cleanly.
No config.toml is installed. One placed next to the executable would put
every user into portable mode (see Configuration); instead
the app writes ~/.config/quicksearch/config.toml on first run.
Icons
crates/quicksearch-gui/assets/icons/ holds quicksearch_icon.svg and the
PNGs rasterised from it. The PNGs are committed rather than generated, so an
ordinary cargo build needs no image tooling — the 256px one is compiled into
the binary with include_bytes! and becomes the window icon. Editing the SVG
means re-rendering the PNGs; packaging/build-deb.sh documents how in a
comment at the top.
X11 takes the window icon from the embedded PNG. Wayland ignores it and
matches the app id (quicksearch) against the installed
quicksearch.desktop, so under Wayland the titlebar icon appears only once
the package is installed.
quicksearch.ico in the same directory bundles the 16–256px PNGs unchanged
(one PNG-compressed entry per size) for the Windows installer, which uses it
for the installer window, the shortcuts and the Add/Remove Programs entry.
Regenerate it from the PNGs with Pillow: open each quicksearch-N.png,
largest first, and save(..., format="ICO", sizes=[...], append_images=rest)
— passing the images rather than one image and a size list is what keeps the
committed pixels instead of resampling them.
Install (AppImage)
For anything that is not Debian or Ubuntu. Download
quicksearch-<version>-x86_64.AppImage from the release page, make it
executable and run it:
chmod +x quicksearch-1.0.4-x86_64.AppImage
./quicksearch-1.0.4-x86_64.AppImage
If it fails to start with a FUSE error — some distributions no longer install FUSE by default — either install the distribution's FUSE package or run it unpacked:
APPIMAGE_EXTRACT_AND_RUN=1 ./quicksearch-1.0.4-x86_64.AppImage
To build one, ./packaging/build-appimage.sh takes the same flags as
build-deb.sh (--no-build, --no-strip, -o DIR). It downloads
appimagetool and the AppImage runtime, both pinned by sha256 and cached under
~/.cache/quicksearch, and needs zsync and appstream installed for
zsyncmake and appstreamcli. APPIMAGETOOL points it at a copy you already
have. It needs no FUSE itself, which is what lets CI build one in a container.
Install (Windows)
Download quicksearch-<version>-windows-x86_64-setup.exe from the release
page and run it, or build it on a Linux machine:
./build.sh --installer # installs the two extra packages first
./packaging/build-installer.sh # or straight to the build
That cross-compiles for x86_64-pc-windows-gnu and compiles the installer
with NSIS, which runs on Linux — no Windows machine is involved, and CI
produces the installer in the same job as the .zip. It needs nsis and
gcc-mingw-w64-x86-64 (mingw32-nsis and mingw64-gcc on Fedora, nsis and
mingw-w64-gcc on Arch; on openSUSE both come from the windows:mingw OBS
project, so build.sh names them and leaves the repository to you). The same
flags as build-deb.sh apply: --no-build to package binaries you already
built, --no-strip, -o DIR; after --, build.sh --installer passes them
straight through.
The install is per-machine and asks for elevation. Into
C:\Program Files\QuickSearch go:
| File | Contents |
|---|---|
quicksearch.exe |
the desktop app |
quicksearch-cli.exe |
terminal search |
quicksearch.ico |
icon for the shortcuts and Add/Remove Programs |
README.md, LICENSE.txt, config_example.toml |
documentation |
uninstall.exe |
written by the installer; Add/Remove Programs runs it |
The components page offers a Start menu shortcut (on) and a desktop shortcut
(off); both are created for all users. No config.toml is installed, for the
same reason the .deb ships none — one next to the binaries is portable mode
(see Configuration) and would override the personal config
of every account. The app writes %APPDATA%\quicksearch\config.toml on first
run instead.
Installing over an older version reuses wherever that one went, taken from its registry entry rather than guessed. Both the installer and the uninstaller stop with a message if QuickSearch is still running, since Windows will not replace a running executable and the alternative is a half-replaced install.
Uninstalling removes what was installed and nothing else. The index in
%LOCALAPPDATA%\quicksearch and the config in %APPDATA%\quicksearch stay,
so reinstalling picks up the existing index; the program directory is removed
only if empty, which leaves a portable-mode config.toml and its index alone.
PATH is deliberately untouched — add C:\Program Files\QuickSearch to it
yourself if you want quicksearch-cli on every prompt. It is an NSIS
installer, so it takes /S for a silent install and /D= for the directory
(last argument, unquoted):
quicksearch-1.0.2-windows-x86_64-setup.exe /S /D=C:\Tools\QuickSearch
The .zip on the release page is the alternative to all of this: the same two
binaries, no registry entries and nothing to uninstall. Unpack it anywhere,
and drop a config.toml next to the binaries to keep the config and index
inside that folder.
Usage
GUI
quicksearch with no query arguments opens the app:
- Search: results appear as you type; every keystroke cancels the previous search. One checkbox enables the two fuzzy passes. Sort by rank, name, path, size, or modified. Double-click a result to open it; right-click it to reveal it in the file manager, open it, copy its path, or build an ignore filter from it (session-only by default, optionally persisted to the config). Result text can be selected and copied in place. Matches in file contents show highlighted snippets.
- Manage Index: full indexing status, Start/Stop/Automatic controls,
indexed folder list, full-text extension filters, ignore patterns, and
the indexing options. Stopping switches to manual mode and saves that
(
indexing.auto_index), so a stopped index stays stopped across restarts until you return to automatic. The index size beside the status heading totals the database and its-wal/-shmsidecars, refreshed every ten seconds; hovering it lists the ways to make it smaller. Each folder in the list carries what it holds — files indexed, and how many of those had text extracted — counted once as each indexing run finishes and stored with the index, so they are there the moment the app opens rather than costing a scan to show. A folder nothing has finished indexing reads "not yet indexed" rather than zero, and because the figures come from completed runs they do not move as live updates apply single changes in between. - Duplicates: files sharing a content hash, grouped.
- Logs: the lines the app would have printed to a terminal — warnings from indexing, folder watching and opening files, newest last, with a filter box and Copy button. Launched from a desktop launcher (or on Windows, where the app has no console at all) this is the only place they are visible.
- Help: an in-app quickstart — first indexing run, example queries, what each tab does — pointing here for everything technical.
Ctrl+Shift+F from anywhere brings QuickSearch to the front, restoring it if it was minimized, and puts the cursor in the search box with the previous search selected, so the next thing you type is the new one. The Options window's Interface section rebinds it — click the button and press the keys — or switches it off. It is a system-wide shortcut, registered with Windows or with the X server, so it works while another application has focus. Wayland does not let an application claim a key, so there the shortcut is registered with your desktop through the XDG desktop portal instead; your desktop then has the final say over which key it is, and its own keyboard settings are where to change it. The Options window says which key it settled on. Wayland likewise gives no application a way to put itself in front of what you are doing, so under it the shortcut selects the Search tab and the search box but leaves raising the window to the desktop; on X11 and Windows it raises and restores the window itself.
The bottom status bar always shows what the indexer is doing (phase, percent, files/sec) or the total indexed file count when idle. Applying a settings change to the index counts as something the indexer is doing: it reports its progress there and in the Manage Index tab, and says what it removed for a few seconds after it finishes, so a change that takes a millisecond is as visible as one that takes minutes.
Quitting while a settings change is still being applied asks first. Leaving is never refused — the work stops promptly and the index stays consistent — but it stops part-way, so entries you excluded can still turn up in search results until indexing runs again. The next launch says so, with a button to start that run; in automatic mode the periodic reindex does it for you.
Terminal
quicksearch report type:Document modified:">=2024-01-01"
quicksearch --long --limit 20 "quarterly budget"
quicksearch --fuzzy repot # tolerates typos
Prints rank-ordered paths (pipe-friendly); --long adds rank, size,
mtime, and highlighted snippets. quicksearch --help shows all flags.
On Windows use quicksearch-cli for all of the above — quicksearch.exe
opens the app, and any query given to it seeds the search box instead of
printing. Colour in --long output needs a console with virtual-terminal
processing; Windows Terminal has it, and older consoles get plain text.
Password protection
The index contains the names and (by default) the full text of everything it indexes — for most setups, your entire home directory. That is a lot of concentrated risk in one file. Options → Security → Enable password protection encrypts the index on disk with SQLCipher; from then on QuickSearch asks for the password every time it starts, in the GUI (an unlock screen before anything opens the index) and in the terminal (a hidden prompt). Enabling, disabling, or changing the password deletes and rebuilds the index — there is no in-place conversion.
- The key is derived as
Argon2id(password, salt); the salt is written toconfig.tomlwhen the password is set (it is unique, not secret, and required — keep it with the config if you copy a protected setup). - Remember on this device stores the derived key (never the password) in the OS keychain — Secret Service/KWallet on Linux, Credential Manager on Windows — and skips the prompt. Without a keychain daemon the option quietly falls back to prompting.
- Scripts can set
QUICKSEARCH_PASSWORDfor non-interactive terminal search. Environment variables are readable by other processes of the same user (/proc/<pid>/environ) — prefer the keychain. - Forgot the password? The unlock screen can delete the index and disable protection; your files are untouched and re-indexing rebuilds it.
This protects the index itself and for attacks like data theft. Anything malicious running with user permissions could bypass this protection, but anything with user permissions can also access all of the same files.
Query syntax
This section is the complete reference (the in-app "?" popup shows a condensed version of the same rules). Everything that isn't a filter is matched as one phrase, in order. Filters combine freely with the search text:
| Syntax | Meaning |
|---|---|
budget report |
names, contents, and paths containing the phrase budget report |
"exact phrase" |
quotes keep spaces, stars, and filter-like words literal; "" escapes a quote |
bud*port |
* matches any run of characters (it stays on one line of content); % and _ are always literal |
| `regex:"(foo | bar)\d+"` |
type:Audio |
one of Audio, Image, Video, Document, Text, Archive, Spreadsheet, Presentation, Folder |
modified:>=2024-01-01 |
also <, <=, >, = (dates are yyyy-mm-dd; mtime: is an alias) |
path:/home/me/docs |
restrict to a folder and its subfolders (folder: and includefolder: are aliases); * is literal here |
path:C:\Users\me\docs |
the same on Windows — drive letters and backslashes need no quoting |
mime:application/pdf |
exact MIME type |
name:re*.txt |
filename contains (as a filter, unranked; filename: is an alias); unquoted * globs |
Unrecognized key:value text (like 12:30) stays part of the search
phrase, and a half-typed quote never errors while you type. AND, OR
and parentheses are treated as plain words. A term of only stars matches
nothing, and a regex that could match the empty string is rejected rather
than matching every file. regex: bypasses the trigram index entirely
and combines with filters; alongside search text it acts as an extra
requirement on those results.
The search box highlights this syntax as you type: recognized filter
keywords in red, their arguments in blue, syntax characters (operators,
quotes, live wildcards) in green, on a tinted chip per complete filter.
An argument the engine would reject — unknown type: name, bad date,
invalid regex — switches to the error color immediately.
Results are ranked: exact filename matches (case-sensitive first), then
filename substrings, then full-text matches ordered by occurrence count,
then fuzzy filename/full-text matches when enabled, and last the files
matched somewhere else in their path. Later, weaker matches only ever
append to the bottom of the list. Wildcard terms rank through the same
tiers (an "exact" match means the whole name matches the pattern) but
skip the fuzzy passes; regex-only queries reuse the substring, full-text,
and path tiers. Path matching needs at least three characters, and terms
may span separators (docs/report). Full-text matching also needs at
least three characters of literal text (the trigram floor). The fuzzy
passes tolerate typos with a budget of one edit per three characters,
capped by [search] fuzzy_max_edits (default 2; 0 turns fuzzy off).
Configuration
config.toml lives at ~/.config/quicksearch/config.toml (Windows:
%APPDATA%\quicksearch\config.toml) and is created on first run; the
default index goes to ~/.local/share/quicksearch/index.sqlite
(Windows: %LOCALAPPDATA%\quicksearch\index.sqlite). See
config_example.toml for every option.
Defaults follow the platform. The first indexing root is your home
directory or %USERPROFILE%; include_hidden = false skips dot-files
everywhere and additionally anything marked Hidden on Windows, which is
what keeps AppData, $RECYCLE.BIN and System Volume Information out
of the index — the System attribute alone is not enough, because cloud
sync roots carry it purely to get a branded folder icon; and ignore
patterns are matched case-insensitively on Windows and macOS, matching
the filesystem.
Portable mode: a config.toml sitting next to the quicksearch
binary overrides the user config entirely, and relative paths inside any
config resolve against the config file's own directory, so a folder
containing the binary, its config, and its index can be moved wholesale.
The GUI edits the config live; external edits apply on next start.
[ui] search_hotkey is the system-wide search shortcut, written the way
the Options window prints it (Ctrl+Shift+F): Ctrl, Alt and Shift in any
combination, plus one key, joined with +. An empty string switches it
off. A value that is not a shortcut is not a config error — the app loads,
says so in the Options window, and runs without one.
[ui] color_scheme is dark (the default) or light, changeable in the
Options window and applied without a restart. It does not follow the
desktop's own light/dark setting: on Linux nothing in the window system
reports that, so the only way to know is to connect to the session message
bus and subscribe to the user's settings feed — more of your session than a
search tool should be in, to decide what color some text is.
Changing what is indexed does not throw the index away. Narrowing the
scope — removing a folder, adding an ignore pattern, turning off hidden
files or symlink following, shortening content_extensions — deletes
exactly the entries that fell out of scope, in place. Widening it — adding
a folder, deleting a pattern, lengthening the extension list — schedules a
reindex to find what is newly in scope. Both happen automatically, in
automatic and manual mode alike, and neither asks first: it is the edit you
just made. Order and spelling are not changes at all, so reordering the
folder list or writing ~/docs where you wrote /home/you/docs costs
nothing.
Only three settings still delete and rebuild the index, because nothing
stored survives them: processing.tokenize (part of the FTS table's
definition), processing.hash_length (existing hashes become
incomparable), and turning password protection on or off or changing the
password. In manual mode those ask for confirmation first.
Engineering overview
Two crates:
crates/quicksearch-core library: indexing, storage, search
crates/quicksearch-gui binary "quicksearch": egui app + terminal mode
Backend (quicksearch-core)
Synchronous Rust: std::thread + mpsc channels, no async runtime.
-
Storage (
db/): SQLite via rusqlite (bundled SQLCipher build — identical to stock SQLite until a key is applied), WAL mode so the single writer never blocks streaming read-only searches. A run forces awal_checkpoint(TRUNCATE)everyprocessing.maximum_wal_sizebytes of log, because SQLite's own autocheckpoint can only reset the log at an instant no reader holds it — and a run keeps a reader per root querying throughout, so left alone the log grows for the whole run.filesholds metadata (name, path, size, mtime, hash, MIME/type bitmask, per-row index state);searchabletextis a contentless FTS5 table (postings only, configurable tokenizer, trigram by default); canonical extracted text lives zstd-compressed indocuments_text, which powers snippets, occurrence ranking, and fuzzy full-text search. Schema changes wipe and rebuild by policy; the indexer (open_or_recreate) is the only code allowed to do that; every consumer usesopen_existing, which treats drift as an error, never data loss. With password protection on, every open applies the Argon2id-derived raw key (security.rs, process-global indb/key.rs) before anything reads the file; a wrong key is a taggedKEY_MISMATCHerror, structurally distinct from the schema drift that may wipe, so it can never destroy an intact index. Each kind of connection takes a page cache sized for what it does and how long it lives, rather than one figure applied everywhere (db/schema.rssets six profiles and argues each): the caches aremalloced, so a connection that scans a table and is then held — the coordinator's writer, before it learned to let go when idle — keeps that memory for the life of the process. Search is the one deliberately large one, because it is the only cache reused often enough to pay for itself, and it is released once searching stops. Dropping the connection is only half of releasing it: glibc hands the freed pages back to its own arena rather than to the kernel, so the search worker callsplatform::release_free_heapafter it lets go, exactly ascoordinator::go_idledoes for the writer. Without that call one typing session left the process 42 MiB heavier for as long as it ran — measured on a 77k-file index, where an idle GUI sat at 76 MiBRssAnonand stayed there, against 34 MiB before the first search and 42 MiB once the trim runs. -
Indexing (
indexing.rs,file_handling.rs): full runs walk each root (filtered_walkprunes hidden/ignored subtrees before descending), classify files by mtime into insert/update/skip, batch-write metadata, sweep stale rows, then extract content (plaintext, RTF, Office — both the OOXML/ODF zip formats and the pre-2007 binary.doc/.xls/.ppt, whose OLE2 streams are read inextract/ole.rs— PDF, audio tags, EXIF; seeextract/) for FTS. PDFs are parsed once, with the text and theInfodictionary taken off the same document: the two-parse version that preceded it was the largest single memory consumer of a run over a PDF-heavy tree, and it was what pulled a second copy oflopdf— and with it rayon's never-torn-down thread pool — into the build. That is a claim about PDFs rather than about runs in general, and it is worth knowing which tree a number came from: on one with almost no PDFs, a cold run peaks at 130 MiB against 27 MiB for the same walk with content extraction switched off, and switching offstore_text_for_snippetsmoves that peak not at all — so what is left is the extraction workers and FTS5's own index build, not any single parser and not the stored text. Files whose extension no MIME table knows — including extensionless ones likeREADMEorMakefile— are sniffed from their head bytes and indexed as text only when that head is provably text: valid UTF-8, or BOM-marked (mime.rs,textenc.rs). Legacy charsets are decoded via chardetng and stored as UTF-8, but only for files something else typed as text, normally their extension — chardetng's windows-1252 floor never fails, so accepting it on a bare sniff would adopt any binary lacking NUL bytes. More claimed files means a bigger index —indexing.content_extensionsremains the throttle. Files no larger thanprocessing.hash_lengthskip that second pass entirely: the head the walk reads to hash them is already their whole content, so a plaintext body is extracted in the samereadand stored complete. Every run ends — whether it completed or was stopped — with an optimize pass on its own connection: checkpoint, VACUUM if the file has at least 10% slack to reclaim,PRAGMA optimize, checkpoint again. Progress streams through a polledIndexingStatus, which readsOptimizingfor the duration of that pass — andPreparingfor everything a run does before its first file is walked: waiting on the previous run's thread, opening the index (a WAL recovery lands here), and reconciling a changed configuration. Each carries the run's start time, so a prologue that outlasts the walk on a large index reads as slow work rather than a hang. -
Scope reconciliation (
scope.rs): the index is a cache of what a walk under the configured roots would produce, so a configuration change is a difference between the two rather than a reason to start over.config::diff_actionsturns old-versus-new into anIndexWorkplan — roots to delete by path range, rows to re-test against the walker's own filtering rules (Scope::coversmirrorsread_directoryexactly, or the next run would re-add what the last prune removed), stored text to re-decide, and whether a walk must follow. The coordinator applies it in 250 ms slices so a multi-million-row scan never blocks its command loop, and every run applies it once more against theconfig_validationfingerprint, which is what makes a config hand-edited while the app was closed behave like one edited live. The scan is per-root, by[lo, hi)range: a symlink target stored outside every root has no owning root and therefore no rules that could be applied to it, so it is never visited. Whichever of the two applies it, a pass that finishes records what it reconciled against — everything but the three rebuild-only keys, which no scan can satisfy. That record is the whole convergence condition: an abandoned pass leaves it alone and the next run picks the work back up, while a completed one stops every later run from re-deriving the same plan and rescanning every row to redo work already done. Both report a liveReconcileProgresswhile they scan, since on a large index this is minutes of work with no files moving to show for it. Both can also be abandoned:advancereads a cancel flag before every statement, and the statement already running — oneDELETEcan cover a whole root — is ended bysqlite3_interrupt, since a flag alone cannot reach inside SQLite. That is what makes closing the window during a prune immediate instead of a wait the desktop offers to kill.scope::outstanding_workasks the record what is still owed, which is how the GUI knows to remind you at the next launch. -
Coordinator (
coordinator.rs): the object binaries construct. Owns theIndexingService, the debouncing filesystem watcher (watcher.rs), and the mode state machine (Auto / Manual, persisted asindexing.auto_index— the mode the app is left in is the mode it starts in, and a config carrying a different value switches it). Watcher events become single-file transactions (incremental.rs) that keepfiles, FTS, and the text sidecar consistent per commit; a full reindex runs on a configurable interval. Incremental writes defer while a full run is active, so there is exactly one writer at a time — scope reconciliation defers with them, for the same reason. Registration follows what the platform's notification API can do: inotify covers one directory per watch, so the roots are walked and each surviving directory registered individually (skipping.git,node_modulesand hidden subtrees, which is what keeps the watch count affordable), whileReadDirectoryChangesWcovers a whole tree from one handle and takes a single watch per root, filtering the events instead. Either way a tree too large to watch degrades to periodic reindexing rather than going silently stale. -
Search (
search/):SearchServiceruns one worker thread; each query is a generation. New queries interrupt the in-flight SQLite statement (InterruptHandle) and stale generations stop cooperatively, so typing never waits. The worker keeps its connection across requests and drops it once searching stops, so a typing session runs against a page cache that is already warm instead of rebuilding one per keystroke; because a rebuild or clear puts a new file at the same path, an index generation counter (db::index_epoch) is what tells the held connection to reopen. The cascade streams rank-ordered batches: onefilesscan classifies exact/case/substring filename matches (ranks 1–4) and, since a path contains its own name, sets aside full-path matches from the same rows (ranks 9–10); one FTS phrase probe verified against the decompressed text yields full-text ranks 5–6 ordered by occurrence count; and the opt-in fuzzy passes run a bitap (Wu–Manber) matcher over filenames (rank 7), document text (rank 8) and paths (rank 11), with a configurable edit budget. The deferred path tiers flush last, so weaker matches only ever append. All SQL is parameterized; structured filters from the query language (query/) are ANDed onto every pass.The passes that read document text share one
zstd::bulk::Decompressorand one output buffer per scan (DocDecoderinsearch/cascade/passes.rs), and the row's path is borrowed from the statement rather than copied — only rows that become hits own one. Both matter more than they look: peak memory during a search never exceeded 14 MiB even before any of this, but a single fuzzy query moved 31 GiB throughmalloc, and resident-set sampling is blind to that by construction, because a buffer allocated and freed inside one loop iteration never moves RSS.DocDecodermust therefore never fall back to a per-row allocating decode, and there is a trap waiting there:zstd::encode_all, which the indexer writes with, is stream-based and so records no content size in the frame header, meaningget_frame_content_sizereturnsNonefor every row this ever sees. The "cannot happen" branch is the only branch. Sizing the buffer from the header and handing theNonecase tozstd::decode_alllooks obviously right and costs ~2.4 MiB per document, becausedecode_allbuilds a streaming decoder per call — 27 of the 30 GiB a fuzzy search moved. Growing this buffer and keeping it is what makes decoding a row allocate nothing at all. Measured over the same 77k-file index, per query:cascade582 → 14 MiB,function6.0 GiB → 29 MiB,--fuzzy cascade31 GiB → 57 MiB,regex:31 GiB → 39 MiB, each a little faster rather than slower.TermPattern::find_firstfolds nothing either: its case-insensitive literal branch used to allocate a lowercased copy of its haystack, which the filename pass asked for twice per row of a full-table scan. -
Baloo compatibility (
cli.rs,mime.rs): the read API this repo's parent consumes —status_for_path,list_failed,index_size_breakdown,pending_content_count,clear_path— plus a Baloo-shaped type model. Onlyindex_countshas a caller inside this repository; the rest are a compatibility surface for the parent'sbalooctllayer and are not dead code. -
Logging (
log.rs): background reporting goes throughlog_info!/log_warn!rather thanprintln!/eprintln!. Each writes its line to stderr and appends it to a bounded in-memory ring (newest 5000 lines, with a count of what was dropped) that the GUI's Logs tab reads, so a windowed run with no terminal still surfaces them. Command output — search hits, usage, the error a command exits with — stays on stdio. -
Platform differences (
platform.rs): the single home for#[cfg]. Home directory lookup, what counts as a hidden entry (dot-prefix, plus the Hidden attribute on Windows — System deliberately excluded, since cloud sync roots set it to get a folder icon), network-filesystem detection (/proc/mountsagainstGetDriveTypeW), path collation, and the watch-registration strategy all live here, so the rest of the crate can ask a question rather than test a target. Anything decidable from a string alone is split out so its tests run on every platform.
Frontend (quicksearch-gui)
Immediate-mode egui/eframe app, one UI thread:
UI thread ──SearchRequest──▶ search worker ──SearchUpdate (mpsc)──▶ drained per frame
UI thread ──commands──────▶ IndexCoordinator ──state──▶ polled per frame
core threads ─────────────▶ ctx.request_repaint() (wake the UI)
Modules map one-to-one onto what you see: app.rs (shell and config
routing, with app/ submodules for the status bar, the security flow and
the confirmation modals), search_tab.rs (query strip and virtualized
results table; snippet rendering via LayoutJob byte ranges, the ignore
dialog and the syntax help live in search_tab/), manage_tab.rs (status
detail + tracker.rs rate estimation, roots and filter editors),
duplicates_tab.rs, logs_tab.rs (a virtualized view of the core log
ring), options.rs (draft-based settings editor shared between the window
and the Manage tab), platform.rs (open / reveal-in-file-manager, and the
Windows stdio setup a window-subsystem process needs before anything
prints), hotkey/ (the system-wide search shortcut: one key table feeding
both a RegisterHotKey / XGrabKey registration and, on Wayland, an XDG
portal session on its own thread), cli.rs (terminal mode, shared with the
quicksearch-cli binary). There is no pagination: the table is
virtualized, so a single scroll list capped at display_limit renders in
microseconds regardless of row count.
Development
-
cargo test -p quicksearch-core: unit + integration suites (cascade ranking, cancellation, incremental indexing, coordinator modes, config resolution, fuzzy matcher vs. brute-force oracle). -
cargo test -p quicksearch-gui: formatter/tracker/CLI-parsing units plus headless egui tests that drive the real widgets — building an input frame, synthesizing clicks and reading back the painted text (test_ui.rs) — over the search and manage tabs, the options editor, the unlock gate, the logs and duplicates tabs, and query highlighting. -
cargo bench -p quicksearch-core --bench searchand--bench index: divan microbenchmarks over the two hot paths. Each group runs what the code does today against the change being considered, in one process on one corpus, so the comparison is a measurement rather than an estimate — read the losing arm as documentation of something already tried. Sizes sweep 1 KiB, 16 KiB and 256 KiB, the last beingmaximum_text_sizeand so the worst a full-text row can present;benches/corpus/builds all of it from a fixed seed. This is the harness to extend when a hot path is in question, because it is the only one here that can A/B a single function. -
QSB_SNIPPET_PERF=1 cargo test --release -p quicksearch-core --test snippet_perf -- --nocapture: snippet pipeline benchmark. -
QSB_SEARCH_PERF=1 cargo test --release -p quicksearch-core --test search_perf -- --nocapture: what a warm page cache is worth to search, swept across cache ceilings and run both encrypted and not. It exists because the right size forPRAGMAS_SEARCHis not something to reason about: encrypted, the curve has a cliff at the working set, because SQLCipher caches pages decrypted and a miss below that costs an AES-CBC plus an HMAC-SHA512 per 4 KiB page. Unencrypted it is flat. Read it before changing that number. -
Memory probes, all under
crates/quicksearch-core/examples/:memprobe <cold|warm> <root> <db>reports an indexing run's peak and what it settles at once idle — the gap between those is the memory a process keeps for nothing, since glibc'sfreereturns chunks to its arena rather than to the kernel.rssprobe <pid> [duration_s]attributes a running process's footprint instead, splitting anonymous heap (ours) from file-backed pages (the binary, libc, the GL stack), readingPrivate_Dirtyrather thanVmRSS, and counting glibc's arenas so retention is distinguishable from live data. It reads another process's/proc, so it measures a build made without knowing it would be measured.indexprobeandwalkprobeanswer "how fast" rather than "how much".All of these read the resident set, and none of them can see allocator churn: a buffer allocated and freed within one loop iteration never moves RSS, so a search whose peak is a flat 14 MiB can still be pushing tens of gigabytes a query through
malloc. Both search-side regressions found so far were invisible to every probe listed above and showed up only under an interposedmallocthat counted calls and bytes. Until a probe here reports allocation counts, measure that separately before concluding a path is cheap, and measure the GUI rather than a one-shotquicksearch-clirun — a short-lived process cannot show what a typing session retains. -
.forgejo/workflows/ci.yml: builds both platforms on every push tomasterand every pull request. To cut a release, bump[workspace.package] versioninCargo.tomland push the commit on a branch namedRelease...; CI runscargo update -wfirst, so a lockfile still pinning the old member versions is not something you have to remember. That only re-resolves the workspace crates, so the--lockedbuild after it still fails on a dependency added or bumped without committingCargo.lock. Once both build jobs are green, CI tags that commitv<version>and publishes a release with the.deb, an AppImage and its.zsyncsidecar, a Linux tarball, the Windows installer and a Windows zip attached; pushing av*tag by hand does the same thing. The sidecar is the one asset named without a version, because every released AppImage embeds its URL and that URL has to keep resolving as releases come and go — Forgejo resolves the literal taglatestto the newest release and looks an asset up by name, so it is always at.../releases/download/latest/quicksearch-x86_64.AppImage.zsync. Note that is/releases/download/latest/, not the GitHub-style/releases/latest/download/, which Forgejo does not implement. The version is never taken from the branch name, and a tag that already exists at a different commit aborts the release rather than shipping two builds under one version. Every build carries its identity:crates/quicksearch-gui/build.rsbakes in the commit CI passes asQS_COMMIT, and the pair shows up asv<version> (<commit>)in the bottom-right of the status bar, fromquicksearch-cli --version, and in the Windows.exeproperties. A build made outside a git checkout readsunknownthere rather than failing. The Linux job runs in an Ubuntu 22.04 container on purpose —packaging/build-deb.shreads the package'slibc6floor from the binary it just built, so the builder's glibc becomes the package's minimum, and 22.04 pins it at 2.35. The AppImage is cut from that same binary and bundles no libraries, so 2.35 is its floor too — it is the one number that decides how far either Linux artifact reaches. The Windows job cross-compiles with mingw-w64 and fails if either.exepicks up a dependency on a non-system DLL, then builds both Windows assets from those binaries —packaging/build-installer.shrunsmakensis, which is a Linux program, so the installer needs no Windows runner either. -
New extractors: implement
extract::Extractorand register it inRegistry::default_set()— order matters, the first extractor whosesupportsaccepts a MIME wins. New cascade behavior:search/cascade.rsdocuments the rank invariants that keep streamed results append-only. -
packaging/capture.sh: regenerates the website assets —search.webm,manage-indexing.webm,duplicates.png,query-highlight.png— intopackaging/captures/(gitignored). It builds the GUI with thecapturefeature, whose scripted driver types, switches tabs, waits on indexer state, and captures both screenshots and video frames from the app's own framebuffer (piped to ffmpeg), so the display server never matters — X11 and Wayland record identically, and overlapping windows can't leak into the footage;packaging/capture-scenario.txtis the choreography and is meant to be edited. Runs against a throwaway index of this repository plus~/.cargo/registry/srcunder scratch XDG dirs, so your real config and index are untouched. Needs a graphical session and ffmpeg withlibx264rgbandlibvpx-vp9.