app.py
58.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
"""
Flask主应用 - 统一管理三个Streamlit应用
"""
import os
import sys
# 【修复】尽早设置环境变量,确保所有模块都使用无缓冲模式
os.environ['PYTHONIOENCODING'] = 'utf-8'
os.environ['PYTHONUTF8'] = '1'
os.environ['PYTHONUNBUFFERED'] = '1' # 禁用Python输出缓冲,确保日志实时输出
import subprocess
import time
import threading
import json
from datetime import datetime
from queue import Queue
from flask import Flask, render_template, request, jsonify, Response
from flask_socketio import SocketIO, emit
import atexit
import requests
from loguru import logger
import importlib
from pathlib import Path
from MindSpider.main import MindSpider
# 导入ReportEngine
try:
from ReportEngine.flask_interface import report_bp, initialize_report_engine
REPORT_ENGINE_AVAILABLE = True
except ImportError as e:
logger.error(f"ReportEngine导入失败: {e}")
REPORT_ENGINE_AVAILABLE = False
app = Flask(__name__)
app.config['SECRET_KEY'] = 'Dedicated-to-creating-a-concise-and-versatile-public-opinion-analysis-platform'
socketio = SocketIO(app, cors_allowed_origins="*")
# eventlet 在客户端主动断开时偶尔会抛出 ConnectionAbortedError,这里做一次防御性包裹,
# 避免无意义的堆栈污染日志(仅在 eventlet 可用时启用)。
def _patch_eventlet_disconnect_logging():
try:
import eventlet.wsgi # type: ignore
except Exception as exc: # pragma: no cover - 仅在生产环境有效
logger.debug(f"eventlet 不可用,跳过断开补丁: {exc}")
return
try:
original_finish = eventlet.wsgi.HttpProtocol.finish # type: ignore[attr-defined]
except Exception as exc: # pragma: no cover
logger.debug(f"eventlet 缺少 HttpProtocol.finish,跳过断开补丁: {exc}")
return
def _safe_finish(self, *args, **kwargs): # pragma: no cover - 运行时才会触发
try:
return original_finish(self, *args, **kwargs)
except (BrokenPipeError, ConnectionResetError, ConnectionAbortedError) as exc:
try:
environ = getattr(self, 'environ', {}) or {}
method = environ.get('REQUEST_METHOD', '')
path = environ.get('PATH_INFO', '')
logger.warning(f"客户端已主动断开,忽略异常: {method} {path} ({exc})")
except Exception:
logger.warning(f"客户端已主动断开,忽略异常: {exc}")
return
eventlet.wsgi.HttpProtocol.finish = _safe_finish # type: ignore[attr-defined]
logger.info("已对 eventlet 连接中断进行安全防护")
_patch_eventlet_disconnect_logging()
# 注册ReportEngine Blueprint
if REPORT_ENGINE_AVAILABLE:
app.register_blueprint(report_bp, url_prefix='/api/report')
logger.info("ReportEngine接口已注册")
else:
logger.info("ReportEngine不可用,跳过接口注册")
# 创建日志目录
LOG_DIR = Path('logs')
LOG_DIR.mkdir(exist_ok=True)
CONFIG_MODULE_NAME = 'config'
CONFIG_FILE_PATH = Path(__file__).resolve().parent / 'config.py'
CONFIG_KEYS = [
'HOST',
'PORT',
'DB_DIALECT',
'DB_HOST',
'DB_PORT',
'DB_USER',
'DB_PASSWORD',
'DB_NAME',
'DB_CHARSET',
'INSIGHT_ENGINE_API_KEY',
'INSIGHT_ENGINE_BASE_URL',
'INSIGHT_ENGINE_MODEL_NAME',
'MEDIA_ENGINE_API_KEY',
'MEDIA_ENGINE_BASE_URL',
'MEDIA_ENGINE_MODEL_NAME',
'QUERY_ENGINE_API_KEY',
'QUERY_ENGINE_BASE_URL',
'QUERY_ENGINE_MODEL_NAME',
'REPORT_ENGINE_API_KEY',
'REPORT_ENGINE_BASE_URL',
'REPORT_ENGINE_MODEL_NAME',
'FORUM_HOST_API_KEY',
'FORUM_HOST_BASE_URL',
'FORUM_HOST_MODEL_NAME',
'KEYWORD_OPTIMIZER_API_KEY',
'KEYWORD_OPTIMIZER_BASE_URL',
'KEYWORD_OPTIMIZER_MODEL_NAME',
'TAVILY_API_KEY',
'SEARCH_TOOL_TYPE',
'BOCHA_WEB_SEARCH_API_KEY',
'ANSPIRE_API_KEY',
'GRAPHRAG_ENABLED',
'GRAPHRAG_MAX_QUERIES'
]
def _load_config_module():
"""Load or reload the config module to ensure latest values are available."""
importlib.invalidate_caches()
module = sys.modules.get(CONFIG_MODULE_NAME)
try:
if module is None:
module = importlib.import_module(CONFIG_MODULE_NAME)
else:
module = importlib.reload(module)
except ModuleNotFoundError:
return None
return module
def read_config_values():
"""Return the current configuration values that are exposed to the frontend."""
try:
# 重新加载配置以获取最新的 Settings 实例
from config import reload_settings, settings
reload_settings()
values = {}
for key in CONFIG_KEYS:
# 从 Pydantic Settings 实例读取值
value = getattr(settings, key, None)
# Convert to string for uniform handling on the frontend.
if value is None:
values[key] = ''
else:
values[key] = str(value)
return values
except Exception as exc:
logger.exception(f"读取配置失败: {exc}")
return {}
def _serialize_config_value(value):
"""Serialize Python values back to a config.py assignment-friendly string."""
if isinstance(value, bool):
return 'True' if value else 'False'
if isinstance(value, (int, float)):
return str(value)
if value is None:
return 'None'
value_str = str(value)
escaped = value_str.replace('\\', '\\\\').replace('"', '\\"')
return f'"{escaped}"'
def write_config_values(updates):
"""Persist configuration updates to .env file (Pydantic Settings source)."""
from pathlib import Path
# 确定 .env 文件路径(与 config.py 中的逻辑一致)
project_root = Path(__file__).resolve().parent
cwd_env = Path.cwd() / ".env"
env_file_path = cwd_env if cwd_env.exists() else (project_root / ".env")
# 读取现有的 .env 文件内容
env_lines = []
env_key_indices = {} # 记录每个键在文件中的索引位置
if env_file_path.exists():
env_lines = env_file_path.read_text(encoding='utf-8').splitlines()
# 提取已存在的键及其索引
for i, line in enumerate(env_lines):
line_stripped = line.strip()
if line_stripped and not line_stripped.startswith('#'):
if '=' in line_stripped:
key = line_stripped.split('=')[0].strip()
env_key_indices[key] = i
# 更新或添加配置项
for key, raw_value in updates.items():
# 格式化值用于 .env 文件(不需要引号,除非是字符串且包含空格)
if raw_value is None or raw_value == '':
env_value = ''
elif isinstance(raw_value, (int, float)):
env_value = str(raw_value)
elif isinstance(raw_value, bool):
env_value = 'True' if raw_value else 'False'
else:
value_str = str(raw_value)
# 如果包含空格或特殊字符,需要引号
if ' ' in value_str or '\n' in value_str or '#' in value_str:
escaped = value_str.replace('\\', '\\\\').replace('"', '\\"')
env_value = f'"{escaped}"'
else:
env_value = value_str
# 更新或添加配置项
if key in env_key_indices:
# 更新现有行
env_lines[env_key_indices[key]] = f'{key}={env_value}'
else:
# 添加新行到文件末尾
env_lines.append(f'{key}={env_value}')
# 写入 .env 文件
env_file_path.parent.mkdir(parents=True, exist_ok=True)
env_file_path.write_text('\n'.join(env_lines) + '\n', encoding='utf-8')
# 重新加载配置模块(这会重新读取 .env 文件并创建新的 Settings 实例)
_load_config_module()
system_state_lock = threading.Lock()
system_state = {
'started': False,
'starting': False,
'shutdown_in_progress': False
}
def _set_system_state(*, started=None, starting=None):
"""Safely update the cached system state flags."""
with system_state_lock:
if started is not None:
system_state['started'] = started
if starting is not None:
system_state['starting'] = starting
def _get_system_state():
"""Return a shallow copy of the system state flags."""
with system_state_lock:
return system_state.copy()
def _prepare_system_start():
"""Mark the system as starting if it is not already running or starting."""
with system_state_lock:
if system_state['started']:
return False, '系统已启动'
if system_state['starting']:
return False, '系统正在启动'
system_state['starting'] = True
return True, None
def _mark_shutdown_requested():
"""标记关机已请求;若已有关机流程则返回 False。"""
with system_state_lock:
if system_state.get('shutdown_in_progress'):
return False
system_state['shutdown_in_progress'] = True
return True
def initialize_system_components():
"""启动所有依赖组件(Streamlit 子应用、ForumEngine、ReportEngine)。"""
logs = []
errors = []
spider = MindSpider()
if spider.initialize_database():
logger.info("数据库初始化成功")
else:
logger.error("数据库初始化失败")
try:
stop_forum_engine()
logs.append("已停止 ForumEngine 监控器以避免文件冲突")
except Exception as exc: # pragma: no cover - 安全捕获
message = f"停止 ForumEngine 时发生异常: {exc}"
logs.append(message)
logger.exception(message)
processes['forum']['status'] = 'stopped'
for app_name, script_path in STREAMLIT_SCRIPTS.items():
logs.append(f"检查文件: {script_path}")
if os.path.exists(script_path):
success, message = start_streamlit_app(app_name, script_path, processes[app_name]['port'])
logs.append(f"{app_name}: {message}")
if success:
startup_success, startup_message = wait_for_app_startup(app_name, 30)
logs.append(f"{app_name} 启动检查: {startup_message}")
if not startup_success:
errors.append(f"{app_name} 启动失败: {startup_message}")
else:
errors.append(f"{app_name} 启动失败: {message}")
else:
msg = f"文件不存在: {script_path}"
logs.append(f"错误: {msg}")
errors.append(f"{app_name}: {msg}")
forum_started = False
try:
start_forum_engine()
processes['forum']['status'] = 'running'
logs.append("ForumEngine 启动完成")
forum_started = True
except Exception as exc: # pragma: no cover - 保底捕获
error_msg = f"ForumEngine 启动失败: {exc}"
logs.append(error_msg)
errors.append(error_msg)
if REPORT_ENGINE_AVAILABLE:
try:
if initialize_report_engine():
logs.append("ReportEngine 初始化成功")
else:
msg = "ReportEngine 初始化失败"
logs.append(msg)
errors.append(msg)
except Exception as exc: # pragma: no cover
msg = f"ReportEngine 初始化异常: {exc}"
logs.append(msg)
errors.append(msg)
if errors:
cleanup_processes()
processes['forum']['status'] = 'stopped'
if forum_started:
try:
stop_forum_engine()
except Exception: # pragma: no cover
logger.exception("停止ForumEngine失败")
return False, logs, errors
return True, logs, []
# 初始化ForumEngine的forum.log文件
def init_forum_log():
"""初始化forum.log文件"""
try:
forum_log_file = LOG_DIR / "forum.log"
# 检查文件不存在则创建并且写一个开始,存在就清空写一个开始
if not forum_log_file.exists():
with open(forum_log_file, 'w', encoding='utf-8') as f:
start_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
f.write(f"=== ForumEngine 系统初始化 - {start_time} ===\n")
logger.info(f"ForumEngine: forum.log 已初始化")
else:
with open(forum_log_file, 'w', encoding='utf-8') as f:
start_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
f.write(f"=== ForumEngine 系统初始化 - {start_time} ===\n")
logger.info(f"ForumEngine: forum.log 已初始化")
except Exception as e:
logger.exception(f"ForumEngine: 初始化forum.log失败: {e}")
# 初始化forum.log
init_forum_log()
# ===== 知识库查询日志(与 Forum 日志格式类似) =====
knowledge_log_lock = threading.Lock()
KNOWLEDGE_LOG_FILE = LOG_DIR / "knowledge_query.log"
def _sanitize_log_text(text: str) -> str:
"""移除换行/回车,防止日志污染。"""
return str(text).replace("\n", " ").replace("\r", " ").strip()
def init_knowledge_log():
"""初始化知识库查询日志文件。"""
try:
start_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
KNOWLEDGE_LOG_FILE.parent.mkdir(parents=True, exist_ok=True)
with knowledge_log_lock, open(KNOWLEDGE_LOG_FILE, 'w', encoding='utf-8') as f:
f.write(f"=== Knowledge Query Log 初始化 - {start_time} ===\n")
logger.info("Knowledge Query: knowledge_query.log 已初始化")
except Exception as exc: # pragma: no cover - 仅运行时执行
logger.exception(f"Knowledge Query: 初始化日志失败: {exc}")
def append_knowledge_log(source: str, payload: dict):
"""记录知识库查询关键词与完整请求数据,防止日志污染。"""
try:
timestamp = datetime.now().strftime('%H:%M:%S')
clean_source = _sanitize_log_text(source or "UNKNOWN")
# JSON 序列化并截断,避免超大日志污染
serialized = json.dumps(payload, ensure_ascii=False)
sanitized = _sanitize_log_text(serialized)
with knowledge_log_lock, open(KNOWLEDGE_LOG_FILE, 'a', encoding='utf-8') as f:
f.write(f"[{timestamp}] [KNOWLEDGE] [{clean_source}] {sanitized}\n")
except Exception as exc: # pragma: no cover - 日志失败不影响主流程
logger.warning(f"Knowledge Query: 写日志失败: {exc}")
def _trim_text(text: str, limit: int = 300) -> str:
text = _sanitize_log_text(text)
return text if len(text) <= limit else text[:limit] + "..."
def _compact_records(items):
"""将节点/记录压缩为简洁日志格式,避免污染。"""
compacted = []
if not items:
return compacted
for item in items:
if not isinstance(item, dict):
compacted.append(_trim_text(str(item)))
continue
entry = {}
for key, value in item.items():
# 仅记录必要字段,其他字段做字符串压缩
if isinstance(value, (str, int, float, bool)):
entry[key] = _trim_text(str(value))
else:
try:
entry[key] = _trim_text(json.dumps(value, ensure_ascii=False))
except Exception:
entry[key] = _trim_text(str(value))
compacted.append(entry)
return compacted
# 初始化 knowledge_query.log
init_knowledge_log()
# 启动ForumEngine智能监控
def start_forum_engine():
"""启动ForumEngine论坛"""
try:
from ForumEngine.monitor import start_forum_monitoring
logger.info("ForumEngine: 启动论坛...")
success = start_forum_monitoring()
if not success:
logger.info("ForumEngine: 论坛启动失败")
except Exception as e:
logger.exception(f"ForumEngine: 启动论坛失败: {e}")
# 停止ForumEngine智能监控
def stop_forum_engine():
"""停止ForumEngine论坛"""
try:
from ForumEngine.monitor import stop_forum_monitoring
logger.info("ForumEngine: 停止论坛...")
stop_forum_monitoring()
logger.info("ForumEngine: 论坛已停止")
except Exception as e:
logger.exception(f"ForumEngine: 停止论坛失败: {e}")
def parse_forum_log_line(line):
"""解析forum.log行内容,提取对话信息"""
import re
# 匹配格式: [时间] [来源] 内容(来源允许大小写及空格)
pattern = r'\[(\d{2}:\d{2}:\d{2})\]\s*\[([^\]]+)\]\s*(.*)'
match = re.match(pattern, line)
if not match:
return None
timestamp, raw_source, content = match.groups()
source = raw_source.strip().upper()
# 过滤掉系统消息和空内容
if source == 'SYSTEM' or not content.strip():
return None
# 支持三个Agent和主持人
if source not in ['QUERY', 'INSIGHT', 'MEDIA', 'HOST']:
return None
# 解码日志中的转义换行,保留多行格式
cleaned_content = content.replace('\\n', '\n').replace('\\r', '').strip()
# 根据来源确定消息类型和发送者
if source == 'HOST':
message_type = 'host'
sender = 'Forum Host'
else:
message_type = 'agent'
sender = f'{source.title()} Engine'
return {
'type': message_type,
'sender': sender,
'content': cleaned_content,
'timestamp': timestamp,
'source': source
}
# Forum日志监听器
# 存储每个客户端的历史日志发送位置
forum_log_positions = {}
def monitor_forum_log():
"""监听forum.log文件变化并推送到前端"""
import time
from pathlib import Path
forum_log_file = LOG_DIR / "forum.log"
last_position = 0
processed_lines = set() # 用于跟踪已处理的行,避免重复
# 如果文件存在,获取初始位置但不跳过内容
if forum_log_file.exists():
with open(forum_log_file, 'r', encoding='utf-8', errors='ignore') as f:
# 记录文件大小,但不添加到processed_lines
# 这样用户打开forum标签时可以获取历史
f.seek(0, 2) # 移到文件末尾
last_position = f.tell()
while True:
try:
if forum_log_file.exists():
with open(forum_log_file, 'r', encoding='utf-8', errors='ignore') as f:
f.seek(last_position)
new_lines = f.readlines()
if new_lines:
for line in new_lines:
line = line.rstrip('\n\r')
if line.strip():
line_hash = hash(line.strip())
# 避免重复处理同一行
if line_hash in processed_lines:
continue
processed_lines.add(line_hash)
# 解析日志行并发送forum消息
parsed_message = parse_forum_log_line(line)
if parsed_message:
socketio.emit('forum_message', parsed_message)
# 只有在控制台显示forum时才发送控制台消息
timestamp = datetime.now().strftime('%H:%M:%S')
formatted_line = f"[{timestamp}] {line}"
socketio.emit('console_output', {
'app': 'forum',
'line': formatted_line
})
last_position = f.tell()
# 清理processed_lines集合,避免内存泄漏(保留最近1000行的哈希)
if len(processed_lines) > 1000:
# 保留最近500行的哈希
recent_hashes = list(processed_lines)[-500:]
processed_lines = set(recent_hashes)
time.sleep(1) # 每秒检查一次
except Exception as e:
logger.error(f"Forum日志监听错误: {e}")
time.sleep(5)
# 启动Forum日志监听线程
forum_monitor_thread = threading.Thread(target=monitor_forum_log, daemon=True)
forum_monitor_thread.start()
# 全局变量存储进程信息
processes = {
'insight': {'process': None, 'port': 8501, 'status': 'stopped', 'output': [], 'log_file': None},
'media': {'process': None, 'port': 8502, 'status': 'stopped', 'output': [], 'log_file': None},
'query': {'process': None, 'port': 8503, 'status': 'stopped', 'output': [], 'log_file': None},
'forum': {'process': None, 'port': None, 'status': 'stopped', 'output': [], 'log_file': None} # 启动后标记为 running
}
STREAMLIT_SCRIPTS = {
'insight': 'SingleEngineApp/insight_engine_streamlit_app.py',
'media': 'SingleEngineApp/media_engine_streamlit_app.py',
'query': 'SingleEngineApp/query_engine_streamlit_app.py'
}
def _log_shutdown_step(message: str):
"""统一记录关机步骤,便于排查。"""
logger.info(f"[Shutdown] {message}")
def _describe_running_children():
"""列出当前存活的子进程。"""
running = []
for name, info in processes.items():
proc = info.get('process')
if proc is not None and proc.poll() is None:
port_desc = f", port={info.get('port')}" if info.get('port') else ""
running.append(f"{name}(pid={proc.pid}{port_desc})")
return running
# 输出队列
output_queues = {
'insight': Queue(),
'media': Queue(),
'query': Queue(),
'forum': Queue()
}
def write_log_to_file(app_name, line):
"""将日志写入文件"""
try:
log_file_path = LOG_DIR / f"{app_name}.log"
with open(log_file_path, 'a', encoding='utf-8') as f:
f.write(line + '\n')
f.flush()
except Exception as e:
logger.error(f"Error writing log for {app_name}: {e}")
def read_log_from_file(app_name, tail_lines=None):
"""从文件读取日志"""
try:
log_file_path = LOG_DIR / f"{app_name}.log"
if not log_file_path.exists():
return []
with open(log_file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
lines = [line.rstrip('\n\r') for line in lines if line.strip()]
if tail_lines:
return lines[-tail_lines:]
return lines
except Exception as e:
logger.exception(f"Error reading log for {app_name}: {e}")
return []
def read_process_output(process, app_name):
"""读取进程输出并写入文件"""
import select
import sys
while True:
try:
if process.poll() is not None:
# 进程结束,读取剩余输出
remaining_output = process.stdout.read()
if remaining_output:
lines = remaining_output.decode('utf-8', errors='replace').split('\n')
for line in lines:
line = line.strip()
if line:
timestamp = datetime.now().strftime('%H:%M:%S')
formatted_line = f"[{timestamp}] {line}"
write_log_to_file(app_name, formatted_line)
socketio.emit('console_output', {
'app': app_name,
'line': formatted_line
})
break
# 使用非阻塞读取
if sys.platform == 'win32':
# Windows下使用不同的方法
output = process.stdout.readline()
if output:
line = output.decode('utf-8', errors='replace').strip()
if line:
timestamp = datetime.now().strftime('%H:%M:%S')
formatted_line = f"[{timestamp}] {line}"
# 写入日志文件
write_log_to_file(app_name, formatted_line)
# 发送到前端
socketio.emit('console_output', {
'app': app_name,
'line': formatted_line
})
else:
# 没有输出时短暂休眠
time.sleep(0.1)
else:
# Unix系统使用select
ready, _, _ = select.select([process.stdout], [], [], 0.1)
if ready:
output = process.stdout.readline()
if output:
line = output.decode('utf-8', errors='replace').strip()
if line:
timestamp = datetime.now().strftime('%H:%M:%S')
formatted_line = f"[{timestamp}] {line}"
# 写入日志文件
write_log_to_file(app_name, formatted_line)
# 发送到前端
socketio.emit('console_output', {
'app': app_name,
'line': formatted_line
})
except Exception as e:
error_msg = f"Error reading output for {app_name}: {e}"
logger.exception(error_msg)
write_log_to_file(app_name, f"[{datetime.now().strftime('%H:%M:%S')}] {error_msg}")
break
def start_streamlit_app(app_name, script_path, port):
"""启动Streamlit应用"""
try:
if processes[app_name]['process'] is not None:
return False, "应用已经在运行"
# 检查文件是否存在
if not os.path.exists(script_path):
return False, f"文件不存在: {script_path}"
# 清空之前的日志文件
log_file_path = LOG_DIR / f"{app_name}.log"
if log_file_path.exists():
log_file_path.unlink()
# 创建启动日志
start_msg = f"[{datetime.now().strftime('%H:%M:%S')}] 启动 {app_name} 应用..."
write_log_to_file(app_name, start_msg)
cmd = [
sys.executable, '-m', 'streamlit', 'run',
script_path,
'--server.port', str(port),
'--server.headless', 'true',
'--browser.gatherUsageStats', 'false',
# '--logger.level', 'debug', # 增加日志详细程度
'--logger.level', 'info',
'--server.enableCORS', 'false'
]
# 设置环境变量确保UTF-8编码和减少缓冲
env = os.environ.copy()
env.update({
'PYTHONIOENCODING': 'utf-8',
'PYTHONUTF8': '1',
'LANG': 'en_US.UTF-8',
'LC_ALL': 'en_US.UTF-8',
'PYTHONUNBUFFERED': '1', # 禁用Python缓冲
'STREAMLIT_BROWSER_GATHER_USAGE_STATS': 'false'
})
# 使用当前工作目录而不是脚本目录
process = subprocess.Popen(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
bufsize=0, # 无缓冲
universal_newlines=False,
cwd=os.getcwd(),
env=env,
encoding=None, # 让我们手动处理编码
creationflags=subprocess.CREATE_NO_WINDOW if sys.platform == 'win32' else 0
)
processes[app_name]['process'] = process
processes[app_name]['status'] = 'starting'
processes[app_name]['output'] = []
# 启动输出读取线程
output_thread = threading.Thread(
target=read_process_output,
args=(process, app_name),
daemon=True
)
output_thread.start()
return True, f"{app_name} 应用启动中..."
except Exception as e:
error_msg = f"启动失败: {str(e)}"
write_log_to_file(app_name, f"[{datetime.now().strftime('%H:%M:%S')}] {error_msg}")
return False, error_msg
def stop_streamlit_app(app_name):
"""停止Streamlit应用"""
try:
process = processes[app_name]['process']
if process is None:
_log_shutdown_step(f"{app_name} 未运行,跳过停止")
return False, "应用未运行"
try:
pid = process.pid
except Exception:
pid = 'unknown'
_log_shutdown_step(f"正在停止 {app_name} (pid={pid})")
process.terminate()
# 等待进程结束
try:
process.wait(timeout=5)
_log_shutdown_step(f"{app_name} 退出完成,returncode={process.returncode}")
except subprocess.TimeoutExpired:
_log_shutdown_step(f"{app_name} 终止超时,尝试强制结束 (pid={pid})")
process.kill()
process.wait()
_log_shutdown_step(f"{app_name} 已强制结束,returncode={process.returncode}")
processes[app_name]['process'] = None
processes[app_name]['status'] = 'stopped'
return True, f"{app_name} 应用已停止"
except Exception as e:
_log_shutdown_step(f"{app_name} 停止失败: {e}")
return False, f"停止失败: {str(e)}"
HEALTHCHECK_PATH = "/_stcore/health"
HEALTHCHECK_PROXIES = {'http': None, 'https': None}
def _build_healthcheck_url(port):
return f"http://127.0.0.1:{port}{HEALTHCHECK_PATH}"
def check_app_status():
"""检查应用状态"""
for app_name, info in processes.items():
if info['process'] is not None:
if info['process'].poll() is None:
# 进程仍在运行,检查端口是否可访问
try:
response = requests.get(
_build_healthcheck_url(info['port']),
timeout=2,
proxies=HEALTHCHECK_PROXIES
)
if response.status_code == 200:
info['status'] = 'running'
else:
info['status'] = 'starting'
except Exception as exc:
logger.warning(f"{app_name} 健康检查失败: {exc}")
info['status'] = 'starting'
else:
# 进程已结束
info['process'] = None
info['status'] = 'stopped'
def wait_for_app_startup(app_name, max_wait_time=90):
"""等待应用启动完成"""
import time
start_time = time.time()
while time.time() - start_time < max_wait_time:
info = processes[app_name]
if info['process'] is None:
return False, "进程已停止"
if info['process'].poll() is not None:
return False, "进程启动失败"
try:
response = requests.get(
_build_healthcheck_url(info['port']),
timeout=2,
proxies=HEALTHCHECK_PROXIES
)
if response.status_code == 200:
info['status'] = 'running'
return True, "启动成功"
except Exception as exc:
logger.warning(f"{app_name} 健康检查失败: {exc}")
time.sleep(1)
return False, "启动超时"
def cleanup_processes():
"""清理所有进程"""
_log_shutdown_step("开始串行清理子进程")
for app_name in STREAMLIT_SCRIPTS:
stop_streamlit_app(app_name)
processes['forum']['status'] = 'stopped'
try:
stop_forum_engine()
except Exception: # pragma: no cover
logger.exception("停止ForumEngine失败")
_log_shutdown_step("子进程清理完成")
_set_system_state(started=False, starting=False)
def cleanup_processes_concurrent(timeout: float = 6.0):
"""并发清理所有子进程,超时后强制杀掉残留进程。"""
_log_shutdown_step(f"开始并发清理子进程(超时 {timeout}s)")
_log_shutdown_step("仅终止当前控制台启动并记录的子进程,不做端口扫描")
running_before = _describe_running_children()
if running_before:
_log_shutdown_step("当前存活子进程: " + ", ".join(running_before))
else:
_log_shutdown_step("未检测到存活子进程,仍将发送关闭指令")
threads = []
# 并发关闭 Streamlit 子进程
for app_name in STREAMLIT_SCRIPTS:
t = threading.Thread(target=stop_streamlit_app, args=(app_name,), daemon=True)
threads.append(t)
t.start()
# 并发关闭 ForumEngine
forum_thread = threading.Thread(target=stop_forum_engine, daemon=True)
threads.append(forum_thread)
forum_thread.start()
# 等待所有线程完成,最多 timeout 秒
end_time = time.time() + timeout
for t in threads:
remaining = end_time - time.time()
if remaining <= 0:
break
t.join(timeout=remaining)
# 二次检查:强制杀掉仍存活的子进程
for app_name in STREAMLIT_SCRIPTS:
proc = processes[app_name]['process']
if proc is not None and proc.poll() is None:
try:
_log_shutdown_step(f"{app_name} 进程仍存活,触发二次终止 (pid={proc.pid})")
proc.terminate()
proc.wait(timeout=1)
except Exception:
try:
_log_shutdown_step(f"{app_name} 二次终止失败,尝试kill (pid={proc.pid})")
proc.kill()
proc.wait(timeout=1)
except Exception:
logger.warning(f"{app_name} 进程强制退出失败,继续关机")
finally:
processes[app_name]['process'] = None
processes[app_name]['status'] = 'stopped'
processes['forum']['status'] = 'stopped'
_log_shutdown_step("并发清理结束,标记系统未启动")
_set_system_state(started=False, starting=False)
def _schedule_server_shutdown(delay_seconds: float = 0.1):
"""在清理完成后尽快退出,避免阻塞当前请求。"""
def _shutdown():
time.sleep(delay_seconds)
try:
socketio.stop()
except Exception as exc: # pragma: no cover
logger.warning(f"SocketIO 停止时异常,继续退出: {exc}")
_log_shutdown_step("SocketIO 停止指令已发送,即将退出主进程")
os._exit(0)
threading.Thread(target=_shutdown, daemon=True).start()
def _start_async_shutdown(cleanup_timeout: float = 3.0):
"""异步触发清理并强制退出,避免HTTP请求阻塞。"""
_log_shutdown_step(f"收到关机指令,启动异步清理(超时 {cleanup_timeout}s)")
def _force_exit():
_log_shutdown_step("关机超时,触发强制退出")
os._exit(0)
# 硬超时保护,即便清理线程异常也能退出
hard_timeout = cleanup_timeout + 2.0
force_timer = threading.Timer(hard_timeout, _force_exit)
force_timer.daemon = True
force_timer.start()
def _cleanup_and_exit():
try:
cleanup_processes_concurrent(timeout=cleanup_timeout)
except Exception as exc: # pragma: no cover
logger.exception(f"关机清理异常: {exc}")
finally:
_log_shutdown_step("清理线程结束,调度主进程退出")
_schedule_server_shutdown(0.05)
threading.Thread(target=_cleanup_and_exit, daemon=True).start()
# 注册清理函数
atexit.register(cleanup_processes)
@app.route('/')
def index():
"""主页"""
return render_template('index.html')
@app.route('/api/status')
def get_status():
"""获取所有应用状态"""
check_app_status()
return jsonify({
app_name: {
'status': info['status'],
'port': info['port'],
'output_lines': len(info['output'])
}
for app_name, info in processes.items()
})
@app.route('/api/start/<app_name>')
def start_app(app_name):
"""启动指定应用"""
if app_name not in processes:
return jsonify({'success': False, 'message': '未知应用'})
if app_name == 'forum':
try:
start_forum_engine()
processes['forum']['status'] = 'running'
return jsonify({'success': True, 'message': 'ForumEngine已启动'})
except Exception as exc: # pragma: no cover
logger.exception("手动启动ForumEngine失败")
return jsonify({'success': False, 'message': f'ForumEngine启动失败: {exc}'})
script_path = STREAMLIT_SCRIPTS.get(app_name)
if not script_path:
return jsonify({'success': False, 'message': '该应用不支持启动操作'})
success, message = start_streamlit_app(
app_name,
script_path,
processes[app_name]['port']
)
if success:
# 等待应用启动
startup_success, startup_message = wait_for_app_startup(app_name, 15)
if not startup_success:
message += f" 但启动检查失败: {startup_message}"
return jsonify({'success': success, 'message': message})
@app.route('/api/stop/<app_name>')
def stop_app(app_name):
"""停止指定应用"""
if app_name not in processes:
return jsonify({'success': False, 'message': '未知应用'})
if app_name == 'forum':
try:
stop_forum_engine()
processes['forum']['status'] = 'stopped'
return jsonify({'success': True, 'message': 'ForumEngine已停止'})
except Exception as exc: # pragma: no cover
logger.exception("手动停止ForumEngine失败")
return jsonify({'success': False, 'message': f'ForumEngine停止失败: {exc}'})
success, message = stop_streamlit_app(app_name)
return jsonify({'success': success, 'message': message})
@app.route('/api/output/<app_name>')
def get_output(app_name):
"""获取应用输出"""
if app_name not in processes:
return jsonify({'success': False, 'message': '未知应用'})
# 特殊处理Forum Engine
if app_name == 'forum':
try:
forum_log_content = read_log_from_file('forum')
return jsonify({
'success': True,
'output': forum_log_content,
'total_lines': len(forum_log_content)
})
except Exception as e:
return jsonify({'success': False, 'message': f'读取forum日志失败: {str(e)}'})
# 从文件读取完整日志
output_lines = read_log_from_file(app_name)
return jsonify({
'success': True,
'output': output_lines
})
@app.route('/api/test_log/<app_name>')
def test_log(app_name):
"""测试日志写入功能"""
if app_name not in processes:
return jsonify({'success': False, 'message': '未知应用'})
# 写入测试消息
test_msg = f"[{datetime.now().strftime('%H:%M:%S')}] 测试日志消息 - {datetime.now()}"
write_log_to_file(app_name, test_msg)
# 通过Socket.IO发送
socketio.emit('console_output', {
'app': app_name,
'line': test_msg
})
return jsonify({
'success': True,
'message': f'测试消息已写入 {app_name} 日志'
})
@app.route('/api/forum/start')
def start_forum_monitoring_api():
"""手动启动ForumEngine论坛"""
try:
from ForumEngine.monitor import start_forum_monitoring
success = start_forum_monitoring()
if success:
return jsonify({'success': True, 'message': 'ForumEngine论坛已启动'})
else:
return jsonify({'success': False, 'message': 'ForumEngine论坛启动失败'})
except Exception as e:
return jsonify({'success': False, 'message': f'启动论坛失败: {str(e)}'})
@app.route('/api/forum/stop')
def stop_forum_monitoring_api():
"""手动停止ForumEngine论坛"""
try:
from ForumEngine.monitor import stop_forum_monitoring
stop_forum_monitoring()
return jsonify({'success': True, 'message': 'ForumEngine论坛已停止'})
except Exception as e:
return jsonify({'success': False, 'message': f'停止论坛失败: {str(e)}'})
@app.route('/api/forum/log')
def get_forum_log():
"""获取ForumEngine的forum.log内容"""
try:
forum_log_file = LOG_DIR / "forum.log"
if not forum_log_file.exists():
return jsonify({
'success': True,
'log_lines': [],
'parsed_messages': [],
'total_lines': 0
})
with open(forum_log_file, 'r', encoding='utf-8', errors='ignore') as f:
lines = f.readlines()
lines = [line.rstrip('\n\r') for line in lines if line.strip()]
# 解析每一行日志并提取对话信息
parsed_messages = []
for line in lines:
parsed_message = parse_forum_log_line(line)
if parsed_message:
parsed_messages.append(parsed_message)
return jsonify({
'success': True,
'log_lines': lines,
'parsed_messages': parsed_messages,
'total_lines': len(lines)
})
except Exception as e:
return jsonify({'success': False, 'message': f'读取forum.log失败: {str(e)}'})
@app.route('/api/forum/log/history', methods=['POST'])
def get_forum_log_history():
"""获取Forum历史日志(支持从指定位置开始)"""
try:
data = request.get_json()
start_position = data.get('position', 0) # 客户端上次接收的位置
max_lines = data.get('max_lines', 1000) # 最多返回的行数
forum_log_file = LOG_DIR / "forum.log"
if not forum_log_file.exists():
return jsonify({
'success': True,
'log_lines': [],
'position': 0,
'has_more': False
})
with open(forum_log_file, 'r', encoding='utf-8', errors='ignore') as f:
# 从指定位置开始读取
f.seek(start_position)
lines = []
line_count = 0
for line in f:
if line_count >= max_lines:
break
line = line.rstrip('\n\r')
if line.strip():
# 添加时间戳
timestamp = datetime.now().strftime('%H:%M:%S')
formatted_line = f"[{timestamp}] {line}"
lines.append(formatted_line)
line_count += 1
# 记录当前位置
current_position = f.tell()
# 检查是否还有更多内容
f.seek(0, 2) # 移到文件末尾
end_position = f.tell()
has_more = current_position < end_position
return jsonify({
'success': True,
'log_lines': lines,
'position': current_position,
'has_more': has_more
})
except Exception as e:
return jsonify({'success': False, 'message': f'读取forum历史失败: {str(e)}'})
@app.route('/api/search', methods=['POST'])
def search():
"""统一搜索接口"""
data = request.get_json()
query = data.get('query', '').strip()
if not query:
return jsonify({'success': False, 'message': '搜索查询不能为空'})
# ForumEngine论坛已经在后台运行,会自动检测搜索活动
# logger.info("ForumEngine: 搜索请求已收到,论坛将自动检测日志变化")
# 检查哪些应用正在运行
check_app_status()
running_apps = [name for name, info in processes.items() if info['status'] == 'running']
if not running_apps:
return jsonify({'success': False, 'message': '没有运行中的应用'})
# 向运行中的应用发送搜索请求
results = {}
api_ports = {'insight': 8601, 'media': 8602, 'query': 8603}
for app_name in running_apps:
try:
api_port = api_ports[app_name]
# 调用Streamlit应用的API端点
response = requests.post(
f"http://localhost:{api_port}/api/search",
json={'query': query},
timeout=10
)
if response.status_code == 200:
results[app_name] = response.json()
else:
results[app_name] = {'success': False, 'message': 'API调用失败'}
except Exception as e:
results[app_name] = {'success': False, 'message': str(e)}
# 搜索完成后可以选择停止监控,或者让它继续运行以捕获后续的处理日志
# 这里我们让监控继续运行,用户可以通过其他接口手动停止
return jsonify({
'success': True,
'query': query,
'results': results
})
@app.route('/api/config', methods=['GET'])
def get_config():
"""Expose selected configuration values to the frontend."""
try:
config_values = read_config_values()
return jsonify({'success': True, 'config': config_values})
except Exception as exc:
logger.exception("读取配置失败")
return jsonify({'success': False, 'message': f'读取配置失败: {exc}'}), 500
@app.route('/api/config', methods=['POST'])
def update_config():
"""Update configuration values and persist them to config.py."""
payload = request.get_json(silent=True) or {}
if not isinstance(payload, dict) or not payload:
return jsonify({'success': False, 'message': '请求体不能为空'}), 400
updates = {}
for key, value in payload.items():
if key in CONFIG_KEYS:
updates[key] = value if value is not None else ''
if not updates:
return jsonify({'success': False, 'message': '没有可更新的配置项'}), 400
try:
write_config_values(updates)
updated_config = read_config_values()
return jsonify({'success': True, 'config': updated_config})
except Exception as exc:
logger.exception("更新配置失败")
return jsonify({'success': False, 'message': f'更新配置失败: {exc}'}), 500
@app.route('/api/system/status')
def get_system_status():
"""返回系统启动状态。"""
state = _get_system_state()
return jsonify({
'success': True,
'started': state['started'],
'starting': state['starting']
})
@app.route('/api/system/start', methods=['POST'])
def start_system():
"""在接收到请求后启动完整系统。"""
allowed, message = _prepare_system_start()
if not allowed:
return jsonify({'success': False, 'message': message}), 400
try:
success, logs, errors = initialize_system_components()
if success:
_set_system_state(started=True)
return jsonify({'success': True, 'message': '系统启动成功', 'logs': logs})
_set_system_state(started=False)
return jsonify({
'success': False,
'message': '系统启动失败',
'logs': logs,
'errors': errors
}), 500
except Exception as exc: # pragma: no cover - 保底捕获
logger.exception("系统启动过程中出现异常")
_set_system_state(started=False)
return jsonify({'success': False, 'message': f'系统启动异常: {exc}'}), 500
finally:
_set_system_state(starting=False)
@app.route('/api/system/shutdown', methods=['POST'])
def shutdown_system():
"""优雅停止所有组件并关闭当前服务进程。"""
state = _get_system_state()
if state['starting']:
return jsonify({'success': False, 'message': '系统正在启动/重启,请稍候'}), 400
target_ports = [
f"{name}:{info['port']}"
for name, info in processes.items()
if info.get('port')
]
# 已有关机请求执行中时,返回当前存活的子进程,便于前端判断进度
if not _mark_shutdown_requested():
running = _describe_running_children()
detail = '关机指令已下发,请稍等...'
if running:
detail = f"关机指令已下发,等待进程退出: {', '.join(running)}"
if target_ports:
detail = f"{detail}(端口: {', '.join(target_ports)})"
return jsonify({'success': True, 'message': detail, 'ports': target_ports})
running = _describe_running_children()
if running:
_log_shutdown_step("开始关闭系统,正在等待子进程退出: " + ", ".join(running))
else:
_log_shutdown_step("开始关闭系统,未检测到存活子进程")
try:
_set_system_state(started=False, starting=False)
_start_async_shutdown(cleanup_timeout=6.0)
message = '关闭系统指令已下发,正在停止进程'
if running:
message = f"{message}: {', '.join(running)}"
if target_ports:
message = f"{message}(端口: {', '.join(target_ports)})"
return jsonify({'success': True, 'message': message, 'ports': target_ports})
except Exception as exc: # pragma: no cover - 兜底捕获
logger.exception("系统关闭过程中出现异常")
return jsonify({'success': False, 'message': f'系统关闭异常: {exc}'}), 500
# ==================== GraphRAG API 端点 ====================
@app.route('/api/graph/<report_id>')
def get_graph_data(report_id):
"""
获取指定报告的知识图谱数据。
返回格式适合前端 Vis.js 渲染:
- nodes: [{id, label, group, title, properties}]
- edges: [{from, to, label}]
"""
try:
from ReportEngine.graphrag import GraphStorage, Graph
# 从默认存储位置查找图谱文件
storage = GraphStorage()
graph_path = storage.find_graph_by_report_id(report_id)
if not graph_path or not graph_path.exists():
return jsonify({
'success': False,
'message': f'未找到报告 {report_id} 的知识图谱数据'
}), 404
graph = storage.load(graph_path)
# 检查图谱是否成功加载(文件可能损坏或格式错误)
if graph is None:
return jsonify({
'success': False,
'message': f'图谱文件损坏或格式错误: {report_id}'
}), 500
# 转换为 Vis.js 格式
vis_nodes = []
vis_edges = []
for node_id, node in graph.nodes.items():
vis_nodes.append({
'id': node_id,
'label': node.label or node_id,
'group': node.type,
'title': _format_node_tooltip(node),
'properties': node.properties
})
for edge in graph.edges:
vis_edges.append({
'from': edge.source,
'to': edge.target,
'label': edge.relation,
'arrows': 'to'
})
return jsonify({
'success': True,
'graph': {
'nodes': vis_nodes,
'edges': vis_edges,
'stats': graph.get_stats()
}
})
except Exception as e:
logger.exception(f"获取图谱数据失败: {e}")
return jsonify({
'success': False,
'message': f'获取图谱数据失败: {str(e)}'
}), 500
@app.route('/api/graph/latest')
def get_latest_graph():
"""获取最近一次生成的知识图谱数据。"""
try:
from ReportEngine.graphrag import GraphStorage
storage = GraphStorage()
latest_path = storage.find_latest_graph()
if not latest_path or not latest_path.exists():
return jsonify({
'success': False,
'message': '暂无可用的知识图谱数据'
}), 404
graph = storage.load(latest_path)
report_id = latest_path.parent.name if latest_path.parent else 'unknown'
# 检查图谱是否成功加载(文件可能损坏或格式错误)
if graph is None:
return jsonify({
'success': False,
'message': '图谱文件损坏或格式错误'
}), 500
# 转换为 Vis.js 格式
vis_nodes = []
vis_edges = []
for node_id, node in graph.nodes.items():
vis_nodes.append({
'id': node_id,
'label': node.label or node_id,
'group': node.type,
'title': _format_node_tooltip(node),
'properties': node.properties
})
for edge in graph.edges:
vis_edges.append({
'from': edge.source,
'to': edge.target,
'label': edge.relation,
'arrows': 'to'
})
return jsonify({
'success': True,
'report_id': report_id,
'graph': {
'nodes': vis_nodes,
'edges': vis_edges,
'stats': graph.get_stats()
}
})
except Exception as e:
logger.exception(f"获取最新图谱失败: {e}")
return jsonify({
'success': False,
'message': f'获取最新图谱失败: {str(e)}'
}), 500
@app.route('/graph-viewer')
@app.route('/graph-viewer/')
@app.route('/graph-viewer/<report_id>')
def graph_viewer(report_id=None):
"""
知识图谱可视化页面。
提供交互式图谱展示,支持:
- 全屏模式
- 缩放、拖拽
- 节点详情查看
- 筛选和搜索
"""
return render_template('graph_viewer.html', report_id=report_id)
@app.route('/api/graph/query', methods=['POST'])
def query_graph():
"""
查询知识图谱。
请求体:
{
"report_id": "xxx", // 可选,默认使用最新图谱
"keywords": ["关键词1", "关键词2"],
"node_types": ["section", "source"],
"depth": 2
}
"""
try:
from ReportEngine.graphrag import GraphStorage, QueryEngine, QueryParams
data = request.get_json() or {}
report_id = data.get('report_id')
# 记录查询日志(关键词、过滤条件等)
append_knowledge_log(
'GRAPH_QUERY',
{
'report_id': report_id,
'keywords': data.get('keywords', []),
'node_types': data.get('node_types'),
'depth': data.get('depth', 1),
'engine_filter': data.get('engine_filter')
}
)
storage = GraphStorage()
if report_id:
graph_path = storage.find_graph_by_report_id(report_id)
else:
graph_path = storage.find_latest_graph()
if not graph_path or not graph_path.exists():
return jsonify({
'success': False,
'message': '未找到可用的知识图谱'
}), 404
graph = storage.load(graph_path)
# 检查图谱是否成功加载(文件可能损坏或格式错误)
if graph is None:
return jsonify({
'success': False,
'message': '图谱文件损坏或格式错误'
}), 500
query_engine = QueryEngine(graph)
params = QueryParams(
keywords=data.get('keywords', []),
node_types=data.get('node_types'),
engine_filter=data.get('engine_filter'),
depth=data.get('depth', 1)
)
result = query_engine.query(params)
try:
append_knowledge_log(
'GRAPH_QUERY_RESULT',
{
'report_id': report_id or 'latest',
'counts': {
'matched_sections': len(result.matched_sections),
'matched_queries': len(result.matched_queries),
'matched_sources': len(result.matched_sources),
'total_nodes': result.total_nodes,
},
'query_params': result.query_params,
'matched_sections': _compact_records(result.matched_sections),
'matched_queries': _compact_records(result.matched_queries),
'matched_sources': _compact_records(result.matched_sources),
}
)
except Exception as log_exc: # pragma: no cover - 日志失败不阻塞主流程
logger.warning(f"Knowledge Query: 结果写日志失败: {log_exc}")
return jsonify({
'success': True,
'result': {
'matched_sections': result.matched_sections,
'matched_queries': result.matched_queries,
'matched_sources': result.matched_sources,
'total_nodes': result.total_nodes,
'query_params': result.query_params,
'summary': result.get_summary()
}
})
except Exception as e:
logger.exception(f"图谱查询失败: {e}")
return jsonify({
'success': False,
'message': f'图谱查询失败: {str(e)}'
}), 500
def _format_node_tooltip(node) -> str:
"""格式化节点悬停提示文本。"""
lines = [f"<b>{node.label or node.id}</b>"]
lines.append(f"类型: {node.type}")
props = node.properties or {}
if 'summary' in props:
lines.append(f"摘要: {props['summary'][:100]}...")
if 'content' in props:
lines.append(f"内容: {props['content'][:80]}...")
if 'url' in props:
lines.append(f"链接: {props['url']}")
if 'query' in props:
lines.append(f"查询: {props['query']}")
return "<br>".join(lines)
# ==================== GraphRAG API 端点结束 ====================
@socketio.on('connect')
def handle_connect():
"""客户端连接"""
emit('status', 'Connected to Flask server')
@socketio.on('request_status')
def handle_status_request():
"""请求状态更新"""
check_app_status()
emit('status_update', {
app_name: {
'status': info['status'],
'port': info['port']
}
for app_name, info in processes.items()
})
if __name__ == '__main__':
# 从配置文件读取 HOST 和 PORT
from config import settings
HOST = settings.HOST
PORT = settings.PORT
logger.info("等待配置确认,系统将在前端指令后启动组件...")
logger.info(f"Flask服务器已启动,访问地址: http://{HOST}:{PORT}")
try:
socketio.run(app, host=HOST, port=PORT, debug=False)
except KeyboardInterrupt:
logger.info("\n正在关闭应用...")
cleanup_processes()