-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpattern.js
333 lines (296 loc) · 7.61 KB
/
pattern.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
class Pattern {
constructor(matches, effect) {
this.matches = matches;
this.effect = effect;
}
}
class Matchable {
matches(...values) {
throw new Error('No implementation');
}
}
function isNotNumber(v) {
return isNaN(v) || v.toString().trim() === '';
}
function inCaseOfEqual (value, effect) {
return new Pattern((v)=>value === v, effect);
}
function inCaseOfNumber (effect) {
return new Pattern((v)=>!isNotNumber(v), (v)=>effect(+v));
}
function inCaseOfNaN (effect) {
return new Pattern(isNotNumber, (v)=>effect(+v));
}
function inCaseOfString (effect) {
return new Pattern((v)=> typeof v === 'string', (v)=>effect(+v));
}
function inCaseOfObject (effect) {
return new Pattern((v)=> v && typeof v === "object" && (!Array.isArray(v)), effect);
}
function inCaseOfArray (effect) {
return new Pattern((v)=> v && Array.isArray(v), effect);
}
function inCaseOfClass (theClass, effect) {
return new Pattern((v)=> v instanceof theClass, effect);
}
function inCaseOfNull (effect) {
return new Pattern((v)=> v === null || v === undefined, effect);
}
function inCaseOfFunction (effect) {
return inCaseOfClass(Function, effect);
}
function inCaseOfPattern (effect) {
return inCaseOfClass(Pattern, effect);
}
function inCaseOfPatternMatching (effect) {
return inCaseOfClass(PatternMatching, effect);
}
function inCaseOfCompType (effect) {
return inCaseOfClass(CompType, effect);
}
function inCaseOfCompTypeMatchesWithSpread (theCompType, effect) {
return new Pattern((v)=> (TypeArray.matches(v) && theCompType.matches(...v)) || theCompType.matches(v), effect);
}
function inCaseOfRegex (regex, effect) {
return new Pattern((v)=> {
if (typeof regex === 'string') {
regex = new RegExp(regex);
}
return regex.test(v);
}, effect);
}
function TypeInCaseOf (matches) {
return new Pattern(matches, ()=>true);
}
function TypeMatchesAllPatterns (...patterns) {
return TypeInCaseOf((v)=>{
let matched = true;
for (let pattern of patterns) {
matched = matched && pattern.matches(v);
}
return matched;
});
}
function TypeADT(adtDef) {
let patterns = [];
let primaryTypesMapping = [
// Primary
(adt) => {
let theType = TypeString;
return adt === theType || adt === String || theType.matches(adt) ? theType : undefined;
},
(adt) => {
let theType = TypeNumber;
return adt === theType || adt === Number || theType.matches(adt) ? theType : undefined;
},
(adt) => {
let theType = TypeFunction;
return adt === theType || adt === Function ? theType : undefined;
},
// Rule
(adt) => {
let theType = TypeFunction;
return theType.matches(adt) ? TypeInCaseOf(adt) : undefined;
},
(adt) => {
let theType = TypePattern;
return theType.matches(adt) ? adt : undefined;
},
(adt) => {
let theType = TypePatternMatching;
return theType.matches(adt) ? TypeInCaseOf((v)=>adt.matchFor(v)) : undefined;
},
(adt) => {
let theType = TypeCompType;
return theType.matches(adt) ? adt : undefined;
},
// Null/Nan
(adt) => {
let theType = TypeNull;
return adt === theType || theType.matches(adt) ? theType : undefined;
},
(adt) => {
let theType = TypeInCaseOf((v) => (! (TypeObject.matches(v) || TypeArray.matches(v))) && TypeNaN.matches(v));
return adt === TypeNaN || theType.matches(adt) ? theType : undefined;
},
];
for (let theTypeMapping of primaryTypesMapping) {
let theType = theTypeMapping(adtDef);
if (theType) {
return theType;
}
}
if (TypeArray.matches(adtDef)) {
let subPatternsForOr = adtDef.map((subAdt) => {
return TypeADT(subAdt);
});
subPatternsForOr.push(otherwise(()=>false));
let TypeSubVFromAdt = TypeInCaseOf((subV)=>{
return either(subV, ...subPatternsForOr);
});
patterns.push(TypeArray);
patterns.push(TypeInCaseOf((v)=>{
return v.map((item)=>{
return TypeSubVFromAdt.matches(item);
}).reduce((prevResult, x) => x && prevResult, true);
}));
} else if (TypeObject.matches(adtDef)) {
let patternsForAnd = [];
for (let key in adtDef) {
if (adtDef.hasOwnProperty(key)) {
let fieldName = key;
patternsForAnd.push(TypeInCaseOf((v)=>{
return TypeADT(adtDef[fieldName]).matches(v[fieldName]);
}));
}
}
patterns.push(TypeObject);
patterns.push(TypeMatchesAllPatterns(...patternsForAnd));
}
return TypeMatchesAllPatterns(...patterns);
}
function otherwise (effect) {
return new Pattern(()=>true, effect);
}
function either(value, ...patterns) {
for (let pattern of patterns) {
// console.log(pattern.matches(value));
if (pattern.matches(value)) {
return pattern.effect(value);
}
}
throw new Error(`Cannot match ${JSON.stringify(value)}`);
}
class PatternMatching extends Matchable {
constructor(...patterns) {
super();
this.patterns = patterns;
}
matches(value) {
return either(value, ...this.patterns);
}
matchFor(value) {
return this.matches(value);
}
}
class CompData {
constructor(type, ...values) {
this.type = type;
this.values = values;
}
}
class CompType extends Matchable {
effect(...values) {
if (this.matches(...values)) {
return new CompData(this, values);
}
}
apply(...values) {
return this.effect(...values);
}
}
class SumType extends CompType {
constructor(...types) {
super();
this.types = types;
}
matches(...values) {
var type = this.innerMatches(...values);
if (type) {
return true;
}
return false;
}
effect(...values) {
var type = this.innerMatches(...values);
if (type) {
return type.effect(...values);
}
}
innerMatches(...values) {
for (let type of this.types) {
if (type.matches(...values)) {
return type;
}
}
}
}
class ProductType extends CompType {
constructor(...types) {
super();
this.types = types;
}
matches(...values) {
if (values.length != this.types.length) {
return false;
}
for (var i = 0; i < values.length; i++) {
if (! this.types[i].matches(values[i])) {
return false;
}
}
return true;
}
}
var TypeNumber = inCaseOfNumber(()=>true);
var TypeString = inCaseOfString(()=>true);
var TypeNaN = inCaseOfNaN(()=>true);
var TypeObject = inCaseOfObject(()=>true);
var TypeArray = inCaseOfArray(()=>true);
var TypeNull = inCaseOfNull(()=>true);
var TypeFunction = inCaseOfFunction(()=>true);
var TypePattern = inCaseOfPattern(()=>true);
var TypePatternMatching = inCaseOfPatternMatching(()=>true);
var TypeCompType = inCaseOfCompType(()=>true);
function TypeEqualTo(value) {
return inCaseOfEqual(value, ()=>true);
}
function TypeClassOf(theClass) {
return inCaseOfClass(theClass, ()=>true);
}
function TypeRegexMatches(regex) {
return inCaseOfRegex(regex, ()=>true);
}
function TypeCompTypeMatchesWithSpread(theCompType) {
return inCaseOfCompTypeMatchesWithSpread(theCompType, ()=>true);
}
module.exports = {
either,
Pattern,
PatternMatching,
inCaseOfEqual,
inCaseOfNumber,
inCaseOfString,
inCaseOfNaN,
inCaseOfObject,
inCaseOfArray,
inCaseOfClass,
inCaseOfNull,
inCaseOfFunction,
inCaseOfPattern,
inCaseOfPatternMatching,
inCaseOfCompType,
inCaseOfCompTypeMatchesWithSpread,
inCaseOfRegex,
otherwise,
SumType,
ProductType,
CompType,
TypeNumber,
TypeString,
TypeNaN,
TypeObject,
TypeArray,
TypeNull,
TypeFunction,
TypePattern,
TypePatternMatching,
TypeCompType,
TypeCompTypeMatchesWithSpread,
TypeEqualTo,
TypeClassOf,
TypeRegexMatches,
TypeInCaseOf,
TypeMatchesAllPatterns,
TypeADT,
};