-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontext.ts
228 lines (182 loc) · 5.21 KB
/
context.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
// Copyright 2020 Masataka Kurihara. All rights reserved. MIT license.
export class QName {
private _qName: string;
protected _prefix: string;
protected _localPart: string;
constructor(qName: string) {
this._qName = qName;
const i = qName.indexOf(':');
const q = i < 0 ? [ '', qName ] : qName.split(':');
this._prefix = q[0];
this._localPart = q[1];
}
get qName(): string {
return this._qName;
}
get prefix(): string {
return this._prefix;
}
get localPart(): string {
return this._localPart;
}
}
export class Attribute extends QName {
uri?: string;
value = '';
constructor(qName: string) {
super(qName);
if (qName === 'xmlns') {
this._prefix = 'xmlns';
this._localPart = '';
}
}
}
export class Element extends QName {
private _attributes: Attribute[] = [];
private _parent?: Element;
uri?: string;
emptyElement = false;
constructor(name: string, parent?: Element) {
super(name);
this._parent = parent;
}
get parent(): Element | undefined {
return this._parent;
}
newAttribute(qName: string) {
const attribute = new Attribute(qName);
this._attributes.push(attribute);
}
peekAttribute(): Attribute | undefined {
const i = this._attributes.length - 1;
if (i < 0) {
return undefined;
}
return this._attributes[i];
}
get attributes(): Attribute[] {
return this._attributes;
}
get prefixMappings(): { ns: string, uri: string }[] {
const filterd = this._attributes.filter((attr) => (attr.prefix === 'xmlns'));
return filterd.map((attr) => ({ ns: attr.localPart, uri: attr.value }));
}
}
/** information of parsed attribute, readonly. */
export class AttributeInfo extends QName {
private _attribute: Attribute;
constructor(attribute: Attribute) {
super(attribute.qName);
if (attribute.qName === 'xmlns') {
this._prefix = 'xmlns';
this._localPart = '';
}
this._attribute = attribute;
}
get uri(): string | undefined {
return this._attribute.uri;
}
get value(): string {
return this._attribute.value;
}
}
/** information of parsed element, readonly. */
export class ElementInfo extends QName {
private _element: Element;
constructor(element: Element) {
super(element.qName);
this._element = element;
}
get uri(): string | undefined {
return this._element.uri;
}
get parent(): ElementInfo | undefined {
const parent = this._element.parent;
if (parent) {
return new ElementInfo(parent);
}
return undefined;
}
get attributes(): AttributeInfo[] {
return this._element.attributes.map((attribute) => {
return new AttributeInfo(attribute);
});
}
get emptyElement(): boolean {
return this._element.emptyElement;
}
}
export interface XMLPosition {
line: number;
column: number;
}
export interface XMLLocator {
position: XMLPosition;
}
export class XMLParseContext {
private _locator?: XMLLocator;
private _memento = '';
private _elementStack: Element[] = [];
private _namespaces: { [ns: string]: string | undefined } = {};
quote: '' | '"' | '\'' = '';
state = 'BEFORE_DOCUMENT';
constructor(locator?: XMLLocator) {
this._locator = locator;
}
get position(): XMLPosition {
return this._locator?.position || { line: -1, column: -1 };
}
appendMemento(value: string) {
this._memento += value;
}
clearMemento() {
this._memento = '';
}
get memento(): string {
return this._memento;
}
newElement(qName: string) {
const parent = this.peekElement();
this._elementStack.push(new Element(qName, parent));
}
peekElement(): Element | undefined {
return this._elementStack[this._elementStack.length - 1];
}
popElement(): Element | undefined {
const element = this._elementStack.pop();
element?.prefixMappings.forEach(({ns}) => {
this._namespaces[ns] = undefined;
})
return element;
}
get elementLength(): number {
return this._elementStack.length;
}
registerNamespace(ns: string, uri: string) {
this._namespaces[ns] = uri;
}
getNamespaceURI(ns: string): string | undefined {
return this._namespaces[ns];
}
}
// deno-lint-ignore no-explicit-any
export type XMLParseEvent = [string, ...any[]];
export interface XMLParseHandler {
(cx: XMLParseContext, c: string): XMLParseEvent[];
}
/** XML parsing error. the parser convert this error to "error" event. */
export class XMLParseError extends Error {
private _position: XMLPosition;
constructor(message: string, cx: XMLParseContext) {
super(message);
this._position = cx.position;
}
/** line number on XML source */
get line(): number {
return this._position.line;
}
/** column number on XML source */
get column(): number {
return this._position.column;
}
}