Atomic mv of root V1 assets (main_server.py + modules/ + data/ + tests/ + entry scripts + docs + logs) into signal_v1/ subdirectory. load_dotenv() updated to load web-ai/.env explicitly via Path. Adds web-ai/CLAUDE.md (workspace guide) and web-ai/start.bat (signal_v1 entry wrapper). Prepares for signal_v2/ Phase 2. Tests: signal_v1/tests/unit baseline preserved (no regression). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
92 lines
3.0 KiB
Python
92 lines
3.0 KiB
Python
"""
|
|
멀티프로세스 방식 - 텔레그램 봇 프로세스
|
|
트레이딩 봇과 완전히 분리된 독립 프로세스로 실행
|
|
"""
|
|
import os
|
|
import sys
|
|
import time
|
|
import multiprocessing
|
|
from pathlib import Path
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv(Path(__file__).parent.parent.parent.parent / ".env")
|
|
|
|
|
|
def run_telegram_bot_standalone(ipc_lock=None, command_queue=None, shutdown_event=None):
|
|
"""텔레그램 봇만 독립적으로 실행"""
|
|
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../')))
|
|
|
|
from modules.services.telegram_bot.server import TelegramBotServer
|
|
from modules.utils.ipc import SharedIPC
|
|
from modules.utils.process_tracker import ProcessTracker
|
|
|
|
token = os.getenv("TELEGRAM_BOT_TOKEN")
|
|
if not token:
|
|
print("[Telegram] TELEGRAM_BOT_TOKEN not found in .env")
|
|
sys.exit(1)
|
|
|
|
ProcessTracker.register("Telegram Bot Standalone")
|
|
print(f"[Telegram Bot Process] Starting... (PID: {os.getpid()})")
|
|
|
|
# IPC 초기화 (shared memory + command queue)
|
|
ipc = SharedIPC(lock=ipc_lock, command_queue=command_queue)
|
|
|
|
conflict_retries = 0
|
|
MAX_CONFLICT_RETRIES = 10
|
|
|
|
while True:
|
|
# shutdown 체크
|
|
if shutdown_event and shutdown_event.is_set():
|
|
print("[Telegram Bot] Shutdown signal received.")
|
|
break
|
|
|
|
try:
|
|
bot_server = TelegramBotServer(token, ipc=ipc, shutdown_event=shutdown_event)
|
|
|
|
# 초기 데이터 로드
|
|
try:
|
|
instance_data = ipc.get_bot_instance_data()
|
|
if instance_data:
|
|
bot_server.set_bot_instance(instance_data)
|
|
except Exception:
|
|
pass
|
|
|
|
bot_server.run()
|
|
|
|
if bot_server.should_restart:
|
|
print("[Telegram Bot] Restarting instance...")
|
|
conflict_retries = 0 # 정상 재시작 시 카운터 리셋
|
|
time.sleep(1)
|
|
continue
|
|
else:
|
|
print("[Telegram Bot] Process exiting.")
|
|
break
|
|
|
|
except KeyboardInterrupt:
|
|
print("[Telegram Bot] Stopped by user")
|
|
break
|
|
except Exception as e:
|
|
if "Conflict" in str(e):
|
|
conflict_retries += 1
|
|
if conflict_retries >= MAX_CONFLICT_RETRIES:
|
|
print(f"[Telegram Bot] Conflict max retries ({MAX_CONFLICT_RETRIES}) reached. Exiting.")
|
|
break
|
|
wait_secs = min(5 * conflict_retries, 30)
|
|
print(f"[Telegram Bot] Conflict detected. Waiting {wait_secs}s before retry "
|
|
f"({conflict_retries}/{MAX_CONFLICT_RETRIES})...")
|
|
time.sleep(wait_secs)
|
|
continue
|
|
else:
|
|
print(f"[Telegram Bot] Error: {e}")
|
|
import traceback
|
|
traceback.print_exc()
|
|
break
|
|
|
|
# 정리
|
|
ipc.cleanup()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
multiprocessing.freeze_support()
|
|
run_telegram_bot_standalone()
|