-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathString.ts
83 lines (74 loc) · 2.14 KB
/
String.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
import { IonTypes, Writer } from "../Ion";
import {
FromJsConstructor,
FromJsConstructorBuilder,
Primitives,
} from "./FromJsConstructor";
import { _NativeJsString } from "./JsValueConversion";
import { Value } from "./Value";
const _fromJsConstructor: FromJsConstructor = new FromJsConstructorBuilder()
.withPrimitives(Primitives.String)
.withClassesToUnbox(_NativeJsString)
.build();
/**
* Represents a string[1] value in an Ion stream.
*
* [1] https://amazon-ion.github.io/ion-docs/docs/spec.html#string
*/
export class String extends Value(
_NativeJsString,
IonTypes.STRING,
_fromJsConstructor
) {
/**
* Constructor.
* @param text The text value to represent as a string.
* @param annotations An optional array of strings to associate with the provided text.
*/
constructor(text: string, annotations: string[] = []) {
super(text);
this._setAnnotations(annotations);
}
stringValue(): string {
return this.toString();
}
writeTo(writer: Writer): void {
writer.setAnnotations(this.getAnnotations());
writer.writeString(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.String instance.
if (other instanceof String) {
isSupportedType = true;
valueToCompare = other.stringValue();
} else if (!options.onlyCompareIon) {
// We will consider other String-ish types
if (typeof other === "string" || other instanceof _NativeJsString) {
isSupportedType = true;
valueToCompare = other.valueOf();
}
}
if (!isSupportedType) {
return false;
}
return this.compareValue(valueToCompare) === 0;
}
compareValue(expectedValue: string): number {
return this.stringValue().localeCompare(expectedValue);
}
}