Signal-iOS/SignalMessaging/utils/DeviceSleepManager.swift
Evan Hahn 370ff654e7
Change license to AGPL
Change license to AGPL

This commit:

- Updates the `LICENSE` file

- Start every file with something like:

      // Copyright YEAR_FIRST_PUBLISHED Signal Messenger, LLC
      // SPDX-License-Identifier: AGPL-3.0-only

---

First, I removed existing license headers with this Ruby 3.1.2 script:

    require 'set'

    EXTENSIONS_TO_CHECK = Set['.h', '.hpp', '.cpp', '.m', '.mm', '.pch', '.swift']

    same = 0
    different = 0

    all_files = `git ls-files`.lines.map { |line| line.strip }
    all_files.each do |relative_path|
      if relative_path == 'Pods'
        next
      end

      unless EXTENSIONS_TO_CHECK.include? File.extname(relative_path)
        next
      end

      path = File.expand_path(relative_path)

      contents = File.read(path)
      new_contents = contents.sub(/\/\/\n\/\/  Copyright .*\n\/\/\n\n/, '')

      if contents == new_contents
        same += 1
      else
        different += 1
      end

      File.write(path, new_contents)
    end

    puts "updated #{different} file(s), left #{same} untouched"

I'm sure this script could be improved, but it worked well enough.

Then, I created `Scripts/lint/lint-license-headers` and ran it to auto-
fix a lot of files. This changed the mode of some files, but I think
that's actually desirable. For example,
`SignalServiceKit/src/Util/AppContext.m` previously had a mode of
`0755/-rwxr-xr-x`, and it's now `0644/-rw-r--r--`.

Then I fixed some stragglers and updated the precommit script.

See [a similar change in the Desktop app][0].

[0]: 8bfaf598af
2022-10-13 08:25:37 -05:00

113 lines
3.4 KiB
Swift

//
// Copyright 2017 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
import SignalServiceKit
// This entity has responsibility for blocking the device from sleeping if
// certain behaviors (e.g. recording or playing voice messages) are in progress.
//
// Sleep blocking is keyed using "block objects" whose lifetime corresponds to
// the duration of the block. For example, sleep blocking during audio playback
// can be keyed to the audio player. This provides a measure of robustness.
// On the one hand, we can use weak references to track block objects and stop
// blocking if the block object is deallocated even if removeBlock() is not
// called. On the other hand, we will also get correct behavior to addBlock()
// being called twice with the same block object.
@objc
public class DeviceSleepManager: NSObject {
@objc
public static let shared = DeviceSleepManager()
let serialQueue = DispatchQueue(label: "DeviceSleepManager")
private class SleepBlock: CustomDebugStringConvertible {
weak var blockObject: NSObject?
var debugDescription: String {
return "SleepBlock(\(String(reflecting: blockObject)))"
}
init(blockObject: NSObject) {
self.blockObject = blockObject
}
}
private var blocks: [SleepBlock] = []
private override init() {
super.init()
SwiftSingletons.register(self)
NotificationCenter.default.addObserver(self,
selector: #selector(didEnterBackground),
name: .OWSApplicationDidEnterBackground,
object: nil)
if CurrentAppContext().isMainApp {
// Prevent the device from sleeping during app startup,
// e.g. during long-running database migrations.
let launchBlockObject = self
addBlock(blockObject: launchBlockObject)
AppReadiness.runNowOrWhenAppDidBecomeReadySync {
self.removeBlock(blockObject: launchBlockObject)
}
}
}
@objc
private func didEnterBackground() {
AssertIsOnMainThread()
serialQueue.sync {
ensureSleepBlocking()
}
}
@objc
public func addBlock(blockObject: NSObject) {
serialQueue.sync {
blocks.append(SleepBlock(blockObject: blockObject))
ensureSleepBlocking()
}
}
@objc
public func removeBlock(blockObject: NSObject) {
serialQueue.sync {
blocks = blocks.filter {
$0.blockObject != nil && $0.blockObject != blockObject
}
ensureSleepBlocking()
}
}
private func ensureSleepBlocking() {
assertOnQueue(serialQueue)
// Cull expired blocks.
blocks = blocks.filter {
$0.blockObject != nil
}
let shouldBlock = blocks.count > 0
let description: String
switch blocks.count {
case 0:
description = "no blocking objects"
case 1:
description = "\(blocks[0])"
default:
description = "\(blocks[0]) and \(blocks.count - 1) others"
}
DispatchQueue.main.async {
CurrentAppContext().ensureSleepBlocking(shouldBlock, blockingObjectsDescription: description)
}
}
}