26 KiB
Project Description
Project Structure
logos-liblogos/
├── CMakeLists.txt # Root CMake configuration
├── README.md # Project overview and build instructions
├── flake.nix # Nix flake configuration
├── flake.lock # Nix flake lock file
├── docs/
│ ├── index.md # Documentation index
│ ├── spec.md # High-level specification
│ └── project.md # This document
├── src/
│ ├── CMakeLists.txt # Source build configuration
│ ├── logos_core/ # Core library implementation (Qt-free)
│ │ ├── logos_core.h # C API header (public)
│ │ ├── logos_core.cpp # C API implementation
│ │ ├── plugin_manager.h/cpp # Facade: orchestrates registry, runtime, resolver
│ │ ├── plugin_registry.h/cpp # In-memory registry of discovered/loaded modules
│ │ ├── module_runtime.h # Abstract ModuleRuntime interface + ModuleDescriptor
│ │ ├── runtime_registry.h/cpp # Registry for ModuleRuntime implementations
│ │ └── dependency_resolver.h/cpp # Topological sort with circular dependency detection
│ └── runtimes/ # Runtime implementations (extensible)
│ └── qt_subprocess/ # Qt-based subprocess runtime (current default)
│ ├── qt_subprocess_runtime.h/cpp # ModuleRuntime impl: spawns logos_host processes
│ ├── subprocess_manager.h/cpp # Boost.Process-based subprocess management
│ └── host/ # logos_host executable sources
│ ├── main.cpp # Host entry point
│ ├── command_line_parser.h/cpp # CLI argument parsing (--name, --path)
│ ├── plugin_initializer.h/cpp # Plugin loading and token setup
│ └── qt/ # Qt-specific host implementations
│ ├── qt_app.h/cpp # Qt application setup for host
│ └── qt_token_receiver.h/cpp # Auth token reception via local socket
├── tests/ # Google Test suite
│ ├── CMakeLists.txt # Test build configuration
│ ├── test_app_lifecycle.cpp # C API lifecycle tests (init, exec, cleanup)
│ ├── test_plugin_manager.cpp # PluginManager + PluginRegistry tests
│ ├── test_subprocess_manager.cpp # SubprocessManager lifecycle and subprocess tests
│ ├── test_runtime_registry.cpp # RuntimeRegistry: registration, selection, fan-out
│ ├── test_module_runtime_abstraction.cpp # PluginManager ↔ ModuleRuntime routing tests
│ ├── test_dependency_resolver.cpp # DependencyResolver tests
│ ├── test_process_stats.cpp # ProcessStats tests (external process-stats lib)
│ ├── test_token_exchange.cpp # Token exchange via Unix domain socket tests
│ └── qt_test_adapter.h # Qt test utilities/adapter header
├── nix/ # Nix build modules
│ ├── default.nix # Common configuration (deps, flags, metadata)
│ ├── build.nix # Shared build derivation
│ ├── bin.nix # Binary extraction (logos_host + runtime libs)
│ ├── lib.nix # Library extraction (liblogos_core)
│ ├── include.nix # Header installation
│ ├── modules.nix # Bundled built-in modules
│ └── tests.nix # Test suite build
└── .github/
└── workflows/
└── ci.yml # GitHub Actions CI workflow
Stack, Frameworks & Dependencies
| Component | Purpose |
|---|---|
| C++17 | Implementation language |
| CMake 3.14+ | Build system |
| Qt 6 (Core, RemoteObjects) | Event loop, plugin system, IPC, meta-object system |
| Boost (Process, Asio, Uuid) | Subprocess management, async I/O, and UUID generation |
| nlohmann_json | JSON parsing/serialization (replaces Qt JSON internally) |
| CLI11 | Command-line argument parsing (logos_host) |
| zstd | Compression (build dependency) |
| spdlog | Structured logging |
| Google Test | Unit testing framework |
| Nix | Package management and reproducible builds |
External Logos Dependencies
| Dependency | Purpose |
|---|---|
| logos-cpp-sdk | C++ client library (LogosAPI, LogosAPIClient, TokenManager, PluginInterface) |
| logos-module | Module library (metadata extraction, plugin loading utilities) |
| logos-capability-module | Built-in capability authorization module |
| process-stats | CPU and memory monitoring for module processes |
| logos-package-manager | Package management library for installed module discovery |
| logos-nix | Common Nix tooling and nixpkgs pin |
Core Modules
PluginManager
Files: src/logos_core/plugin_manager.h, src/logos_core/plugin_manager.cpp
Purpose: Thin facade that orchestrates PluginRegistry, RuntimeRegistry, and DependencyResolver. Provides the C++-level API for module lifecycle management. How a module is loaded (subprocess, in-process, WASM, etc.) is determined by the registered ModuleRuntime implementation — PluginManager only decides what to load and when.
Thread safety: loadPlugin, loadPluginWithDependencies, and unloadPlugin are serialised by a static loadMutex() (one load/unload at a time). discoverInstalledModules delegates to PluginRegistry which has its own reader-writer lock.
API (namespace PluginManager):
| Method | Description |
|---|---|
registry() → PluginRegistry& |
Access the shared plugin registry |
runtimes() → RuntimeRegistry& |
Access the shared runtime registry (for installing custom runtimes) |
setPluginsDir(path) |
Set the primary plugin directory (clears existing) |
addPluginsDir(path) |
Add an additional plugin directory |
setPersistenceBasePath(path) |
Set base directory for module instance persistence |
discoverInstalledModules() |
Scan all plugin directories and register discovered modules |
processPlugin(path) → std::string |
Extract metadata from a module file, register as known |
processPluginCStr(path) → char* |
C-string variant of processPlugin |
loadPlugin(name) → bool |
Load a module via the selected ModuleRuntime, sends auth token |
loadPluginWithDependencies(name) → bool |
Resolve dependency tree, load in topological order |
initializeCapabilityModule() → bool |
Load the built-in capability module if available |
unloadPlugin(name) → bool |
Terminate module via its runtime and update registry |
unloadPluginWithDependents(name) → bool |
Cascade unload: terminate the named module together with every currently loaded module that transitively depends on it, leaves-first |
terminateAll() |
Terminate all running modules across all runtimes |
clear() |
Clear registry and reset all state |
resolveDependencies(modules) → std::vector<std::string> |
Topological sort with circular dependency detection |
getDependencies(name, recursive) → std::vector<std::string> |
Declared dependencies of name among known modules |
getDependents(name, recursive) → std::vector<std::string> |
Declared dependents of name among known modules |
getDependenciesCStr(name, recursive) → char** |
C-string variant backing logos_core_get_module_dependencies |
getDependentsCStr(name, recursive) → char** |
C-string variant backing logos_core_get_module_dependents |
getLoadedPluginsCStr() → char** |
Return loaded module names as null-terminated C string array |
getKnownPluginsCStr() → char** |
Return known module names as null-terminated C string array |
isPluginLoaded(name) → bool |
Check if a module is currently loaded |
getPluginProcessIds() → std::unordered_map<std::string, int64_t> |
Return module name → process ID mappings (aggregated from all runtimes) |
PluginRegistry
Files: src/logos_core/plugin_registry.h, src/logos_core/plugin_registry.cpp
Purpose: In-memory registry of discovered and loaded modules. Single source of truth for the dependency graph: stores plugin paths, forward dependencies, and the derived reverse edges (dependents). All public methods are thread-safe: mutating methods acquire a std::unique_lock on an internal std::shared_mutex; read-only methods acquire a std::shared_lock, allowing concurrent reads.
Data:
PluginInfostruct — holdspath,dependencies,dependents(reverse-edge cache),loadedflag,std::shared_ptr<LogosCore::ModuleRuntime> runtime(runtime that loaded this module, nullptr for externally-marked),LogosCore::LoadedModuleHandle handle(runtime-private state)std::unordered_map<std::string, PluginInfo> m_plugins— plugin database keyed by namestd::vector<std::string> m_pluginsDirs— configured plugin directoriesstd::shared_mutex m_mutex— reader-writer lock protecting all fields
Dependency graph invariant: PluginInfo::dependents mirrors the inverse of dependencies across all known plugins. PluginRegistry owns this invariant and maintains it by calling the private recomputeDependentsLocked() at the tail of every forward-edge mutation (discoverInstalledModules, processPlugin, registerPlugin when deps are passed, registerDependencies). Callers never populate dependents directly. This replaces the previous pattern of querying PackageManagerLib::resolveDependents() on disk — the registry is now the single authority for reverse-dep lookups, and PluginManager::getDependents / unloadPluginWithDependents read straight from it.
API (class PluginRegistry):
| Method | Description |
|---|---|
setPluginsDir(dir) |
Clear and set single plugin directory |
addPluginsDir(dir) |
Add to plugin directory list |
pluginsDirs() → std::vector<std::string> |
Return configured directories |
discoverInstalledModules() |
Scan directories, parse manifest.json files; recomputes dependents at end |
processPlugin(path) → std::string |
Extract metadata from module file, register as known; recomputes dependents at end |
registerPlugin(name, path, deps) |
Manually register a plugin; recomputes dependents when deps are passed |
registerDependencies(name, deps) |
Set dependencies for a known plugin; recomputes dependents |
isKnown(name) → bool |
Plugin exists in registry |
pluginPath(name) → std::string |
Get file path for a known plugin |
pluginDependencies(name, recursive) → std::vector<std::string> |
Forward-edge lookup. recursive=false returns direct dependencies from PluginInfo; recursive=true walks the forward graph breadth-first (cycle/diamond safe) |
pluginDependents(name, recursive) → std::vector<std::string> |
Reverse-edge lookup. recursive=false returns direct dependents from PluginInfo; recursive=true walks the reverse graph breadth-first (cycle/diamond safe) |
knownPluginNames() → std::vector<std::string> |
All discovered module names |
isLoaded(name) → bool |
Plugin is currently running |
markLoaded(name) / markUnloaded(name) |
Update load state (markLoaded without runtime is for test/external use) |
markLoaded(name, runtime, handle) |
Mark as loaded and record which runtime is responsible |
runtimeFor(name) → shared_ptr<ModuleRuntime> |
Return the runtime that loaded this module (or nullptr) |
loadedPluginNames() → std::vector<std::string> |
Currently running module names |
clearLoaded() |
Clear all loaded state |
clear() |
Reset entire registry |
ModuleRuntime (Abstract Interface)
File: src/logos_core/module_runtime.h
Purpose: Qt-free abstract interface for module loading strategies. Decouples PluginManager from any specific module format, isolation mechanism, or transport layer. Each implementation decides how a module is loaded, isolated, and communicated with.
Data structures:
ModuleDescriptor— describes a module to load:name,path,format("qt-plugin","wasm", etc.),dependencies,instancePersistencePath,pluginsDirs,rawMetadata(JSON),runtimeConfig(JSON, optional, e.g.{"id":"docker","image":"..."})LoadedModuleHandle— returned byload():name,pid(-1 for non-process runtimes),endpoint(transport-specific URI),opaque(std::anyfor runtime-private state)
Interface (LogosCore::ModuleRuntime):
| Method | Description |
|---|---|
id() → std::string |
Unique runtime identifier (e.g. "qt-subprocess", "inproc", "extism") |
canHandle(desc) → bool |
Return true if this runtime can load the described module |
load(desc, onTerminated, out) → bool |
Load the module; populate out, call onTerminated when it exits |
sendToken(name, token) → bool |
Deliver the auth token to the loaded module |
terminate(name) |
Terminate a single module by name |
terminateAll() |
Terminate all modules managed by this runtime |
hasModule(name) → bool |
True if this runtime has an active entry for the module |
pid(name) → optional<int64_t> |
PID of the module (default: nullopt for non-process runtimes) |
getAllPids() → unordered_map |
All (name → pid) entries (default: empty) |
RuntimeRegistry
Files: src/logos_core/runtime_registry.h, src/logos_core/runtime_registry.cpp
Purpose: Holds all registered ModuleRuntime instances and selects the right one for a given ModuleDescriptor. Thread-safe (protected by an internal mutex).
Selection order:
- If
desc.runtimeConfig["id"]is set, return the matching runtime by id (no fallback). - Otherwise, return the first registered runtime whose
canHandle(desc)returns true. - Returns
nullptrif no runtime matches.
API (class LogosCore::RuntimeRegistry):
| Method | Description |
|---|---|
registerRuntime(runtime) |
Add a runtime; consulted in registration order for canHandle |
select(desc) → shared_ptr<ModuleRuntime> |
Pick the right runtime for a descriptor |
terminateAll() |
Fan-out terminateAll() to every registered runtime |
getAllPids() → unordered_map |
Aggregate getAllPids() across all runtimes |
clearForTests() |
Remove all runtimes (testing hook for installing fakes) |
QtSubprocessRuntime
Files: src/runtimes/qt_subprocess/qt_subprocess_runtime.h, src/runtimes/qt_subprocess/qt_subprocess_runtime.cpp
Purpose: Concrete ModuleRuntime implementation for the existing Qt-subprocess strategy. Spawns one logos_host process per module, delivers the auth token via a Unix-domain socket, and communicates via Qt Remote Objects. Registered as the default runtime.
id: "qt-subprocess"
canHandle: Accepts format == "qt-plugin" or empty format.
SubprocessManager
Files: src/runtimes/qt_subprocess/subprocess_manager.h, src/runtimes/qt_subprocess/subprocess_manager.cpp
Purpose: Manages module subprocesses using Boost.Process v2 and Boost.Asio. Used internally by QtSubprocessRuntime.
- Background
io_contextthread with work guard for non-blocking async I/O - Async read loop for stdout/stderr with line buffering
- Synchronous kill with graceful SIGTERM → SIGKILL escalation (5s timeout)
- Unix domain socket for token delivery
- Thread-safe
s_processesMutexprotects the process map
API (namespace SubprocessManager):
| Method | Description |
|---|---|
startProcess(name, executable, arguments, callbacks) → bool |
Launch a subprocess with async output monitoring |
sendToken(name, token) → bool |
Send auth token via Unix domain socket |
terminateProcess(name) |
Gracefully terminate a specific process |
terminateAll() |
Terminate all managed processes |
hasProcess(name) → bool |
Check if a process entry exists |
getProcessId(name) → int64_t |
Get PID for a named process |
getAllProcessIds() → unordered_map |
Map all process names to PIDs |
registerProcess(name) |
Register a placeholder process entry |
clearAll() |
Clear all process entries |
LogosHost
Files: src/runtimes/qt_subprocess/host/main.cpp, src/runtimes/qt_subprocess/host/command_line_parser.h/cpp, src/runtimes/qt_subprocess/host/plugin_initializer.h/cpp, src/runtimes/qt_subprocess/host/qt/qt_app.h/cpp, src/runtimes/qt_subprocess/host/qt/qt_token_receiver.h/cpp
Purpose: Lightweight subprocess that loads a single module. Part of the qt_subprocess runtime implementation. Parses --name, --path, and optional --instance-persistence-path arguments, loads the plugin, authenticates via token from the core, registers the module with the remote object registry, and runs the Qt event loop.
Files: src/logos_core/dependency_resolver.h, src/logos_core/dependency_resolver.cpp
Purpose: Compute topological sort of module dependencies using Kahn's algorithm. Detects circular dependencies and missing modules.
API (namespace DependencyResolver):
| Method | Description |
|---|---|
resolve(requested, isKnown, getDependencies) → std::vector<std::string> |
Returns modules in load order (dependencies first) |
Takes callback functions (IsKnownFn, GetDependenciesFn) so it has no coupling to the registry implementation.
ProcessStats (external dependency)
Source: process-stats library (linked as a static dependency)
Purpose: CPU and memory monitoring for loaded module processes.
API (namespace ProcessStats):
| Method | Description |
|---|---|
getProcessStats(pid) → ProcessStatsData |
Return CPU %, CPU time, and memory usage for a process |
getModuleStats(processIds) → char* |
Return JSON array of stats for all provided module processes |
LogosHost
Files: src/runtimes/qt_subprocess/host/main.cpp (and sibling files under src/runtimes/qt_subprocess/host/)
Purpose: Lightweight subprocess that loads a single module. Part of the qt_subprocess runtime. Parses --name, --path, and optional --instance-persistence-path arguments, loads the plugin, authenticates via token from the core, registers the module with the remote object registry, and runs the Qt event loop. Lives under src/runtimes/qt_subprocess/host/ so it is co-located with its runtime implementation.
C API
The public C API (logos_core.h) is the only exported interface. All functions use LOGOS_CORE_EXPORT for shared library visibility.
Lifecycle:
| Function | Description |
|---|---|
logos_core_init(argc, argv) |
Initialize the library |
logos_core_start() |
Discover modules and initialize capability module |
logos_core_exec() → int |
Run the Qt event loop |
logos_core_cleanup() |
Terminate all modules and clean up |
logos_core_process_events() |
Process Qt events without blocking |
Plugin Management:
| Function | Description |
|---|---|
logos_core_set_plugins_dir(dir) |
Set primary plugin directory |
logos_core_add_plugins_dir(dir) |
Add additional plugin directory |
logos_core_set_persistence_base_path(path) |
Set base directory for module instance persistence |
logos_core_load_plugin(name) → int |
Load a module (1 = success, 0 = failure) |
logos_core_load_plugin_with_dependencies(name) → int |
Load module and dependencies in order |
logos_core_unload_plugin(name) → int |
Unload a module |
logos_core_unload_plugin_with_dependents(name) → int |
Cascade unload: terminate the module together with every loaded transitive dependent, leaves-first. Returns 1 only if every step succeeded |
logos_core_get_module_dependencies(name, recursive) → char** |
Modules that name depends on (forward edges). recursive=true walks the forward graph transitively. Unknown names yield an empty array. Caller frees |
logos_core_get_module_dependents(name, recursive) → char** |
Modules that depend on name (reverse edges). recursive=true walks transitively. Unknown names yield an empty array. Caller frees |
logos_core_process_plugin(path) → char* |
Process plugin file, return name (caller frees) |
logos_core_refresh_plugins() |
Re-scan plugin directories |
Queries:
| Function | Description |
|---|---|
logos_core_get_loaded_plugins() → char** |
Null-terminated array of loaded names (caller frees) |
logos_core_get_known_plugins() → char** |
Null-terminated array of known names (caller frees) |
logos_core_get_module_stats() → char* |
JSON array of CPU/memory stats (caller frees) |
logos_core_get_token(key) → char* |
Get auth token by key (caller frees) |
Thread Safety
| Category | Guarantee |
|---|---|
logos_core_load_plugin, logos_core_load_plugin_with_dependencies, logos_core_unload_plugin, logos_core_unload_plugin_with_dependents |
Serialised by a single internal mutex — safe to call concurrently from multiple threads. The cascade variant holds the lock for the entire leaves-first teardown so a late-arriving load can't interleave between tearing down the dependents and the target |
logos_core_get_known_plugins, logos_core_get_loaded_plugins |
Protected by a shared reader-writer lock — safe to call concurrently with each other and with the mutating functions above |
logos_core_refresh_plugins |
Protected by PluginRegistry's reader-writer lock (write side) — safe for concurrent registry access but not serialised against load/unload |
logos_core_init, logos_core_start, logos_core_cleanup |
Not thread-safe — must be called from a single thread during startup/shutdown |
Build Artifacts
| Artifact | Description |
|---|---|
liblogos_core.{so,dylib,dll} |
Core shared library (C API) |
logos_host |
Module subprocess host binary |
logos_core_tests |
Google Test suite |
Operational
Nix (Recommended)
Nix provides reproducible builds with all dependencies managed automatically.
Build everything (binaries + libraries + headers):
nix build
The result includes:
result/bin/logos_host— Module host binaryresult/lib/liblogos_core.{so,dylib}— Core libraryresult/include/— Headers (logos_core.h, interface.h)
Build individual components:
nix build '.#logos-liblogos-bin' # Binaries only
nix build '.#logos-liblogos-lib' # Libraries only
nix build '.#logos-liblogos-include' # Headers only
nix build '.#logos-liblogos-tests' # Test suite
nix build '.#logos-liblogos-modules' # Built-in modules
nix build '.#portable' # Portable variant (LOGOS_PORTABLE_BUILD=ON)
Run tests:
nix build '.#logos-liblogos-tests'
./result/bin/logos_core_tests
# Run specific tests
./result/bin/logos_core_tests --gtest_filter=AppLifecycleTest.*
# List all tests
./result/bin/logos_core_tests --gtest_list_tests
Development shell:
nix develop
Override local dependencies:
nix build --override-input logos-cpp-sdk path:../logos-cpp-sdk
CMake
Prerequisites:
- CMake 3.14+
- C++17 compatible compiler
- Qt 6 with Core and RemoteObjects modules
- Boost (with Process component)
- nlohmann_json
- CLI11
- Google Test (fetched via FetchContent if not system-installed)
Build:
mkdir -p build && cd build
cmake ..
make -j$(nproc)
The logos_host binary will be in build/bin/ and liblogos_core in build/lib/.
Run tests:
make -j$(nproc)
ctest --output-on-failure
Note: CMake expects the logos-cpp-sdk and logos-module libraries to be available. It searches for a pre-built SDK first (lib/include), then falls back to source (cpp/CMakeLists.txt).
Dev vs Portable Builds
Controlled by the LOGOS_PORTABLE_BUILD CMake flag:
- Dev (default): Looks for LGX variants with
-devsuffix (e.g.,linux-amd64-dev) - Portable (
-DLOGOS_PORTABLE_BUILD=ON): Looks for variants without suffix (e.g.,linux-amd64)
Build portable with Nix: nix build '.#portable'
Consumers
logos-liblogos is a library consumed by two frontends:
- logos-basecamp — Desktop GUI application shell
- logos-logoscore-cli — Headless CLI runtime (
logoscore)
Examples
Basic C API Usage
#include "logos_core.h"
int main(int argc, char *argv[]) {
logos_core_init(argc, argv);
logos_core_set_plugins_dir("/path/to/plugins");
logos_core_start();
logos_core_load_plugin("chat");
char** loaded = logos_core_get_loaded_plugins();
for (int i = 0; loaded[i] != NULL; i++) {
printf("Loaded: %s\n", loaded[i]);
}
free(loaded);
int result = logos_core_exec();
logos_core_cleanup();
return result;
}
Loading with Dependencies
// Resolves the dependency tree and loads in correct order
logos_core_load_plugin_with_dependencies("my_module");
Continuous Integration
GitHub Actions workflow (.github/workflows/ci.yml) runs on every push/PR to master:
- Checkout code
- Install Nix with flakes enabled
- Use cachix cache (
logos-co) - Build:
nix build .#logos-liblogos-tests - Run:
./result/bin/logos_core_tests
Supported Platforms
- macOS (aarch64-darwin, x86_64-darwin)
- Linux (aarch64-linux, x86_64-linux)