Skip to content

Commit 3f39151

Browse files
committed
update readme
1 parent cf8996b commit 3f39151

File tree

1 file changed

+71
-34
lines changed

1 file changed

+71
-34
lines changed

README.md

+71-34
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,53 @@
11
# Parchment-ios
22

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.
55

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
97

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.
1111

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)
1413

15-
# Usage
14+
## Installation
1615

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.
1817

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
1951

2052
```swift
2153

@@ -28,7 +60,7 @@ struct Event: Loggable {
2860
// with enum
2961
enum Event: Loggable {
3062
case impletion(screen: String)
31-
63+
3264
var eventName: String {
3365
...
3466
}
@@ -45,7 +77,7 @@ Alternatively, there are two ways to do this without definision logging event.
4577
- Use type `TrackingEvent`
4678
- Use Dictionary. Dictionary is conformed Loggable.
4779

48-
## 2. Wrap logging service
80+
### Wrap logging service
4981

5082
Wrap existing logger implemention such as such as FirebaseAnalytics and endpoints with LoggerComponent.
5183

@@ -61,7 +93,7 @@ struct Analytics: LoggerComponent {
6193
func send(_ event: Loggable) async -> Bool {
6294
let url = URL(string: "https://your-endpoint/...")!
6395
request.httpBody = convertBody(from: event)
64-
96+
6597
return await withCheckedContinuation { continuation in
6698
let task = URLSession.shared.dataTask(with: request) { data, response, error in
6799

@@ -70,15 +102,15 @@ struct Analytics: LoggerComponent {
70102
continuation.resume(returning: false)
71103
return
72104
}
73-
105+
74106
guard
75107
let response = response as? HTTPURLResponse,
76108
(200..<300).contains(response.statusCode)
77109
else {
78110
continuation.resume(returning: false)
79111
return
80112
}
81-
113+
82114
continuation.resume(returning: true)
83115
}
84116
task.resume()
@@ -88,7 +120,7 @@ struct Analytics: LoggerComponent {
88120

89121
```
90122

91-
## 3. Send event
123+
### Send event
92124

93125
Initialize `LoggerBundler` and send log using it.
94126

@@ -108,13 +140,20 @@ await logger.send([\.eventName: "tapButton", \.parameters: ["ButtonID": 1]])
108140

109141
```
110142

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
112151

113152
This section describes how to customize the behavior of the logger.
114153

115-
## Create a type that conforms to Mutation
154+
### Create a type that conforms to Mutation
116155

117-
Mutation converts one log into another.
156+
Mutation converts one log into another.
118157

119158
This is useful if you have parameters that you want to add to all the logs.
120159

@@ -130,7 +169,7 @@ struct DeviceDataMutation: Mutation {
130169
"OS": UIDevice.current.systemName,
131170
"OS Version": UIDevice.current.systemVersion
132171
]
133-
172+
134173
public func transform(_ event: Loggable, id: LoggerComponentID) -> Loggable {
135174
let log: LoggableDictonary = [
136175
\.eventName: event.eventName,
@@ -144,13 +183,12 @@ logger.mutations.append(DeviceDataMutation())
144183

145184
```
146185

147-
## Extend LoggerComponentID
186+
### Extend LoggerComponentID
148187

149188
LoggerComponentID is an ID that uniquely recognizes a logger.
150189

151190
By extending LoggerComponentID, the destination of the log can be controlled as shown below.
152191

153-
154192
```swift
155193

156194
extension LoggerComponentID {
@@ -164,30 +202,29 @@ await logger.send(.tap, with: .init(scope: .only([.myBadkend])))
164202

165203
```
166204

167-
## Create a type that conforms to BufferedEventFlushScheduler
205+
### Create a type that conforms to BufferedEventFlushScheduler
168206

169207
BufferedEventFlushScheduler determines the timing of fetching the log data in the buffer.
170208
To create the type and set it to logger, write as follows.
171209

172-
173210
```swift
174211

175212
// An implementation similar to this can be found in ParchmentDefault
176213
final class RegularlyPollingScheduler: BufferedEventFlushScheduler {
177214
public static let `default` = RegularlyPollingScheduler(timeInterval: 60)
178-
215+
179216
let timeInterval: TimeInterval
180-
217+
181218
var lastFlushedDate: Date = Date()
182-
219+
183220
private weak var timer: Timer?
184-
221+
185222
public init(
186223
timeInterval: TimeInterval,
187224
) {
188225
self.timeInterval = timeInterval
189226
}
190-
227+
191228
public func schedule(with buffer: TrackingEventBufferAdapter) async -> AsyncThrowingStream<[BufferRecord], Error> {
192229
return AsyncThrowingStream { continuation in
193230
let timer = Timer(fire: .init(), interval: 1, repeats: true) { _ in
@@ -201,19 +238,19 @@ final class RegularlyPollingScheduler: BufferedEventFlushScheduler {
201238
self.timer = timer
202239
}
203240
}
204-
241+
205242
public func cancel() {
206243
timer?.invalidate()
207244
}
208-
245+
209246
private func tick(with buffer: TrackingEventBufferAdapter, didFlush: @escaping ([BufferRecord])->()) async {
210247
guard await buffer.count() > 0 else { return }
211-
248+
212249
let flush = {
213250
let records = await buffer.load()
214251
didFlush(records)
215252
}
216-
253+
217254
let timeSinceLastFlush = abs(self.lastFlushedDate.timeIntervalSinceNow)
218255
if self.timeInterval < timeSinceLastFlush {
219256
await flush()
@@ -231,7 +268,7 @@ let logger = LoggerBundler(
231268

232269
```
233270

234-
## Create a type that conforms to TrackingEventBuffer
271+
### Create a type that conforms to TrackingEventBuffer
235272

236273
TrackingEventBuffer is a buffer that saves the log.
237274

0 commit comments

Comments
 (0)