Skip to main content

WebSocket connection lifecycle, room broadcast, and routing for real-time services

Project description

csrd WebSocket Library

Status: Active implementation (v0.1.0) — core manager/router primitives available.

Real-time WebSocket connection lifecycle, room broadcast, and routing primitives for the csrd ecosystem.

Overview

This package provides reusable WebSocket infrastructure for building real-time services on FastAPI. It handles connection registration, room membership, message routing, and optional policy hooks — but does not define domain-specific protocols.

Design reference

  • Design doc: ../../docs/WEBSOCKET_LIBRARY_DESIGN.md
  • Implementation plan: ../../docs/WEBSOCKET_LIBRARY_IMPLEMENTATION_PLAN.md

Current API

from csrd.realtime import (
    ConnectionContext,
    ConnectionManager,
    MessageEnvelope,
    MessageRouter,
)

Status

Current milestone includes:

  • ConnectionManager (connect/disconnect, room membership, room/global broadcast)
  • MessageRouter (event dispatch + optional policy hooks)
  • ConnectionContext and MessageEnvelope
  • Typed errors for policy/validation/connection lookup

Minimal FastAPI wiring example

from fastapi import FastAPI, WebSocket
from starlette.websockets import WebSocketDisconnect
from contextlib import suppress

from csrd.realtime import (
    ConnectionContext,
    ConnectionManager,
    ConnectionNotFoundError,
    MessageEnvelope,
    MessageRouter,
)

app = FastAPI()
manager = ConnectionManager()
router = MessageRouter()


@app.websocket("/ws")
async def ws_endpoint(ws: WebSocket):
    await ws.accept()
    connection_id = ws.query_params.get("connection_id", "anon")
    context = ConnectionContext(connection_id=connection_id)
    await manager.connect(ws, context)

    try:
        while True:
            data = await ws.receive_json()
            envelope = MessageEnvelope.model_validate(data)
            await router.dispatch(connection_id, envelope, manager)
    except WebSocketDisconnect:
        pass
    finally:
        with suppress(ConnectionNotFoundError):
            await manager.disconnect(connection_id)

Optional context adapter pattern

csrd-realtime stays standalone, but supports optional context binding around each dispatch via RealtimeContextAdapter.

Use this to bridge into csrd-context/logging contextvars without adding a hard dependency from realtime core.

from csrd.realtime import MessageRouter, RealtimeContextAdapter


def bind_ws_context(dispatch_context):
    # Example: set your contextvars and return reset token(s)
    token = some_contextvar.set(
        {
            "connection_id": dispatch_context.connection_id,
            "tenant_id": dispatch_context.connection.tenant_id,
            "event_type": dispatch_context.event_type,
            "trace_id": dispatch_context.trace_id,
        }
    )
    return token


def reset_ws_context(token):
    some_contextvar.reset(token)


router = MessageRouter(
    context_adapter=RealtimeContextAdapter(bind=bind_ws_context, reset=reset_ws_context)
)

Operational defaults (current)

  • Backpressure model: direct send_json per message (no per-connection queue in v0.1.x).
  • Failure behavior: if a send fails, ConnectionManager evicts that connection (best-effort fan-out).
  • Timeout behavior: manager applies bounded send timeout by default (send_timeout_seconds=5.0).
  • Router behavior: handler exceptions are surfaced to caller by default; set MessageRouter(raise_handler_exceptions=False) for log-and-continue mode.

Tenant and room naming guidance

Room names are consumer-defined strings. Use a namespaced format to avoid cross-tenant collisions.

Recommended patterns:

  • tenant:{tenant_id}:session:{session_id} for gameplay sessions
  • tenant:{tenant_id}:party:{party_id} for party-level channels
  • tenant:{tenant_id}:system for scoped system broadcasts

Guidance:

  • Always resolve tenant_id server-side from auth context.
  • Never trust client-provided room names without authorization checks.
  • Keep room IDs stable and deterministic so reconnect/join logic is predictable.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

csrd_realtime-0.5.28.tar.gz (17.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

csrd_realtime-0.5.28-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file csrd_realtime-0.5.28.tar.gz.

File metadata

  • Download URL: csrd_realtime-0.5.28.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csrd_realtime-0.5.28.tar.gz
Algorithm Hash digest
SHA256 2b5476b20fc3c3f05d19d3410ed2e6b368f19d43c7f5c9a73edb73da8addd9dd
MD5 dfe1ef6dee94bd252465e7b333795a1c
BLAKE2b-256 258ba4edbd8b8a35c72398ec0672ff5f7298233385f4e385f2e0f0d005ef1d1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for csrd_realtime-0.5.28.tar.gz:

Publisher: release.yml on csrd-api/fastapi-common

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csrd_realtime-0.5.28-py3-none-any.whl.

File metadata

  • Download URL: csrd_realtime-0.5.28-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csrd_realtime-0.5.28-py3-none-any.whl
Algorithm Hash digest
SHA256 58077fa9a858a29a1cf85dda5647b3ea7c9131ed026c1b4296b81ef8883ddc70
MD5 3f7a3c5b941871d5a3649955bc602259
BLAKE2b-256 347907ffcdcd3dfc217fa4e8b2749e58cb3b3c7de1469edfe5957b0342172a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for csrd_realtime-0.5.28-py3-none-any.whl:

Publisher: release.yml on csrd-api/fastapi-common

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page