56 lines
1.8 KiB
Swift
56 lines
1.8 KiB
Swift
import Foundation
|
|
|
|
enum LogLocator {
|
|
private static var logDir: URL {
|
|
if let override = ProcessInfo.processInfo.environment["CLAWDBOT_LOG_DIR"], !override.isEmpty {
|
|
return URL(fileURLWithPath: override)
|
|
}
|
|
|
|
return URL(fileURLWithPath: "/tmp/clawdbot")
|
|
}
|
|
|
|
private static var stdoutLog: URL {
|
|
logDir.appendingPathComponent("clawdbot-stdout.log")
|
|
}
|
|
|
|
private static var gatewayLog: URL {
|
|
logDir.appendingPathComponent("clawdbot-gateway.log")
|
|
}
|
|
|
|
private static func ensureLogDirExists() {
|
|
try? FileManager.default.createDirectory(at: self.logDir, withIntermediateDirectories: true)
|
|
}
|
|
|
|
private static func modificationDate(for url: URL) -> Date {
|
|
(try? url.resourceValues(forKeys: [.contentModificationDateKey]).contentModificationDate) ?? .distantPast
|
|
}
|
|
|
|
/// Returns the newest log file under /tmp/clawdbot/ (rolling or stdout), or nil if none exist.
|
|
static func bestLogFile() -> URL? {
|
|
self.ensureLogDirExists()
|
|
let fm = FileManager.default
|
|
let files = (try? fm.contentsOfDirectory(
|
|
at: self.logDir,
|
|
includingPropertiesForKeys: [.contentModificationDateKey],
|
|
options: [.skipsHiddenFiles])) ?? []
|
|
|
|
return files
|
|
.filter { $0.lastPathComponent.hasPrefix("clawdbot") && $0.pathExtension == "log" }
|
|
.max { lhs, rhs in
|
|
self.modificationDate(for: lhs) < self.modificationDate(for: rhs)
|
|
}
|
|
}
|
|
|
|
/// Path to use for launchd stdout/err.
|
|
static var launchdLogPath: String {
|
|
self.ensureLogDirExists()
|
|
return stdoutLog.path
|
|
}
|
|
|
|
/// Path to use for the Gateway launchd job stdout/err.
|
|
static var launchdGatewayLogPath: String {
|
|
self.ensureLogDirExists()
|
|
return gatewayLog.path
|
|
}
|
|
}
|