File tree 4 files changed +44
-4
lines changed
Demo.swiftpm/Sources/AppModule
4 files changed +44
-4
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,24 @@ extension TrackingEvent {
29
29
}
30
30
}
31
31
32
+ struct TimestampMutation : Mutation {
33
+ func transform( _ e: Parchment . Loggable , id: Parchment . LoggerComponentID ) -> Parchment . AnyLoggable {
34
+ var e = AnyLoggable ( e)
35
+ e. parameters [ " createdAt " ] = Date ( )
36
+ return e
37
+ }
38
+ }
39
+
40
+ struct UserIDMutation : Mutation {
41
+ let userID = 1
42
+
43
+ func transform( _ e: Parchment . Loggable , id: Parchment . LoggerComponentID ) -> Parchment . AnyLoggable {
44
+ var e = AnyLoggable ( e)
45
+ e. parameters [ " userID " ] = userID
46
+ return e
47
+ }
48
+ }
49
+
32
50
let logger = LoggerBundler . make (
33
51
components: [ MyLogger ( ) , DebugLogger ( ) ] ,
34
52
bufferFlowController: DefaultBufferFlowController ( pollingInterval: 5 , delayInputLimit: 5 )
@@ -66,6 +84,11 @@ struct ExampleAppApp: App {
66
84
. background ( Color . gray)
67
85
. task {
68
86
await logger. startLogging ( )
87
+
88
+ await logger. add (
89
+ mutations: [ TimestampMutation ( ) , UserIDMutation ( ) ]
90
+ )
91
+
69
92
await logger. send ( event: . impletion( " home " ) )
70
93
}
71
94
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public final actor LoggerBundler {
33
33
}
34
34
35
35
public func add( mutations: [ Mutation ] ) {
36
- transform = ( [ transform, mutations. composed ( ) ] ) . composed ( )
36
+ transform = [ transform, mutations. composed ( ) ] . composed ( )
37
37
}
38
38
39
39
/// Sends a Log to the retained LoggerComponents.
Original file line number Diff line number Diff line change @@ -28,21 +28,30 @@ public struct AnyLoggable: Loggable {
28
28
}
29
29
}
30
30
31
- typealias Transform = ( Loggable , LoggerComponentID ) -> AnyLoggable
31
+ typealias Transform = @ Sendable ( Loggable , LoggerComponentID ) -> AnyLoggable
32
32
33
33
public protocol Mutation : Sendable {
34
34
func transform( _: any Loggable , id: LoggerComponentID ) -> AnyLoggable
35
35
}
36
36
37
+ private extension Mutation {
38
+ var _transform : Transform {
39
+ {
40
+ self . transform ( $0, id: $1)
41
+ }
42
+ }
43
+ }
44
+
37
45
extension Sequence where Element == Mutation {
38
46
func composed( ) -> Transform {
39
- map { $0. transform } . composed ( )
47
+ return map { $0. _transform } . composed ( )
40
48
}
41
49
}
42
50
43
51
extension Sequence where Element == Transform {
44
52
func composed( ) -> Transform {
45
- reduce ( { log, _ in AnyLoggable ( log) } ) { partialResult, transform in
53
+ let base : Transform = { log, _ in AnyLoggable ( log) }
54
+ return reduce ( base) { partialResult, transform in
46
55
{
47
56
transform ( partialResult ( $0, $1) , $1)
48
57
}
Original file line number Diff line number Diff line change
1
+ //
2
+ // File.swift
3
+ //
4
+ //
5
+ // Created by Kohei Kawaguchi on 2023/05/20.
6
+ //
7
+
8
+ import Foundation
You can’t perform that action at this time.
0 commit comments