A Swift library for keeping Macs awake.
Still under development! Breaking changes may be introduced without warning.
CaffeineKit prevents sleep using the command-line utility caffeinate
. Why is it better than let proc = Process(); proc.executableURL = URL(fileURLWithPath: "/usr/bin/caffeinate"); proc.arguments = ["-d", "-i"]; try! proc.run()
?
-
Safety: CaffeineKit ensures that "zombie"
caffeinate
processes don't linger when your app terminates. In fact, even if your app is force-quit (i.e., receivesSIGKILL
), CaffeineKit can (usually*) preventcaffeinate
processes from hanging around.*If you use the
process
Caffeination option, CaffeineKit can't preventcaffeinate
from persisting if your app is force-quit. But it will still stop zombie processes if you receive any other sort of interrupt! -
Swiftiness:
try Caffeination(withOpts: [.display, .idle, .timed(2)]).start()
vs.let proc = Process(); proc.executableURL = URL(fileURLWithPath: "/usr/bin/caffeinate"); proc.arguments = ["-d", "-i", "-t", "2"]; try proc.run()
. Need more be said? -
Flexibility: CaffeineKit is versatile. For instance (no pun intended), instances of
Caffeination
can be reused. (Ever tried re-running aProcess
?) MultipleCaffeination
sessions can even occur concurrently. Caffeination exposes an incredibly simple and intuitive architecture, but one that is powerful and customizable if you want it to be. -
Closures made simple: CaffeineKit exposes a robust, generics-based closure model that makes it trivial to create closures that prevent screen, disk, or idle sleep. These are especially useful for tasks that require that the computer stay awake, but which macOS might not recognize as having this requirement.
Creating a simple Caffeination
instance that prevents the display from sleeping:
let caf = Caffeination(withOpts: [.idle, .display])
do {
try caf.start()
} catch {
print("Caffeination failed to start")
}
// Do some other things
caf.stop()
Preventing idle sleep for 5 minutes:
let caf = Caffeination(withOpts: [.idle, .timed(5 * 60)])
do {
try caf.start()
} catch {
print("Caffeination failed to start")
}
Creating a closure that prevents sleep:
myObject.closureProperty = try caf.closure { (myInt, myStr) -> Int in
// Actions that require the computer to be awake
return 1
}