Protected.swift 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. //
  2. // Protected.swift
  3. //
  4. // Copyright (c) 2014-2020 Alamofire Software Foundation (http://alamofire.org/)
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining a copy
  7. // of this software and associated documentation files (the "Software"), to deal
  8. // in the Software without restriction, including without limitation the rights
  9. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. // copies of the Software, and to permit persons to whom the Software is
  11. // furnished to do so, subject to the following conditions:
  12. //
  13. // The above copyright notice and this permission notice shall be included in
  14. // all copies or substantial portions of the Software.
  15. //
  16. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. // THE SOFTWARE.
  23. //
  24. import Foundation
  25. private protocol Lock {
  26. func lock()
  27. func unlock()
  28. }
  29. extension Lock {
  30. /// Executes a closure returning a value while acquiring the lock.
  31. ///
  32. /// - Parameter closure: The closure to run.
  33. ///
  34. /// - Returns: The value the closure generated.
  35. func around<T>(_ closure: () -> T) -> T {
  36. lock(); defer { unlock() }
  37. return closure()
  38. }
  39. /// Execute a closure while acquiring the lock.
  40. ///
  41. /// - Parameter closure: The closure to run.
  42. func around(_ closure: () -> Void) {
  43. lock(); defer { unlock() }
  44. closure()
  45. }
  46. }
  47. #if os(Linux) || os(Windows)
  48. extension NSLock: Lock {}
  49. #endif
  50. #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
  51. /// An `os_unfair_lock` wrapper.
  52. final class UnfairLock: Lock {
  53. private let unfairLock: os_unfair_lock_t
  54. init() {
  55. unfairLock = .allocate(capacity: 1)
  56. unfairLock.initialize(to: os_unfair_lock())
  57. }
  58. deinit {
  59. unfairLock.deinitialize(count: 1)
  60. unfairLock.deallocate()
  61. }
  62. fileprivate func lock() {
  63. os_unfair_lock_lock(unfairLock)
  64. }
  65. fileprivate func unlock() {
  66. os_unfair_lock_unlock(unfairLock)
  67. }
  68. }
  69. #endif
  70. /// A thread-safe wrapper around a value.
  71. @propertyWrapper
  72. @dynamicMemberLookup
  73. final class Protected<T> {
  74. #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
  75. private let lock = UnfairLock()
  76. #elseif os(Linux) || os(Windows)
  77. private let lock = NSLock()
  78. #endif
  79. private var value: T
  80. init(_ value: T) {
  81. self.value = value
  82. }
  83. /// The contained value. Unsafe for anything more than direct read or write.
  84. var wrappedValue: T {
  85. get { lock.around { value } }
  86. set { lock.around { value = newValue } }
  87. }
  88. var projectedValue: Protected<T> { self }
  89. init(wrappedValue: T) {
  90. value = wrappedValue
  91. }
  92. /// Synchronously read or transform the contained value.
  93. ///
  94. /// - Parameter closure: The closure to execute.
  95. ///
  96. /// - Returns: The return value of the closure passed.
  97. func read<U>(_ closure: (T) -> U) -> U {
  98. lock.around { closure(self.value) }
  99. }
  100. /// Synchronously modify the protected value.
  101. ///
  102. /// - Parameter closure: The closure to execute.
  103. ///
  104. /// - Returns: The modified value.
  105. @discardableResult
  106. func write<U>(_ closure: (inout T) -> U) -> U {
  107. lock.around { closure(&self.value) }
  108. }
  109. subscript<Property>(dynamicMember keyPath: WritableKeyPath<T, Property>) -> Property {
  110. get { lock.around { value[keyPath: keyPath] } }
  111. set { lock.around { value[keyPath: keyPath] = newValue } }
  112. }
  113. }
  114. extension Protected where T: RangeReplaceableCollection {
  115. /// Adds a new element to the end of this protected collection.
  116. ///
  117. /// - Parameter newElement: The `Element` to append.
  118. func append(_ newElement: T.Element) {
  119. write { (ward: inout T) in
  120. ward.append(newElement)
  121. }
  122. }
  123. /// Adds the elements of a sequence to the end of this protected collection.
  124. ///
  125. /// - Parameter newElements: The `Sequence` to append.
  126. func append<S: Sequence>(contentsOf newElements: S) where S.Element == T.Element {
  127. write { (ward: inout T) in
  128. ward.append(contentsOf: newElements)
  129. }
  130. }
  131. /// Add the elements of a collection to the end of the protected collection.
  132. ///
  133. /// - Parameter newElements: The `Collection` to append.
  134. func append<C: Collection>(contentsOf newElements: C) where C.Element == T.Element {
  135. write { (ward: inout T) in
  136. ward.append(contentsOf: newElements)
  137. }
  138. }
  139. }
  140. extension Protected where T == Data? {
  141. /// Adds the contents of a `Data` value to the end of the protected `Data`.
  142. ///
  143. /// - Parameter data: The `Data` to be appended.
  144. func append(_ data: Data) {
  145. write { (ward: inout T) in
  146. ward?.append(data)
  147. }
  148. }
  149. }
  150. extension Protected where T == Request.MutableState {
  151. /// Attempts to transition to the passed `State`.
  152. ///
  153. /// - Parameter state: The `State` to attempt transition to.
  154. ///
  155. /// - Returns: Whether the transition occurred.
  156. func attemptToTransitionTo(_ state: Request.State) -> Bool {
  157. lock.around {
  158. guard value.state.canTransitionTo(state) else { return false }
  159. value.state = state
  160. return true
  161. }
  162. }
  163. /// Perform a closure while locked with the provided `Request.State`.
  164. ///
  165. /// - Parameter perform: The closure to perform while locked.
  166. func withState(perform: (Request.State) -> Void) {
  167. lock.around { perform(value.state) }
  168. }
  169. }