-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
296 lines (244 loc) · 6.98 KB
/
test.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
(() => {
"use strict";
const __ = require("./timeengine.es");
const Immutable = require("immutable");
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("##### timeengine Test Started #####"), 0)
.log();
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 100)
.log()
.__(() => {
const __a = __(); //constructor
const __b = __([__a]) //constructor
.__(([a]) => (a + 1)); //
const __log1 = __a.log("__a");
const __log2 = __b.log("__b");
__a.t = 1;
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 120)
.log()
.__(() => {
const __a = __(true); //constructor
const __b = __([__a], true)
.__(([a]) => (a + 1));
const __log1 = __a.log("__a");
const __log2 = __b.log("__b");
__a.t = 1;
__a.t = 10;
__a.t = 100;
__.log.t = __a.map((t) => (t));
__.log.t = __b.map((t) => (t));
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 130)
.log()
.__(() => {
const __a = __();
const __b = __();
const __c = __([__a, __b]).__(([a, b]) => (a + b));
const __log1 = __a.log("__a");
const __log2 = __b.log("__b");
const __log3 = __c.log("__c");
__a.t = 2;
__b.t = 3;
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 150)
.log()
.__(() => {
const __a = __();
const __b = __();
const __c = __();
const __ab = __([__a, __b]).__(([a, b]) => (a * b));
const __bc = __([__b, __c]).__(([b, c]) => (b * c));
const __log1 = __a.log("__a");
const __log2 = __b.log("__b");
const __log3 = __c.log("__c");
const __log4 = __ab.log("__ab");
const __log5 = __bc.log("__bc");
__a.t = 2;
__b.t = 3; //__b update is managed in non-interference way
__c.t = 5;
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 200)
.log()
.__(() => {
// Single (no duplicate) update by dependency analysis
const __a = __();
const __b = __([__a]).__(([a]) => a * 2);
const __c = __([__a, __b]).__(([a, b]) => a + b * 3);
const __d = __([__b]).__(([b]) => b * 100);
const __e = __([__a, __b, __c, __d])
.__(([a, b, c, d]) => a + b + c + d);
const __atomic = __([__a, __b, __c, __d, __e]);
const __log1 = __a.log("__a");
const __log2 = __b.log("__b"); // b.t = 1 * 2 = 2
const __log3 = __c.log("__c"); // c.t = 1 + 2 * 3 = 7
const __log4 = __d.log("__d"); // d.t = 2 * 100 = 200
const __log5 = __e.log("__e"); //210
const __log6 = __atomic.log("__atomic");
__a.t = 1; // the whole val will be updated
__a.t = 2;
/* //ERROR!
//cannot set a value on sequence that depends on other sequences
__b.t = 99;
*/
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 300)
.log()
.__(() => {
// Single (no duplicate) update by dependency analysis
const __a = __();
const __b = __();
const __c = __([__a]).__(([a]) => a);
const __abc = __([__a, __b, __c])
.__(([a, b, c]) => a + b + c);
const __log1 = __a.log("__a");
const __log2 = __b.log("__b");
const __log3 = __c.log("__c");
const __log4 = __abc.log("__abc");
__a.t = 1;
__a.t = 2;
__b.t = 1;
__b.t = 3;
__a.t = 3;
});
})();
/*
const loop = Immutable.Range(0, 10) //loop 10 times
.map((c) => (__.log.t = c))
.toArray(); //lazy Seq toArray to compute
const timerts = __.intervalSeq(Immutable.Range(0, 5), 1000)
.log(">>>");
*/
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 400)
.log()
.__(() => {
const p = new Promise((resolve, reject) => {
setTimeout(() => {
resolve(99);
}, 0);
});
p
.then((value) => {
console.log(value); // 99
return value + 1;
})
.then((value) => {
console.log(value); // 100
});
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 500)
.log()
.__(() => {
const __p = __();
const __p2 = __p
.__((value) => {
__.log.t = value; //99
return value + 1;
})
.__((value) => {
__.log.t = value; //100
return value + 1;
});
const __log = __p2.log("__p2");
__p.t = 99;
__p.t = 999;
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 600)
.log()
.__(() => {
const __p = __();
const __p2 = __p
.__((value) => {
__.log.t = value; //99
return value + 1;
});
const __p3 = __p2
.__((value) => {
__.log.t = value; //100
return value + 1;
});
const __log = __p3.log("__p3");
__p.t = 99;
__p.t = 999;
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 700)
.log()
.__(() => {
const PromiseCreateFunc = (value, time) => {
const promise = new Promise((resolve, reject) => {
setTimeout(function() {
resolve(value);
}, time);
});
return promise;
};
var promise0 = PromiseCreateFunc("aaaaa", 300);
var promise1 = PromiseCreateFunc("bbbbb", 100);
var promise2 = PromiseCreateFunc("ccccc", 200);
var promiseAll = Promise.all([promise0, promise1, promise2]);
promiseAll.then((value) => {
console.log(value);
});
});
})();
(() => {
const __delay = __
.intervalSeq(Immutable
.Seq.of("----------------------------------"), 1200)
.log()
.__(() => {
const __a = __
.intervalSeq(Immutable
.Seq.of("aaaaa"), 300);
const __b = __
.intervalSeq(Immutable
.Seq.of("bbbbb"), 100);
const __c = __
.intervalSeq(Immutable
.Seq.of("ccccc"), 200);
const promiseAll = __([__a, __b, __c]);
const __log1 = promiseAll.log();
});
})();
})();