-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathSymbol.ts
82 lines (72 loc) · 2.26 KB
/
Symbol.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
import { IonTypes, Writer } from "../Ion";
import {
FromJsConstructor,
FromJsConstructorBuilder,
Primitives,
} from "./FromJsConstructor";
import { Value } from "./Value";
const _fromJsConstructor: FromJsConstructor = new FromJsConstructorBuilder()
.withPrimitives(Primitives.String)
.withClassesToUnbox(String)
.build();
// TODO:
// This extends 'String' because ion-js does not yet have a SymbolToken construct.
// It is not possible to access the raw Symbol ID via the Reader API, so it cannot be accessed from this class.
/**
* Represents a symbol[1] value in an Ion stream.
*
* [1] https://amazon-ion.github.io/ion-docs/docs/spec.html#symbol
*/
export class Symbol extends Value(String, IonTypes.SYMBOL, _fromJsConstructor) {
/**
* Constructor.
* @param symbolText The text to represent as a symbol.
* @param annotations An optional array of strings to associate with this symbol.
*/
constructor(symbolText: string, annotations: string[] = []) {
super(symbolText);
this._setAnnotations(annotations);
}
stringValue(): string {
return this.toString();
}
writeTo(writer: Writer): void {
writer.setAnnotations(this.getAnnotations());
writer.writeSymbol(this.stringValue());
}
_valueEquals(
other: any,
options: {
epsilon?: number | null;
ignoreAnnotations?: boolean;
ignoreTimestampPrecision?: boolean;
onlyCompareIon?: boolean;
} = {
epsilon: null,
ignoreAnnotations: false,
ignoreTimestampPrecision: false,
onlyCompareIon: true,
}
): boolean {
let isSupportedType: boolean = false;
let valueToCompare: any = null;
//if the provided value is an ion.dom.Symbol instance.
if (other instanceof Symbol) {
isSupportedType = true;
valueToCompare = other.stringValue();
} else if (!options.onlyCompareIon) {
// We will consider other Symbol-ish types
if (typeof other === "string" || other instanceof String) {
isSupportedType = true;
valueToCompare = other.valueOf();
}
}
if (!isSupportedType) {
return false;
}
return this.compareValue(valueToCompare) === 0;
}
compareValue(expectedValue: string): number {
return this.stringValue().localeCompare(expectedValue);
}
}