Skip to main content

Process-external local singleton via loopback daemon

Project description

loopback-singleton

loopback-singleton is a lightweight Python package that gives multiple local processes access to a single shared object instance hosted in a background daemon on 127.0.0.1.

It is useful when you want one process-external object (cache, counter, coordinator, adapter, etc.) and you want all local workers to call into that object without standing up a full RPC system.

Current status (v0.2.3)

Current release: 0.2.3.

What works today

  • Local singleton daemon auto-start on first use.
  • Concurrent startup coordination with file locking to reduce duplicate daemons.
  • Authenticated handshake (shared token in runtime dir) between client and daemon.
  • Sequential method execution on the singleton object (single executor queue).
  • Idle TTL auto-shutdown for daemon cleanup.
  • Recovery from stale or corrupted runtime metadata.
  • Cross-platform runtime location strategy (Windows + POSIX fallback behavior).

Installation

pip install loopback-singleton

For local development:

pip install -e .[dev]

Quickstart

Create a module with a factory target (class or callable):

# mypkg/services.py
class Counter:
    def __init__(self):
        self.value = 0

    def inc(self) -> int:
        self.value += 1
        return self.value

    def ping(self) -> str:
        return "pong"

Use local_singleton from any process:

from loopback_singleton import local_singleton

svc = local_singleton(
    name="my-counter",
    factory="mypkg.services:Counter",
    idle_ttl=2.0,
    serializer="pickle",
)

with svc.proxy() as obj:
    print(obj.ping())
    print(obj.inc())

API overview

local_singleton(
    name: str,
    factory: str | callable | type,
    *,
    factory_args: tuple = (),
    factory_kwargs: dict | None = None,
    scope: str = "user",
    idle_ttl: float = 2.0,
    serializer: str = "pickle",
    connect_timeout: float = 0.5,
    start_timeout: float = 3.0,
)
  • name: singleton identity (shared runtime namespace).
  • factory: import string ("module:callable_or_class") or module-level importable callable/class object.
  • factory_args, factory_kwargs: constructor args used when creating singleton instance (factory_kwargs=None behaves as {}).
  • scope: currently only "user" is implemented.
  • idle_ttl: daemon stops after this many seconds with zero active connections.
  • serializer: currently only "pickle" is implemented.
  • connect_timeout, start_timeout: socket/startup tuning.

svc.proxy() returns a dynamic proxy where method calls are forwarded to the daemon.

Additional lifecycle APIs are available on LocalSingletonService:

svc.ensure_started()
info = svc.ping()
svc.shutdown()

How it works

  1. Client computes runtime paths for the singleton name.
  2. Client attempts connection using runtime metadata.
  3. If missing/failing, it takes a file lock, cleans stale metadata, and spawns daemon.
  4. Daemon binds ephemeral loopback TCP port, writes runtime metadata, and serves requests.
  5. Each CALL request is executed sequentially against one in-memory object instance.

Lifecycle and robustness scenarios

Scenario 1 — Pass a class directly

from loopback_singleton import local_singleton
from mypkg.services import CounterService

svc = local_singleton(
    "counter",
    factory=CounterService,
    factory_args=(10,),
    factory_kwargs={"step": 2},
)

with svc.proxy() as p:
    assert p.inc() == 12
    assert p.inc() == 14

Scenario 2 — Pass a factory function directly

from loopback_singleton import local_singleton
from mypkg.factories import make_cache

svc = local_singleton(
    "cache",
    factory=make_cache,
    factory_kwargs={"max_items": 1000, "ttl": 60},
)

with svc.proxy() as cache:
    cache.put("k", "v")
    assert cache.get("k") == "v"

Scenario 3 — Warm-up a configured daemon without proxy creation

svc = local_singleton("svc", factory=MyService, factory_args=(...), factory_kwargs={...})
svc.ensure_started()
info = svc.ping()

Scenario 4 — Non-importable factory gets a clear error

svc = local_singleton("x", factory=lambda: object())
# -> TypeError: Factory must be importable (module-level). Pass 'pkg.mod:callable' string instead.

