-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputdiffs.go
213 lines (176 loc) · 5.5 KB
/
inputdiffs.go
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
package libphonelabgo
import (
"fmt"
phonelab "github.com/shaseley/phonelab-go"
)
// InputDiffProcessor is a Processor that combines input events with nearby
// diff samples.
type InputDiffProcessor struct {
Args *InputDiffProcessorArgs
Source phonelab.Processor
}
type LocalDiffSample struct {
Diff float64 `json:"diff"`
GlobalDiff float64 `json:"global_diff"`
}
type InputDiffSample struct {
Timestamp int64 `json:"timestamp"`
LocalDiff1 *LocalDiffSample `json:"local_diff1"`
LocalDiff4 *LocalDiffSample `json:"local_diff4"`
LocalDiff8 *LocalDiffSample `json:"local_diff8"`
GlobalDiff float64 `json:"global_diff"`
NumChanges int `json:"num_changes"`
Inserted bool `json:"inserted"`
}
type InputDiffEvent struct {
EventDetail []*TouchScreenEvent `json:"event_detail"`
Eclipsed bool `json:"eclipsed"`
Diffs []*InputDiffSample `json:"diffs"`
FrameTimes []int64 `json:"frame_times"`
complete bool
}
const DefaultDiffDuration = 5000
type InputDiffProcessorArgs struct {
DoTaps bool
DoKeys bool
DoScrolls bool
DiffDurationMs int64
DoFrameTimes bool
}
func NewInputDiffProcessorArgs(kwargs map[string]interface{}) *InputDiffProcessorArgs {
args := &InputDiffProcessorArgs{
DiffDurationMs: DefaultDiffDuration,
}
if v, ok := kwargs["do_taps"]; ok {
args.DoTaps, _ = v.(bool)
}
if v, ok := kwargs["do_scrolls"]; ok {
args.DoScrolls, _ = v.(bool)
}
if v, ok := kwargs["do_keys"]; ok {
args.DoKeys, _ = v.(bool)
}
if v, ok := kwargs["diff_duration_ms"]; ok {
var diffDuration int
if diffDuration, ok = v.(int); !ok {
fmt.Printf("Warning: wrong type for 'diff_duration_ms' (*T)\n", diffDuration)
}
args.DiffDurationMs = int64(diffDuration)
}
if v, ok := kwargs["do_frametimes"]; ok {
args.DoFrameTimes, _ = v.(bool)
}
return args
}
func (proc *InputDiffProcessor) Process() <-chan interface{} {
outChan := make(chan interface{})
inChan := proc.Source.Process()
var curEvent *InputDiffEvent
go func() {
for iLog := range inChan {
// We're only expecting frame diffs and input logs
switch t := iLog.(type) {
case *TouchScreenEvent:
{
if curEvent != nil {
if curEvent.complete {
curEvent.Eclipsed = true
outChan <- curEvent
curEvent = nil
} else if curEvent.EventDetail[0].What == TouchScreenEventScrollStart {
switch t.What {
default:
// Bad state, just discard
curEvent = nil
case TouchScreenEventScroll:
// Keep going with this event
curEvent.EventDetail = append(curEvent.EventDetail, t)
case TouchScreenEventScrollEnd:
curEvent.EventDetail = append(curEvent.EventDetail, t)
curEvent.complete = true
}
} else {
panic("Unexpected condition in InputDiffProcessor")
}
}
if curEvent == nil {
if (t.What == TouchScreenEventTap && proc.Args.DoTaps) ||
(t.What == TouchScreenEventKey && proc.Args.DoKeys) ||
(t.What == TouchScreenEventScrollStart && proc.Args.DoScrolls) {
curEvent = &InputDiffEvent{
EventDetail: []*TouchScreenEvent{t},
Diffs: make([]*InputDiffSample, 0),
complete: t.What != TouchScreenEventScrollStart,
FrameTimes: make([]int64, 0),
}
}
}
}
case *FrameDiffSample:
{
if curEvent == nil {
continue
}
// TODO: This should be done in the diffstream
(&t.SFFrameDiff).initScreenGrid(allScreenGrids[0])
diffTsMs := t.SFFrameDiff.Timestamp
curDetail := curEvent.EventDetail[len(curEvent.EventDetail)-1]
curEventMs := curDetail.Timestamp / 1000000
if diffTsMs-curEventMs <= proc.Args.DiffDurationMs || !curEvent.complete {
allConn := []PixelConnectivity{OneConnected, FourConnected, EightConnected}
diffs := make([]*LocalDiffSample, 3, 3)
for i, conn := range allConn {
localDiff, sz, err := t.SFFrameDiff.LocalDiff(conn,
curDetail.X, curDetail.Y)
if err != nil {
// TODO: Log
panic(fmt.Sprintf("Error getting local diff: %v", err))
}
diffs[i] = &LocalDiffSample{localDiff, sz}
}
curEvent.Diffs = append(curEvent.Diffs, &InputDiffSample{
Timestamp: t.SFFrameDiff.Timestamp,
LocalDiff1: diffs[0],
LocalDiff4: diffs[1],
LocalDiff8: diffs[2],
GlobalDiff: t.SFFrameDiff.PctDiff,
NumChanges: len(t.SFFrameDiff.GridEntries),
Inserted: t.Inserted,
})
} else {
outChan <- curEvent
curEvent = nil
}
}
case *FrameRefreshEvent:
{
if proc.Args.DoFrameTimes && curEvent != nil {
curDetail := curEvent.EventDetail[len(curEvent.EventDetail)-1]
if (t.SysTimeNs-curDetail.Timestamp)/1000000 <= proc.Args.DiffDurationMs || !curEvent.complete {
curEvent.FrameTimes = append(curEvent.FrameTimes, t.SysTimeNs)
} else {
outChan <- curEvent
curEvent = nil
}
}
}
}
}
// Send the final input event, if there is one
if curEvent != nil {
outChan <- curEvent
}
// Done.
close(outChan)
}()
return outChan
}
////////////////////////////////////////////////////////////////////////////////
type InputDiffProcessorGenerator struct{}
func (g *InputDiffProcessorGenerator) GenerateProcessor(source *phonelab.PipelineSourceInstance,
kwargs map[string]interface{}) phonelab.Processor {
return &InputDiffProcessor{
Source: source.Processor,
Args: NewInputDiffProcessorArgs(kwargs),
}
}