mirror of
https://github.com/honojs/hono.git
synced 2024-12-01 11:51:01 +01:00
28 lines
644 B
TypeScript
28 lines
644 B
TypeScript
import type { Result, Router } from '../../router.ts'
|
|
import { checkOptionalParameter } from '../../utils/url.ts'
|
|
import { Node } from './node.ts'
|
|
|
|
export class TrieRouter<T> implements Router<T> {
|
|
node: Node<T>
|
|
|
|
constructor() {
|
|
this.node = new Node()
|
|
}
|
|
|
|
add(method: string, path: string, handler: T) {
|
|
const results = checkOptionalParameter(path)
|
|
if (results) {
|
|
for (const p of results) {
|
|
this.node.insert(method, p, handler)
|
|
}
|
|
return
|
|
}
|
|
|
|
this.node.insert(method, path, handler)
|
|
}
|
|
|
|
match(method: string, path: string): Result<T> | null {
|
|
return this.node.search(method, path)
|
|
}
|
|
}
|