Reorganize WNDB by responsibility and remove legacy scheme endpoints.\n\nRoute analysis and time-series access through project pools, preserve transactional realtime replacement, and refresh GIS materialized views after writes.\n\nAdd database architecture documentation, live pooling coverage, API contract updates, and executable container verification.\n\nBREAKING CHANGE: legacy scheme APIs and flat app.native.wndb module imports are removed.
35 lines
880 B
Python
35 lines
880 B
Python
from ..core.database import read_all
|
|
|
|
|
|
#--------------------------------------------------------------
|
|
# [EPA2]
|
|
# PAGE linesperpage
|
|
# STATUS {NONE/YES/FULL}
|
|
# SUMMARY {YES/NO}
|
|
# MESSAGES {YES/NO}
|
|
# ENERGY {NO/YES}
|
|
# NODES {NONE/ALL}
|
|
# NODES node1 node2 ...
|
|
# LINKS {NONE/ALL}
|
|
# LINKS link1 link2 ...
|
|
# FILE filename
|
|
# variable {YES/NO}
|
|
# variable {BELOW/ABOVE/PRECISION} value
|
|
# [EPA3][NOT SUPPORT]
|
|
# TRIALS {YES/NO}
|
|
#--------------------------------------------------------------
|
|
|
|
|
|
def inp_in_report(section: list[str]) -> str:
|
|
return ''
|
|
|
|
|
|
def inp_out_report(name: str) -> list[str]:
|
|
lines = []
|
|
objs = read_all(name, "select key, value from network.report_settings order by key")
|
|
for obj in objs:
|
|
key = obj['key']
|
|
value = obj['value']
|
|
lines.append(f'{key} {value}')
|
|
return lines
|