node_modules/when/lib/scheduler.js

Maintainability

73.99

Lines of code

66

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 73.99

Created with Raphaël 2.1.0017.53552.5702015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 66

Difficulty

23.92

Estimated Errors

0.41

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>._drain3

By SLOC

Created with Raphaël 2.1.0<anonymous>66
1
/** @license MIT License (c) copyright 2010-2014 original author or authors */
2
/** @author Brian Cavalier */
3
/** @author John Hann */
4
 
5
(function(define) { 'use strict';
6
define(function(require) {
7
 
8
    var Queue = require('./Queue');
9
 
10
    // Credit to Twisol (https://github.com/Twisol) for suggesting
11
    // this type of extensible queue + trampoline approach for next-tick conflation.
12
 
13
    function Scheduler(enqueue) {
14
        this._enqueue = enqueue;
15
        this._handlerQueue = new Queue(15);
16
        this._afterQueue = new Queue(5);
17
        this._running = false;
18
 
19
        var self = this;
20
        this.drain = function() {
21
            self._drain();
22
        };
23
    }
24
 
25
    /**
26
     * Enqueue a task. If the queue is not currently scheduled to be
27
     * drained, schedule it.
28
     * @param {function} task
29
     */
30
    Scheduler.prototype.enqueue = function(task) {
31
        this._handlerQueue.push(task);
32
        if(!this._running) {
33
            this._running = true;
34
            this._enqueue(this.drain);
35
        }
36
    };
37
 
38
    Scheduler.prototype.afterQueue = function(f, x, y) {
39
        this._afterQueue.push(f);
40
        this._afterQueue.push(x);
41
        this._afterQueue.push(y);
42
        if(!this._running) {
43
            this._running = true;
44
            this._enqueue(this.drain);
45
        }
46
    };
47
 
48
    /**
49
     * Drain the handler queue entirely, being careful to allow the
50
     * queue to be extended while it is being processed, and to continue
51
     * processing until it is truly empty.
52
     */
53
    Scheduler.prototype._drain = function() {
54
        var q = this._handlerQueue;
55
        while(q.length > 0) {
56
            q.shift().run();
57
        }
58
 
59
        this._running = false;
60
 
61
        q = this._afterQueue;
62
        while(q.length > 0) {
63
            q.shift()(q.shift(), q.shift());
64
        }
65
    };
66
 
67
    return Scheduler;
68
 
69
});
70
}(typeof define === 'function' && define.amd ? define : function(factory) { module.exports = factory(require); }));