15815213711
2024-08-26 67b8b6731811983447e053d4396b3708c14dfe3c
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
'use strict';
 
const assert = require('assert');
const MAP = Symbol('Timing#map');
const LIST = Symbol('Timing#list');
 
 
class Timing {
 
  constructor() {
    this._enable = true;
    this[MAP] = new Map();
    this[LIST] = [];
 
    this.init();
  }
 
  init() {
    // process start time
    this.start('Process Start', Date.now() - Math.floor((process.uptime() * 1000)));
    this.end('Process Start');
 
    if (typeof process.scriptStartTime === 'number') {
      // js script start execute time
      this.start('Script Start', process.scriptStartTime);
      this.end('Script Start');
    }
  }
 
  start(name, start) {
    if (!name || !this._enable) return;
 
    if (this[MAP].has(name)) this.end(name);
 
    start = start || Date.now();
    const item = {
      name,
      start,
      end: undefined,
      duration: undefined,
      pid: process.pid,
      index: this[LIST].length,
    };
    this[MAP].set(name, item);
    this[LIST].push(item);
    return item;
  }
 
  end(name) {
    if (!name || !this._enable) return;
    assert(this[MAP].has(name), `should run timing.start('${name}') first`);
 
    const item = this[MAP].get(name);
    item.end = Date.now();
    item.duration = item.end - item.start;
    return item;
  }
 
  enable() {
    this._enable = true;
  }
 
  disable() {
    this._enable = false;
  }
 
  clear() {
    this[MAP].clear();
    this[LIST] = [];
  }
 
  toJSON() {
    return this[LIST];
  }
}
 
module.exports = Timing;