📌 Manager - PG 模块¶
tongsim.manager.pg.manager ¶
PGManager ¶
PGManager 管理全量 PG(Parse-Graph) 数据状态。 默认维护在 TongSim 对象实例中,可通过其子方法 pg_manager() 获取。
功能:
- 从 gRPC Stream 接收增量 PG 数据
- 将增量数据合并为结构完整的全量 PG
- 支持基于 subject/component ID 的高性能索引访问
- 提供基于 metainfo 的字段查询接口,支持同步与异步版本
注意:
- 所有操作均在线程内事件循环(AsyncLoop)中调度,确保线程安全,无需锁。
Source code in src\tongsim\manager\pg\manager.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 |
|
is_pg_stream_started
property
¶
is_pg_stream_started: bool
判断是否启动 PG 流监听
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
是否开启 PG 流监听 |
notify_new_pg
async
¶
notify_new_pg() -> AsyncIterator[dict]
异步推送 PG 更新。每当 _run_pg_stream 合并了新帧,就 yield 一次当前的 self._pg,请使用异步函数去运行,否则会卡住
说明: - 这是一个“热”流:多个消费者并行订阅时,都会在事件触发时各自被唤醒。 - 返回的 dict 视为只读视图;若需要拷贝请在消费者侧自行 copy/deepcopy。
Source code in src\tongsim\manager\pg\manager.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
start_pg_stream ¶
start_pg_stream(
pg_freq: int = 10, assign_segmentation_id: bool = True
)
启动 PG 流监听(同步接口)。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pg_freq
|
int
|
PG 刷新频率,单位为帧数(默认每 10 帧更新一次)。 |
10
|
assign_segmentation_id
|
bool
|
是否启用分割图 ID 分配, 默认为 True,即自动给场景中每个物体 分配分割图 ID. |
True
|
Source code in src\tongsim\manager\pg\manager.py
78 79 80 81 82 83 84 85 86 87 88 |
|
async_start_pg_stream
async
¶
async_start_pg_stream(
pg_freq: int = 10, assign_segmentation_id: bool = True
)
启动 PG 流监听(异步接口)。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pg_freq
|
int
|
PG 刷新频率,单位为帧数(默认每 10 帧更新一次)。 |
10
|
assign_segmentation_id
|
bool
|
是否启用分割图 ID 分配, 默认为 True,即自动给场景中每个物体 分配分割图 ID. |
True
|
Source code in src\tongsim\manager\pg\manager.py
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
async_stop_pg_stream
async
¶
async_stop_pg_stream()
停止 PG 流监听任务(异步接口)。
若存在活跃的 PG 流任务,将尝试取消并等待其清理完成。 同时清空 PG 数据缓存。
Raises:
Type | Description |
---|---|
CancelledError
|
若取消失败或向上传播取消信号。 |
Source code in src\tongsim\manager\pg\manager.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
fetch_full_pg_from_streaming ¶
fetch_full_pg_from_streaming() -> dict
从 PG 流中获取当前的全量 PG 数据(同步接口)。
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
当前帧的完整 PG 数据结构。 |
Source code in src\tongsim\manager\pg\manager.py
178 179 180 181 182 183 184 185 |
|
async_fetch_full_pg_from_streaming
async
¶
async_fetch_full_pg_from_streaming() -> dict
从 PG 流中获取当前的全量 PG 数据(异步接口)。
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
当前帧的完整 PG 数据结构。 |
Source code in src\tongsim\manager\pg\manager.py
187 188 189 190 191 192 193 194 |
|
fetch_subject_pg_from_streaming ¶
fetch_subject_pg_from_streaming(sid: str) -> dict | None
从 PG 流中获取指定 Subject 的 PG 信息(同步接口)。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sid
|
str
|
Subject ID。 |
required |
Returns:
Type | Description |
---|---|
dict | None
|
dict | None: 该 Subject 的 PG 数据(若不存在则为 None)。 |
Source code in src\tongsim\manager\pg\manager.py
196 197 198 199 200 201 202 203 204 205 206 |
|
async_fetch_subject_pg_from_streaming
async
¶
async_fetch_subject_pg_from_streaming(
sid: str,
) -> dict | None
从 PG 流中获取指定 Subject 的 PG 信息(异步接口)。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sid
|
str
|
Subject ID。 |
required |
Returns:
Type | Description |
---|---|
dict | None
|
dict | None: 该 Subject 的 PG 数据(若不存在则为 None)。 |
Source code in src\tongsim\manager\pg\manager.py
208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
fetch_component_pg_from_streaming ¶
fetch_component_pg_from_streaming(
sid: str, cid: str
) -> dict | None
获取指定组件的 PG 信息(同步接口)。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sid
|
str
|
Subject ID。 |
required |
cid
|
str
|
Component ID。 |
required |
Returns:
Type | Description |
---|---|
dict | None
|
dict | None: 指定组件的 PG 数据(若不存在则为 None)。 |
Source code in src\tongsim\manager\pg\manager.py
223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
|
async_fetch_component_pg_from_streaming
async
¶
async_fetch_component_pg_from_streaming(
sid: str, cid: str
) -> dict | None
获取指定组件的 PG 信息(异步接口)。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sid
|
str
|
Subject ID。 |
required |
cid
|
str
|
Component ID。 |
required |
Returns:
Type | Description |
---|---|
dict | None
|
dict | None: 指定组件的 PG 数据(若不存在则为 None)。 |
Source code in src\tongsim\manager\pg\manager.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
|
query ¶
query(metas: list[dict]) -> dict[str, dict[str, Any]]
执行组件字段查询(同步接口)。
关于 metas 参数: 可使用 get_pg_metainfo_schema() 获取支持的组件与字段。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
metas
|
list[dict]
|
查询字段的 metainfo 列表。 |
required |
Returns:
Type | Description |
---|---|
dict[str, dict[str, Any]]
|
dict[str, dict[str, Any]]: subject_id → 字段结果映射。 - 键为 subject_id(主体 ID) - 值为一个字典,包含该主体上查询到的字段结果 - 附加键 "meta" 包含本次查询的全局信息 |
Source code in src\tongsim\manager\pg\manager.py
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
|
async_query_fields
async
¶
async_query_fields(
metas: list[dict],
) -> dict[str, dict[str, Any]]
执行组件字段查询(异步接口)。
关于 metas 参数: 可使用 get_pg_metainfo_schema() 获取支持的组件与字段。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
metas
|
list[dict]
|
查询字段的 metainfo 列表。 |
required |
Returns:
Type | Description |
---|---|
dict[str, dict[str, Any]]
|
dict[str, dict[str, Any]]: subject_id → 字段结果映射。 - 键为 subject_id(主体 ID) - 值为一个字典,包含该主体上查询到的字段结果 - 附加键 "meta" 包含本次查询的全局信息 |
Source code in src\tongsim\manager\pg\manager.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
|
get_pg_metainfo_schema ¶
get_pg_metainfo_schema() -> dict[str, ComponentSchema]
获取当前 PG 查询支持的组件及其字段定义。
Returns:
Type | Description |
---|---|
dict[str, ComponentSchema]
|
组件名 → 支持字段名 列表。 |
Source code in src\tongsim\manager\pg\manager.py
305 306 307 308 309 310 311 312 |
|