Skip to content

Commit 59699b9

Browse files
authored
Merge pull request #28 from k-kohey/fix/mutation_warning
fix warning
2 parents 474a743 + b3ea5bb commit 59699b9

File tree

4 files changed

+44
-4
lines changed

4 files changed

+44
-4
lines changed

Demo.swiftpm/Sources/AppModule/Demo.swift

+23
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,24 @@ extension TrackingEvent {
2929
}
3030
}
3131

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+
3250
let logger = LoggerBundler.make(
3351
components: [MyLogger(), DebugLogger()],
3452
bufferFlowController: DefaultBufferFlowController(pollingInterval: 5, delayInputLimit: 5)
@@ -66,6 +84,11 @@ struct ExampleAppApp: App {
6684
.background(Color.gray)
6785
.task {
6886
await logger.startLogging()
87+
88+
await logger.add(
89+
mutations: [TimestampMutation(), UserIDMutation()]
90+
)
91+
6992
await logger.send(event: .impletion("home"))
7093
}
7194
}

Sources/Parchment/LoggerBundler.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public final actor LoggerBundler {
3333
}
3434

3535
public func add(mutations: [Mutation]) {
36-
transform = ([transform, mutations.composed()]).composed()
36+
transform = [transform, mutations.composed()].composed()
3737
}
3838

3939
/// Sends a Log to the retained LoggerComponents.

Sources/Parchment/Mutation.swift

+12-3
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,30 @@ public struct AnyLoggable: Loggable {
2828
}
2929
}
3030

31-
typealias Transform = (Loggable, LoggerComponentID) -> AnyLoggable
31+
typealias Transform = @Sendable (Loggable, LoggerComponentID) -> AnyLoggable
3232

3333
public protocol Mutation: Sendable {
3434
func transform(_: any Loggable, id: LoggerComponentID) -> AnyLoggable
3535
}
3636

37+
private extension Mutation {
38+
var _transform: Transform {
39+
{
40+
self.transform($0, id: $1)
41+
}
42+
}
43+
}
44+
3745
extension Sequence where Element == Mutation {
3846
func composed() -> Transform {
39-
map { $0.transform }.composed()
47+
return map { $0._transform }.composed()
4048
}
4149
}
4250

4351
extension Sequence where Element == Transform {
4452
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
4655
{
4756
transform(partialResult($0, $1), $1)
4857
}
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//
2+
// File.swift
3+
//
4+
//
5+
// Created by Kohei Kawaguchi on 2023/05/20.
6+
//
7+
8+
import Foundation

0 commit comments

Comments
 (0)