Spaces:
Running
Running
File size: 15,839 Bytes
b5b56ea |
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 |
#!/usr/bin/env python3
"""
Chapter Extraction Manager - Manages chapter extraction in subprocess to prevent GUI freezing
"""
import subprocess
import sys
import os
import json
import threading
import queue
import time
from pathlib import Path
class ChapterExtractionManager:
"""
Manages chapter extraction in a separate process to prevent GUI freezing
Similar to GlossaryManager but for chapter extraction
"""
def __init__(self, log_callback=None):
"""
Initialize the extraction manager
Args:
log_callback: Function to call with log messages (for GUI integration)
"""
self.log_callback = log_callback
self.process = None
self.output_queue = queue.Queue()
self.error_queue = queue.Queue()
self.result = None
self.is_running = False
self.stop_requested = False
def extract_chapters_async(self, epub_path, output_dir, extraction_mode="smart",
progress_callback=None, completion_callback=None):
"""
Start chapter extraction in a subprocess
Args:
epub_path: Path to EPUB file
output_dir: Output directory for extracted content
extraction_mode: Extraction mode (smart, comprehensive, full, enhanced)
progress_callback: Function to call with progress updates
completion_callback: Function to call when extraction completes
"""
if self.is_running:
self._log("β οΈ Chapter extraction already in progress")
return False
self.is_running = True
self.stop_requested = False
self.result = None
# Start extraction in a thread that manages the subprocess
thread = threading.Thread(
target=self._run_extraction_subprocess,
args=(epub_path, output_dir, extraction_mode, progress_callback, completion_callback),
daemon=True
)
thread.start()
return True
def _run_extraction_subprocess(self, epub_path, output_dir, extraction_mode,
progress_callback, completion_callback):
"""
Run the extraction subprocess and handle its output
"""
try:
# Build command differently for frozen vs dev mode
if getattr(sys, 'frozen', False):
# In a frozen one-file build, sys.executable is our GUI .exe, not Python.
# Use an internal worker-mode flag handled by translator_gui.py to run the worker.
cmd = [
sys.executable,
'--run-chapter-extraction',
epub_path,
output_dir,
extraction_mode
]
else:
# In dev mode, invoke the worker script with the Python interpreter
base_dir = Path(__file__).parent
worker_script = base_dir / "chapter_extraction_worker.py"
cmd = [
sys.executable,
str(worker_script),
epub_path,
output_dir,
extraction_mode
]
# Set environment to force UTF-8 encoding
env = os.environ.copy()
env['PYTHONIOENCODING'] = 'utf-8'
env['PYTHONLEGACYWINDOWSSTDIO'] = '0' # Use new Windows console API
# Set default worker count if not already set
env.setdefault('EXTRACTION_WORKERS', '2')
self._log(f"π Starting chapter extraction subprocess...")
self._log(f"π EPUB: {os.path.basename(epub_path)}")
self._log(f"π Output: {output_dir}")
self._log(f"βοΈ Mode: {extraction_mode}")
# Start the subprocess with UTF-8 encoding
self.process = subprocess.Popen(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
encoding='utf-8',
errors='replace', # Replace invalid chars instead of failing
bufsize=1,
universal_newlines=True,
env=env # Pass the environment with UTF-8 settings
)
# Read output in real-time
while True:
if self.stop_requested:
self._terminate_process()
break
# Check if process is still running
if self.process.poll() is not None:
break
# Read stdout line by line with error handling
try:
line = self.process.stdout.readline()
if not line:
continue
line = line.strip()
if not line:
continue
except UnicodeDecodeError as e:
self._log(f"β οΈ Encoding error reading output: {e}")
continue
# Skip all processing if stop is requested to suppress logs
if self.stop_requested:
continue
# Parse output based on prefix
if line.startswith("[PROGRESS]"):
# Progress update
message = line[10:].strip()
if progress_callback:
progress_callback(message)
self._log(f"π {message}")
elif line.startswith("[INFO]"):
# Information message
message = line[6:].strip()
self._log(f"βΉοΈ {message}")
elif line.startswith("[ERROR]"):
# Error message
message = line[7:].strip()
self._log(f"β {message}")
self.error_queue.put(message)
elif line.startswith("[RESULT]"):
# Final result as JSON
try:
json_str = line[8:].strip()
self.result = json.loads(json_str)
if self.result.get("success"):
self._log(f"β
Extraction completed successfully!")
self._log(f"π Extracted {self.result.get('chapters', 0)} chapters")
else:
error = self.result.get("error", "Unknown error")
self._log(f"β Extraction failed: {error}")
except json.JSONDecodeError as e:
self._log(f"β οΈ Failed to parse result: {e}")
elif line.startswith("["):
# Other prefixed messages - skip
pass
else:
# Regular output - only log if not too verbose
if not any(skip in line for skip in ["π Searching for", "π Found", "π β", "π β"]):
self._log(line)
# Get any remaining output - but only process if not stopped
if not self.stop_requested:
remaining_output, remaining_error = self.process.communicate(timeout=1)
# Process any remaining output
if remaining_output:
for line in remaining_output.strip().split('\n'):
if line and not line.startswith("["):
self._log(line)
# Check for errors
if remaining_error:
for line in remaining_error.strip().split('\n'):
if line:
self._log(f"β οΈ {line}")
# Check final status
if self.process.returncode != 0:
self._log(f"β οΈ Process exited with code {self.process.returncode}")
else:
# If stopped, just clean up without processing output
try:
self.process.communicate(timeout=0.1)
except subprocess.TimeoutExpired:
pass # Ignore timeout when cleaning up
except subprocess.TimeoutExpired:
if not self.stop_requested:
self._log("β οΈ Subprocess communication timeout")
self._terminate_process()
except Exception as e:
# Only log errors if not stopping (unless it's a critical error)
if not self.stop_requested or "Subprocess error" in str(e):
self._log(f"β Subprocess error: {e}")
self.result = {
"success": False,
"error": str(e) if not self.stop_requested else "Extraction stopped by user"
}
finally:
self.is_running = False
# Store process reference before clearing it in case termination is needed
process_ref = self.process
self.process = None
# If process is still running, try to clean it up
if process_ref and process_ref.poll() is None:
try:
process_ref.terminate()
time.sleep(0.1) # Brief wait
if process_ref.poll() is None:
process_ref.kill()
except Exception:
pass # Ignore cleanup errors in finally block
# Ensure result is never None
if self.result is None:
if self.stop_requested:
self.result = {
"success": False,
"error": "Extraction stopped by user"
}
else:
self.result = {
"success": False,
"error": "Extraction process ended unexpectedly"
}
# Call completion callback
if completion_callback:
completion_callback(self.result)
def stop_extraction(self):
"""Stop the extraction process"""
if not self.is_running:
return False
# Set stop flag first to suppress subsequent logs
self.stop_requested = True
self._log("π Stopping chapter extraction...")
# Store process reference to avoid race condition
process_ref = self.process
# Give it a moment to stop gracefully
time.sleep(0.5)
# Force terminate if still running and process still exists
if process_ref:
self._terminate_process_ref(process_ref)
return True
def _terminate_process(self):
"""Terminate the subprocess using current process reference"""
if self.process:
self._terminate_process_ref(self.process)
def _terminate_process_ref(self, process_ref):
"""Terminate a specific process reference"""
if not process_ref:
return
try:
# Check if process is still alive before attempting termination
if process_ref.poll() is None:
process_ref.terminate()
# Give it a moment to terminate
time.sleep(0.5)
# Force kill if still running
if process_ref.poll() is None:
process_ref.kill()
time.sleep(0.1) # Brief wait after kill
# Only log termination if not stopping (user already knows they stopped it)
if not self.stop_requested:
self._log("β
Process terminated")
else:
# Only log if not stopping
if not self.stop_requested:
self._log("β
Process already terminated")
except Exception as e:
# Always log termination errors as they might indicate a problem
self._log(f"β οΈ Error terminating process: {e}")
def _log(self, message):
"""Log a message using the callback if available"""
# Suppress logs when stop is requested (except for stop/termination messages)
if self.stop_requested and not any(keyword in message for keyword in ["π", "β
Process terminated", "β Subprocess error"]):
return
if self.log_callback:
self.log_callback(message)
else:
print(message)
def is_extraction_running(self):
"""Check if extraction is currently running"""
return self.is_running
def get_result(self):
"""Get the extraction result if available"""
return self.result
# Example usage
if __name__ == "__main__":
import tkinter as tk
from tkinter import filedialog
def test_extraction():
"""Test the extraction manager"""
# Create a simple GUI for testing
root = tk.Tk()
root.title("Chapter Extraction Test")
root.geometry("800x600")
# Text widget for logs
text = tk.Text(root, wrap=tk.WORD)
text.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
# Log callback
def log_message(msg):
text.insert(tk.END, msg + "\n")
text.see(tk.END)
root.update_idletasks()
# Progress callback
def progress_update(msg):
log_message(f"π Progress: {msg}")
# Completion callback
def extraction_complete(result):
if result and result.get("success"):
log_message(f"β
Extraction completed!")
log_message(f" Chapters: {result.get('chapters', 0)}")
else:
log_message(f"β Extraction failed!")
# Create manager
manager = ChapterExtractionManager(log_callback=log_message)
# File selection
epub_path = filedialog.askopenfilename(
title="Select EPUB file",
filetypes=[("EPUB files", "*.epub"), ("All files", "*.*")]
)
if epub_path:
output_dir = os.path.splitext(os.path.basename(epub_path))[0]
# Start extraction
manager.extract_chapters_async(
epub_path,
output_dir,
extraction_mode="smart",
progress_callback=progress_update,
completion_callback=extraction_complete
)
# Button to stop
stop_btn = tk.Button(
root,
text="Stop Extraction",
command=lambda: manager.stop_extraction()
)
stop_btn.pack(pady=5)
root.mainloop()
# Run test
test_extraction() |