Factory consistency across concurrent clients

For a given singleton name, the first daemon start wins. Subsequent clients must use the same normalized factory + args/kwargs. If they differ, the client fails fast with FactoryMismatchError.

Error model

Main exception classes exported by the package:

  • LoopbackSingletonError (base)
  • DaemonConnectionError
    • ConnectionFailedError
    • HandshakeError
  • ProtocolError (invalid or oversized transport frames/messages)
  • FactoryMismatchError (running daemon factory config differs from requested config)
  • RemoteError (remote traceback payload)

Security notes (important)

This MVP uses pickle for transport serialization. pickle is not safe for untrusted input and can execute arbitrary code.

Use this package only in trusted local environments for now.

Runtime files and cleanup

Runtime files are created under:

  • Windows: %LOCALAPPDATA%/loopback-singleton/<name>/
  • Linux/macOS: $XDG_RUNTIME_DIR/loopback-singleton/<name>/
  • POSIX fallback: ~/.cache/loopback-singleton/<name>/

If startup repeatedly fails due to stale metadata, stop clients and remove the directory for that singleton name.

Known limitations (MVP)

  • Callable/class factories must be importable at module level when passed as objects (lambdas/nested functions are rejected).
  • No identity transparency for proxies (isinstance(proxy, MyType) is not preserved).
  • No magic-method forwarding (__len__, operators, iteration, etc.).
  • Only scope="user" implemented.
  • Only serializer="pickle" implemented (msgpack placeholder exists but not implemented).
  • Transport is loopback TCP only.

Development

Run checks and tests:

ruff check .
pytest -q

Build package:

python -m build

Future work

Planned directions for post-MVP releases:

  • Safer serialization options

    • Implement msgpack serializer path and typed payload envelopes.
    • Add optional schema validation for RPC payloads.
  • Richer proxy semantics

    • Support selected dunder/magic methods.
    • Improve error transport with structured remote exception metadata.
  • Lifecycle and observability

    • Add daemon health/metrics endpoint(s) and lightweight tracing hooks.
    • Expose explicit client APIs for graceful shutdown and restart policies.
  • Scope and deployment flexibility

    • Add additional scope modes beyond per-user.
    • Evaluate optional Unix domain socket transport on POSIX.
  • Robustness and compatibility

    • Protocol version negotiation for rolling upgrades.
    • Expanded stress/regression suite for high-concurrency scenarios.
  • Security hardening

    • Optional mutual-auth improvements and stricter runtime file hardening.
    • Guidance and tooling for locked-down local deployments.

Contributions and issue reports are welcome at:

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

loopback_singleton-0.2.3.tar.gz (29.1 kB view details)

Uploaded Source

Built Distribution

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

loopback_singleton-0.2.3-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file loopback_singleton-0.2.3.tar.gz.

File metadata

  • Download URL: loopback_singleton-0.2.3.tar.gz
  • Upload date:
  • Size: 29.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for loopback_singleton-0.2.3.tar.gz
Algorithm Hash digest
SHA256 83fe7a510dfe60d89494eab37a16d360287d7e6e518d7f2113dcca34eef93eb9
MD5 bf22a12000f550c4300994830feb669e
BLAKE2b-256 7aeac410a9892f15c3fc7851ca447fc9fb89cd37d05b09d5b06cffca29c88969

See more details on using hashes here.

Provenance

The following attestation bundles were made for loopback_singleton-0.2.3.tar.gz:

Publisher: publish.yml on TovarnovM/loopback_singleton

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

File details

Details for the file loopback_singleton-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for loopback_singleton-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 0bc197b518235f19847e04fd61b2a0b4365be02d7ba1519e90c2968b355db3f5
MD5 4a1cfcf86218c97af5505ef3a1a3b8c2
BLAKE2b-256 06465e2c44b3cf965d1962b03f6d67b3c56e04a3f9018b51e6a871a268744a00

See more details on using hashes here.

Provenance

The following attestation bundles were made for loopback_singleton-0.2.3-py3-none-any.whl:

Publisher: publish.yml on TovarnovM/loopback_singleton

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