Skip to content

Commit 3b7d56f

Browse files
committedFeb 22, 2023
Tiny clean-ups.
1 parent 90d34e1 commit 3b7d56f

File tree

6 files changed

+27
-30
lines changed

6 files changed

+27
-30
lines changed
 

‎.eslintrc.json

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
}
1919
},
2020
"rules": {
21+
"import/no-named-as-default-member": 0,
22+
"import/no-named-as-default": 0,
2123
"arrow-parens": ["error", "always"],
2224
"no-underscore-dangle": "error",
2325
"no-console": "error",

‎packages/benchmarks/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const files = (() => {
2929
const argv = minimist(process.argv.slice(2));
3030
const workers = argv.w || cpus().length;
3131
const connections = argv.c || 500;
32-
const pipelining = argv.p || 10;
32+
const pipelining = argv.p || 10;
3333
const duration = argv.d || 5;
3434

3535
const cn = (title = null) =>

‎packages/rayo/bridge.mjs

+21-26
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,30 @@
1-
import { METHODS } from 'http';
21
import { exec, match, parse } from 'matchit';
32

3+
const METHODS = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE', 'CONNECT', 'OPTIONS', 'TRACE', 'PATCH', 'all'];
44
const bridgeThrough = (t) => {
55
t.bridges.forEach((b) => {
6-
Object.keys(b.routes).forEach((v) => {
7-
t.routes[v] = b.routes[v].concat(t.routes[v] || []);
8-
});
6+
for (const [k, v] of Object.entries(b.routes)) {
7+
t.routes[k] = v.concat(t.routes[k]);
8+
}
99

10-
Object.keys(b.s).forEach((v) => {
11-
t.s[v] = t.s[v] || {};
12-
Object.keys(b.s[v]).forEach((p) => {
13-
t.s[v][p] = b.s[v][p].concat(t.s[v][p] || []);
14-
});
15-
});
10+
for (const [k, v] of Object.entries(b.stacks)) {
11+
t.stacks[k] ||= {};
12+
for (const [kk, vv] of Object.entries(v)) {
13+
t.stacks[k][kk] = v[kk].concat(vv);
14+
}
15+
}
1616
});
1717

1818
return t;
1919
};
2020

2121
export default class Bridge {
22-
/**
23-
* this.s = A placeholder for `stacks`. One stack per HTTP verb.
24-
* this.t = A placeholder for `through` routes.
25-
*/
2622
constructor(path = null) {
2723
this.id = process.hrtime().join('');
28-
this.routes = [];
29-
this.s = [];
30-
this.bridges = [];
24+
this.routes = {};
25+
this.stacks = {};
26+
this.bridges = new Set();
3127
this.bridgedPath = path;
32-
METHODS.push('all');
3328
METHODS.forEach((verb) => {
3429
const bind = [verb];
3530
if (path) {
@@ -39,31 +34,31 @@ export default class Bridge {
3934
});
4035

4136
if (!path) {
42-
this.t = [];
37+
this.gates = [];
4338
this.bridge = (bridgedPath) => {
4439
const bridge = new Bridge(bridgedPath);
45-
this.bridges.push(bridge);
40+
this.bridges.add(bridge);
4641
return bridge;
4742
};
4843
}
4944
}
5045

5146
through(...handlers) {
5247
if (!handlers.length) {
53-
this.t = this.s['*'] && this.s['*']['*'] ? this.s['*']['*'] : [];
48+
this.gates = this.stacks['*']?.['*'] || [];
5449
return bridgeThrough(this);
5550
}
5651

57-
const [verb, path] = this.bridgedPath ? ['all', this.bridgedPath] : ['*', '*'];
52+
const [verb, path] = this.bridgedPath ? ['through', this.bridgedPath] : ['*', '*'];
5853
return this.route(verb, path, ...handlers);
5954
}
6055

6156
route(verb, path, ...handlers) {
6257
const set = (m) => {
63-
this.routes[m] = this.routes[m] || [];
64-
this.s[m] = this.s[m] || {};
58+
this.routes[m] ||= [];
59+
this.stacks[m] ||= {};
6560
this.routes[m].push(parse(path));
66-
this.s[m][path] = (this.s[m][path] || []).concat(handlers);
61+
this.stacks[m][path] = (this.stacks[m][path] || []).concat(handlers);
6762
};
6863

6964
if (verb === 'all') {
@@ -81,7 +76,7 @@ export default class Bridge {
8176
? null
8277
: {
8378
params: exec(path, url),
84-
stack: this.s[verb][url[0].old]
79+
stack: this.stacks[verb][url[0].old]
8580
};
8681
}
8782
}

‎packages/rayo/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Rayo extends Bridge {
6969
({ stack } = route);
7070
}
7171

72-
return this.step(req, res, this.t.concat(stack));
72+
return this.step(req, res, this.gates.concat(stack));
7373
}
7474

7575
step(req, res, stack, error = null, statusCode = 400) {

‎test/packages/rayo/bridge.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* eslint import/extensions: 0 */
22

33
import should from 'should';
4-
import { METHODS } from 'http';
54
import Bridge from '../../../packages/rayo/bridge.mjs';
65

6+
const METHODS = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE', 'CONNECT', 'OPTIONS', 'TRACE', 'PATCH'];
77
const test = (bridge, path = null) => {
88
should(bridge).be.an.Object();
99
should(bridge).have.properties('id', 'bridgedPath', 'routes', 'through', 'route', 'fetch');

‎test/packages/rayo/rayo.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
import should from 'should';
44
import sinon from 'sinon';
5-
import { METHODS } from 'http';
65
import Storm from '../../../packages/storm/index.js';
76
import rayo from '../../../packages/rayo/index.js';
87

98
import req from '../../utils/req.mjs';
109
import res from '../../utils/res.mjs';
1110

11+
const METHODS = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE', 'CONNECT', 'OPTIONS', 'TRACE', 'PATCH'];
1212
const fake = { req, res };
1313

1414
const test = (server) => {

0 commit comments

Comments
 (0)
Please sign in to comment.