-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathrun.py
632 lines (540 loc) · 25.4 KB
/
run.py
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
import subprocess
import time
import platform
import os
import sys
import logging
import signal
from pathlib import Path
from typing import Optional, Tuple, List
class DirectoryManager:
"""Handles creation and permission setting for directories"""
def __init__(self, logger: Optional[logging.Logger] = None):
self.system = platform.system()
self.logger = logger or logging.getLogger(__name__)
def ensure_directory(self, directory: str | Path) -> bool:
"""
Create a directory and set appropriate permissions.
Returns True if successful, False otherwise.
"""
try:
Path(directory).mkdir(exist_ok=True)
if self.system == "Windows":
try:
subprocess.run(
["icacls", str(directory), "/grant", "Everyone:F", "/T"],
check=True,
capture_output=True
)
except subprocess.CalledProcessError as e:
self.logger.error(f"Failed to set permissions for {directory}: {e}")
return False
else:
try:
os.chmod(str(directory), 0o777)
except OSError as e:
self.logger.error(f"Failed to set permissions for {directory}: {e}")
return False
return True
except Exception as e:
self.logger.error(f"Failed to create directory {directory}: {e}")
return False
def ensure_directories(self, directories: List[str | Path]) -> bool:
"""
Create multiple directories and set appropriate permissions.
Returns True if all directories were created successfully, False otherwise.
"""
return all(self.ensure_directory(directory) for directory in directories)
class THPHandler:
def __init__(self, logger):
self.logger = logger
self.system = platform.system()
def _get_current_thp_setting(self):
"""Check current THP setting to see if changes are needed"""
try:
if self.system == "Darwin":
result = subprocess.run(
["docker", "run", "--rm", "--privileged", "ubuntu:latest",
"cat", "/sys/kernel/mm/transparent_hugepage/enabled"],
capture_output=True,
text=True
)
self.logger.debug(f"THP check output: {result.stdout}")
return result.returncode == 0 and "[madvise]" in result.stdout
elif self.system == "Linux":
result = subprocess.run(
["sudo", "cat", "/sys/kernel/mm/transparent_hugepage/enabled"],
capture_output=True,
text=True
)
return result.returncode == 0 and "[madvise]" in result.stdout
elif self.system == "Windows":
# Try reading the setting directly first
result = subprocess.run(
["wsl", "--exec", "cat", "/sys/kernel/mm/transparent_hugepage/enabled"],
capture_output=True,
text=True
)
return result.returncode == 0 and "[madvise]" in result.stdout
except Exception as e:
self.logger.error(f"Failed to check THP setting: {e}")
return False
def disable_thp(self):
"""Configure Transparent Huge Pages to use madvise mode"""
if self._get_current_thp_setting():
self.logger.info("THP already configured correctly")
return True
self.logger.info("Configuring THP settings...")
try:
if self.system == "Darwin":
# Create a persistent container to modify THP settings
container_name = "thp-config"
# Remove existing container if it exists
subprocess.run(["docker", "rm", "-f", container_name],
capture_output=True)
# Run configuration in a persistent privileged container
commands = [
["docker", "run", "-d", "--name", container_name,
"--privileged", "ubuntu:latest", "sleep", "infinity"],
["docker", "exec", container_name, "sh", "-c",
"echo madvise > /sys/kernel/mm/transparent_hugepage/enabled"],
["docker", "exec", container_name, "sh", "-c",
"echo madvise > /sys/kernel/mm/transparent_hugepage/defrag"],
]
for cmd in commands:
self.logger.debug(f"Running command: {cmd}")
result = subprocess.run(cmd, capture_output=True, text=True)
if result.returncode != 0:
self.logger.error(f"Command failed: {result.stderr}")
return False
# Clean up the container
subprocess.run(["docker", "rm", "-f", container_name],
capture_output=True)
elif self.system == "Linux":
commands = [
["sudo", "sh", "-c", "echo madvise > /sys/kernel/mm/transparent_hugepage/enabled"],
["sudo", "sh", "-c", "echo madvise > /sys/kernel/mm/transparent_hugepage/defrag"]
]
for cmd in commands:
result = subprocess.run(cmd, capture_output=True, text=True)
if result.returncode != 0:
self.logger.error(f"Command failed: {result.stderr}")
return False
elif self.system == "Windows":
# Let's try something simpler - use WSL's built-in root user
commands = [
'echo madvise | tee /sys/kernel/mm/transparent_hugepage/enabled',
'echo madvise | tee /sys/kernel/mm/transparent_hugepage/defrag'
]
for cmd in commands:
# Use WSL's root user directly
result = subprocess.run(
["wsl", "-u", "root", "-e", "sh", "-c", cmd],
capture_output=True,
text=True
)
if result.returncode != 0:
self.logger.error(f"Command failed: {result.stderr}")
return False
return self._get_current_thp_setting()
except Exception as e:
self.logger.error(f"Error configuring THP: {e}")
return False
class LMStudioPathFinder:
"""
Handles LM Studio CLI discovery, setup, and server management.
"""
def __init__(self, logger: Optional[logging.Logger] = None):
self.logger = logger or logging.getLogger(__name__)
self.system = platform.system()
self.cli_path: Optional[Path] = None
self._find_cli()
def _find_cli(self) -> None:
"""Initialize by looking for the CLI in standard locations"""
if self.system == "Windows":
search_paths = [
Path(os.path.expandvars(r"%USERPROFILE%\.cache\lm-studio\bin\lms.exe"))
]
else: # macOS or Linux
search_paths = [
Path("/opt/homebrew/bin/lms"),
Path("/usr/local/bin/lms"),
Path.home() / ".cache/lm-studio/bin/lms"
]
for path in search_paths:
self.logger.debug(f"Checking path: {path}")
if path.exists() and path.is_file():
self.cli_path = path
self.logger.debug(f"Found LM Studio CLI at: {path}")
break
def _run_command(self, args: list[str], timeout: int = 5) -> Tuple[bool, str]:
"""
Run an LMS command and return success status and output.
Args:
args: Command arguments to pass to lms
timeout: Command timeout in seconds
Returns:
Tuple of (success boolean, output/error string)
"""
try:
command = [str(self.cli_path)] if self.cli_path else ['lms']
command.extend(args)
result = subprocess.run(
command,
capture_output=True,
encoding='utf-8',
errors='replace',
timeout=timeout
)
if result.returncode == 0:
return True, result.stdout
return False, result.stderr
except subprocess.TimeoutExpired:
return False, f"Command timed out after {timeout} seconds"
except Exception as e:
return False, str(e)
def bootstrap(self) -> bool:
"""
Bootstrap the LMS CLI if needed.
"""
if not self.cli_path:
self.logger.error("Cannot bootstrap - CLI path not found")
return False
self.logger.info("Attempting to bootstrap LMS CLI...")
# Windows needs special handling for bootstrap command
bootstrap_cmd = ['bootstrap']
if self.system == "Windows":
bootstrap_cmd = ['cmd', '/c', str(self.cli_path), 'bootstrap']
try:
result = subprocess.run(
bootstrap_cmd,
capture_output=True,
text=True,
timeout=30
)
if result.returncode == 0:
self.logger.info("Bootstrap completed successfully")
return True
self.logger.error(f"Bootstrap failed: {result.stderr}")
return False
except Exception as e:
self.logger.error(f"Bootstrap failed: {str(e)}")
return False
def check_cli(self) -> bool:
"""
Check if the CLI is working by running version command.
"""
success, output = self._run_command(['version'])
if success:
self.logger.debug(f"CLI check successful: {output}")
return True
self.logger.debug("CLI check failed")
return False
def check_server(self) -> bool:
"""
Check if the LMS server is running.
"""
success, output = self._run_command(['status'])
is_running = success and "Server: ON" in output
self.logger.debug(f"Server status check: {'running' if is_running else 'not running'}")
return is_running
def start_server(self) -> bool:
"""
Attempt to start the LMS server.
"""
if self.check_server():
self.logger.info("Server is already running")
return True
self.logger.info("Starting LMS server...")
success, output = self._run_command(['server', 'start'], timeout=30)
if not success:
self.logger.error(f"Failed to start server: {output}")
return False
# Verify server actually started
if self.check_server():
self.logger.info("Server started successfully")
return True
self.logger.error("Server start command succeeded but server is not running")
return False
def setup(self) -> bool:
"""
Complete setup process for LM Studio CLI and server.
Returns:
bool: True if setup successful and server is running
"""
# First verify CLI works
if not self.check_cli():
self.logger.info("CLI not working, attempting bootstrap...")
if not self.bootstrap() or not self.check_cli():
self.logger.error("Failed to setup CLI")
return False
# Then handle server
if not self.start_server():
self.logger.error("Failed to start server")
return False
return True
class RunEnvironment:
def __init__(self):
self.system = platform.system()
self.required_dirs = ["shared-uploads", "logs", "model_cache"]
# Set up the logger first without any handlers
self.logger = logging.getLogger(__name__)
self.logger.setLevel(logging.INFO)
# Start with basic console logging
self._setup_basic_logging()
# Initialize directory manager with our logger
self.dir_manager = DirectoryManager(self.logger)
# Ensure logs directory exists and set up full logging
if self.dir_manager.ensure_directory("logs"):
self._setup_full_logging()
else:
self.logger.error("Failed to create logs directory. Continuing with basic logging.")
# Initialize other components
self.lm_studio = LMStudioPathFinder(self.logger)
self.thp_handler = THPHandler(self.logger)
def run(self):
"""Main execution flow."""
self.logger.info("=== Starting Project Alice ===")
self.logger.info("System detected: " + self.system)
signal.signal(signal.SIGINT, self.cleanup)
signal.signal(signal.SIGTERM, self.cleanup)
try:
# Setup directories first
self.logger.info("[Step 1/5] Setting up required directories...")
self.setup_directories()
self.logger.info("[Step 1/5] [OK] Directories ready")
# Start Docker before THP configuration
self.logger.info("[Step 2/5] Initializing Docker...")
self.start_docker()
self.wait_for_docker()
self.logger.info("[Step 2/5] [OK] Docker initialized")
# Configure THP after Docker is running
self.logger.info("[Step 3/5] Configuring Transparent Huge Pages...")
if not self.thp_handler.disable_thp():
self.logger.warning("[Step 3/5] [WARN] THP configuration failed - Redis performance may be affected")
else:
self.logger.info("[Step 3/5] [OK] THP configured")
self.logger.info("[Step 4/5] Initializing LM Studio...")
if self.lm_studio.setup():
self.logger.info("[Step 4/5] [OK] LM Studio ready")
else:
self.logger.warning("[Step 4/5] [WARN] LM Studio unavailable - continuing without it")
self.logger.info("[Step 5/5] Starting Docker project...")
self.run_docker_compose()
except Exception as e:
self.logger.error(f"[ERROR] Fatal error: {e}")
self.cleanup(None, None)
self.logger.info("=== Project Alice Running ===")
def _setup_basic_logging(self):
"""Set up basic console logging for initial operations"""
# Clear any existing handlers
self.logger.handlers.clear()
# Add console handler
console_handler = logging.StreamHandler(sys.stdout)
formatter = logging.Formatter('%(asctime)s - %(message)s')
console_handler.setFormatter(formatter)
self.logger.addHandler(console_handler)
def _setup_full_logging(self):
"""Set up full logging with both console and file handlers"""
# Clear existing handlers
self.logger.handlers.clear()
# Configure new handlers
console_handler = logging.StreamHandler(sys.stdout)
file_handler = logging.FileHandler('logs/run_script.log')
# Set format for both handlers
formatter = logging.Formatter('%(asctime)s - %(message)s')
console_handler.setFormatter(formatter)
file_handler.setFormatter(formatter)
# Add handlers to logger
self.logger.addHandler(console_handler)
self.logger.addHandler(file_handler)
def setup_directories(self):
"""Create and set permissions for all required directories."""
if not self.dir_manager.ensure_directories(self.required_dirs):
self.logger.error("Failed to set up one or more required directories")
sys.exit(1)
def start_docker(self):
"""Start Docker based on platform."""
try:
if self.system == "Windows":
subprocess.Popen([r"C:\Program Files\Docker\Docker\Docker Desktop.exe"])
elif self.system == "Darwin":
subprocess.Popen(["open", "-a", "Docker"])
elif self.system == "Linux":
self.handle_linux_specific()
else:
raise OSError(f"Unsupported operating system: {self.system}")
except Exception as e:
self.logger.error(f"Failed to start Docker: {e}")
sys.exit(1)
def handle_linux_specific(self):
"""Handle Docker startup for Linux systems with proper error handling."""
try:
# First verify we can use sudo (this command should always work without password)
try:
subprocess.run(
["sudo", "-n", "true"],
check=True,
stderr=subprocess.DEVNULL
)
except subprocess.CalledProcessError:
self.logger.error("""
Sudo access required to manage Docker service.
Please ensure this script can run with sudo privileges.
You may need to configure NOPASSWD in sudoers or run the script with sudo.""")
sys.exit(1)
# Check if Docker service exists
service_check = subprocess.run(
["sudo", "systemctl", "list-unit-files", "docker.service"],
capture_output=True,
text=True
)
if "docker.service" not in service_check.stdout:
self.logger.error("Docker service not found. Please ensure Docker is installed.")
sys.exit(1)
# Always use sudo to check and manage Docker
status = subprocess.run(
["sudo", "systemctl", "is-active", "docker"],
capture_output=True,
text=True
)
if status.stdout.strip() != "active":
self.logger.info("Docker service not running. Starting with sudo...")
try:
subprocess.run(
["sudo", "systemctl", "start", "docker"],
check=True,
stderr=subprocess.PIPE
)
self.logger.info("Docker service started successfully")
# Give the service a moment to fully initialize
time.sleep(5)
except subprocess.CalledProcessError as e:
self.logger.error("Failed to start Docker service even with sudo")
sys.exit(1)
# Verify the service started successfully
verify_status = subprocess.run(
["sudo", "systemctl", "is-active", "docker"],
capture_output=True,
text=True
)
if verify_status.stdout.strip() != "active":
raise RuntimeError("Failed to start Docker service")
except FileNotFoundError as e:
self.logger.error(f"Required system command not found: {e.filename}")
sys.exit(1)
except Exception as e:
self.logger.error(f"Unexpected error managing Docker service: {e}")
sys.exit(1)
def wait_for_docker(self, timeout=300):
"""Wait for Docker to be ready with timeout."""
self.logger.info("Waiting for Docker to start...")
start_time = time.time()
iteration = 1
check_interval = 2 # seconds between checks
max_iterations = timeout // check_interval
while not self.is_docker_running():
if time.time() - start_time > timeout:
self.logger.error("Docker failed to start within timeout period")
sys.exit(1)
# For macOS, check Docker Desktop status
if self.system == "Darwin":
try:
subprocess.run(["docker", "version"],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
check=True)
except subprocess.CalledProcessError:
pass
print(f"\rDocker is not ready yet. Waiting... [{iteration}/{max_iterations}]", end='', flush=True)
iteration += 1
time.sleep(check_interval)
def is_docker_running(self):
"""Check if Docker daemon is running."""
try:
cmd = ["docker", "info"] if self.system in ["Darwin", "Windows"] else ["sudo", "docker", "info"]
subprocess.run(cmd,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
check=True)
return True
except subprocess.CalledProcessError:
return False
def run_docker_compose(self):
"""Run docker-compose pull and up with proper error handling."""
self.logger.info("Starting Docker Compose...")
try:
# Don't use sudo on macOS and Windows
if self.system == "Darwin" or self.system == "Windows":
base_cmd = ["docker-compose"]
else:
base_cmd = ["sudo", "docker-compose"]
# Ask user about updating images
response = input("Would you like to update Docker images? [y/N]: ").lower().strip()
should_update = response in ['y', 'yes']
if should_update:
self.logger.info("[Step 5/5] Pulling Docker images...")
try:
# Try to pull images, but don't fail if custom images can't be pulled
subprocess.run(base_cmd + ["pull"], stderr=subprocess.PIPE, check=False)
except subprocess.CalledProcessError:
pass # Ignore pull errors as some images might need to be built
# Check if we need to build any images
config_output = subprocess.run(
base_cmd + ["config", "--services"],
capture_output=True,
text=True,
check=True
)
services = config_output.stdout.strip().split('\n')
# Try to build each service
self.logger.info("Building any custom images...")
for service in services:
try:
# Check if service needs building
build_check = subprocess.run(
base_cmd + ["build", "--dry-run", service],
capture_output=True,
text=True,
check=False
)
if build_check.returncode == 0:
self.logger.info(f"Building {service}...")
subprocess.run(base_cmd + ["build", service], check=True)
except subprocess.CalledProcessError as e:
self.logger.warning(f"Failed to build {service}: {e}")
# Continue with other services rather than failing completely
continue
else:
self.logger.info("Skipping Docker image update...")
# Start the containers
self.logger.info("Starting containers...")
subprocess.run(base_cmd + ["up"], check=True)
except subprocess.CalledProcessError as e:
self.logger.error(f"Docker Compose failed: {e}")
sys.exit(1)
except Exception as e:
self.logger.error(f"Unexpected error in Docker Compose operation: {e}")
sys.exit(1)
def cleanup(self, signum, frame):
"""Cleanup handler for graceful shutdown."""
self.logger.info("=== Starting Cleanup ===")
try:
# Check if docker-compose exists before trying to use it
compose_check = subprocess.run(
["which", "docker-compose"],
capture_output=True,
text=True
)
if compose_check.stdout.strip():
subprocess.run(["sudo", "docker-compose", "down"], check=True)
self.logger.info("Successfully shut down all services")
else:
self.logger.warning("docker-compose not found, skipping container cleanup")
except subprocess.CalledProcessError as e:
self.logger.error(f"Cleanup failed: {e}")
self.logger.info("=== Cleanup Complete ===")
sys.exit(0)
if __name__ == "__main__":
env = RunEnvironment()
env.run()