1
1
# Parchment-ios
2
2
3
- Parchment is implemention called Logger or Tracker.
4
- Parchment has three features:
3
+ This project provides an implementation of a logger that tracks user behavior and system behavior.
4
+ Using this implementation, many logging-related processes can be standardized and hidden.
5
5
6
- 1 . Retrying when logging request is failed.
7
- 2 . Log is buffed and can be sent at any time.
8
- 3 . Easy to combine your source code and replace logger implemention.
6
+ This is especially useful in the following cases
9
7
10
- # [ WIP] API Document
8
+ - There are multiple backends sending event logs, and the user wants to control which event logs are sent to which backend.
9
+ - Buffering event logs in local storage to prevent missing event logs
10
+ - To centrally manage parameters that are common to many event logs.
11
11
12
- - https://k-kohey.github.io/Parchment-swift/Parchment/documentation/parchment/
13
- - https://k-kohey.github.io/Parchment-swift/ParchmentDefault/documentation/parchmentdefault/
12
+ Translated with www.DeepL.com/Translator (free version)
14
13
15
- # Usage
14
+ ## Installation
16
15
17
- ## 1. Definision logging event
16
+ If you are using Xcode Project, you can add a dependency for this Package by specifying this repository from Xcode.
18
17
18
+ If you are using the Swift Package Project, you can add a dependency for this Package by adding the following description to Package.swift.
19
+
20
+ ``` swift
21
+ dependencies: [
22
+ .product (name : " Parchment" , package : " Parchment" ),
23
+ // The following statements are optional
24
+ .product (name : " ParchmentDefault" , package : " Parchment" ),
25
+ ]
26
+ ```
27
+
28
+ ## Project Overview
29
+
30
+ ### Parchment
31
+
32
+ It contains the main logic and definitions for logging processing and event logging definitions.
33
+
34
+ ### ParchmentDefault
35
+
36
+ Provides a stander implementation compliant with the Protocol provided by Parchment. If you implement your own buffer and scheduler, you do not need to add any dependencies.
37
+
38
+ See the [ Customization] ( #customization ) section for more details.
39
+
40
+ ### eventgen
41
+
42
+ This is an experimental API that generates Swift code from event log specifications written in natural language.
43
+
44
+ See the [ document] ( EventGen/README.md ) section for more details.
45
+
46
+ ## Usage
47
+
48
+ This section describes the basic usage of this project.
49
+
50
+ ### Definision logging event
19
51
20
52
``` swift
21
53
@@ -28,7 +60,7 @@ struct Event: Loggable {
28
60
// with enum
29
61
enum Event : Loggable {
30
62
case impletion (screen : String )
31
-
63
+
32
64
var eventName: String {
33
65
...
34
66
}
@@ -45,7 +77,7 @@ Alternatively, there are two ways to do this without definision logging event.
45
77
- Use type ` TrackingEvent `
46
78
- Use Dictionary. Dictionary is conformed Loggable.
47
79
48
- ## 2. Wrap logging service
80
+ ### Wrap logging service
49
81
50
82
Wrap existing logger implemention such as such as FirebaseAnalytics and endpoints with LoggerComponent.
51
83
@@ -61,7 +93,7 @@ struct Analytics: LoggerComponent {
61
93
func send (_ event : Loggable) async -> Bool {
62
94
let url = URL (string : " https://your-endpoint/..." )!
63
95
request.httpBody = convertBody (from : event)
64
-
96
+
65
97
return await withCheckedContinuation { continuation in
66
98
let task = URLSession.shared .dataTask (with : request) { data, response, error in
67
99
@@ -70,15 +102,15 @@ struct Analytics: LoggerComponent {
70
102
continuation.resume (returning : false )
71
103
return
72
104
}
73
-
105
+
74
106
guard
75
107
let response = response as? HTTPURLResponse,
76
108
(200 ..< 300 ).contains (response.statusCode )
77
109
else {
78
110
continuation.resume (returning : false )
79
111
return
80
112
}
81
-
113
+
82
114
continuation.resume (returning : true )
83
115
}
84
116
task.resume ()
@@ -88,7 +120,7 @@ struct Analytics: LoggerComponent {
88
120
89
121
```
90
122
91
- ## 3. Send event
123
+ ### Send event
92
124
93
125
Initialize ` LoggerBundler ` and send log using it.
94
126
@@ -108,13 +140,20 @@ await logger.send([\.eventName: "tapButton", \.parameters: ["ButtonID": 1]])
108
140
109
141
```
110
142
111
- # Customization
143
+ ### More Information
144
+
145
+ Please see the API documentation below(WIP).
146
+
147
+ - https://k-kohey.github.io/Parchment-swift/Parchment/documentation/parchment/
148
+ - https://k-kohey.github.io/Parchment-swift/ParchmentDefault/documentation/parchmentdefault/
149
+
150
+ ## Customization
112
151
113
152
This section describes how to customize the behavior of the logger.
114
153
115
- ## Create a type that conforms to Mutation
154
+ ### Create a type that conforms to Mutation
116
155
117
- Mutation converts one log into another.
156
+ Mutation converts one log into another.
118
157
119
158
This is useful if you have parameters that you want to add to all the logs.
120
159
@@ -130,7 +169,7 @@ struct DeviceDataMutation: Mutation {
130
169
" OS" : UIDevice.current .systemName ,
131
170
" OS Version" : UIDevice.current .systemVersion
132
171
]
133
-
172
+
134
173
public func transform (_ event : Loggable, id : LoggerComponentID) -> Loggable {
135
174
let log: LoggableDictonary = [
136
175
\.eventName : event.eventName ,
@@ -144,13 +183,12 @@ logger.mutations.append(DeviceDataMutation())
144
183
145
184
```
146
185
147
- ## Extend LoggerComponentID
186
+ ### Extend LoggerComponentID
148
187
149
188
LoggerComponentID is an ID that uniquely recognizes a logger.
150
189
151
190
By extending LoggerComponentID, the destination of the log can be controlled as shown below.
152
191
153
-
154
192
``` swift
155
193
156
194
extension LoggerComponentID {
@@ -164,30 +202,29 @@ await logger.send(.tap, with: .init(scope: .only([.myBadkend])))
164
202
165
203
```
166
204
167
- ## Create a type that conforms to BufferedEventFlushScheduler
205
+ ### Create a type that conforms to BufferedEventFlushScheduler
168
206
169
207
BufferedEventFlushScheduler determines the timing of fetching the log data in the buffer.
170
208
To create the type and set it to logger, write as follows.
171
209
172
-
173
210
``` swift
174
211
175
212
// An implementation similar to this can be found in ParchmentDefault
176
213
final class RegularlyPollingScheduler : BufferedEventFlushScheduler {
177
214
public static let `default ` = RegularlyPollingScheduler (timeInterval : 60 )
178
-
215
+
179
216
let timeInterval: TimeInterval
180
-
217
+
181
218
var lastFlushedDate: Date = Date ()
182
-
219
+
183
220
private weak var timer: Timer?
184
-
221
+
185
222
public init (
186
223
timeInterval : TimeInterval,
187
224
) {
188
225
self .timeInterval = timeInterval
189
226
}
190
-
227
+
191
228
public func schedule (with buffer : TrackingEventBufferAdapter) async -> AsyncThrowingStream<[BufferRecord], Error > {
192
229
return AsyncThrowingStream { continuation in
193
230
let timer = Timer (fire : .init (), interval : 1 , repeats : true ) { _ in
@@ -201,19 +238,19 @@ final class RegularlyPollingScheduler: BufferedEventFlushScheduler {
201
238
self .timer = timer
202
239
}
203
240
}
204
-
241
+
205
242
public func cancel () {
206
243
timer? .invalidate ()
207
244
}
208
-
245
+
209
246
private func tick (with buffer : TrackingEventBufferAdapter, didFlush : @escaping ([BufferRecord])-> ()) async {
210
247
guard await buffer.count () > 0 else { return }
211
-
248
+
212
249
let flush = {
213
250
let records = await buffer.load ()
214
251
didFlush (records)
215
252
}
216
-
253
+
217
254
let timeSinceLastFlush = abs (self .lastFlushedDate .timeIntervalSinceNow )
218
255
if self .timeInterval < timeSinceLastFlush {
219
256
await flush ()
@@ -231,7 +268,7 @@ let logger = LoggerBundler(
231
268
232
269
```
233
270
234
- ## Create a type that conforms to TrackingEventBuffer
271
+ ### Create a type that conforms to TrackingEventBuffer
235
272
236
273
TrackingEventBuffer is a buffer that saves the log.
237
274
0 commit comments