-
Notifications
You must be signed in to change notification settings - Fork 1
/
Number.ts
300 lines (239 loc) · 5.57 KB
/
Number.ts
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
import { isNumber, isEmpty, isWhole, coalesce } from '../fns';
import { Type, TypeDescribeProvider, TypeSub, TypeCompatibleOptions } from '../Type';
import { Exprs } from '../Exprs';
import { Expression } from '../Expression';
import { NumberOps, NumberOperations, NumberComputeds } from '../ops/NumberOps';
import { DefinitionProvider } from '../DefinitionProvider';
import { ID } from './ID';
import { Traverser } from '../Traverser';
import { DataTypeRaw, DataTypes } from '../DataTypes';
const INDEX_OPTIONS = 1;
const RANDOM_MIN = 0;
const RANDOM_MAX = 10;
export interface NumberOptions
{
min?: number;
max?: number;
whole?: boolean;
}
export class NumberType extends Type<number, NumberOptions>
{
public static WHOLE_EPSILON = 0.000001;
public static id = ID.Number;
public static operations = NumberOperations;
public static computeds = NumberComputeds;
public static baseType = new NumberType({});
public static decode(data: any[]): NumberType
{
return new NumberType(data[INDEX_OPTIONS] || {});
}
public static encode(type: NumberType): any
{
return isEmpty(type.options)
? this.id
: [this.id, type.options];
}
public static describePriority: number = 4;
public static describe(data: any, describer: TypeDescribeProvider, cache: Map<any, Type>): Type | undefined
{
if (!isNumber(data))
{
return undefined;
}
return new NumberType({
min: data,
max: data,
whole: Math.abs(Math.floor(data) - data) <= NumberType.WHOLE_EPSILON
});
}
public static registered: boolean = false;
public static EQUALS_EPSILON = 0.000001;
public static COMPARES_EPSILON = 0.000001;
public static register(): void
{
const priority = 0;
const type: DataTypeRaw = 'number';
DataTypes.addCompare({
priority,
type,
compare: (a, b) => {
return a < b
? (b - a) < this.COMPARES_EPSILON
? 0
: -1
: (a - b) < this.COMPARES_EPSILON
? 0
: 1;
},
});
DataTypes.addEquals({
priority,
type,
equals: (a, b) => {
return Math.abs(a - b) < this.EQUALS_EPSILON;
},
});
DataTypes.addCompare({
priority,
type: 'bigint',
compare: (a, b) => {
return a - b;
},
});
DataTypes.addEquals({
priority,
type: 'bigint',
equals: (a, b) => {
return a === b;
},
});
}
public getId(): string
{
return NumberType.id;
}
public getOperations()
{
return NumberType.operations.map;
}
public merge(type: NumberType): void
{
const o1 = this.options;
const o2 = type.options;
o1.max = Math.max(o1.max || 0, o2.max || 0);
o1.min = Math.min(o1.min || 0, o2.min || 0);
o1.whole = o1.whole && o2.whole;
}
public getSubType(expr: Expression, def: DefinitionProvider, context: Type): Type | undefined
{
return undefined;
}
public getSubTypes(def: DefinitionProvider): TypeSub[]
{
return [];
}
public getExactType(value: any): Type
{
return this;
}
public getSimplifiedType(): Type
{
return this;
}
protected isDeepCompatible(other: Type, options: TypeCompatibleOptions): boolean
{
if (!(other instanceof NumberType))
{
return false;
}
if (options.value)
{
const min = this.options.min;
const otherMin = other.options.min;
if (isNumber(min) && (!isNumber(otherMin) || otherMin < min))
{
return false;
}
const max = this.options.max;
const otherMax = other.options.max;
if (isNumber(max) && (!isNumber(otherMax) || otherMax < max))
{
return false;
}
}
return true;
}
public isOptional(): boolean
{
return false;
}
public isSimple(): boolean
{
return true;
}
public traverse<R>(traverse: Traverser<Type, R>): R
{
return traverse.enter(this);
}
public setParent(parent?: Type): void
{
this.parent = parent;
}
public removeDescribedRestrictions(): void
{
this.options = {};
}
public getCreateExpression(): Expression
{
return Exprs.op(NumberOps.create, {});
}
public getValidateExpression(): Expression
{
return Exprs.op(NumberOps.isValid, {
value: Exprs.get('value'),
});
}
public getCompareExpression(): Expression
{
return Exprs.op(NumberOps.cmp, {
value: Exprs.get('value'),
test: Exprs.get('test'),
});
}
public isValid(value: any): value is number
{
if (!isNumber(value))
{
return false;
}
const { min, max, whole } = this.options;
if (isNumber(min) && value < min)
{
return false;
}
if (isNumber(max) && value > max)
{
return false;
}
if (whole && !isWhole(value))
{
return false;
}
return true;
}
public normalize(value: any): any
{
return value;
}
public newInstance(): NumberType
{
return new NumberType({});
}
public clone(): NumberType
{
return new NumberType(DataTypes.copy(this.options));
}
public encode(): any
{
return NumberType.encode(this);
}
public create(): number
{
return 0;
}
public random(rnd: (a: number, b: number, whole: boolean) => number): number
{
const { min, max, whole } = this.options;
const chosenMin = coalesce(min, RANDOM_MIN);
const chosenMax = coalesce(max, RANDOM_MAX);
return rnd(chosenMin, chosenMax, !!whole);
}
public fromJson(json: number): number
{
return json;
}
public toJson(value: number): number
{
return value;
}
}