-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathPlugins.swift
231 lines (184 loc) · 6.19 KB
/
Plugins.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
//
// Plugins.swift
// Segment
//
// Created by Brandon Sneed on 12/3/20.
//
import Foundation
/**
PluginType specifies where in the chain a given plugin is to be executed.
*/
public enum PluginType: Int, CaseIterable {
/// Executed before event processing begins.
case before
/// Executed as the first level of event processing.
case enrichment
/// Executed as events begin to pass off to destinations.
case destination
/// Executed after all event processing is completed. This can be used to perform cleanup operations, etc.
case after
/// Executed only when called manually, such as Logging.
case utility
}
public enum UpdateType {
case initial
case refresh
}
public protocol Plugin: AnyObject {
var type: PluginType { get }
var analytics: Analytics? { get set }
func configure(analytics: Analytics)
func update(settings: Settings, type: UpdateType)
func execute<T: RawEvent>(event: T?) -> T?
func shutdown()
}
public protocol EventPlugin: Plugin {
func identify(event: IdentifyEvent) -> IdentifyEvent?
func track(event: TrackEvent) -> TrackEvent?
func group(event: GroupEvent) -> GroupEvent?
func alias(event: AliasEvent) -> AliasEvent?
func screen(event: ScreenEvent) -> ScreenEvent?
func reset()
func flush()
}
public protocol DestinationPlugin: EventPlugin {
var key: String { get }
var timeline: Timeline { get }
func add(plugin: Plugin) -> Plugin
func apply(closure: (Plugin) -> Void)
func remove(plugin: Plugin)
}
public protocol UtilityPlugin: EventPlugin { }
public protocol VersionedPlugin {
static func version() -> String
}
public protocol FlushCompletion {
func flush(group: DispatchGroup)
}
// For internal platform-specific bits
internal protocol PlatformPlugin: Plugin { }
public typealias EnrichmentClosure = (_ event: RawEvent?) -> RawEvent?
public class ClosureEnrichment: Plugin {
public var type: PluginType = .enrichment
public weak var analytics: Analytics? = nil
internal let closure: EnrichmentClosure
init(closure: @escaping EnrichmentClosure) {
self.closure = closure
}
public func execute<T: RawEvent>(event: T?) -> T? {
return closure(event) as? T
}
}
// MARK: - Plugin instance helpers
extension Plugin {
public func configure(analytics: Analytics) {
self.analytics = analytics
}
}
// MARK: - Adding/Removing Plugins
extension DestinationPlugin {
public func configure(analytics: Analytics) {
self.analytics = analytics
apply { plugin in
plugin.configure(analytics: analytics)
}
}
/**
Applies the supplied closure to the currently loaded set of plugins.
- Parameter closure: A closure that takes an plugin to be operated on as a parameter.
*/
public func apply(closure: (Plugin) -> Void) {
timeline.apply(closure)
}
/**
Adds a new plugin to the currently loaded set.
- Parameter plugin: The plugin to be added.
- Returns: Returns the supplied plugin.
*/
@discardableResult
public func add(plugin: Plugin) -> Plugin {
if let analytics = self.analytics {
plugin.configure(analytics: analytics)
}
timeline.add(plugin: plugin)
analytics?.updateIfNecessary(plugin: plugin)
return plugin
}
/**
Adds a new enrichment to the currently loaded set of plugins.
- Parameter enrichment: The enrichment closure to be added.
- Returns: Returns the the generated plugin.
*/
@discardableResult
public func add(enrichment: @escaping EnrichmentClosure) -> Plugin {
let plugin = ClosureEnrichment(closure: enrichment)
if let analytics = self.analytics {
plugin.configure(analytics: analytics)
}
timeline.add(plugin: plugin)
return plugin
}
/**
Removes and unloads plugins with a matching name from the system.
- Parameter pluginName: An plugin name.
*/
public func remove(plugin: Plugin) {
timeline.remove(plugin: plugin)
}
public func find<T: Plugin>(pluginType: T.Type) -> T? {
return timeline.find(pluginType: pluginType)
}
public func findAll<T: Plugin>(pluginType: T.Type) -> [T]? {
return timeline.findAll(pluginType: pluginType)
}
}
extension Analytics {
/**
Applies the supplied closure to the currently loaded set of plugins.
NOTE: This does not apply to plugins contained within DestinationPlugins.
- Parameter closure: A closure that takes an plugin to be operated on as a parameter.
*/
public func apply(closure: (Plugin) -> Void) {
timeline.apply(closure)
}
/**
Adds a new plugin to the currently loaded set.
- Parameter plugin: The plugin to be added.
- Returns: Returns the name of the supplied plugin.
*/
@discardableResult
public func add(plugin: Plugin) -> Plugin {
plugin.configure(analytics: self)
timeline.add(plugin: plugin)
updateIfNecessary(plugin: plugin)
return plugin
}
/**
Adds a new enrichment to the currently loaded set of plugins.
- Parameter enrichment: The enrichment closure to be added.
- Returns: Returns the the generated plugin.
*/
@discardableResult
public func add(enrichment: @escaping EnrichmentClosure) -> Plugin {
let plugin = ClosureEnrichment(closure: enrichment)
plugin.configure(analytics: self)
timeline.add(plugin: plugin)
return plugin
}
/**
Removes and unloads plugins with a matching name from the system.
- Parameter pluginName: An plugin name.
*/
public func remove(plugin: Plugin) {
timeline.remove(plugin: plugin)
}
public func find<T: Plugin>(pluginType: T.Type) -> T? {
return timeline.find(pluginType: pluginType)
}
public func findAll<T: Plugin>(pluginType: T.Type) -> [T]? {
return timeline.findAll(pluginType: pluginType)
}
public func find(key: String) -> DestinationPlugin? {
return timeline.find(key: key)
}
}