2025-05-19 22:59:56 +08:00
|
|
|
from collections.abc import Iterable, Sequence
|
2025-08-14 19:50:59 +08:00
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
|
|
import orjson
|
2025-05-19 22:59:56 +08:00
|
|
|
|
2025-06-24 09:05:29 +08:00
|
|
|
from .segment_group import SegmentGroup
|
|
|
|
|
from .segments import ArrayFileSegment, FileSegment, Segment
|
|
|
|
|
|
2025-05-19 22:59:56 +08:00
|
|
|
|
|
|
|
|
def to_selector(node_id: str, name: str, paths: Iterable[str] = ()) -> Sequence[str]:
|
|
|
|
|
selectors = [node_id, name]
|
|
|
|
|
if paths:
|
|
|
|
|
selectors.extend(paths)
|
|
|
|
|
return selectors
|
2025-06-24 09:05:29 +08:00
|
|
|
|
|
|
|
|
|
2025-09-06 04:32:23 +09:00
|
|
|
def segment_orjson_default(o: Any):
|
2025-08-14 19:50:59 +08:00
|
|
|
"""Default function for orjson serialization of Segment types"""
|
|
|
|
|
if isinstance(o, ArrayFileSegment):
|
|
|
|
|
return [v.model_dump() for v in o.value]
|
|
|
|
|
elif isinstance(o, FileSegment):
|
|
|
|
|
return o.value.model_dump()
|
|
|
|
|
elif isinstance(o, SegmentGroup):
|
|
|
|
|
return [segment_orjson_default(seg) for seg in o.value]
|
|
|
|
|
elif isinstance(o, Segment):
|
|
|
|
|
return o.value
|
|
|
|
|
raise TypeError(f"Object of type {type(o).__name__} is not JSON serializable")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def dumps_with_segments(obj: Any, ensure_ascii: bool = False) -> str:
|
|
|
|
|
"""JSON dumps with segment support using orjson"""
|
|
|
|
|
option = orjson.OPT_NON_STR_KEYS
|
|
|
|
|
return orjson.dumps(obj, default=segment_orjson_default, option=option).decode("utf-8")
|