forked from SuperMonster003/Ant-Forest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext-threads.js
69 lines (67 loc) · 1.97 KB
/
ext-threads.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
global.threadsx = typeof global.threadsx === 'object' ? global.threadsx : {};
let ext = {
/**
* Prevent script exiting error from showing up (for both
* console and toast window) if threads were interrupted
* @param {java.lang.Runnable|function} f
* @param {boolean} [no_err_msg=false]
* @returns {com.stardust.autojs.core.looper.TimerThread}
*/
start(f, no_err_msg) {
try {
return threads.start(f);
} catch (e) {
let _regexp = /(Script)?InterruptedEx|script exiting/;
if (!e.message.match(_regexp) && !no_err_msg) {
throw Error(e);
}
}
},
/**
* Degradation (zh-CN: 平稳退化) for threads.atomic()
* @param {number} [x]
* @returns {{
* incrementAndGet: function(): number,
* compareAndSet: function(number, number): boolean,
* get: function(): number
* }|java.util.concurrent.atomic.AtomicLong}
*/
atomic(x) {
let _res = threads.atomic(x);
if (classof(_res, 'JavaObject')) {
return _res;
}
// TODO threads.lock() might be worth a try :)
let _num = x;
return {
get() {
return _num;
},
incrementAndGet() {
return _num += 1;
},
/**
* @param {number} m
* @param {number} n
* @returns {boolean}
*/
compareAndSet(m, n) {
if (_num === m) {
_num = n;
return true;
}
return false;
},
};
},
/**
* @param {com.stardust.autojs.core.looper.TimerThread|*} thd
*/
interrupt(thd) {
if (thd instanceof com.stardust.autojs.core.looper.TimerThread) {
thd.isAlive() && thd.interrupt();
}
},
};
module.exports = ext;
module.exports.load = () => global.threadsx = ext;