@@ -45,6 +45,28 @@ function parseArgs() {
45
45
46
46
let UUID = 0 ;
47
47
48
+ let beginCount = 0 ;
49
+ let endCount = 0 ;
50
+ let beginEventCount = 0 ;
51
+ let endEventCount = 0 ;
52
+ let runCount = 0 ;
53
+ let joinCount = 0 ;
54
+ let deferCount = 0 ;
55
+ let scheduleCount = 0 ;
56
+ let scheduleIterableCount = 0 ;
57
+ let deferOnceCount = 0 ;
58
+ let scheduleOnceCount = 0 ;
59
+ let setTimeoutCount = 0 ;
60
+ let laterCount = 0 ;
61
+ let throttleCount = 0 ;
62
+ let debounceCount = 0 ;
63
+ let cancelTimersCount = 0 ;
64
+ let cancelCount = 0 ;
65
+ let autorunsCreatedCount = 0 ;
66
+ let autorunsCompletedCount = 0 ;
67
+ let deferredActionQueuesCreatedCount = 0 ;
68
+ let nestedDeferredActionQueuesCreated = 0 ;
69
+
48
70
export default class Backburner {
49
71
public static Queue = Queue ;
50
72
@@ -54,6 +76,38 @@ export default class Backburner {
54
76
55
77
public options : any ;
56
78
79
+ public get counters ( ) {
80
+ return {
81
+ begin : beginCount ,
82
+ end : endCount ,
83
+ events : {
84
+ begin : beginEventCount ,
85
+ end : endEventCount ,
86
+ } ,
87
+ autoruns : {
88
+ created : autorunsCreatedCount ,
89
+ completed : autorunsCompletedCount ,
90
+ } ,
91
+ run : runCount ,
92
+ join : joinCount ,
93
+ defer : deferCount ,
94
+ schedule : scheduleCount ,
95
+ scheduleIterable : scheduleIterableCount ,
96
+ deferOnce : deferOnceCount ,
97
+ scheduleOnce : scheduleOnceCount ,
98
+ setTimeout : setTimeoutCount ,
99
+ later : laterCount ,
100
+ throttle : throttleCount ,
101
+ debounce : debounceCount ,
102
+ cancelTimers : cancelTimersCount ,
103
+ cancel : cancelCount ,
104
+ loops : {
105
+ total : deferredActionQueuesCreatedCount ,
106
+ nested : nestedDeferredActionQueuesCreated ,
107
+ } ,
108
+ } ;
109
+ }
110
+
57
111
private _onBegin : ( currentInstance : DeferredActionQueues , previousInstance : DeferredActionQueues | null ) => void ;
58
112
private _onEnd : ( currentInstance : DeferredActionQueues , nextInstance : DeferredActionQueues | null ) => void ;
59
113
private queueNames : string [ ] ;
@@ -107,6 +161,7 @@ export default class Backburner {
107
161
this . _boundRunExpiredTimers = this . _runExpiredTimers . bind ( this ) ;
108
162
109
163
this . _boundAutorunEnd = ( ) => {
164
+ autorunsCompletedCount ++ ;
110
165
this . _autorun = null ;
111
166
this . end ( ) ;
112
167
} ;
@@ -117,6 +172,7 @@ export default class Backburner {
117
172
@return instantiated class DeferredActionQueues
118
173
*/
119
174
public begin ( ) : DeferredActionQueues {
175
+ beginCount ++ ;
120
176
let options = this . options ;
121
177
let previousInstance = this . currentInstance ;
122
178
let current ;
@@ -126,9 +182,12 @@ export default class Backburner {
126
182
this . _cancelAutorun ( ) ;
127
183
} else {
128
184
if ( previousInstance !== null ) {
185
+ nestedDeferredActionQueuesCreated ++ ;
129
186
this . instanceStack . push ( previousInstance ) ;
130
187
}
188
+ deferredActionQueuesCreatedCount ++ ;
131
189
current = this . currentInstance = new DeferredActionQueues ( this . queueNames , options ) ;
190
+ beginEventCount ++ ;
132
191
this . _trigger ( 'begin' , current , previousInstance ) ;
133
192
}
134
193
@@ -138,6 +197,7 @@ export default class Backburner {
138
197
}
139
198
140
199
public end ( ) {
200
+ endCount ++ ;
141
201
let currentInstance = this . currentInstance ;
142
202
let nextInstance : DeferredActionQueues | null = null ;
143
203
@@ -156,6 +216,7 @@ export default class Backburner {
156
216
finallyAlreadyCalled = true ;
157
217
158
218
if ( result === QUEUE_STATE . Pause ) {
219
+ autorunsCreatedCount ++ ;
159
220
const next = this . _platform . next ;
160
221
this . _autorun = next ( this . _boundAutorunEnd ) ;
161
222
} else {
@@ -165,6 +226,7 @@ export default class Backburner {
165
226
nextInstance = this . instanceStack . pop ( ) as DeferredActionQueues ;
166
227
this . currentInstance = nextInstance ;
167
228
}
229
+ endEventCount ++ ;
168
230
this . _trigger ( 'end' , currentInstance , nextInstance ) ;
169
231
this . _onEnd ( currentInstance , nextInstance ) ;
170
232
}
@@ -208,6 +270,7 @@ export default class Backburner {
208
270
public run ( target : Function | any | null , method ?: Function | string , ...args ) ;
209
271
public run ( target : any | null | undefined , method ?: Function , ...args : any [ ] ) ;
210
272
public run ( ) {
273
+ runCount ++ ;
211
274
let [ target , method , args ] = parseArgs ( ...arguments ) ;
212
275
return this . _run ( target , method , args ) ;
213
276
}
@@ -230,6 +293,7 @@ export default class Backburner {
230
293
public join ( target : Function | any | null , method ?: Function | string , ...args ) ;
231
294
public join ( target : any | null | undefined , method ?: Function , ...args : any [ ] ) ;
232
295
public join ( ) {
296
+ joinCount ++ ;
233
297
let [ target , method , args ] = parseArgs ( ...arguments ) ;
234
298
return this . _join ( target , method , args ) ;
235
299
}
@@ -238,6 +302,7 @@ export default class Backburner {
238
302
* @deprecated please use schedule instead.
239
303
*/
240
304
public defer ( queueName , targetOrMethod , ..._args ) {
305
+ deferCount ++ ;
241
306
return this . schedule ( queueName , targetOrMethod , ..._args ) ;
242
307
}
243
308
@@ -248,6 +313,7 @@ export default class Backburner {
248
313
public schedule < T , U extends keyof T > ( queueName : string , target : T , method : U , ...args ) ;
249
314
public schedule ( queueName : string , target : any , method : any | Function , ...args ) ;
250
315
public schedule ( queueName , ..._args ) {
316
+ scheduleCount ++ ;
251
317
let [ target , method , args ] = parseArgs ( ..._args ) ;
252
318
let stack = this . DEBUG ? new Error ( ) : undefined ;
253
319
return this . _ensureInstance ( ) . schedule ( queueName , target , method , args , false , stack ) ;
@@ -262,6 +328,7 @@ export default class Backburner {
262
328
@return method result
263
329
*/
264
330
public scheduleIterable ( queueName : string , iterable : ( ) => Iteratable ) {
331
+ scheduleIterableCount ++ ;
265
332
let stack = this . DEBUG ? new Error ( ) : undefined ;
266
333
return this . _ensureInstance ( ) . schedule ( queueName , null , iteratorDrain , [ iterable ] , false , stack ) ;
267
334
}
@@ -270,6 +337,7 @@ export default class Backburner {
270
337
* @deprecated please use scheduleOnce instead.
271
338
*/
272
339
public deferOnce ( queueName , targetOrMethod , ...args ) {
340
+ deferOnceCount ++ ;
273
341
return this . scheduleOnce ( queueName , targetOrMethod , ...args ) ;
274
342
}
275
343
@@ -280,6 +348,7 @@ export default class Backburner {
280
348
public scheduleOnce < T , U extends keyof T > ( queueName : string , target : T , method : U , ...args ) ;
281
349
public scheduleOnce ( queueName : string , target : any | null , method : any | Function , ...args ) ;
282
350
public scheduleOnce ( queueName , ..._args ) {
351
+ scheduleOnceCount ++ ;
283
352
let [ target , method , args ] = parseArgs ( ..._args ) ;
284
353
let stack = this . DEBUG ? new Error ( ) : undefined ;
285
354
return this . _ensureInstance ( ) . schedule ( queueName , target , method , args , true , stack ) ;
@@ -290,10 +359,12 @@ export default class Backburner {
290
359
*/
291
360
public setTimeout ( ...args ) ;
292
361
public setTimeout ( ) {
362
+ setTimeoutCount ++ ;
293
363
return this . later ( ...arguments ) ;
294
364
}
295
365
296
366
public later ( ...args ) {
367
+ laterCount ++ ;
297
368
let length = args . length ;
298
369
299
370
let wait = 0 ;
@@ -347,6 +418,7 @@ export default class Backburner {
347
418
public throttle < A , B > ( method : ( arg1 : A , arg2 : B ) => void , arg1 : A , arg2 : B , wait ?: number | string , immediate ?: boolean ) : Timer ;
348
419
public throttle < A , B , C > ( method : ( arg1 : A , arg2 : B , arg3 : C ) => void , arg1 : A , arg2 : B , arg3 : C , wait ?: number | string , immediate ?: boolean ) : Timer ;
349
420
public throttle ( targetOrThisArgOrMethod : object | Function , ...args ) : Timer {
421
+ throttleCount ++ ;
350
422
let target ;
351
423
let method ;
352
424
let immediate ;
@@ -423,6 +495,7 @@ export default class Backburner {
423
495
public debounce < A , B > ( method : ( arg1 : A , arg2 : B ) => void , arg1 : A , arg2 : B , wait : number | string , immediate ?: boolean ) : Timer ;
424
496
public debounce < A , B , C > ( method : ( arg1 : A , arg2 : B , arg3 : C ) => void , arg1 : A , arg2 : B , arg3 : C , wait : number | string , immediate ?: boolean ) : Timer ;
425
497
public debounce ( targetOrThisArgOrMethod : object | Function , ...args ) : Timer {
498
+ debounceCount ++ ;
426
499
let target ;
427
500
let method ;
428
501
let immediate ;
@@ -485,6 +558,7 @@ export default class Backburner {
485
558
}
486
559
487
560
public cancelTimers ( ) {
561
+ cancelTimersCount ++ ;
488
562
for ( let i = 3 ; i < this . _throttlers . length ; i += 4 ) {
489
563
this . _platform . clearTimeout ( this . _throttlers [ i ] ) ;
490
564
}
@@ -509,9 +583,11 @@ export default class Backburner {
509
583
}
510
584
511
585
public cancel ( timer ?) {
586
+ cancelCount ++ ;
587
+
512
588
if ( timer === undefined || timer === null ) { return false ; }
589
+
513
590
let timerType = typeof timer ;
514
-
515
591
if ( timerType === 'number' ) { // we're cancelling a throttle or debounce
516
592
return this . _cancelItem ( timer , this . _throttlers ) || this . _cancelItem ( timer , this . _debouncees ) ;
517
593
} else if ( timerType === 'string' ) { // we're cancelling a setTimeout
@@ -688,6 +764,7 @@ export default class Backburner {
688
764
private _ensureInstance ( ) : DeferredActionQueues {
689
765
let currentInstance = this . currentInstance ;
690
766
if ( currentInstance === null ) {
767
+ autorunsCreatedCount ++ ;
691
768
currentInstance = this . begin ( ) ;
692
769
const next = this . _platform . next ;
693
770
this . _autorun = next ( this . _boundAutorunEnd ) ;
0 commit comments