-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathWebAudioGraphIntegrator.ts
798 lines (710 loc) · 19.7 KB
/
WebAudioGraphIntegrator.ts
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
import * as dagre from 'dagre';
import * as graphlib from 'graphlib';
import {ProtocolMapping} from 'devtools-protocol/types/protocol-mapping';
import {DLOG} from '../utils/dlog';
import {
EMPTY,
isObservable,
merge,
NEVER,
Observable,
of,
OperatorFunction,
pipe,
Subject,
} from 'rxjs';
import {
map,
filter,
catchError,
mergeMap,
takeUntil,
take,
ignoreElements,
finalize,
share,
} from 'rxjs/operators';
import {WebAudioDebuggerEvent} from '../chrome/DebuggerWebAudioDomain';
import {Audion} from './Types';
import {
INITIAL_CONTEXT_REALTIME_DATA,
RealtimeDataErrorMessage,
WebAudioRealtimeData,
WebAudioRealtimeDataReason,
} from './WebAudioRealtimeData';
import {
ChromeDebuggerAPIEventName,
ChromeDebuggerAPIEvent,
} from './DebuggerAttachEventController';
import {
PageDebuggerEvent,
PageDebuggerEventParams,
} from '../chrome/DebuggerPageDomain';
enum GraphContextDestroyReasonMessage {
RECEIVE_WILL_DESTROY_EVENT = `ReceiveWillDestroyEvent`,
CANNOT_FIND_REALTIME_DATA = `CannotFindRealtimeData`,
}
type MutableContexts = {
[key: string]: {
graphContext: Audion.GraphContext;
graphContextDestroyed$: Subject<GraphContextDestroyReasonMessage>;
realtimeDataGraphContext$: Observable<Audion.GraphContext>;
};
};
interface EventHelpers {
realtimeData: WebAudioRealtimeData;
}
type IntegratableEventName =
| PageDebuggerEvent
| WebAudioDebuggerEvent
| ChromeDebuggerAPIEventName;
type IntegratableEvent =
| Audion.PageEvent
| Audion.WebAudioEvent
| ChromeDebuggerAPIEvent;
type IntegratableEventMapping = {
[K in IntegratableEventName]: ProtocolMapping.Events extends {
[key in K]: [infer P];
}
? P
: ChromeDebuggerAPIEvent extends {method: K; params: infer P}
? P
: never;
};
type EventHandlers =
| {
readonly [K in IntegratableEventName]: (
helpers: EventHelpers,
contexts: MutableContexts,
event: IntegratableEventMapping[K],
) => Observable<Audion.GraphContext> | Audion.GraphContext | void;
};
export const getTimestampAsString = () => {
return '[' + performance.now().toFixed(2) + '] ';
};
const EVENT_HANDLERS: Partial<EventHandlers> = {
[WebAudioDebuggerEvent.audioNodeCreated]: (
helpers,
contexts,
audioNodeCreated,
) => {
const node = audioNodeCreated.node;
const {contextId, nodeId, nodeType} = node;
const space = contexts[contextId];
if (!space) {
return;
}
DLOG(`A new AudioNode has been created.`, {
contextId,
nodeId,
});
const context = space.graphContext;
context.eventCount += 1;
if (context.nodes[nodeId]) {
DLOG(`Duplicate WebAudio.audioNodeCreated event`, {
contextId,
nodeId,
});
return;
}
context.nodes[nodeId] = {
node,
params: [],
edges: [],
};
context.graph.setNode(nodeId, {
id: nodeId,
label: nodeType,
type: nodeType,
color: null,
width: 150,
height: 50,
});
return context;
},
[WebAudioDebuggerEvent.audioNodeWillBeDestroyed]: (
helpers,
contexts,
audioNodeDestroyed,
) => {
const {contextId, nodeId} = audioNodeDestroyed;
DLOG(`An existing AudioNode has been destroyed.`, {
contextId,
nodeId,
});
const space = contexts[contextId];
if (!space) {
return;
}
const context = space.graphContext;
context.eventCount += 1;
context.graph.removeNode(nodeId);
const node = context.nodes[nodeId];
if (node && node.params) {
for (const audioParam of node.params) {
delete context.params[audioParam.paramId];
}
}
delete context.nodes[nodeId];
return context;
},
[WebAudioDebuggerEvent.audioParamCreated]: (
helpers,
contexts,
audioParamCreated,
) => {
const {param} = audioParamCreated;
const {contextId, nodeId, paramId: paramIdCreated} = param;
DLOG(`A new AudioParam has been created.`, {
contextId,
nodeId,
paramIdCreated,
});
const space = contexts[contextId];
if (!space) {
return;
}
const context = space.graphContext;
context.eventCount += 1;
const node = context.nodes[nodeId];
if (!node) {
return;
}
if (node.params.some(({paramId}) => paramId === paramIdCreated)) {
DLOG(`Duplicate WebAudio.audioParamCreated event`, {
contextId,
nodeId,
paramIdCreated,
});
return;
}
node.params.push(param);
context.params[paramIdCreated] = param;
return context;
},
[WebAudioDebuggerEvent.audioParamWillBeDestroyed]: (
helpers,
contexts,
audioParamWillBeDestroyed,
) => {
const {
contextId,
nodeId,
paramId: paramIdCreated,
} = audioParamWillBeDestroyed;
DLOG(`An existing AudioParam has been destroyed.`, {
contextId,
nodeId,
paramIdCreated,
});
const space = contexts[contextId];
if (!space) {
return;
}
const context = space.graphContext;
context.eventCount += 1;
const node = context.nodes[nodeId];
if (node && node.params) {
removeAll(node.params, ({paramId}) => paramId === paramIdCreated);
}
delete context.params[paramIdCreated];
return context;
},
[WebAudioDebuggerEvent.contextChanged]: (
helpers,
contexts,
contextChanged,
) => {
const {contextId} = contextChanged.context;
const space = contexts[contextId];
if (!space) {
DLOG(
`Unexpected WebAudio.contextChanged event.` +
`Did not receive an event when Audio Context was created`,
{
contextId,
},
);
return;
}
DLOG(
`Some properties in BaseAudioContext have changed.` +
`properties (id stays the same)`,
{
contextId,
},
);
space.graphContext.context = contextChanged.context;
space.graphContext.eventCount += 1;
return space.graphContext;
},
[WebAudioDebuggerEvent.audioListenerCreated]: (
helpers,
contexts,
contextChanged,
) => {
const {contextId} = contextChanged.listener;
DLOG(`An AudioListener has been created.`, {
contextId,
});
return;
},
[WebAudioDebuggerEvent.audioListenerWillBeDestroyed]: (
helpers,
contexts,
contextChanged,
) => {
const {contextId} = contextChanged;
DLOG(`An AudioListener will be destroyed.`, {
contextId,
});
return;
},
[WebAudioDebuggerEvent.contextCreated]: (
helpers,
contexts,
contextCreated,
) => {
const {contextId, contextType} = contextCreated.context;
if (contexts[contextId]) {
// Duplicate or out of order context created event.
console.warn(
getTimestampAsString() +
`Duplicate ${WebAudioDebuggerEvent.contextCreated} event.`,
contextCreated,
);
return;
} else {
console.debug(
getTimestampAsString() +
`Audio Context (${contextId.slice(-6)}-${contextType}) created.` +
`Adding the context to the tracked set.`,
);
}
const graph = new dagre.graphlib.Graph({multigraph: true});
graph.setGraph({});
graph.setDefaultEdgeLabel(() => {
return {};
});
// Request realtime data for realtime and offline contexts. We use this
// information to help confirm the existence of this new context. Events
// that normally mark when contexts are destroyed may not arrive and so we
// need this extra way to determine when the contexts no longer exist.
const realtimeData$ = helpers.realtimeData.pollContext(contextId);
const graphContextDestroyed$ =
new Subject<GraphContextDestroyReasonMessage>();
const realtimeDataGraphContext$ = realtimeData$.pipe(
map((realtimeData) => {
const space = contexts[contextId];
if (space) {
space.graphContext = {
...space.graphContext,
realtimeData,
};
return space.graphContext;
}
}),
filter((context): context is Audion.GraphContext => Boolean(context)),
catchError((reason, caught) => {
reason = WebAudioRealtimeDataReason.parseReason(reason);
if (WebAudioRealtimeDataReason.isCannotFindReason(reason)) {
const space = contexts[contextId];
space?.graphContextDestroyed$?.next(
GraphContextDestroyReasonMessage.CANNOT_FIND_REALTIME_DATA,
);
if (!space) {
DLOG(
`Error requesting realtime data for context,` +
`Context was likely cleaned up during requests for real time data.`,
{
reason,
contextId,
},
);
}
return EMPTY;
} else if (WebAudioRealtimeDataReason.isRealtimeOnlyReason(reason)) {
// Non-realtime/offline contexts do not have realtime data and will
// produce this error when that data is requested.
} else {
console.error(
getTimestampAsString() +
`Unexpected error requesting realtime data for context '${contextId}'.` +
`"${WebAudioRealtimeDataReason.toString(reason)}"`,
);
}
// Redirect back to the caught observable. We want to keep receiving
// realtime data values or errors until we receive CANNOT_FIND error.
return caught;
}),
takeUntil(graphContextDestroyed$),
);
contexts[contextId] = {
graphContext: {
id: contextId,
eventCount: 1,
context: contextCreated.context,
realtimeData: INITIAL_CONTEXT_REALTIME_DATA,
nodes: {},
params: {},
// TODO: dagre's graphlib typings are inaccurate, which is why we use
// graphlib's types. Revert to dagre's types once the issue is fixed:
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/47439
graph: graph as unknown as graphlib.Graph,
},
graphContextDestroyed$,
realtimeDataGraphContext$,
};
return merge(
of(contexts[contextId].graphContext),
graphContextDestroyed$.pipe(
share(),
take(1),
mergeMap((message) => {
if (
message ===
GraphContextDestroyReasonMessage.CANNOT_FIND_REALTIME_DATA
) {
DLOG(
`Audio Context cannot be found. ` +
`Removing the context from the tracked set.`,
{
contextId,
},
);
} else if (
message ===
GraphContextDestroyReasonMessage.RECEIVE_WILL_DESTROY_EVENT
) {
DLOG(
`Audio Context will be destroyed.` +
`Removing the context from the tracked set.`,
{
contextId,
},
);
}
const space = contexts[contextId];
if (space) {
delete contexts[contextId];
return of({
id: contextId,
eventCount: space.graphContext?.eventCount + 1,
context: null,
realtimeData: null,
nodes: null,
params: null,
graph: null,
});
} else {
DLOG(
`Audio Context could not be removed from the tracked set.` +
`It was not tracked.`,
{
contextId,
},
);
}
return EMPTY;
}),
),
contexts[contextId].realtimeDataGraphContext$,
);
},
[WebAudioDebuggerEvent.contextWillBeDestroyed]: (
helpers,
contexts,
contextDestroyed,
) => {
const {contextId} = contextDestroyed;
const space = contexts[contextId];
space?.graphContextDestroyed$?.next(
GraphContextDestroyReasonMessage.RECEIVE_WILL_DESTROY_EVENT,
);
DLOG(`A BaseAudioContext will be destroyed.`, {
contextId,
});
},
[WebAudioDebuggerEvent.nodeParamConnected]: (
helpers,
contexts,
nodeParamConnected,
) => {
const {
contextId,
sourceId: sourceNodeId,
sourceOutputIndex = 0,
destinationId: destinationParamId,
} = nodeParamConnected;
DLOG(`An AudioNode is connected to an AudioParam.`, {
contextId,
sourceNodeId,
destinationParamId,
});
const space = contexts[contextId];
if (!space) {
return;
}
const context = space.graphContext;
context.eventCount += 1;
const sourceNode = context.nodes[sourceNodeId];
if (!sourceNode) {
return;
}
const destinationParam = context.params[destinationParamId];
if (!destinationParam) {
return;
}
const destinationNodeId = destinationParam.nodeId;
const destinationNode = context.nodes[destinationNodeId];
if (!destinationNode) {
return;
}
sourceNode.edges.push(nodeParamConnected);
context.graph.setEdge(
sourceNodeId,
destinationNodeId,
{
sourceOutputIndex,
destinationType: Audion.GraphEdgeType.PARAM,
destinationParamId,
destinationParamIndex: destinationNode.params.findIndex(
({paramId}) => paramId === destinationParamId,
),
} as Audion.GraphEdge,
sourceOutputIndex.toString(),
);
return context;
},
[WebAudioDebuggerEvent.nodeParamDisconnected]: (
helpers,
contexts,
nodesDisconnected,
) => {
const {
contextId,
sourceId: sourceNodeId,
sourceOutputIndex = 0,
destinationId: destinationParamId,
} = nodesDisconnected;
DLOG(`An AudioNode is disconnected to an AudioParam.`, {
contextId,
sourceNodeId,
destinationParamId,
});
const space = contexts[contextId];
if (!space) {
return;
}
const context = space.graphContext;
context.eventCount += 1;
const sourceNode = context.nodes[sourceNodeId];
if (!sourceNode) {
return;
}
const {edges} = sourceNode;
removeAll(
edges,
(edge) =>
edge.destinationId === destinationParamId &&
edge.sourceOutputIndex === sourceOutputIndex,
);
context.graph.removeEdge(
sourceNodeId,
destinationParamId,
sourceOutputIndex.toString(),
);
return context;
},
[WebAudioDebuggerEvent.nodesConnected]: (
helpers,
contexts,
nodesConnected,
) => {
const {
contextId,
sourceId,
sourceOutputIndex = 0,
destinationId,
destinationInputIndex = 0,
} = nodesConnected;
DLOG(`Two AudioNodes are connected.`, {
contextId,
sourceId,
destinationId,
});
const space = contexts[contextId];
if (!space) {
return;
}
const context = space.graphContext;
context.eventCount += 1;
const sourceNode = context.nodes[sourceId];
if (!sourceNode) {
return;
}
const destinationNode = context.nodes[destinationId];
if (!destinationNode) {
return;
}
sourceNode.edges.push(nodesConnected);
context.graph.setEdge(
sourceId,
destinationId,
{
sourceOutputIndex,
destinationType: Audion.GraphEdgeType.NODE,
destinationInputIndex,
} as Audion.GraphNodeEdge,
`${sourceOutputIndex},${destinationInputIndex}`,
);
return context;
},
[WebAudioDebuggerEvent.nodesDisconnected]: (
helpers,
contexts,
nodesDisconnected,
) => {
const {
contextId,
sourceId,
sourceOutputIndex = 0,
destinationId,
destinationInputIndex = 0,
} = nodesDisconnected;
DLOG(
`Notifies AudioNodes is disconnected. The destination` +
`can be null, and it means all the outgoing connections` +
`from the source are disconnected.`,
{contextId, sourceId, destinationId},
);
const space = contexts[contextId];
if (!space) {
return;
}
const context = space.graphContext;
context.eventCount += 1;
const sourceNode = context.nodes[sourceId];
if (!sourceNode) {
return;
}
const {edges} = sourceNode;
removeAll(
edges,
(edge) =>
edge.destinationId === destinationId &&
edge.sourceOutputIndex === sourceOutputIndex &&
edge.destinationInputIndex === destinationInputIndex,
);
context.graph.removeEdge(
sourceId,
destinationId,
`${sourceOutputIndex},${destinationInputIndex}`,
);
return context;
},
[PageDebuggerEvent.frameNavigated]: (helpers, contexts) => {
console.debug(
getTimestampAsString() +
`Checking if tracked Audio Contexts (${Object.keys(contexts)
.map((contextId) => contextId.slice(-6))
.join(`, `)}) exist after frame navigated.`,
);
return ensureContextsExist(contexts, helpers);
},
[PageDebuggerEvent.loadEventFired]: (helpers, contexts) => {
console.debug(
getTimestampAsString() +
`Checking if tracked Audio Contexts (${Object.keys(contexts)
.map((contextId) => contextId.slice(-6))
.join(`, `)}) exist after load event.`,
);
return ensureContextsExist(contexts, helpers);
},
[ChromeDebuggerAPIEventName.detached]: (
helpers,
contexts,
debuggerDetached,
) => {
if (debuggerDetached.reason === `target_closed`) {
console.debug(
getTimestampAsString() +
`Checking if tracked Audio Contexts (${Object.keys(contexts)
.map((contextId) => contextId.slice(-6))
.join(
`, `,
)}) exist after debugger detached because target was closed.`,
);
return ensureContextsExist(contexts, helpers);
}
},
};
function ensureContextsExist(
contexts: MutableContexts,
helpers: EventHelpers,
): void | Audion.GraphContext | Observable<Audion.GraphContext> {
return merge(
...Object.keys(contexts).map((contextId) =>
helpers.realtimeData.pollContext(contextId).pipe(
take(1),
ignoreElements(),
catchError((reason) => {
reason = WebAudioRealtimeDataReason.parseReason(reason);
if (WebAudioRealtimeDataReason.isCannotFindReason(reason)) {
const space = contexts[contextId];
if (space) {
space?.graphContextDestroyed$?.next(
GraphContextDestroyReasonMessage.CANNOT_FIND_REALTIME_DATA,
);
}
} else if (WebAudioRealtimeDataReason.isRealtimeOnlyReason(reason)) {
// OfflineAudioContexts emit this error if they are still alive.
} else {
console.error(
getTimestampAsString() +
`Unexpected error determining if context "${contextId}" is ` +
`stale with devtools protocol WebAudio.getRealtimeData.` +
`"${WebAudioRealtimeDataReason.toString(reason)}"`,
);
}
return EMPTY;
}),
),
),
);
}
function removeAll<T>(array: T[], fn: (value: T) => boolean) {
if (array) {
let index = array.findIndex(fn);
while (index >= 0) {
array.splice(index, 1);
index = array.findIndex(fn);
}
}
}
/**
* Collect WebAudio debugger events into per context graphs.
*/
export function integrateWebAudioGraph(
webAudioRealtimeData: WebAudioRealtimeData,
): OperatorFunction<IntegratableEvent, Audion.GraphContext> {
const helpers = {realtimeData: webAudioRealtimeData};
const contexts: MutableContexts = {};
return pipe(
mergeMap(({method, params}) => {
if (EVENT_HANDLERS[method]) {
const result = EVENT_HANDLERS[method]?.(
helpers,
contexts,
params as any,
);
if (typeof result !== 'object' || result === null) return EMPTY;
if (isObservable(result)) {
return result;
}
return of(result);
}
return EMPTY;
}),
);
}