| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- //
- // AppDelegate.swift
- // xDrip5
- //
- // Created by Nathan Racklyeft on 10/1/15.
- // Copyright © 2015 Nathan Racklyeft. All rights reserved.
- //
- import UIKit
- import CGMBLEKit
- import CoreBluetooth
- @UIApplicationMain
- class AppDelegate: UIResponder, UIApplicationDelegate, TransmitterDelegate, TransmitterCommandSource {
-
- var window: UIWindow?
- static var sharedDelegate: AppDelegate {
- return UIApplication.shared.delegate as! AppDelegate
- }
- var transmitterID: String? {
- didSet {
- if let id = transmitterID {
- transmitter = Transmitter(
- id: id,
- passiveModeEnabled: UserDefaults.standard.passiveModeEnabled
- )
- transmitter?.stayConnected = UserDefaults.standard.stayConnected
- transmitter?.delegate = self
- transmitter?.commandSource = self
- UserDefaults.standard.transmitterID = id
- }
- glucose = nil
- }
- }
- var transmitter: Transmitter?
- let commandQueue = CommandQueue()
- var glucose: Glucose?
- func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
- transmitterID = UserDefaults.standard.transmitterID
- return true
- }
- func applicationWillResignActive(_ application: UIApplication) {
- // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
- // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
- }
- func applicationDidEnterBackground(_ application: UIApplication) {
- // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
- // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
- if let transmitter = transmitter, !transmitter.stayConnected {
- transmitter.stopScanning()
- }
- }
- func applicationWillEnterForeground(_ application: UIApplication) {
- // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
- }
- func applicationDidBecomeActive(_ application: UIApplication) {
- // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
- transmitter?.resumeScanning()
- }
- func applicationWillTerminate(_ application: UIApplication) {
- // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
- }
- // MARK: - TransmitterDelegate
- private let dateFormatter: DateFormatter = {
- let dateFormatter = DateFormatter()
- dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
- dateFormatter.locale = Locale(identifier: "en_US_POSIX")
- return dateFormatter
- }()
- func dequeuePendingCommand(for transmitter: Transmitter) -> Command? {
- return commandQueue.dequeue()
- }
- func transmitter(_ transmitter: Transmitter, didFail command: Command, with error: Error) {
- // TODO: implement
- }
- func transmitter(_ transmitter: Transmitter, didComplete command: Command) {
- // TODO: implement
- }
- func transmitter(_ transmitter: Transmitter, didError error: Error) {
- DispatchQueue.main.async {
- if let vc = self.window?.rootViewController as? TransmitterDelegate {
- vc.transmitter(transmitter, didError: error)
- }
- }
- }
- func transmitter(_ transmitter: Transmitter, didRead glucose: Glucose) {
- self.glucose = glucose
- DispatchQueue.main.async {
- if let vc = self.window?.rootViewController as? TransmitterDelegate {
- vc.transmitter(transmitter, didRead: glucose)
- }
- }
- }
- func transmitter(_ transmitter: Transmitter, didReadUnknownData data: Data) {
- DispatchQueue.main.async {
- if let vc = self.window?.rootViewController as? TransmitterDelegate {
- vc.transmitter(transmitter, didReadUnknownData: data)
- }
- }
- }
-
- func transmitter(_ transmitter: Transmitter, didReadBackfill glucose: [Glucose]) {
- DispatchQueue.main.async {
- if let vc = self.window?.rootViewController as? TransmitterDelegate {
- vc.transmitter(transmitter, didReadBackfill: glucose)
- }
- }
- }
-
- func transmitterDidConnect(_ transmitter: Transmitter) {
- // Ignore
- }
- }
|