liudong
2023-05-29 340f156319b863525e50e900c58e59b86ecb3d5e
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
'use strict';
const EventEmitter = require('events');
 
const written = new WeakMap();
 
class ProgressEmitter extends EventEmitter {
    constructor(source, destination) {
        super();
        this._source = source;
        this._destination = destination;
    }
 
    set written(value) {
        written.set(this, value);
        this.emitProgress();
    }
 
    get written() {
        return written.get(this);
    }
 
    emitProgress() {
        const {size, written} = this;
        this.emit('progress', {
            src: this._source,
            dest: this._destination,
            size,
            written,
            percent: written === size ? 1 : written / size
        });
    }
}
 
module.exports = ProgressEmitter;