-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.js
283 lines (229 loc) · 5.72 KB
/
tree.js
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
'use strict';
const uuid5 = require('uuid5');
const assert = require('assert');
const WILDCARD = '*';
const PLACEHOLDER = ':';
function validatePath(path, strictPaths) {
assert(path, '"path" must be provided');
assert(typeof path === 'string', '"path" must be that of a string');
const pathEnd = path.length - 1;
// allow for trailing slashes to match by removing it
if (!strictPaths && path.length > 1 && path[pathEnd] === '/') {
return path.slice(0, pathEnd);
}
return path;
}
function createNode(id, section, parent, paramName) {
return {
id,
section,
parent,
paramName,
children: new Map()
};
}
function getChildNode(parent, str) {
if (str[0] === PLACEHOLDER) {
if (parent.children.has(PLACEHOLDER)) {
return parent.children.get(PLACEHOLDER);
}
const node = createNode(undefined, PLACEHOLDER, parent, str.slice(1));
parent.children.set(PLACEHOLDER, node);
return node;
}
if (str === WILDCARD) {
if (parent.children.has(WILDCARD)) {
return parent.children.get(WILDCARD);
}
const node = createNode(undefined, WILDCARD, parent);
parent.children.set(WILDCARD, node);
return node;
}
if (parent.children.has(str)) {
return parent.children.get(str);
}
const node = createNode(undefined, str, parent, str);
parent.children.set(str, node);
return node;
}
function findNodeUp(node, path, index) {
if (index === path.length && node.parent) {
const placeholderNode = node.parent.children.get(PLACEHOLDER);
if (placeholderNode && placeholderNode.id) {
return {
didMatch: true,
node: placeholderNode,
params: {
[placeholderNode.paramName]: path[index - 1]
}
};
}
}
let didMatch = false;
let goUpNode = node;
while (goUpNode) {
goUpNode = goUpNode.parent;
if (goUpNode) {
const upWildcardNode = goUpNode.children.get(WILDCARD);
if (upWildcardNode && upWildcardNode.id) {
node = upWildcardNode;
didMatch = true;
goUpNode = false;
}
}
}
return {
didMatch,
node: didMatch ? node : undefined
};
}
function findNodeDown(node, path) {
const params = {};
let didMatch = true;
let index = 0;
for (const l = path.length - 1; index <= l; index++) {
const section = path[index];
// exact matches take precedence over placeholders
const nextNode = node.children.get(section);
if (nextNode) {
node = nextNode;
continue;
}
const placeholderNode = node.children.get(PLACEHOLDER);
if (placeholderNode) {
params[placeholderNode.paramName] = section;
node = placeholderNode;
continue;
}
const wildcardNode = node.children.get(WILDCARD);
if (wildcardNode) {
node = wildcardNode;
continue;
}
if (node.section === WILDCARD) {
continue;
}
// exit the loop
didMatch = false;
break;
}
return {
didMatch,
node,
params: Object.keys(params).length ? params : undefined,
index
};
}
function findNode(root, path) {
const pathParts = path.split('/');
const down = findNodeDown(root, pathParts);
// console.log('down', down);
if (down.didMatch && down.node.id) {
return {
node: down.node,
params: down.params
};
}
const up = findNodeUp(down.node, pathParts, down.index);
if (up.didMatch) {
return {
node: up.node,
params: up.params
};
}
return {
node: undefined
};
}
function findExactNode(node, path) {
path.split('/').some(section => {
// wildcard matches here as well
if (node.children.has(section)) {
node = node.children.get(section);
return;
}
if (section[0] === PLACEHOLDER && node.children.has(PLACEHOLDER)) {
node = node.children.get(PLACEHOLDER);
return;
}
node = undefined;
return true;
});
return node;
}
class Tree {
constructor(options = {}) {
this.strict = options.strict;
this.clear();
if (options.routes) {
options.routes.forEach(route => this.add(route));
}
}
get(path) {
path = validatePath(path, this.strict);
if (this.staticRoutes.has(path)) {
return { id: this.staticRoutes.get(path).id };
}
const { node, params } = findNode(this.root, path);
return {
id: node ? node.id : undefined,
params
};
}
add(path) {
const id = uuid5(path);
path = validatePath(path, this.strict);
let isStaticRoute = true;
let node = this.root;
path.split('/').forEach(section => {
node = getChildNode(node, section);
if (node.section === PLACEHOLDER || node.section === WILDCARD) {
isStaticRoute = false;
}
});
node.id = id;
// optimization, if a route is static and does not have any
// variable sections, we can store it into a map for faster
// retrievals
if (isStaticRoute === true) {
this.staticRoutes.set(path, node);
}
return node;
}
remove(path) {
path = validatePath(path, this.strict);
this.staticRoutes.delete(path);
let node = findExactNode(this.root, path);
if (!node) {
return null;
}
const id = node.id;
while (node) {
if (node.children.size) {
node.id = undefined;
node = false;
}
if (node.parent) {
node.parent.children.delete(node.section);
}
node = node.parent;
}
// id can be undefined
return id || null;
}
id(path) {
if (this.staticRoutes.has(path)) {
return this.staticRoutes.get(path).id;
}
const node = findExactNode(this.root, path);
if (node) {
return node.id;
}
return null;
}
clear() {
this.root = createNode('root');
this.staticRoutes = new Map();
}
}
module.exports = Tree;