lolly/internal/matcher/prefix_priority.go
xfy 6094327620 docs(matcher): 为 location 匹配引擎添加标准化 godoc 注释
为 matcher 包所有文件添加完整文档注释:
- conflict: 路径冲突检测器
- exact: 精确路径匹配器(O(1) hash map)
- location: 统一匹配引擎(整合所有策略)
- matcher: 匹配结果和接口定义
- named: 命名捕获组匹配器
- prefix: 普通前缀匹配器
- prefix_priority: 前缀优先匹配器(^~)
- radix: Radix Tree 最长前缀匹配
- regex: 正则表达式匹配器

注释说明匹配优先级顺序(精确 > 前缀优先 > 正则 > 普通前缀),
以及各匹配器的使用方法和性能特点。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-20 10:59:27 +08:00

62 lines
1.8 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Package matcher 提供 nginx 风格的 location 匹配引擎实现。
//
// 该文件实现前缀优先匹配器(^~ 类型),比普通前缀匹配优先级更高。
//
// 作者xfy
package matcher
import "github.com/valyala/fasthttp"
// PrefixPriorityMatcher 前缀优先匹配器(^~ 类型)。
//
// 基于 Radix Tree 实现,优先级为 2仅次于精确匹配
// 对应 nginx 的 ^~ 修饰符:匹配成功后跳过正则匹配阶段。
type PrefixPriorityMatcher struct {
// tree 基数树,存储前缀优先路径
tree *RadixTree
// priority 匹配优先级,^~ 类型为 2
priority int
}
// NewPrefixPriorityMatcher 创建前缀优先匹配器。
//
// 返回值:
// - *PrefixPriorityMatcher: 前缀优先匹配器实例
func NewPrefixPriorityMatcher() *PrefixPriorityMatcher {
return &PrefixPriorityMatcher{
tree: NewRadixTree(),
priority: 2, // ^~ 类型优先级更高
}
}
// AddPath 添加路径到前缀优先匹配器。
//
// 参数:
// - path: 前缀优先路径
// - handler: 匹配成功后的请求处理器
//
// 返回值:
// - error: 路径重复或树已初始化时返回错误
func (ppm *PrefixPriorityMatcher) AddPath(path string, handler fasthttp.RequestHandler) error {
return ppm.tree.Insert(path, handler, ppm.priority, "prefix_priority")
}
// Match 前缀优先匹配,返回最长前缀匹配结果。
//
// 参数:
// - path: 待匹配的请求路径
//
// 返回值:
// - *MatchResult: 最长前缀匹配结果,无匹配时返回 nil
func (ppm *PrefixPriorityMatcher) Match(path string) *MatchResult {
return ppm.tree.FindLongestPrefix(path)
}
// MarkInitialized 标记初始化完成。
//
// 调用后不能再添加新路径。
func (ppm *PrefixPriorityMatcher) MarkInitialized() {
ppm.tree.MarkInitialized()
}