Skip to content

link-foundation/link-cli

Repository files navigation

link-cli

clink (CLInk cLINK), a CLI tool to manipulate links using single substitution operation.

It is based on associative theory (in Russian) and Links Notation (ru)

Short description in English in what links are. And in Russian.

Screenshot 2025-04-06 at 10 20 33 PM

This tool provides all CRUD operations for links using single substitution operation (ru) which is turing complete.

Each operations split into two parts:

(matching pattern)
(substitution pattern)

When match pattern and substitution pattern are essensially the same we get no changes (no operation), it may seem like it does not any write, but it actually does the read operation.

For example when --changes option is enabled this operation:

((1: 1 1)) ((1: 1 1))

will output:

((1: 1 1)) ((1: 1 1))

That is change of 1-st link with start (source) at itself and end (target) at itself to itself. Meaning no change, but as match pattern applies only to the link with 1 as index, 1 as source and 1 as target, this "no change" can be used as read query.

Creation is just a replacement of nothing to something:

() ((1 1))

Where first () is just empty sequence of links, that symbolizes nothing. And ((1 1)) is a sequence of link with 1 as a start and 1 as end, the index is undefined so it for database to decide actual available id (index).

Deletion is just a replacement of something to nothing:

((1 1)) () 

Where ((1 1)) is a sequence of match patterns, with a single pattern for a link with 1 as a start and 1 as end, the index is undefined, meaning it can be any index. It will match only existing link, if no such link found there will be no match. Last () is just empty sequence of links, that symbolizes nothing. We don't have matched link on the right side, meaning it will be effectively deleted.

And the update is substitution itself, obviously.

((1: 1 1)) ((1: 1 2))

In that case we have a link with 1-st id on both sides, meaning it is not deleted and not created, it is changed. In this particular example with change the target of the link (its ending) to 2. 2 is ofcourse id of another link. In here we have only links, nothing else.

Install or update from NuGet

If you have .NET installed you can install clink as a global CLI tool.

dotnet tool install --global clink

Create single link

Create link with 1 as source and 1 as target.

clink '() ((1 1))' --changes --after

() ((1: 1 1))
(1: 1 1)

Create link with 2 as source and 2 as target.

clink '() ((2 2))' --changes --after

() ((2: 2 2))
(1: 1 1)
(2: 2 2)

Create multiple links

Create two links at the same time: (1 1) and (2 2).

clink '() ((1 1) (2 2))' --changes --after

() ((2: 2 2))
() ((1: 1 1))
(1: 1 1)
(2: 2 2)

Read all links

clink '((($i: $s $t)) (($i: $s $t)))' --changes --after

((1: 1 1)) ((1: 1 1))
((2: 2 2)) ((2: 2 2))
(1: 1 1)
(2: 2 2)

Where $i stands for variable named i, that stands for index. $s is for source and $t is for target.

A short version of read operation will also work:

clink '((($i:)) (($i:)))' --changes

Update single link

Update link with index 1 and source 1 and target 1, changing target to 2.

clink '((1: 1 1)) ((1: 1 2))' --changes --after

((1: 1 1)) ((1: 1 2))
(1: 1 2)
(2: 2 2)

Update multiple links

Update link with index 1 and source 1 and target 1, changing target to 2.

clink '((1: 1 1) (2: 2 2)) ((1: 1 2) (2: 2 1))' --changes --after

((1: 1 1)) ((1: 1 2))
((2: 2 2)) ((2: 2 1))
(1: 1 2)
(2: 2 1)

Delete single link

Delete link with source 1 and target 2:

clink '((1 2)) ()' --changes --after

((1: 1 2)) ()
(2: 2 2)

Delete link with source 2 and target 2:

clink '((2 2)) ()' --changes --after

((2: 2 2)) ()

Delete multiple links

clink '((1 2) (2 2)) ()' --changes --after

((1: 1 2)) ()
((2: 2 2)) ()

Delete all links

clink '((* *)) ()' --changes --after

((1: 1 2)) ()
((2: 2 2)) ()

Complete examples:

clink '() ((1 1) (2 2))' --changes --after

clink '((1: 1 1) (2: 2 2)) ((1: 1 2) (2: 2 1))' --changes --after

clink '((1 2) (2 1)) ()' --changes --after
clink '() ((1 2) (2 1))' --changes --after

clink '((($index: $source $target)) (($index: $target $source)))' --changes --after

clink '((1: 2 1) (2: 1 2)) ()' --changes --after

All options and arguments

Parameter Type Default Value Aliases Description
--db string db.links --data-source, --data, -d Path to the links database file
--query string None --apply, --do, -q LiNo query for CRUD operation
query (positional) string None N/A LiNo query for CRUD operation (provided as the first positional argument)
--trace bool false -t Enable trace (verbose output)
--structure uint? None -s ID of the link to format its structure
--before bool false -b Print the state of the database before applying changes
--changes bool false -c Print the changes applied by the query
--after bool false --links, -a Print the state of the database after applying changes

For developers and debugging

Execute from root

dotnet run --project Foundation.Data.Doublets.Cli -- '(((1: 1 1) (2: 2 2)) ((1: 1 2) (2: 2 1)))' --changes --after

Execute from folder

cd Foundation.Data.Doublets.Cli
dotnet run -- '(((1: 1 1) (2: 2 2)) ((1: 1 2) (2: 2 1)))' --changes --after

Complete examples:

dotnet run --project Foundation.Data.Doublets.Cli -- '() ((1 1) (2 2))' --changes --after

dotnet run --project Foundation.Data.Doublets.Cli -- '((1: 1 1) (2: 2 2)) ((1: 1 2) (2: 2 1))' --changes --after

dotnet run --project Foundation.Data.Doublets.Cli -- '((1 2) (2 1)) ()' --changes --after
dotnet run --project Foundation.Data.Doublets.Cli -- '() ((1 2) (2 1))' --changes --after

dotnet run --project Foundation.Data.Doublets.Cli -- '((($index: $source $target)) (($index: $target $source)))' --changes --after

dotnet run --project Foundation.Data.Doublets.Cli -- '((1: 2 1) (2: 1 2)) ()' --changes --after

Publish next version:

VERSION=$(awk -F'[<>]' '/<Version>/ {print $3}' Foundation.Data.Doublets.Cli/Foundation.Data.Doublets.Cli.csproj) && git tag "v$VERSION" && git push origin "v$VERSION"