aboutsummaryrefslogtreecommitdiff
path: root/benchmark/fast_buffer2.js
blob: 861ae3baae726ae24e7516197f51489e276d72ea (plain)
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
var SlowBuffer = require('buffer').SlowBuffer;
var POOLSIZE = 8*1024;
var pool;

function allocPool () {
  pool = new SlowBuffer(POOLSIZE);
  pool.used = 0;
}

function FastBuffer (length) {
  this.length = length;

  if (length > POOLSIZE) {
    // Big buffer, just alloc one.
    this.parent = new Buffer(length);
    this.offset = 0;
  } else {
    // Small buffer.
    if (!pool || pool.length - pool.used < length) allocPool();
    this.parent = pool;
    this.offset = pool.used;
    pool.used += length;
  }

  // HERE HERE HERE
  SlowBuffer.makeFastBuffer(this.parent, this, this.offset, this.length);
}

exports.FastBuffer = FastBuffer;

FastBuffer.prototype.get = function (i) {
  if (i < 0 || i >= this.length) throw new Error("oob");
  return this.parent[this.offset + i];
};

FastBuffer.prototype.set = function (i, v) {
  if (i < 0 || i >= this.length) throw new Error("oob");
  return this.parent[this.offset + i] = v;
};

// TODO define slice, toString, write, etc.
// slice should not use c++