chore: rename quicproquo → quicprochat in docs, Docker, CI, and packaging

Rename all project references from quicproquo/qpq to quicprochat/qpc
across documentation, Docker configuration, CI workflows, packaging
scripts, operational configs, and build tooling.

- Docker: crate paths, binary names, user/group, data dirs, env vars
- CI: workflow crate references, binary names, artifact names
- Docs: all markdown files under docs/, SDK READMEs, book.toml
- Packaging: OpenWrt Makefile, init script, UCI config (file renames)
- Scripts: justfile, dev-shell, screenshot, cross-compile, ai_team
- Operations: Prometheus config, alert rules, Grafana dashboard
- Config: .env.example (QPQ_* → QPC_*), CODEOWNERS paths
- Top-level: README, CONTRIBUTING, ROADMAP, CLAUDE.md
This commit is contained in:
2026-03-07 18:46:43 +01:00
parent a710037dde
commit 2e081ead8e
179 changed files with 1645 additions and 1645 deletions

View File

@@ -1,7 +1,7 @@
"""CFFI bindings to ``libquicproquo_ffi`` (the Rust C FFI layer).
"""CFFI bindings to ``libquicprochat_ffi`` (the Rust C FFI layer).
This module loads the shared library and exposes a synchronous Python API
that mirrors the C functions in ``crates/quicproquo-ffi/src/lib.rs``.
that mirrors the C functions in ``crates/quicprochat-ffi/src/lib.rs``.
"""
from __future__ import annotations
@@ -13,14 +13,14 @@ from typing import Optional
import cffi
from quicproquo.types import (
from quicprochat.types import (
QpqError,
AuthError,
TimeoutError,
ConnectionError,
)
# Status codes (must match crates/quicproquo-ffi/src/lib.rs).
# Status codes (must match crates/quicprochat-ffi/src/lib.rs).
QPQ_OK = 0
QPQ_ERROR = 1
QPQ_AUTH_FAILED = 2
@@ -54,23 +54,23 @@ def _load_lib() -> object:
# Explicit environment variable.
os.environ.get("QPQ_LIB_PATH", ""),
# Common cargo build output locations.
str(Path(__file__).resolve().parents[3] / "target" / "release" / "libquicproquo_ffi.so"),
str(Path(__file__).resolve().parents[3] / "target" / "debug" / "libquicproquo_ffi.so"),
str(Path(__file__).resolve().parents[3] / "target" / "release" / "libquicprochat_ffi.so"),
str(Path(__file__).resolve().parents[3] / "target" / "debug" / "libquicprochat_ffi.so"),
# macOS dylib.
str(
Path(__file__).resolve().parents[3]
/ "target"
/ "release"
/ "libquicproquo_ffi.dylib"
/ "libquicprochat_ffi.dylib"
),
str(
Path(__file__).resolve().parents[3]
/ "target"
/ "debug"
/ "libquicproquo_ffi.dylib"
/ "libquicprochat_ffi.dylib"
),
# System library path.
"libquicproquo_ffi.so",
"libquicprochat_ffi.so",
]
for path in search_paths:
@@ -83,8 +83,8 @@ def _load_lib() -> object:
continue
raise OSError(
"Could not find libquicproquo_ffi. Set QPQ_LIB_PATH or build with "
"`cargo build --release -p quicproquo-ffi`."
"Could not find libquicprochat_ffi. Set QPQ_LIB_PATH or build with "
"`cargo build --release -p quicprochat-ffi`."
)
@@ -107,7 +107,7 @@ def _check_error(handle: object, code: int) -> None:
class FfiTransport:
"""Synchronous transport wrapping ``libquicproquo_ffi``.
"""Synchronous transport wrapping ``libquicprochat_ffi``.
Provides the same logical operations as ``QuicTransport`` but backed
by the Rust client library through C FFI.