Implementation of the "open" command that uses Syndicate and PCRE pattern matching to open URIs.
Go to file
Emery Hemingway 509970a2d2 Rename to "open", decompose URIs in assertions 2023-06-30 15:26:22 +01:00
src Rename to "open", decompose URIs in assertions 2023-06-30 15:26:22 +01:00
.envrc Better build system 2023-06-07 18:15:23 +01:00
.gitignore Add Direnv metadata 2023-05-17 22:16:09 +01:00
README.md Rename to "open", decompose URIs in assertions 2023-06-30 15:26:22 +01:00
Tuprules.tup Update build metadata 2023-04-12 15:11:06 -05:00
handlers-example.pr Rename to "open", decompose URIs in assertions 2023-06-30 15:26:22 +01:00
protocol.prs Rename to "open", decompose URIs in assertions 2023-06-30 15:26:22 +01:00
shell.nix Better build system 2023-06-07 18:15:23 +01:00
syndicated_open.nimble Rename to "open", decompose URIs in assertions 2023-06-30 15:26:22 +01:00
uri_runner.pr Rename to "open", decompose URIs in assertions 2023-06-30 15:26:22 +01:00

README.md

Syndicated Open

An open command implementation that uses Syndicate and PCRE pattern matching to open URIs.

There are two utilites, open and uri_runner. The former connects to a shared Syndicate dataspace via a UNIX socket at $SYNDICATE_SOCK otherwise $XDG_RUNTIME_DIR/dataspace and has no other configuration. The uri_runner component is intended to be managed by the Syndicate server thru which it receives configuration, see uri_runner.pr as an example.

Matching patterns to actions is done with action-handler records:

<action-handler "foo://(.*):(.*)" $entity <krempel ["--host=$1" "--port=$2"]> >

In the preceding example the URI foo://bar:42 would cause the message <krempel ["--host=bar" "--port=42"]> to be sent to $entity.

See handlers-example.pr for more information.

The protocol.nim file is generated from the protocol.prs schema, a Tupfile file is provided to do this.