mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
321 lines
11 KiB
Swift
321 lines
11 KiB
Swift
//
|
|
// module.swift
|
|
// ModuleKit
|
|
//
|
|
// Created by Serhiy Mytrovtsiy on 09/04/2020.
|
|
// Copyright © 2020 Serhiy Mytrovtsiy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
import os.log
|
|
import StatsKit
|
|
|
|
public protocol Module_p {
|
|
var available: Bool { get }
|
|
var enabled: Bool { get }
|
|
|
|
var settings: Settings_p? { get }
|
|
|
|
func mount()
|
|
func unmount()
|
|
|
|
func terminate()
|
|
}
|
|
|
|
public struct module_c {
|
|
public var name: String = ""
|
|
public var icon: NSImage? = nil
|
|
|
|
var defaultState: Bool = false
|
|
var defaultWidget: widget_t = .unknown
|
|
var availableWidgets: [widget_t] = []
|
|
|
|
var widgetsConfig: NSDictionary = NSDictionary()
|
|
|
|
init(in path: String) {
|
|
let dict: NSDictionary = NSDictionary(contentsOfFile: path)!
|
|
|
|
if let name = dict["Name"] as? String {
|
|
self.name = name
|
|
}
|
|
if let state = dict["State"] as? Bool {
|
|
self.defaultState = state
|
|
}
|
|
|
|
if let widgetsDict = dict["Widgets"] as? NSDictionary {
|
|
var list: [String : Int] = [:]
|
|
self.widgetsConfig = widgetsDict
|
|
|
|
for widgetName in widgetsDict.allKeys {
|
|
if let widget = widget_t(rawValue: widgetName as! String) {
|
|
let widgetDict = widgetsDict[widgetName as! String] as! NSDictionary
|
|
if widgetDict["Default"] as! Bool {
|
|
self.defaultWidget = widget
|
|
}
|
|
var order = 0
|
|
if let o = widgetDict["Order"] as? Int {
|
|
order = o
|
|
}
|
|
|
|
list[widgetName as! String] = order
|
|
}
|
|
}
|
|
|
|
self.availableWidgets = list.sorted(by: { $0.1 < $1.1 }).map{ (widget_t(rawValue: $0.key) ?? .unknown) }
|
|
}
|
|
}
|
|
}
|
|
|
|
open class Module: Module_p {
|
|
public var config: module_c
|
|
|
|
public var available: Bool = false
|
|
public var enabled: Bool = false
|
|
|
|
public var widgets: [Widget] = []
|
|
public var settings: Settings_p? = nil
|
|
|
|
private var settingsView: Settings_v? = nil
|
|
private var popup: PopupWindow? = nil
|
|
private var popupView: Popup_p? = nil
|
|
|
|
private let log: OSLog
|
|
private var store: UnsafePointer<Store>
|
|
private var readers: [Reader_p] = []
|
|
|
|
public init(store: UnsafePointer<Store>, popup: Popup_p?, settings: Settings_v?) {
|
|
self.config = module_c(in: Bundle(for: type(of: self)).path(forResource: "config", ofType: "plist")!)
|
|
|
|
self.log = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: self.config.name)
|
|
self.store = store
|
|
self.settingsView = settings
|
|
self.popupView = popup
|
|
self.available = self.isAvailable()
|
|
self.enabled = self.store.pointee.bool(key: "\(self.config.name)_state", defaultValue: self.config.defaultState)
|
|
|
|
if !self.available {
|
|
os_log(.debug, log: log, "Module is not available")
|
|
|
|
if self.enabled {
|
|
self.enabled = false
|
|
self.store.pointee.set(key: "\(self.config.name)_state", value: false)
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(listenForMouseDownInSettings), name: .clickInSettings, object: nil)
|
|
NotificationCenter.default.addObserver(self, selector: #selector(listenForModuleToggle), name: .toggleModule, object: nil)
|
|
NotificationCenter.default.addObserver(self, selector: #selector(listenForPopupToggle), name: .togglePopup, object: nil)
|
|
NotificationCenter.default.addObserver(self, selector: #selector(listenForToggleWidget), name: .toggleWidget, object: nil)
|
|
|
|
if self.config.widgetsConfig.count != 0 {
|
|
self.initWidgets()
|
|
} else {
|
|
os_log(.debug, log: log, "Module started without widget")
|
|
}
|
|
|
|
self.settings = Settings(store: store, config: &self.config, widgets: &self.widgets, enabled: self.enabled, moduleSettings: self.settingsView)
|
|
self.settings?.toggleCallback = { [weak self] in
|
|
self?.toggleEnabled()
|
|
}
|
|
|
|
self.popup = PopupWindow(title: self.config.name, view: self.popupView, visibilityCallback: self.visibilityCallback)
|
|
}
|
|
|
|
deinit {
|
|
NotificationCenter.default.removeObserver(self)
|
|
}
|
|
|
|
// load function which call when app start
|
|
public func mount() {
|
|
guard self.enabled else {
|
|
return
|
|
}
|
|
|
|
self.readers.forEach { (reader: Reader_p) in
|
|
reader.initStoreValues(title: self.config.name, store: self.store)
|
|
reader.start()
|
|
}
|
|
}
|
|
|
|
// disable module
|
|
public func unmount() {
|
|
self.enabled = false
|
|
self.available = false
|
|
}
|
|
|
|
// terminate function which call before app termination
|
|
public func terminate() {
|
|
self.willTerminate()
|
|
self.readers.forEach{
|
|
$0.stop()
|
|
$0.terminate()
|
|
}
|
|
self.widgets.forEach{ $0.disable() }
|
|
os_log(.debug, log: log, "Module terminated")
|
|
}
|
|
|
|
// function to call before module terminate
|
|
open func willTerminate() {}
|
|
|
|
// set module state to enabled
|
|
public func enable() {
|
|
guard self.available else { return }
|
|
|
|
self.enabled = true
|
|
self.store.pointee.set(key: "\(self.config.name)_state", value: true)
|
|
self.readers.forEach { (reader: Reader_p) in
|
|
reader.initStoreValues(title: self.config.name, store: self.store)
|
|
reader.start()
|
|
}
|
|
self.widgets.forEach{ $0.enable() }
|
|
os_log(.debug, log: log, "Module enabled")
|
|
}
|
|
|
|
// set module state to disabled
|
|
public func disable() {
|
|
guard self.available else { return }
|
|
|
|
self.enabled = false
|
|
self.store.pointee.set(key: "\(self.config.name)_state", value: false)
|
|
self.readers.forEach{ $0.stop() }
|
|
self.widgets.forEach{ $0.disable() }
|
|
self.popup?.setIsVisible(false)
|
|
os_log(.debug, log: log, "Module disabled")
|
|
}
|
|
|
|
// toggle module state
|
|
private func toggleEnabled() {
|
|
if self.enabled {
|
|
self.disable()
|
|
} else {
|
|
self.enable()
|
|
}
|
|
}
|
|
|
|
// add reader to module. If module is enabled will fire a read function and start a reader
|
|
public func addReader(_ reader: Reader_p) {
|
|
self.readers.append(reader)
|
|
os_log(.debug, log: log, "Reader %s was added", "\(reader.self)")
|
|
}
|
|
|
|
// handler for reader, calls when main reader is ready, and return first value
|
|
public func readyHandler() {
|
|
self.widgets.forEach{ $0.enable() }
|
|
os_log(.debug, log: log, "Reader report readiness")
|
|
}
|
|
|
|
// replace a popup view
|
|
public func replacePopup(_ view: Popup_p) {
|
|
self.popup?.setIsVisible(false)
|
|
self.popupView = view
|
|
self.popup = PopupWindow(title: self.config.name, view: self.popupView, visibilityCallback: self.visibilityCallback)
|
|
}
|
|
|
|
// determine if module is available (can be overrided in module)
|
|
open func isAvailable() -> Bool { return true }
|
|
|
|
// load the widget and set up. Calls when module init
|
|
private func initWidgets() {
|
|
guard self.available else { return }
|
|
|
|
self.config.availableWidgets.forEach { (widgetType: widget_t) in
|
|
if let widget = widgetType.new(
|
|
store: self.store,
|
|
module: self.config.name,
|
|
config: self.config.widgetsConfig,
|
|
defaultWidget: self.config.defaultWidget
|
|
) {
|
|
self.widgets.append(widget)
|
|
}
|
|
}
|
|
}
|
|
|
|
// call after widget set up
|
|
open func widgetDidSet(_ type: widget_t) {}
|
|
|
|
// call when popup appear/disappear
|
|
private func visibilityCallback(_ state: Bool) {
|
|
self.readers.filter{ $0.popup }.forEach { (reader: Reader_p) in
|
|
if state {
|
|
reader.unlock()
|
|
reader.start()
|
|
} else {
|
|
reader.pause()
|
|
reader.lock()
|
|
}
|
|
}
|
|
}
|
|
|
|
@objc private func listenForPopupToggle(_ notification: Notification) {
|
|
guard let popup = self.popup,
|
|
let name = notification.userInfo?["module"] as? String,
|
|
let buttonOrigin = notification.userInfo?["origin"] as? CGPoint,
|
|
let buttonCenter = notification.userInfo?["center"] as? CGFloat,
|
|
self.config.name == name else {
|
|
return
|
|
}
|
|
|
|
let openedWindows = NSApplication.shared.windows.filter{ $0 is NSPanel }
|
|
openedWindows.forEach{ $0.setIsVisible(false) }
|
|
|
|
if popup.occlusionState.rawValue == 8192 {
|
|
NSApplication.shared.activate(ignoringOtherApps: true)
|
|
|
|
popup.contentView?.invalidateIntrinsicContentSize()
|
|
|
|
let windowCenter = popup.contentView!.intrinsicContentSize.width / 2
|
|
var x = buttonOrigin.x - windowCenter + buttonCenter
|
|
let y = buttonOrigin.y - popup.contentView!.intrinsicContentSize.height - 3
|
|
|
|
let maxWidth = NSScreen.screens.map{ $0.frame.width }.reduce(0, +)
|
|
if x + popup.contentView!.intrinsicContentSize.width > maxWidth {
|
|
x = maxWidth - popup.contentView!.intrinsicContentSize.width - 3
|
|
}
|
|
|
|
popup.setFrameOrigin(NSPoint(x: x, y: y))
|
|
popup.setIsVisible(true)
|
|
} else {
|
|
popup.locked = false
|
|
popup.setIsVisible(false)
|
|
}
|
|
}
|
|
|
|
@objc private func listenForModuleToggle(_ notification: Notification) {
|
|
if let name = notification.userInfo?["module"] as? String {
|
|
if name == self.config.name {
|
|
if let state = notification.userInfo?["state"] as? Bool {
|
|
if state && !self.enabled {
|
|
self.enable()
|
|
} else if !state && self.enabled {
|
|
self.disable()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@objc private func listenForMouseDownInSettings(_ notification: Notification) {
|
|
if let popup = self.popup, popup.isVisible {
|
|
self.popup?.setIsVisible(false)
|
|
}
|
|
}
|
|
|
|
@objc private func listenForToggleWidget(_ notification: Notification) {
|
|
guard let name = notification.userInfo?["module"] as? String, name == self.config.name else {
|
|
return
|
|
}
|
|
let count = self.widgets.filter({ $0.isActive }).count
|
|
var state = self.enabled
|
|
|
|
if count == 0 && self.enabled {
|
|
state = false
|
|
} else if count != 0 && !self.enabled {
|
|
state = true
|
|
}
|
|
|
|
NotificationCenter.default.post(name: .toggleModule, object: nil, userInfo: ["module": self.config.name, "state": state])
|
|
}
|
|
}
|