wscall
WSCALL is a lightweight WebSocket API framework with a custom binary frame protocol, a reusable Rust server crate, a reusable Rust client crate, and a facade crate for consumers that prefer a single dependency.
Workspace Layout
The repository is now organized as a Cargo workspace:
crates/
wscall-protocol/
wscall-server/
wscall-client/
wscall/
Each crate has a clear responsibility:
wscall-protocol: shared frame codec, envelope types, file attachment model, and protocol errors.wscall-server: reusable WebSocket server framework with routes, filters, validation, exception mapping, and server push events.wscall-client: reusable client SDK with request correlation, event ACK correlation, and server event subscriptions.wscall: facade crate that re-exports protocol plus optional server and client APIs behind features.
Protocol Summary
Each WebSocket binary message is encoded as:
| frame_len:u32 | message_type:u8 | encryption:u8 | payload |
Transport behavior:
- Plaintext mode stores JSON directly in
payload. ChaCha20andAES256modes store12-byte nonce + ciphertextinpayload.- The payload limit is
10 * 1024 * 1024 - 6, which keeps the full WSCALL frame within10 MiB. - File parameters use JSON references plus inline Base64 attachments.
- The JSON envelope uses compact single-letter keys and a numeric
kdiscriminator to minimize per-frame overhead. request_id/event_idare per-connectionu64counters serialized as JSON numbers (1–6 bytes).connection_iduses UUIDv7 (time-ordered, generated once per connection).- Events may carry an optional
si(Storage ID) field for server-pushed persisted messages.
Use As Crates
Depend on only what you need:
[]
= "0.2.0"
= "0.2.0"
Or use the facade crate:
[]
= { = "0.2.0", = ["full"] }
Quick Start
Minimal server:
use json;
use WscallServer;
async
Minimal client:
use json;
use WscallClient;
async
Client reconnect behavior:
- Unexpected disconnects trigger automatic reconnect attempts (controlled by
auto_reconnect, defaulttrue). - The first retry waits 3 seconds.
- Each later retry doubles the delay (exponential backoff: 3s → 6s → 12s …).
- The retry delay is capped at 30 seconds.
- A random sub-second jitter is added to each retry to avoid thundering-herd reconnect storms.
- Calling
close()stops reconnect attempts. - Use
WscallClient::connect_with_auto_reconnect(url, false)to disable automatic reconnection.
Runnable end-to-end quick start:
Run The Demos
Start the demo server:
In another terminal, run the demo client:
The demos exercise:
system.echoAPI.files.inspectAPI with inline attachment.chat.messageevent emit and broadcast.chat.historyAPI query.- End-to-end ChaCha20 frame encryption using the demo key wired in both examples.
Performance Highlights
- Concurrent request handling: each inbound API request/event runs in its own
tokio::spawntask with a per-connection semaphore (default 64 in-flight), eliminating head-of-line blocking. - Zero-copy broadcast:
broadcast_eventencodes the frame once and shares it asBytesacross all recipients. - Pre-encoded outbound: all frames are encoded at dispatch time; the writer task only ships bytes.
- Lock-free hot paths:
DashMapconnection table,ArcSwapOptionwriter handle,DashMap<u64>pending correlation map. - Cached ciphers: AES-256-GCM and ChaCha20-Poly1305 key schedules are computed once and shared via
Arc. - Compact wire format: single-letter JSON keys + numeric
ktag +u64counters for IDs minimize per-frame byte overhead. - Low latency:
TCP_NODELAYon accept,tracinginstead ofprintln!on hot paths.
See framework-instruction.md for the full architecture and performance model documentation.
Quality Gates
Recommended checks before publishing or merging:
Publishing Checklist
Before publishing the crates to crates.io:
- Confirm the configured
repositoryandhomepagemetadata still match the canonical repository. - Run the quality gates locally.
- Update all workspace crate versions and internal dependency pins to the target release version.
- Run
cargo packageforwscall-protocolto validate the root dependency crate. - Publish in dependency order:
wscall-protocol,wscall-server,wscall-client, thenwscall. - After each publish, wait for the crates.io index to catch up before packaging or publishing the next dependent crate.
For any release that introduces a new unpublished dependency version, downstream crates such as wscall-server, wscall-client, and wscall must still be published in dependency order so crates.io can resolve the freshly published versions.
See RELEASE.md for a release sequence that matches this dependency chain.
Version history is tracked in CHANGELOG.md.
Current Constraints
ChaCha20andAES256-GCMare implemented inFrameCodec; the demos default toChaCha20.- Attachments are inline Base64 and suited to small files.
- Large-file chunking is not part of the current core protocol.
- The published crate and code identifiers have been renamed to
wscall. - Client SDK is Rust-only; a JavaScript client is planned for a future release.