-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add subscribeStatus(callback) function to Document #190
Changes from all commits
299cfd5
3d12862
49c71ce
19a8ea5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -153,3 +153,64 @@ func subscribeDocs(_ d1: Document, _ d2: Document, _ d1Expected: [any OperationI | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
class EventCollector<T: Equatable> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private let queue = DispatchQueue(label: "com.yorkie.eventcollector", attributes: .concurrent) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
private var _values: [T] = [] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let doc: Document | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var values: [T] { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.queue.sync { self._values } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var count: Int { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return self.values.count | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
init(doc: Document) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.doc = doc | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func add(event: T) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.queue.async(flags: .barrier) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._values.append(event) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func asyncStream() -> AsyncStream<T> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return AsyncStream<T> { continuation in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for value in self.values { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continuation.yield(value) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continuation.finish() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func verifyNthValue(at nth: Int, isEqualTo targetValue: T) async { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if nth > self.values.count { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
XCTFail("Expected \(nth)th value: \(targetValue), but only received \(self.values.count) values") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var counter = 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for await value in self.asyncStream() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
counter += 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if counter == nth { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
XCTAssertTrue(value == targetValue, "Expected \(nth)th value: \(targetValue), actual value: \(value)") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
XCTFail("Stream ended before finding \(nth)th value") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+189
to
+206
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Improve boundary check for better error handling. The boundary check should use - if nth > self.values.count {
+ if nth >= self.values.count {
XCTFail("Expected \(nth)th value: \(targetValue), but only received \(self.values.count) values")
return
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func subscribeDocumentStatus() async where T == DocumentStatus { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
await self.doc.subscribeStatus { [weak self] event, _ in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
guard let status = (event as? StatusChangedEvent)?.value.status else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self?.add(event: status) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+208
to
+215
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add error handling for subscription failures. Consider handling potential errors from the subscription to prevent silent failures in tests. - func subscribeDocumentStatus() async where T == DocumentStatus {
+ func subscribeDocumentStatus() async throws where T == DocumentStatus {
- await self.doc.subscribeStatus { [weak self] event, _ in
+ try await self.doc.subscribeStatus { [weak self] event, error in
+ if let error = error {
+ XCTFail("Status subscription failed: \(error)")
+ return
+ }
guard let status = (event as? StatusChangedEvent)?.value.status else {
return
}
self?.add(event: status)
}
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Consider enhancing AsyncStream to support real-time updates.
The current implementation creates a one-shot stream that only yields existing values. Consider enhancing it to support real-time updates by maintaining a continuation that yields new values as they arrive.