mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
87 lines
2.0 KiB
Swift
87 lines
2.0 KiB
Swift
import Benchmark
|
|
import Combine
|
|
@_spi(Internals) import ComposableArchitecture
|
|
import Foundation
|
|
|
|
let storeSuite = BenchmarkSuite(name: "Store") { suite in
|
|
var store: StoreOf<Feature>!
|
|
let levels = 5
|
|
|
|
for level in 1...levels {
|
|
suite.benchmark("Nested send tap: \(level)") {
|
|
store.send(tap(level: level))
|
|
} setUp: {
|
|
store = Store(initialState: state(level: level)) {
|
|
Feature()
|
|
}
|
|
} tearDown: {
|
|
precondition(count(of: store.withState { $0 }, level: level) == 1)
|
|
_cancellationCancellables.withValue { $0.removeAll() }
|
|
}
|
|
}
|
|
for level in 1...levels {
|
|
suite.benchmark("Nested send none: \(level)") {
|
|
store.send(none(level: level))
|
|
} setUp: {
|
|
store = Store(initialState: state(level: level)) {
|
|
Feature()
|
|
}
|
|
} tearDown: {
|
|
precondition(count(of: store.withState { $0 }, level: level) == 0)
|
|
_cancellationCancellables.withValue { $0.removeAll() }
|
|
}
|
|
}
|
|
}
|
|
|
|
@Reducer
|
|
private struct Feature {
|
|
struct State {
|
|
@PresentationState var child: State?
|
|
var count = 0
|
|
}
|
|
enum Action {
|
|
indirect case child(PresentationAction<Action>)
|
|
case tap
|
|
case none
|
|
}
|
|
var body: some ReducerOf<Self> {
|
|
Reduce { state, action in
|
|
switch action {
|
|
case .child:
|
|
return .none
|
|
case .tap:
|
|
state.count = 1
|
|
return .publisher { Empty() }.cancellable(id: UUID())
|
|
case .none:
|
|
return .none
|
|
}
|
|
}
|
|
.ifLet(\.$child, action: \.child) {
|
|
Feature()
|
|
}
|
|
}
|
|
}
|
|
|
|
private func state(level: Int) -> Feature.State {
|
|
Feature.State(
|
|
child: level == 0
|
|
? nil
|
|
: state(level: level - 1)
|
|
)
|
|
}
|
|
private func tap(level: Int) -> Feature.Action {
|
|
level == 0
|
|
? .tap
|
|
: Feature.Action.child(.presented(tap(level: level - 1)))
|
|
}
|
|
private func none(level: Int) -> Feature.Action {
|
|
level == 0
|
|
? .none
|
|
: Feature.Action.child(.presented(none(level: level - 1)))
|
|
}
|
|
private func count(of state: Feature.State?, level: Int) -> Int? {
|
|
level == 0
|
|
? state?.count
|
|
: count(of: state?.child, level: level - 1)
|
|
}
|