@@ -27,14 +27,58 @@ const { RemoteValue } = require('./protocolValue')
27
27
const { Source } = require ( './scriptTypes' )
28
28
const { WebDriverError } = require ( '../lib/error' )
29
29
30
+ const ScriptEvent = {
31
+ MESSAGE : 'script.message' ,
32
+ REALM_CREATED : 'script.realmCreated' ,
33
+ REALM_DESTROYED : 'script.realmDestroyed' ,
34
+ }
35
+
30
36
/**
31
37
* Represents class to run events and commands of Script module.
32
38
* Described in https://w3c.github.io/webdriver-bidi/#module-script.
33
39
* @class
34
40
*/
35
41
class ScriptManager {
42
+ #callbackId = 0
43
+ #listener
44
+
36
45
constructor ( driver ) {
37
46
this . _driver = driver
47
+ this . #listener = new Map ( )
48
+ this . #listener. set ( ScriptEvent . MESSAGE , new Map ( ) )
49
+ this . #listener. set ( ScriptEvent . REALM_CREATED , new Map ( ) )
50
+ this . #listener. set ( ScriptEvent . REALM_DESTROYED , new Map ( ) )
51
+ }
52
+
53
+ addCallback ( eventType , callback ) {
54
+ const id = ++ this . #callbackId
55
+
56
+ const eventCallbackMap = this . #listener. get ( eventType )
57
+ eventCallbackMap . set ( id , callback )
58
+ return id
59
+ }
60
+
61
+ removeCallback ( id ) {
62
+ let hasId = false
63
+ for ( const [ , callbacks ] of this . #listener) {
64
+ if ( callbacks . has ( id ) ) {
65
+ callbacks . delete ( id )
66
+ hasId = true
67
+ }
68
+ }
69
+
70
+ if ( ! hasId ) {
71
+ throw Error ( `Callback with id ${ id } not found` )
72
+ }
73
+ }
74
+
75
+ invokeCallbacks ( eventType , data ) {
76
+ const callbacks = this . #listener. get ( eventType )
77
+ if ( callbacks ) {
78
+ for ( const [ , callback ] of callbacks ) {
79
+ callback ( data )
80
+ }
81
+ }
38
82
}
39
83
40
84
async init ( browsingContextIds ) {
@@ -251,6 +295,14 @@ class ScriptManager {
251
295
params . contexts = new Array ( this . _browsingContextIds )
252
296
}
253
297
298
+ if ( argumentValueList != null ) {
299
+ let argumentParams = [ ]
300
+ argumentValueList . forEach ( ( argumentValue ) => {
301
+ argumentParams . push ( argumentValue . asMap ( ) )
302
+ } )
303
+ params [ 'arguments' ] = argumentParams
304
+ }
305
+
254
306
const command = {
255
307
method : 'script.addPreloadScript' ,
256
308
params,
@@ -433,7 +485,7 @@ class ScriptManager {
433
485
* @returns {Promise<void> } - A promise that resolves when the subscription is successful.
434
486
*/
435
487
async onMessage ( callback ) {
436
- await this . subscribeAndHandleEvent ( 'script.message' , callback )
488
+ return await this . subscribeAndHandleEvent ( ScriptEvent . MESSAGE , callback )
437
489
}
438
490
439
491
/**
@@ -443,7 +495,7 @@ class ScriptManager {
443
495
* @returns {Promise<void> } - A promise that resolves when the subscription is successful.
444
496
*/
445
497
async onRealmCreated ( callback ) {
446
- await this . subscribeAndHandleEvent ( 'script.realmCreated' , callback )
498
+ return await this . subscribeAndHandleEvent ( ScriptEvent . REALM_CREATED , callback )
447
499
}
448
500
449
501
/**
@@ -453,19 +505,18 @@ class ScriptManager {
453
505
* @returns {Promise<void> } - A promise that resolves when the subscription is successful.
454
506
*/
455
507
async onRealmDestroyed ( callback ) {
456
- await this . subscribeAndHandleEvent ( 'script.realmDestroyed' , callback )
508
+ return await this . subscribeAndHandleEvent ( ScriptEvent . REALM_DESTROYED , callback )
457
509
}
458
510
459
511
async subscribeAndHandleEvent ( eventType , callback ) {
460
- if ( this . browsingContextIds != null ) {
461
- await this . bidi . subscribe ( eventType , this . browsingContextIds )
512
+ if ( this . _browsingContextIds != null ) {
513
+ await this . bidi . subscribe ( eventType , this . _browsingContextIds )
462
514
} else {
463
515
await this . bidi . subscribe ( eventType )
464
516
}
465
- await this . _on ( callback )
466
- }
467
517
468
- async _on ( callback ) {
518
+ let id = this . addCallback ( eventType , callback )
519
+
469
520
this . ws = await this . bidi . socket
470
521
this . ws . on ( 'message' , ( event ) => {
471
522
const { params } = JSON . parse ( Buffer . from ( event . toString ( ) ) )
@@ -482,9 +533,11 @@ class ScriptManager {
482
533
response = params . realm
483
534
}
484
535
}
485
- callback ( response )
536
+ this . invokeCallbacks ( eventType , response )
486
537
}
487
538
} )
539
+
540
+ return id
488
541
}
489
542
490
543
async close ( ) {
0 commit comments