Complete name-first 1C adapter saved-state support

This commit is contained in:
2026-07-26 16:39:53 +03:00
parent b8c62fa8fa
commit aed134d817
44 changed files with 15436 additions and 697 deletions
+42
View File
@@ -4,6 +4,7 @@ from __future__ import annotations
from dataclasses import asdict, dataclass
from pathlib import Path
import re
from typing import Any
from .payload import parse_brace_text, payload_to_text, scalar
@@ -77,3 +78,44 @@ def parse_dbnames_bytes(data: bytes, *, source: str = "DBNames") -> dict[str, An
def parse_dbnames_file(path: Path) -> dict[str, Any]:
return parse_dbnames_bytes(path.read_bytes(), source=path.name)
_GUID_RE = re.compile(
r"^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
)
def parse_dbnames_version_bytes(data: bytes, *, source: str = "DBNamesVersion") -> dict[str, Any]:
"""Parse the version marker stored separately from DBNames records."""
decoded = payload_to_text(data)
text = decoded.get("text")
if text is None:
raise ValueError(f"{source}: cannot decode DBNamesVersion text")
parsed = _unwrap_bom_sequence(parse_brace_text(text))
if not (isinstance(parsed, dict) and parsed.get("type") == "list"):
raise ValueError(f"{source}: expected root list")
items = parsed.get("items") or []
if len(items) != 2:
raise ValueError(f"{source}: expected 2 root items, got {len(items)}")
if not all(isinstance(item, dict) and item.get("type") == "atom" for item in items):
actual_types = [item.get("type") if isinstance(item, dict) else type(item).__name__ for item in items]
raise ValueError(f"{source}: expected scalar marker and version, got {actual_types}")
marker_text = scalar(items[0]).strip()
try:
marker = int(marker_text)
except (TypeError, ValueError) as exc:
raise ValueError(f"{source}: marker must be an integer, got {marker_text!r}") from exc
version = scalar(items[1]).strip().lower()
if not _GUID_RE.fullmatch(version):
raise ValueError(f"{source}: version must be a GUID string, got {version!r}")
return {
"source": source,
"compression": decoded["compression"],
"encoding": decoded["encoding"],
"marker": marker,
"version": version,
}
def parse_dbnames_version_file(path: Path) -> dict[str, Any]:
return parse_dbnames_version_bytes(path.read_bytes(), source=path.name)