squiggle/packages/squiggle-lang/src/js/SqValue.ts

217 lines
4.8 KiB
TypeScript
Raw Normal View History

2022-08-28 16:19:44 +00:00
import * as RSValue from "../rescript/ForTS/ForTS_SquiggleValue/ForTS_SquiggleValue.gen";
import { squiggleValueTag as Tag } from "../rescript/ForTS/ForTS_SquiggleValue/ForTS_SquiggleValue_tag";
import { wrapDistribution } from "./SqDistribution";
import { SqLambda } from "./SqLambda";
import { SqLambdaDeclaration } from "./SqLambdaDeclaration";
import { SqModule } from "./SqModule";
import { SqRecord } from "./SqRecord";
import { SqArray } from "./SqArray";
import { SqType } from "./SqType";
export { Tag as SqValueTag };
type T = RSValue.squiggleValue;
export const wrapValue = (value: T): SqValue => {
const tag = RSValue.getTag(value);
return new tagToClass[tag](value);
};
export abstract class SqAbstractValue {
abstract tag: Tag;
_value: T;
constructor(value: T) {
this._value = value;
}
}
const valueMethod = <IR>(
_this: SqAbstractValue,
rsMethod: (v: T) => IR | null | undefined
) => {
const value = rsMethod(_this._value);
2022-08-29 02:50:51 +00:00
if (value === undefined || value === null) {
throw new Error("Internal casting error");
}
2022-08-28 16:19:44 +00:00
return value;
};
export class SqArrayValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Array as const;
2022-08-28 16:19:44 +00:00
get value() {
return new SqArray(valueMethod(this, RSValue.getArray));
}
}
export class SqArrayStringValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.ArrayString as const;
2022-08-28 16:19:44 +00:00
get value() {
return valueMethod(this, RSValue.getArrayString);
}
}
export class SqBoolValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Bool as const;
2022-08-28 16:19:44 +00:00
get value() {
return valueMethod(this, RSValue.getBool);
}
}
export class SqCallValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Call as const;
2022-08-28 16:19:44 +00:00
get value() {
return valueMethod(this, RSValue.getCall);
}
}
export class SqDateValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Date as const;
2022-08-28 16:19:44 +00:00
get value() {
return valueMethod(this, RSValue.getDate);
}
}
export class SqDeclarationValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Declaration as const;
2022-08-28 16:19:44 +00:00
get value() {
return new SqLambdaDeclaration(valueMethod(this, RSValue.getDeclaration));
}
}
export class SqDistributionValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Distribution as const;
2022-08-28 16:19:44 +00:00
get value() {
return wrapDistribution(valueMethod(this, RSValue.getDistribution));
}
}
export class SqLambdaValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Lambda as const;
2022-08-28 16:19:44 +00:00
get value() {
return new SqLambda(valueMethod(this, RSValue.getLambda));
}
}
export class SqModuleValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Module as const;
2022-08-28 16:19:44 +00:00
get value() {
return new SqModule(valueMethod(this, RSValue.getModule));
}
}
export class SqNumberValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Number as const;
2022-08-28 16:19:44 +00:00
get value() {
return valueMethod(this, RSValue.getNumber);
}
}
export class SqRecordValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Record as const;
2022-08-28 16:19:44 +00:00
get value() {
return new SqRecord(valueMethod(this, RSValue.getRecord));
}
}
export class SqStringValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.String as const;
2022-08-28 16:19:44 +00:00
get value(): string {
return valueMethod(this, RSValue.getString);
}
}
export class SqSymbolValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Symbol as const;
2022-08-28 16:19:44 +00:00
get value(): string {
return valueMethod(this, RSValue.getSymbol);
}
}
export class SqTimeDurationValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.TimeDuration as const;
2022-08-28 16:19:44 +00:00
get value() {
return valueMethod(this, RSValue.getTimeDuration);
}
}
export class SqTypeValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Type as const;
2022-08-28 16:19:44 +00:00
get value() {
return new SqType(valueMethod(this, RSValue.getType));
}
}
export class SqTypeIdentifierValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.TypeIdentifier as const;
2022-08-28 16:19:44 +00:00
get value() {
return valueMethod(this, RSValue.getTypeIdentifier);
}
}
export class SqVoidValue extends SqAbstractValue {
2022-08-28 17:33:16 +00:00
tag = Tag.Void as const;
2022-08-29 02:50:51 +00:00
get value() {
return null;
}
2022-08-28 16:19:44 +00:00
}
const tagToClass = {
2022-08-28 17:33:16 +00:00
[Tag.Array]: SqArrayValue,
[Tag.ArrayString]: SqArrayStringValue,
[Tag.Bool]: SqBoolValue,
[Tag.Call]: SqCallValue,
[Tag.Date]: SqDateValue,
[Tag.Declaration]: SqDeclarationValue,
[Tag.Distribution]: SqDistributionValue,
[Tag.Lambda]: SqLambdaValue,
[Tag.Module]: SqModuleValue,
[Tag.Number]: SqNumberValue,
[Tag.Record]: SqRecordValue,
[Tag.String]: SqStringValue,
[Tag.Symbol]: SqSymbolValue,
[Tag.TimeDuration]: SqTimeDurationValue,
[Tag.Type]: SqTypeValue,
[Tag.TypeIdentifier]: SqTypeIdentifierValue,
[Tag.Void]: SqVoidValue,
2022-08-28 16:19:44 +00:00
} as const;
// FIXME
// type SqValue = typeof tagToClass[keyof typeof tagToClass];
export type SqValue =
| SqArrayValue
| SqArrayStringValue
| SqBoolValue
| SqCallValue
| SqDateValue
| SqDeclarationValue
| SqDistributionValue
| SqLambdaValue
| SqModuleValue
| SqNumberValue
| SqRecordValue
| SqStringValue
| SqSymbolValue
| SqTimeDurationValue
| SqTypeValue
| SqTypeIdentifierValue
| SqVoidValue;