mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-31 01:31:10 +00:00
logos-module-client is being archived: nothing declares it as a flake input, nothing lists it as a dependency in the workspace dep-graph, and no source or header outside its own tree references it. These three generated outputs were the last thing implying otherwise. Two were prose describing it as a repo that pins the SDK independently; three were a live `--override-input logos-module-client/logos-cpp-sdk ...` line inside a command a reader is invited to run. Overriding an input that does not exist is only a nix WARNING, not an error, so the command would appear to work while doing nothing at that path. The live specs in doctests/*.yaml are already clean — they emit no such override. Only outputs/*.md drifted, which is expected: they are hand-pinned and CI never diffs them against the generator, so nothing was going to catch this. Docs only; no spec, code or lock changes. Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
300 lines
9.5 KiB
Markdown
300 lines
9.5 KiB
Markdown
# Running a Real Module Against This C++ SDK
|
|
|
|
`logos-cpp-sdk` is the foundation every other Logos component is built on: it
|
|
pins nixpkgs/Qt and ships the SDK that `logos-liblogos` (`logos_host`,
|
|
`liblogos_core`), the module client, and every module compile and link against
|
|
— `LogosAPI`, `LogosResult`, the IPC layer, and the code generator. A change
|
|
here ripples through the entire stack, so the way to know it is safe is to run
|
|
a real module on top of it. This doc-test does exactly that, end-to-end through
|
|
the headless `logoscore` runtime:
|
|
|
|
1. Build the `logoscore` CLI, **overriding `logos-cpp-sdk` with the commit
|
|
under test** — and overriding it in the same way for every consumer in
|
|
`logoscore`'s closure (`logos-liblogos` and the
|
|
`capability_module`'s `logos-module-builder`). Because the published flakes
|
|
pin the SDK independently (there is no single `follows` unifying them), all
|
|
of these must point at the same commit so the whole runtime is built and
|
|
linked against one consistent SDK ABI.
|
|
2. Build the `lgpm` local package manager.
|
|
3. Build the real [`accounts_module`](https://github.com/logos-co/logos-accounts-module)
|
|
as an `.lgx` package straight from its own flake — **also built against the
|
|
SDK commit under test** — and install it into a `./modules` directory with
|
|
`lgpm`.
|
|
4. Start `logoscore` in daemon mode (`-D`), load `accounts_module`, introspect
|
|
it, and call its methods — verifying a module compiled against this SDK
|
|
actually loads and round-trips real values over the SDK's IPC.
|
|
|
|
Because every layer (host, module loader, IPC, and the module itself) is built
|
|
against the SDK commit under test, a green run is real evidence that this
|
|
change keeps the module runtime working from the bottom of the stack up.
|
|
|
|
**What you'll build:** The real `accounts_module`, installed with `lgpm` and called through a `logoscore` daemon — every layer compiled against this C++ SDK commit.
|
|
|
|
**What you'll learn:**
|
|
|
|
- How to build `logoscore` against a specific `logos-cpp-sdk` commit by overriding it across every consumer in the closure
|
|
- Why a foundational input pinned independently by several flakes needs the override applied at each consumer, not just once
|
|
- How to build a real module's `.lgx` against the same SDK commit
|
|
- How to install an `.lgx` into a modules directory with `lgpm`
|
|
- How to start the `logoscore` daemon, load a module, and call its methods
|
|
|
|
## Prerequisites
|
|
|
|
- **Nix** with flakes enabled. Install from [nixos.org](https://nixos.org/download.html), then enable flakes:
|
|
|
|
```bash
|
|
mkdir -p ~/.config/nix
|
|
echo 'experimental-features = nix-command flakes' >> ~/.config/nix/nix.conf
|
|
```
|
|
|
|
Verify: `nix flake --help >/dev/null 2>&1 && echo "Flakes enabled"`
|
|
|
|
- **git** — to clone the module repository.
|
|
- A Linux or macOS machine.
|
|
|
|
---
|
|
|
|
## Step 1: Build logoscore against this C++ SDK
|
|
|
|
Build the `logoscore` CLI from its published flake, but **override
|
|
`logos-cpp-sdk` to the commit under test** — and apply the same override to
|
|
every consumer that pins the SDK in `logoscore`'s closure. The result is
|
|
symlinked to `./logos/`.
|
|
|
|
> Unlike a leaf input, the SDK is pinned independently by `logos-liblogos`
|
|
> and the `capability_module`'s `logos-module-builder`
|
|
> — there is no single `follows` tying them together in the published
|
|
> flakes. So we override it at each of those paths (e.g.
|
|
> `--override-input logos-liblogos/logos-cpp-sdk …`) to keep the whole
|
|
> runtime on one consistent SDK ABI. Each override URL carries a ``
|
|
> placeholder the doc-test runner expands to a concrete ref: locally that is
|
|
> this checkout's `HEAD` (see `run.sh`); in CI it is the commit being
|
|
> tested. With no pin it falls back to latest `master`.
|
|
|
|
### 1.1 Build the CLI with the SDK override
|
|
|
|
```bash
|
|
nix build 'github:logos-co/logos-logoscore-cli' \
|
|
--override-input logos-cpp-sdk 'github:logos-co/logos-cpp-sdk' \
|
|
--override-input logos-liblogos/logos-cpp-sdk 'github:logos-co/logos-cpp-sdk' \
|
|
--override-input logos-capability-module/logos-module-builder/logos-cpp-sdk 'github:logos-co/logos-cpp-sdk' \
|
|
--out-link ./logos
|
|
```
|
|
|
|
The build produces `logos/bin/logoscore` plus bundled runtime libraries
|
|
and a `logos/modules/` directory containing the built-in
|
|
`capability_module` (required for the auth handshake when loading
|
|
modules). Every overridden input resolves to the same SDK commit, so
|
|
`logos_host`, `liblogos_core`, the module client, and the capability
|
|
module are all rebuilt and linked against this SDK.
|
|
|
|
---
|
|
|
|
## Step 2: Build the lgpm package manager
|
|
|
|
`lgpm` installs `.lgx` packages into a modules directory and scans what is
|
|
installed. Build it from the `logos-package-manager` flake and link it as
|
|
`./lgpm`. (`lgpm` is plain C++ with no SDK dependency, so it needs no
|
|
override.)
|
|
|
|
### 2.1 Build lgpm
|
|
|
|
```bash
|
|
nix build 'github:logos-co/logos-package-manager#cli' -o lgpm
|
|
```
|
|
|
|
The executable is at `./lgpm/bin/lgpm`.
|
|
|
|
---
|
|
|
|
## Step 3: Build and install the accounts module against this SDK
|
|
|
|
Clone [`logos-accounts-module`](https://github.com/logos-co/logos-accounts-module),
|
|
build its `.lgx` straight from its flake's `#lgx` output **against the SDK
|
|
commit under test**, and install it into a local `./modules` directory with
|
|
`lgpm`. Building the module against the same SDK as the runtime keeps the
|
|
plugin ABI-compatible with the host that will load it. Every module built
|
|
with [`logos-module-builder`](https://github.com/logos-co/logos-module-builder)
|
|
exposes a ready-to-install `#lgx`, and the builder owns the module's SDK
|
|
pin — so the override path here is
|
|
`logos-module-builder/logos-cpp-sdk`.
|
|
|
|
### 3.1 Clone the module
|
|
|
|
We clone over HTTPS so the step works in CI; over SSH the URL is
|
|
`git@github.com:logos-co/logos-accounts-module.git`.
|
|
|
|
```bash
|
|
git clone --depth 1 https://github.com/logos-co/logos-accounts-module.git
|
|
```
|
|
|
|
### 3.2 Build the module's .lgx against this SDK
|
|
|
|
Build the `#lgx` output, overriding the module builder's `logos-cpp-sdk`
|
|
to the commit under test, and link it as `./accounts-lgx`. (This
|
|
compiles the module and its SDK dependencies through Nix, so the first
|
|
build is slow.)
|
|
|
|
```bash
|
|
# From inside the clone this is simply:
|
|
# nix build '.#lgx' --override-input logos-module-builder/logos-cpp-sdk 'github:logos-co/logos-cpp-sdk'
|
|
nix build 'path:./logos-accounts-module#lgx' \
|
|
--override-input logos-module-builder/logos-cpp-sdk 'github:logos-co/logos-cpp-sdk' \
|
|
-o accounts-lgx
|
|
```
|
|
|
|
The `.lgx` package is now under `./accounts-lgx/`:
|
|
|
|
```bash
|
|
ls accounts-lgx/*.lgx
|
|
```
|
|
|
|
### 3.3 Seed the modules directory with the bundled capability module
|
|
|
|
`accounts_module` is loaded through the host's capability layer, so the
|
|
modules directory also needs the `capability_module` that ships with
|
|
`logoscore` (and that we just rebuilt against this SDK). Copy it across
|
|
first.
|
|
|
|
```bash
|
|
mkdir -p modules
|
|
cp -RL ./logos/modules/. ./modules/
|
|
|
|
```
|
|
|
|
### 3.4 Install the .lgx with lgpm
|
|
|
|
Install the freshly-built package into `./modules`. `accounts_module` is
|
|
a `core` module, so it goes to `--modules-dir`. The package is unsigned
|
|
(a local dev build), so we pass `--allow-unsigned`.
|
|
|
|
```bash
|
|
./lgpm/bin/lgpm --modules-dir ./modules --allow-unsigned install --file accounts-lgx/*.lgx
|
|
```
|
|
|
|
### 3.5 Confirm the install
|
|
|
|
Scan the directory and confirm the module landed:
|
|
|
|
```bash
|
|
./lgpm/bin/lgpm --modules-dir ./modules list
|
|
```
|
|
|
|
---
|
|
|
|
## Step 4: Run the daemon and call the module
|
|
|
|
Start `logoscore` in daemon mode pointed at `./modules`, then use the client
|
|
subcommands to load `accounts_module`, introspect it, and call its methods.
|
|
Daemon output is captured in `logs.txt`.
|
|
|
|
### 4.1 Start the daemon
|
|
|
|
Start logoscore in daemon mode in the background, capturing output to
|
|
`logs.txt`:
|
|
|
|
```bash
|
|
logoscore -D -m ./modules > logs.txt &
|
|
```
|
|
|
|
The `-D` flag starts the daemon. The client subcommands below connect to
|
|
this running process via the config written under `~/.logoscore/`.
|
|
|
|
```bash
|
|
sleep 3
|
|
```
|
|
|
|
### 4.2 Inspect the startup log
|
|
|
|
Review the daemon's startup output:
|
|
|
|
```bash
|
|
cat logs.txt
|
|
```
|
|
|
|
### 4.3 Check daemon status
|
|
|
|
Verify the daemon is running:
|
|
|
|
```bash
|
|
logoscore status
|
|
```
|
|
|
|
### 4.4 List discovered modules
|
|
|
|
`accounts_module` should be visible in the scan directory:
|
|
|
|
```bash
|
|
logoscore list-modules
|
|
```
|
|
|
|
### 4.5 Load the module
|
|
|
|
Load `accounts_module` into the running daemon:
|
|
|
|
```bash
|
|
logoscore load-module accounts_module
|
|
```
|
|
|
|
### 4.6 Confirm the module is loaded
|
|
|
|
Re-run `status`; the module that was `not_loaded` before now reports
|
|
`loaded`:
|
|
|
|
```bash
|
|
logoscore status
|
|
```
|
|
|
|
### 4.7 Introspect the module with module-info
|
|
|
|
`module-info` lists the `Q_INVOKABLE` methods the module exposes — the
|
|
same methods you can `call`. Each one is dispatched over the SDK's IPC
|
|
layer:
|
|
|
|
```bash
|
|
logoscore module-info accounts_module
|
|
```
|
|
|
|
### 4.8 Call a method
|
|
|
|
Generate a fresh 12-word BIP-39 mnemonic. `createRandomMnemonic` takes
|
|
the word count and returns the phrase — a real round-trip dispatched
|
|
over the SDK's IPC layer into the module compiled against this SDK:
|
|
|
|
```bash
|
|
logoscore call accounts_module createRandomMnemonic 12
|
|
```
|
|
|
|
### 4.9 Call a second method
|
|
|
|
`lengthToEntropyStrength` maps a mnemonic word count to its entropy
|
|
strength in bits — 12 words is 128 bits. This exercises an `int`
|
|
round-trip through `LogosResult` over the SDK's IPC:
|
|
|
|
```bash
|
|
logoscore call accounts_module lengthToEntropyStrength 12
|
|
```
|
|
|
|
### 4.10 Stop the daemon
|
|
|
|
Shut the daemon down cleanly:
|
|
|
|
```bash
|
|
logoscore stop
|
|
```
|
|
|
|
The daemon removes its state file and exits.
|
|
|
|
```bash
|
|
sleep 2
|
|
```
|
|
|
|
### 4.11 Confirm the daemon has stopped
|
|
|
|
With no daemon running, the client reports `not_running` and exits
|
|
non-zero, so we add `|| true` to let the doc-test assert on the output:
|
|
|
|
```bash
|
|
logoscore status
|
|
```
|