-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexperiment.js
More file actions
128 lines (107 loc) · 2.57 KB
/
experiment.js
File metadata and controls
128 lines (107 loc) · 2.57 KB
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
'use strict';
var EventEmitter = require('events').EventEmitter;
var request = require('request');
var inherits = require('inherits');
var clone = require('lodash').clone;
var distributeProbabilities = require('./lib/distribute-flow-probabilities');
var debug = require('debug')('flowbench:flow');
var Flow = require('./flow');
var Stats = require('./stats');
module.exports = Experiment;
function Experiment(name, options) {
if (! (this instanceof Experiment)) {
return new Experiment(name, options);
}
if (! options) {
options = {};
}
this.name = name;
options.request = request.defaults(clone(options.requestDefaults, true));
this.options = options;
this.stats = Stats(this);
this.flows = [];
this._running = 0;
this._done = 0;
}
inherits(Experiment, EventEmitter);
var E = Experiment.prototype;
E.prepare = function prepare() {
distributeProbabilities(this.flows);
this.flows.forEach(function(flow) {
flow.prepare();
});
};
E.push = function push(fn) {
this.flows.push(fn);
};
E.flow = function flow(options) {
var childFlow = Flow(this, options, this)
this.push(childFlow);
return childFlow;
}
E.one = function(cb) {
var random = Math.random();
var sum = 0;
var flow;
var idx = 0;
while(sum < random && idx < this.flows.length) {
flow = this.flows[idx];
if (flow) {
sum += flow.options.probability;
}
idx ++;
}
if (! flow) {
throw new Error('No flow to select');
}
var session = {
req: {},
res: {}
};
flow.call(session, cb);
};
E.launchSome = function() {
var self = this;
var left = this.options.sessions - this._done - this._running;
left = Math.min(left, this.options.maxConcurrentSessions);
if (! left) {
this.emit('end');
} else {
for(var i = 0 ; i < left ; i ++) {
this._running ++;
this.one(callback);
}
}
function callback(err) {
self._running --;
self._done ++;
if (err) {
self.emit('error', err);
}
self.launchSome();
}
};
E.begin = function(cb) {
var self = this;
if (cb) {
var calledback = false;
this.once('error', function(err) {
if (! calledback) {
calledback = true;
cb(err);
}
})
this.once('end', function() {
if (! calledback) {
calledback = true;
var waitFor = Number(process.env.WAIT_BEFORE_STATS_MS) || 5e3;
setTimeout(function() {
cb(null, self.stats.toJSON());
}, waitFor);
}
});
}
debug('beginning experiment, have %d tasks in pipeline', this.flows.length);
this.prepare();
this.launchSome();
};