state-engine
Declarative state data management system for a process. Structures state data on process and keeps it syncable using your store clients. It behaves as described in YAML DSL.
-
Automates complex state lifecycles through developer-defined YAML manifests.
-
Enables multi-tenant DB apps without junction tables.
-
Built on a reimagined web architecture (see ## Background).
Version
| Version | Status | Date | description |
|---|---|---|---|
| 0.1 | Released | 2026-2-12 | initial |
| 0.1.4 | Scheduled | 2026-3-18 | improve #45 |
Provided Functions
| mod | description | fn |
|---|---|---|
| Manifest | reads static YAMLs and returns processed obj | get_value(), get_meta() |
| State | operates state data following Manifest | get(), set(), delete(), exists() |
Why state-engine?
Before:
// Manual cache management
let cache_key = format!;
let user = redis.get.or_else?;
After:
let user = state.get?;
- ✅ Multi-tenant DB without junction tables
- ✅ Automatic KVS/DB synchronization
- ✅ No manual cache invalidation
Installation
# Cargo.toml
[]
= "0.1"
Quick Start
- Write a yaml file.
# manifest/example.yml
session:
user-key:
_state:
type: integer
_store:
client: InMemory
key: "request-attributes-user-key"
_load:
client: InMemory
key: "request-header-user-key"
user:
_store:
client: KVS
key: "user:${example.session.user-key}"
_load:
client: Db
table: "users"
where: "id=${example.session.user-key}"
map:
name: "name"
name:
_state:
type: string
| case | sample |
|---|---|
| cache in KVS | cache.yml |
| database connection config | connection.yml |
| request scope | session.yml |
- Implement some Required Ports for your stores.
| Interface | expected store | fn | sample |
|---|---|---|---|
InMemoryClient |
Local Process Memory | get() / set() / delete() |
InMemoryAdapter |
EnvClient |
Environment Variables | as above | EnvAdapter |
KVSClient |
Key-Vlue Store | as above | KVSAdapter |
DbClient |
SQL Database | as above | DbAdapter |
HttpClient |
Http Request | as above | HttpAdapter |
FileClient |
File I/O | as above | DefaultFileClient |
- FileClient.get is always used by Manifest to read YAMLs.
- It's not essential to implement all *Client.
- Initialize State with your adapters and use it.
use ;
// Create adapter instances
let mut in_memory = new;
let mut kvs = new?;
let db = new?;
// Build Load with adapters
let load = new
.with_in_memory
.with_kvs_client
.with_db_client;
// Build State with adapters
let mut state = new
.with_in_memory
.with_kvs_client;
// Use state-engine
let user = state.get?;
Full working example: examples/app/src/main.rs
Architecture
┌─────────────┐ ┌───────────────────┐
│ Application │ │ manifestDir/*.yml │
└──────┬──────┘ └───────────────────┘
│ uses ▲ read
▼ │
┌─────────────────────────┴───────────┐
│ Provided Ports (Public API) │
├─────────────────────────────────────┤
│ │
│ State --> Manifest │
│ │
└───────┬─────────────────────────────┘
│ depends on
▼
┌─────────────────────────────────────┐
│ Required Ports (App Adapters) │
├─────────────────────────────────────┤
│ InMemory, KVS, Http,... clients │
└─────────────────────────────────────┘
see for details Architecture.md
tree
./
README.md # this file
Cargo.toml # workspace
docs/ # guides
en/
Architecture.md
YAML-guide.md
ja/
README.md
Architecture.md
YAML-guide.md
core/ # pure logic module
Cargo.toml
src/
crate/ # for native application
Cargo.toml
src/
examples/
manifest/ # manifest YAML examples
connection.yml # sample 1
cache.yml # sample 2
session.yml # sample 3
adapters/
app/
docker-compose.yml
Cargo.toml
Dockerfile
db/
src/
main.rs
adapters.rs
tests
unit tests, intergeration tests on example app (docker compose) passed
- cargo test:
- example application test:
Background
reimagined web architecture
- computer: A network-capable node in the system.
- server: A computer that serves human users.
- orchestrator: A computer responsible for internal system coordination and maintenance. (optional)
- database: A server that persists data without an inherent expiration and accepts CRUD operations.
- terminal: A server that provides a direct human-facing interface.
- conductor: A server that communicates independently with both a database and terminals, and maintains a synchronized state between them. (optional)
# terms relationship
computer:
orchestrator:
server:
database:
terminal:
conductor:
License
MIT