CloverBootloader/CloverApp/Clover/AppDelegate.swift
vectorsigma72 1d7e7327c0 Clover.app v1.13
Fixed detection of legacy firmware for CloverDaemonNew.
Detection of System Serial and OEM manufacturer informations.
Startup sound settings in the interface.
Installer inform with a sound and an alert window the installation result.
Installer now produce the installation log.
Installer is now thread safe.
The UI is modified to make room forall the new functionalities.
2020-01-01 15:42:47 +01:00

183 lines
6.7 KiB
Swift

//
// AppDelegate.swift
// Clover
//
// Created by vector sigma on 19/10/2019.
// Copyright © 2019 CloverHackyColor. All rights reserved.
//
import Cocoa
// MARK: NSApplication shared delegate
let AppSD = NSApplication.shared.delegate as! AppDelegate
let localeBundle = Bundle(path: Bundle.main.sharedSupportPath! + "/Lang.bundle")
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate, NSPopoverDelegate {
var isInstalling : Bool = false
var isInstallerOpen : Bool = false
var popover : NSPopover?
let statusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.variableLength)
var settingsWC: SettingsWindowController? = nil
var installerWC : InstallerWindowController? = nil
var installerOutWC : InstallerOutWindowController? = nil
var daSession : DASession? = nil
var daContext : UnsafeMutablePointer<Int> = UnsafeMutablePointer<Int>.allocate(capacity: 1)
deinit {
if (self.daSession != nil) {
DASessionUnscheduleFromRunLoop(self.daSession!,
CFRunLoopGetCurrent(),
CFRunLoopMode.defaultMode.rawValue)
}
self.daContext.deallocate()
}
func applicationWillFinishLaunching(_ notification: Notification) {
/*
do not activate the following code: is for debug only
.. it delete stored preferences in the User Default dictionary
if let domain = Bundle.main.bundleIdentifier {
UDs.removePersistentDomain(forName: domain)
UDs.synchronize()
}
the following is to dump info about all disk in the System
let diskLog = "- getAlldisks() -----------------\n\(getAlldisks())\n- getAllESPs() ------------------\n\(getAllESPs())\n---------------------------------"
try? diskLog.write(toFile: NSHomeDirectory().addPath("Desktop/diskLog.txt"), atomically: true, encoding: .utf8)
*/
let pi = NSRunningApplication.current.processIdentifier
let runnings =
NSRunningApplication.runningApplications(withBundleIdentifier: Bundle.main.bundleIdentifier!)
for app in runnings {
if app.processIdentifier != pi {
print("App terminated because another instance is already running, which is newer is unknown:")
print("ensure the old version (may be the running one?) is not marked as login item and quit it.")
NSApp.terminate(self)
}
}
}
func applicationDidFinishLaunching(_ aNotification: Notification) {
let appImage = NSImage(named: "NSApplicationIcon")
if #available(OSX 10.10, *) {
let size = self.statusItem.button!.frame.height - 3
appImage?.size = NSMakeSize(size, size)
self.statusItem.button?.image = appImage?.copy() as? NSImage
self.statusItem.button?.image?.isTemplate = true
if let button = self.statusItem.button {
button.target = self
button.action = #selector(self.showPopover(_:))
button.sendAction(on: [.leftMouseUp, .rightMouseUp])
button.imagePosition = .imageLeft
}
} else {
appImage?.size = NSMakeSize(18.0, 18.0);
self.statusItem.image = appImage?.copy() as? NSImage
self.statusItem.target = self
self.statusItem.action = #selector(self.showPopover(_:))
self.statusItem.sendAction(on: [.leftMouseUp, .rightMouseUp])
}
self.settingsWC = SettingsWindowController.loadFromNib()
NotificationCenter.default.addObserver(self,
selector: #selector(self.reFreshDisksList),
name: Notification.Name("DiskDisappeared"),
object: nil)
NSWorkspace.shared.notificationCenter.addObserver(self,
selector: #selector(self.reFreshDisksList),
name: NSWorkspace.didMountNotification,
object: nil)
NSWorkspace.shared.notificationCenter.addObserver(self,
selector: #selector(self.reFreshDisksList),
name: NSWorkspace.didUnmountNotification,
object: nil)
NSWorkspace.shared.notificationCenter.addObserver(self,
selector: #selector(self.reFreshDisksList),
name: NSWorkspace.didRenameVolumeNotification,
object: nil)
self.daSession = DASessionCreate(kCFAllocatorDefault)
if (self.daSession != nil) {
self.daContext.initialize(repeating: 0, count: 1)
DASessionScheduleWithRunLoop(self.daSession!,
CFRunLoopGetCurrent(),
CFRunLoopMode.defaultMode.rawValue)
DARegisterDiskDisappearedCallback(self.daSession!, nil, {
(dis, ctx) -> Void in
if (ctx != nil) {
NotificationCenter.default.post(name: Notification.Name("DiskDisappeared"), object: dis)
}
}, self.daContext)
}
CFRunLoopRun()
}
@objc func showPopover(_ sender: Any?) {
if (self.popover == nil) {
self.popover = NSPopover()
self.popover?.animates = true
self.popover?.contentViewController = self.settingsWC?.contentViewController
self.popover?.behavior = .transient
self.popover?.delegate = self
}
DispatchQueue.main.async {
(self.popover?.contentViewController as? SettingsViewController)?.setUpInfo()
}
DispatchQueue.main.async {
if #available(OSX 10.10, *) {
if let button = sender as? NSStatusBarButton {
self.popover?.show(relativeTo: button.bounds, of: button, preferredEdge: NSRectEdge.maxY)
}
} else {
if let v = sender as? NSView {
self.popover?.show(relativeTo: v.bounds, of: v, preferredEdge: NSRectEdge.maxY)
}
}
NSApp.activate(ignoringOtherApps: true)
}
}
func popoverShouldDetach(_ popover: NSPopover) -> Bool {
return true
}
@objc func reFreshDisksList() {
(self.settingsWC?.contentViewController as? SettingsViewController)?.searchESPDisks()
(self.installerWC?.contentViewController as? InstallerViewController)?.populateTargets()
(self.installerOutWC?.contentViewController as? InstallerOutViewController)?.populateTargets()
}
func applicationShouldTerminate(_ sender: NSApplication) -> NSApplication.TerminateReply {
return self.isInstalling ? .terminateLater : .terminateNow
}
func applicationWillTerminate(_ aNotification: Notification) {
}
}