Implement the Atomic type

This commit is contained in:
Alejandro Alonso
2023-09-28 20:54:32 -07:00
parent ae983d8f84
commit f747162084
12 changed files with 1829 additions and 4 deletions

View File

@@ -0,0 +1,93 @@
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Builtin
/// A lazily initializable atomic strong reference.
///
/// These values can be set (initialized) exactly once, but read many
/// times.
@available(SwiftStdlib 5.10, *)
@frozen
public struct AtomicLazyReference<Instance: AnyObject>: ~Copyable {
@usableFromInline
let storage: Atomic<Unmanaged<Instance>?>
@available(SwiftStdlib 5.10, *)
@inlinable
public init() {
storage = Atomic<Unmanaged<Instance>?>(nil)
}
@inlinable
deinit {
if let unmanaged = storage.load(ordering: .acquiring) {
unmanaged.release()
}
}
}
@available(SwiftStdlib 5.10, *)
extension AtomicLazyReference {
/// Atomically initializes this reference if its current value is nil, then
/// returns the initialized value. If this reference is already initialized,
/// then `storeIfNilThenLoad(_:)` discards its supplied argument and returns
/// the current value without updating it.
///
/// The following example demonstrates how this can be used to implement a
/// thread-safe lazily initialized reference:
///
/// ```
/// class Image {
/// var _histogram: AtomicLazyReference<Histogram> = .init()
///
/// // This is safe to call concurrently from multiple threads.
/// var atomicLazyHistogram: Histogram {
/// if let histogram = _histogram.load() { return histogram }
/// // Note that code here may run concurrently on
/// // multiple threads, but only one of them will get to
/// // succeed setting the reference.
/// let histogram = ...
/// return _histogram.storeIfNilThenLoad(histogram)
/// }
/// ```
///
/// This operation uses acquiring-and-releasing memory ordering.
@available(SwiftStdlib 5.10, *)
public func storeIfNilThenLoad(_ desired: consuming Instance) -> Instance {
let desiredUnmanaged = Unmanaged.passRetained(desired)
let (exchanged, current) = storage.compareExchange(
expected: nil,
desired: desiredUnmanaged,
ordering: .acquiringAndReleasing
)
if !exchanged {
// The reference has already been initialized. Balance the retain that we
// performed on 'desired'.
desiredUnmanaged.release()
return current!.takeUnretainedValue()
}
return desiredUnmanaged.takeUnretainedValue()
}
/// Atomically loads and returns the current value of this reference.
///
/// The load operation is performed with the memory ordering
/// `AtomicLoadOrdering.acquiring`.
@available(SwiftStdlib 5.10, *)
public func load() -> Instance? {
let value = storage.load(ordering: .acquiring)
return value?.takeUnretainedValue()
}
}