-
-
Notifications
You must be signed in to change notification settings - Fork 472
Expand file tree
/
Copy pathCaptureStrategy.kt
More file actions
271 lines (237 loc) · 7.95 KB
/
Copy pathCaptureStrategy.kt
File metadata and controls
271 lines (237 loc) · 7.95 KB
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
package io.sentry.android.replay.capture
import android.graphics.Bitmap
import android.view.MotionEvent
import io.sentry.Breadcrumb
import io.sentry.DateUtils
import io.sentry.Hint
import io.sentry.IScopes
import io.sentry.ReplayRecording
import io.sentry.SentryOptions
import io.sentry.SentryReplayEvent
import io.sentry.SentryReplayEvent.ReplayType
import io.sentry.android.replay.ReplayCache
import io.sentry.android.replay.ScreenshotRecorderConfig
import io.sentry.protocol.SentryId
import io.sentry.rrweb.RRWebBreadcrumbEvent
import io.sentry.rrweb.RRWebEvent
import io.sentry.rrweb.RRWebMetaEvent
import io.sentry.rrweb.RRWebOptionsEvent
import io.sentry.rrweb.RRWebVideoEvent
import java.io.File
import java.util.Date
import java.util.Deque
import java.util.LinkedList
internal interface CaptureStrategy {
var currentSegment: Int
var currentReplayId: SentryId
val replayCacheDir: File?
var replayType: ReplayType
var segmentTimestamp: Date?
fun start(segmentId: Int = 0, replayId: SentryId = SentryId(), replayType: ReplayType? = null)
fun stop()
fun pause()
fun resume()
fun captureReplay(isTerminating: Boolean, onSegmentSent: (Date) -> Unit)
fun onScreenshotRecorded(
bitmap: Bitmap? = null,
store: ReplayCache.(frameTimestamp: Long) -> Unit,
)
fun onConfigurationChanged(recorderConfig: ScreenshotRecorderConfig)
fun onTouchEvent(event: MotionEvent)
fun onScreenChanged(screen: String?) = Unit
fun convert(): CaptureStrategy
companion object {
private fun Breadcrumb?.isNetworkAvailable(): Boolean =
this != null &&
category == "network.event" &&
data.getOrElse("action", { null }) == "NETWORK_AVAILABLE"
private fun Breadcrumb.isNetworkConnectivity(): Boolean =
category == "network.event" && data.containsKey("network_type")
private const val NETWORK_BREADCRUMB_START_OFFSET = 5000L
// 5 minutes, otherwise relay will just drop it. Can prevent the case where the device
// time is wrong and the segment is too long.
private const val MAX_SEGMENT_DURATION = 1000L * 60 * 5
fun createSegment(
scopes: IScopes?,
options: SentryOptions,
duration: Long,
currentSegmentTimestamp: Date,
replayId: SentryId,
segmentId: Int,
height: Int,
width: Int,
replayType: ReplayType,
cache: ReplayCache?,
frameRate: Int,
bitRate: Int,
screenAtStart: String?,
breadcrumbs: List<Breadcrumb>?,
events: Deque<RRWebEvent>,
): ReplaySegment {
val generatedVideo =
cache?.createVideoOf(
minOf(duration, MAX_SEGMENT_DURATION),
currentSegmentTimestamp.time,
segmentId,
height,
width,
frameRate,
bitRate,
) ?: return ReplaySegment.Failed
val (video, frameCount, videoDuration) = generatedVideo
val replayBreadcrumbs: List<Breadcrumb> =
if (breadcrumbs == null) {
var crumbs = emptyList<Breadcrumb>()
scopes?.configureScope { scope -> crumbs = ArrayList(scope.breadcrumbs) }
crumbs
} else {
breadcrumbs
}
return buildReplay(
options,
video,
replayId,
currentSegmentTimestamp,
segmentId,
height,
width,
frameCount,
frameRate,
videoDuration,
replayType,
screenAtStart,
replayBreadcrumbs,
events,
)
}
@Suppress("NewApi")
private fun buildReplay(
options: SentryOptions,
video: File,
currentReplayId: SentryId,
segmentTimestamp: Date,
segmentId: Int,
height: Int,
width: Int,
frameCount: Int,
frameRate: Int,
videoDuration: Long,
replayType: ReplayType,
screenAtStart: String?,
breadcrumbs: List<Breadcrumb>,
events: Deque<RRWebEvent>,
): ReplaySegment {
val endTimestamp = DateUtils.getDateTime(segmentTimestamp.time + videoDuration)
val replay =
SentryReplayEvent().apply {
this.eventId = currentReplayId
this.replayId = currentReplayId
this.segmentId = segmentId
this.timestamp = endTimestamp
this.replayStartTimestamp = segmentTimestamp
this.replayType = replayType
this.videoFile = video
}
val recordingPayload = mutableListOf<RRWebEvent>()
recordingPayload +=
RRWebMetaEvent().apply {
this.timestamp = segmentTimestamp.time
this.height = height
this.width = width
}
recordingPayload +=
RRWebVideoEvent().apply {
this.timestamp = segmentTimestamp.time
this.segmentId = segmentId
this.durationMs = videoDuration
this.frameCount = frameCount
this.size = video.length()
this.frameRate = frameRate
this.height = height
this.width = width
// TODO: support non-fullscreen windows later
this.left = 0
this.top = 0
}
val urls = LinkedList<String>()
var previousCrumb: Breadcrumb? = null
breadcrumbs.forEach { breadcrumb ->
// we special-case network-reconnected breadcrumb, because there's usually some delay after
// we receive onConnected callback and we resume ongoing replay recording. We still want
// this breadcrumb to be sent with the current segment, hence we give it more room to make
// it into the replay
val isAfterNetworkReconnected =
previousCrumb?.isNetworkAvailable() == true &&
breadcrumb.isNetworkConnectivity() &&
breadcrumb.timestamp.time + NETWORK_BREADCRUMB_START_OFFSET >= segmentTimestamp.time
if (
(breadcrumb.timestamp.time >= segmentTimestamp.time || isAfterNetworkReconnected) &&
breadcrumb.timestamp.time < endTimestamp.time
) {
val rrwebEvent = options.replayController.breadcrumbConverter.convert(breadcrumb)
if (rrwebEvent != null) {
recordingPayload += rrwebEvent
// fill in the urls array from navigation breadcrumbs
if (
(rrwebEvent as? RRWebBreadcrumbEvent)?.category == "navigation" &&
rrwebEvent.data?.getOrElse("to", { null }) is String
) {
urls.add(rrwebEvent.data!!["to"] as String)
}
}
}
previousCrumb = breadcrumb
}
if (screenAtStart != null && urls.firstOrNull() != screenAtStart) {
urls.addFirst(screenAtStart)
}
rotateEvents(events, endTimestamp.time) { event ->
if (event.timestamp >= segmentTimestamp.time) {
recordingPayload += event
}
}
if (segmentId == 0) {
recordingPayload += RRWebOptionsEvent(options)
}
val recording =
ReplayRecording().apply {
this.segmentId = segmentId
this.payload = recordingPayload.sortedBy { it.timestamp }
}
replay.urls = urls
return ReplaySegment.Created(replay = replay, recording = recording)
}
internal fun rotateEvents(
events: Deque<RRWebEvent>,
until: Long,
callback: ((RRWebEvent) -> Unit)? = null,
) {
val iter = events.iterator()
while (iter.hasNext()) {
val event = iter.next()
if (event.timestamp < until) {
callback?.invoke(event)
iter.remove()
}
}
}
}
sealed class ReplaySegment {
object Failed : ReplaySegment()
data class Created(val replay: SentryReplayEvent, val recording: ReplayRecording) :
ReplaySegment() {
fun capture(scopes: IScopes?, hint: Hint = Hint()) {
scopes?.captureReplay(replay, hint.apply { replayRecording = recording })
}
@Suppress("NewApi")
fun setSegmentId(segmentId: Int) {
replay.segmentId = segmentId
recording.payload?.forEach {
when (it) {
is RRWebVideoEvent -> it.segmentId = segmentId
}
}
}
}
}
}