Skip to content

pnc/basque

Repository files navigation

Basque - execute shell commands from SQLite

Pitch

xargs/parallel are all fun and games until you need to include or escape quotes. What if you could use the full power of SQLite to generate, query, and store the results of shell commands?

Anti-pitch

Anything you could do by running shell commands from SQLite, you could do by piping the output of those commands to SQLite using the incredible q tool. You probably want that instead.

Example usage

$ cargo build
$ sqlite3
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite> .load ./target/debug/libbasque
sqlite> create table websites(url text, body text);
sqlite> insert into websites(url) values('https://www.sqlite.org/');
sqlite> insert into websites(url) values('https://www.rust-lang.org/');
sqlite> update websites set body = basque_cmd("curl", "-L", url);
sqlite> select url, substr(body, 1, 20) from websites;
https://www.sqlite.org/|<!DOCTYPE HTML PUBLI
https://www.rust-lang.org/|<!doctype html>
<htm

Remaining work

  • Prototype to confirm no_mangle will work and SQLite can load the Rust-built module
  • Generate sqlite3ext.h API struct with rust-bindgen
  • Switch to Cargo for building
  • Fix all the places I'm cheating and using u64 instead of pointer types
  • Make the GLOBAL_ROUTINES struct threadsafe (Mutex? Container crate?)
  • Handle SQLITE_* error results
  • Actually honor basque_cmd function parameters
  • Handle all the panicky unwrap()s
  • Free Command result allocations properly
  • Return stderr too, probably? Or log it somehow
  • Implement a virtual table instead, so each line result is a row
  • Actually learn Rust

CircleCI

Development

You will need a copy of SQLite with module loading enabled. The default (/usr/bin) installation on macOS does not, but the Homebrew one does. To use the Homebrew one:

export PATH=/usr/local/opt/sqlite3/bin:$PATH

If module loading is disabled, you'll get this error when you try to run .load ./libbasque:

Error: unknown command or invalid arguments:  "load". Enter ".help" for help

Useful references

About

execute shell commands from a SQLite function

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published