-
Notifications
You must be signed in to change notification settings - Fork 207
/
GIFLoader.js
129 lines (126 loc) · 2.84 KB
/
GIFLoader.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
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
129
import {makePromise} from './util.js';
const tempCanvas = document.createElement('canvas');
const tempCtx = tempCanvas.getContext('2d');
const cbs = {};
let nextId = 0;
class GIFLoader {
constructor() {
const worker = new Worker('./GIFLoader.worker.js', {
type: 'module',
});
/* window.worker = worker;
worker.addEventListener('load', e => {
console.log('gif loader worker started');
this.loadPromise.accept();
}); */
worker.addEventListener('error', e => {
console.warn('worker error', e);
});
worker.addEventListener('message', e => {
const {id, error, result} = e.data;
const cb = cbs[id];
if (cb) {
delete cbs[id];
cb(error, result);
} else {
console.warn('gif worker protocol violation: could not find callback: ', {id, keys: Object.keys(cbs)});
}
});
this.worker = worker;
}
async createGif(url) {
// await this.loadPromise;
const id = ++nextId;
// console.log('create gif', id);
const p = makePromise();
const cb = (err, result) => {
if (!err) {
p.accept(result);
} else {
p.reject(err);
}
};
cbs[id] = cb;
this.worker.postMessage({
method: 'createGif',
id,
args: {
url,
},
}, []);
return await p;
}
async renderFrame(gifId) {
// await this.loadPromise;
const id = ++nextId;
// console.log('create gif', id);
const p = makePromise();
const cb = (err, result) => {
if (!err) {
p.accept(result);
} else {
p.reject(err);
}
};
cbs[id] = cb;
this.worker.postMessage({
method: 'renderFrame',
id,
args: {
gifId,
},
}, []);
return await p;
}
async renderFrames(gifId) {
// await this.loadPromise;
const id = ++nextId;
// console.log('create gif', id);
const p = makePromise();
const cb = (err, result) => {
if (!err) {
p.accept(result);
} else {
p.reject(err);
}
};
cbs[id] = cb;
this.worker.postMessage({
method: 'renderFrames',
id,
args: {
gifId,
},
}, []);
return await p;
}
async destroyGif(gifId) {
// await this.loadPromise;
const id = ++nextId;
// console.log('create gif', id);
const p = makePromise();
const cb = (err, result) => {
if (!err) {
p.accept(result);
} else {
p.reject(err);
}
};
cbs[id] = cb;
this.worker.postMessage({
method: 'destroyGif',
id,
args: {
gifId,
},
}, []);
return await p;
}
destroy() {
this.worker.terminate();
this.worker = null;
}
}
export {
GIFLoader,
};