-
Notifications
You must be signed in to change notification settings - Fork 152
/
generator.js
46 lines (39 loc) · 1.23 KB
/
generator.js
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
'use strict';
/**
* Generate a UTF-8 messages that we will be send to a connected client.
*
* @async
* @param {Number} size The specified in bytes for the message.
* @param {Function} fn The callback function for the data.
* @public
*/
exports.utf8 = function utf(size, fn) {
var key = 'utf8::'+ size
, cached = cache[key];
// We have a cached version of this size, return that instead.
if (cached) return fn(undefined, cached);
cached = cache[key] = new Buffer(size).toString('utf-8');
fn(undefined, cached);
};
/**
* Generate a binary message that we will be send to a connected client.
*
* @async
* @param {Number} size The specified in bytes for the message.
* @param {Function} fn The callback function for the data.
* @public
*/
exports.binary = function binary(size, fn) {
var key = 'binary::'+ size
, cached = cache[key];
// We have a cached version of this size, return that instead.
if (cached) return fn(undefined, cached);
cached = cache[key] = new Buffer(size);
fn(undefined, cached);
};
//
// The following is not needed to create a session file. We don't want to
// re-create & re-allocate memory every time we receive a message so we cache
// them in a variable.
//
var cache = Object.create(null);