Skip to content

Commit c0fdfdb

Browse files
authored
Add an introduction and formatting for the combineLatest algorithm into a proposal. (apple#177)
* Add an introduction and formatting for the `combineLatest` algorithm into a proposal * Update the proposal # to 0006
1 parent e3a18a0 commit c0fdfdb

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

Evolution/0006-combineLatest.md

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Combine Latest
2+
3+
* Proposal: [SAA-0006](https://github.com/apple/swift-async-algorithms/blob/main/Evolution/0006-combineLatest.md)
4+
* Authors: [Philippe Hausler](https://github.com/phausler)
5+
* Status: **Implemented**
6+
7+
8+
* Implementation: [[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncCombineLatest2Sequence.swift), [Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncCombineLatest3Sequence.swift) |
9+
[Tests](https://github.com/apple/swift-async-algorithms/blob/main/Tests/AsyncAlgorithmsTests/TestCombineLatest.swift)]
10+
11+
* Decision Notes:
12+
* Bugs:
13+
14+
## Introduction
15+
16+
Similar to the `zip` algorithm there is a need to combine the latest values from multiple input asynchronous sequences. Since `AsyncSequence` augments the concept of sequence with the characteristic of time it means that the composition of elements may not just be pairwise emissions but instead be temporal composition. This means that it is useful to emit a new tuple _when_ a value is produced. The `combineLatest` algorithm provides precicely that.
17+
18+
## Detailed Design
19+
20+
This algorithm combines the latest values produced from two or more asynchronous sequences into an asynchronous sequence of tuples.
21+
22+
```swift
23+
let appleFeed = URL("http://www.example.com/ticker?symbol=AAPL").lines
24+
let nasdaqFeed = URL("http://www.example.com/ticker?symbol=^IXIC").lines
25+
26+
for try await (apple, nasdaq) in combineLatest(appleFeed, nasdaqFeed) {
27+
print("AAPL: \(apple) NASDAQ: \(nasdaq)")
28+
}
29+
```
30+
31+
Given some sample inputs the following combined events can be expected.
32+
33+
| Timestamp | appleFeed | nasdaqFeed | combined output |
34+
| ----------- | --------- | ---------- | ----------------------------- |
35+
| 11:40 AM | 173.91 | | |
36+
| 12:25 AM | | 14236.78 | AAPL: 173.91 NASDAQ: 14236.78 |
37+
| 12:40 AM | | 14218.34 | AAPL: 173.91 NASDAQ: 14218.34 |
38+
| 1:15 PM | 173.00 | | AAPL: 173.00 NASDAQ: 14218.34 |
39+
40+
This function family and the associated family of return types are prime candidates for variadic generics. Until that proposal is accepted, these will be implemented in terms of two- and three-base sequence cases.
41+
42+
```swift
43+
public func combineLatest<Base1: AsyncSequence, Base2: AsyncSequence>(_ base1: Base1, _ base2: Base2) -> AsyncCombineLatest2Sequence<Base1, Base2>
44+
45+
public func combineLatest<Base1: AsyncSequence, Base2: AsyncSequence, Base3: AsyncSequence>(_ base1: Base1, _ base2: Base2, _ base3: Base3) -> AsyncCombineLatest3Sequence<Base1, Base2, Base3>
46+
47+
public struct AsyncCombineLatest2Sequence<Base1: AsyncSequence, Base2: AsyncSequence>: Sendable
48+
where
49+
Base1: Sendable, Base2: Sendable,
50+
Base1.Element: Sendable, Base2.Element: Sendable,
51+
Base1.AsyncIterator: Sendable, Base2.AsyncIterator: Sendable {
52+
public typealias Element = (Base1.Element, Base2.Element)
53+
54+
public struct Iterator: AsyncIteratorProtocol {
55+
public mutating func next() async rethrows -> Element?
56+
}
57+
58+
public func makeAsyncIterator() -> Iterator
59+
}
60+
61+
public struct AsyncCombineLatest3Sequence<Base1: AsyncSequence, Base2: AsyncSequence, Base3: AsyncSequence>: Sendable
62+
where
63+
Base1: Sendable, Base2: Sendable, Base3: Sendable
64+
Base1.Element: Sendable, Base2.Element: Sendable, Base3.Element: Sendable
65+
Base1.AsyncIterator: Sendable, Base2.AsyncIterator: Sendable, Base3.AsyncIterator: Sendable {
66+
public typealias Element = (Base1.Element, Base2.Element, Base3.Element)
67+
68+
public struct Iterator: AsyncIteratorProtocol {
69+
public mutating func next() async rethrows -> Element?
70+
}
71+
72+
public func makeAsyncIterator() -> Iterator
73+
}
74+
75+
```
76+
77+
The `combineLatest(_:...)` function takes two or more asynchronous sequences as arguments and produces an `AsyncCombineLatestSequence` which is an asynchronous sequence.
78+
79+
Since the bases comprising the `AsyncCombineLatestSequence` must be iterated concurrently to produce the latest value, those sequences must be able to be sent to child tasks. This means that a prerequisite of the bases must be that the base asynchronous sequences, their iterators, and the elements they produce must all be `Sendable`.
80+
81+
If any of the bases terminate before the first element is produced, then the `AsyncCombineLatestSequence` iteration can never be satisfied. So, if a base's iterator returns `nil` at the first iteration, then the `AsyncCombineLatestSequence` iterator immediately returns `nil` to signify a terminal state. In this particular case, any outstanding iteration of other bases will be cancelled. After the first element is produced ,this behavior is different since the latest values can still be satisfied by at least one base. This means that beyond the construction of the first tuple comprised of the returned elements of the bases, the terminal state of the `AsyncCombineLatestSequence` iteration will only be reached when all of the base iterations reach a terminal state.
82+
83+
The throwing behavior of `AsyncCombineLatestSequence` is that if any of the bases throw, then the composed asynchronous sequence throws on its iteration. If at any point (within the first iteration or afterwards), an error is thrown by any base, the other iterations are cancelled and the thrown error is immediately thrown to the consuming iteration.
84+
85+
### Naming
86+
87+
Since the inherent behavior of `combineLatest(_:...)` combines the latest values from multiple streams into a tuple the naming is intended to be quite literal. There are precedent terms of art in other frameworks and libraries (listed in the comparison section). Other naming takes the form of "withLatestFrom". This was disregarded since the "with" prefix is often most associated with the passing of a closure and some sort of contextual concept; `withUnsafePointer` or `withUnsafeContinuation` are prime examples.
88+
89+
### Comparison with other libraries
90+
91+
Combine latest often appears in libraries developed for processing events over time since the event ordering of a concept of "latest" only occurs when asynchrony is involved.
92+
93+
**ReactiveX** ReactiveX has an [API definition of CombineLatest](https://reactivex.io/documentation/operators/combinelatest.html) as a top level function for combining Observables.
94+
95+
**Combine** Combine has an [API definition of combineLatest](https://developer.apple.com/documentation/combine/publisher/combinelatest(_:)/) has an operator style method for combining Publishers.

0 commit comments

Comments
 (0)