| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- import Foundation
- #if os(iOS) || os(tvOS) || os(visionOS)
- import UIKit
- #elseif os(macOS)
- import AppKit
- import Cocoa
- #elseif os(watchOS)
- import WatchKit
- #endif // os(iOS) || os(tvOS)
- #if SWIFT_PACKAGE
- internal import GoogleUtilities_Environment
- #else
- internal import GoogleUtilities
- #endif // SWIFT_PACKAGE
- /// The SessionInitiator is responsible for:
- /// 1) Running the initiate callback whenever a Session Start Event should
- /// begin sending. This can happen at a cold start of the app, and when it
- /// been in the background for a period of time (originally set at 30 mins)
- /// and comes to the foreground.
- ///
- class SessionInitiator {
- let currentTime: () -> Date
- let settings: SettingsProtocol
- private var backgroundTime = Date.distantFuture
- private var initiateSessionStart: () -> Void = {}
- init(settings: SettingsProtocol, currentTimeProvider: @escaping () -> Date = Date.init) {
- currentTime = currentTimeProvider
- self.settings = settings
- }
- func beginListening(initiateSessionStart: @escaping () -> Void) {
- self.initiateSessionStart = initiateSessionStart
- self.initiateSessionStart()
- let notificationCenter = NotificationCenter.default
- #if os(iOS) || os(tvOS) || os(visionOS)
- // Change background update event listener for iPadOS 26 multi-windowing support
- if #available(iOS 26, *), GULAppEnvironmentUtil.appleDevicePlatform().contains("ipados") {
- notificationCenter.addObserver(
- self,
- selector: #selector(appBackgrounded),
- name: UIApplication.willResignActiveNotification,
- object: nil
- )
- } else {
- notificationCenter.addObserver(
- self,
- selector: #selector(appBackgrounded),
- name: UIApplication.didEnterBackgroundNotification,
- object: nil
- )
- }
- notificationCenter.addObserver(
- self,
- selector: #selector(appForegrounded),
- name: UIApplication.didBecomeActiveNotification,
- object: nil
- )
- #elseif os(macOS)
- notificationCenter.addObserver(
- self,
- selector: #selector(appBackgrounded),
- name: NSApplication.didResignActiveNotification,
- object: nil
- )
- notificationCenter.addObserver(
- self,
- selector: #selector(appForegrounded),
- name: NSApplication.didBecomeActiveNotification,
- object: nil
- )
- #elseif os(watchOS)
- // Versions below WatchOS 7 do not support lifecycle events
- if #available(watchOSApplicationExtension 7.0, *) {
- notificationCenter.addObserver(
- self,
- selector: #selector(appBackgrounded),
- name: WKExtension.applicationDidEnterBackgroundNotification,
- object: nil
- )
- notificationCenter.addObserver(
- self,
- selector: #selector(appForegrounded),
- name: WKExtension.applicationDidBecomeActiveNotification,
- object: nil
- )
- }
- #endif // os(iOS) || os(tvOS)
- }
- @objc private func appBackgrounded() {
- backgroundTime = currentTime()
- }
- @objc private func appForegrounded() {
- let interval = currentTime().timeIntervalSince(backgroundTime)
- // If the interval is greater the the session timeout duration, generate a new session.
- if interval > settings.sessionTimeout {
- initiateSessionStart()
- }
- }
- }
|