c22669c31d
- 新增迁移 000031-000034(登录日志/角色/模型配额/记忆) - 新增包: license/memory/modelquota/assistant,扫描引擎 - 全部功能后端+前端+端到端验证通过(25 包单测)
306 lines
8.3 KiB
Go
306 lines
8.3 KiB
Go
package gateway
|
||
|
||
import (
|
||
"bytes"
|
||
"context"
|
||
"encoding/json"
|
||
"io"
|
||
"log/slog"
|
||
"mime"
|
||
"net/http"
|
||
"strings"
|
||
"sync"
|
||
"time"
|
||
)
|
||
|
||
// maxUsageDocumentBytes bounds the buffered tail of a non-streaming response.
|
||
// The window is kept from the end of the body (where providers place the
|
||
// "usage" object), so token accounting stays correct for responses far larger
|
||
// than this bound while memory use stays bounded per in-flight response.
|
||
const maxUsageDocumentBytes = 2 << 20
|
||
|
||
type usageSession struct {
|
||
controller TokenQuotaController
|
||
reservation TokenReservation
|
||
// modelController/modelReservation 是模型级配额(可选,企业模型总配额)。
|
||
modelController ModelQuotaController
|
||
modelReservation any
|
||
fallback int64
|
||
onFinish func(TokenUsage)
|
||
once sync.Once
|
||
log *slog.Logger
|
||
}
|
||
|
||
// ModelQuotaController 抽象模型级配额控制器,避免 gateway 依赖 modelquota 包。
|
||
type ModelQuotaController interface {
|
||
Reserve(ctx context.Context, providerCode, model string, estimate int64, now time.Time) (any, error)
|
||
Commit(ctx context.Context, reservation any, actual int64) error
|
||
}
|
||
|
||
type TokenUsage struct {
|
||
Input int64
|
||
Output int64
|
||
Total int64
|
||
}
|
||
|
||
type usageSessionContextKey struct{}
|
||
|
||
func withUsageSession(request *http.Request, session *usageSession) *http.Request {
|
||
return request.WithContext(context.WithValue(request.Context(), usageSessionContextKey{}, session))
|
||
}
|
||
|
||
func usageSessionFrom(request *http.Request) *usageSession {
|
||
session, _ := request.Context().Value(usageSessionContextKey{}).(*usageSession)
|
||
return session
|
||
}
|
||
|
||
func (s *usageSession) finish(usage TokenUsage) {
|
||
if s == nil {
|
||
return
|
||
}
|
||
s.once.Do(func() {
|
||
usage.Total = max(usage.Total, usage.Input+usage.Output)
|
||
if usage.Total <= 0 {
|
||
usage.Total = s.fallback
|
||
}
|
||
if s.controller != nil {
|
||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||
if err := s.controller.Commit(ctx, s.reservation, usage.Total); err != nil && s.log != nil {
|
||
// The reservation already counted towards the quota, so a
|
||
// failed reconciliation silently leaves the counter slightly
|
||
// off. Surface it instead of dropping it.
|
||
s.log.Warn("token quota commit failed", "error", err)
|
||
}
|
||
cancel()
|
||
}
|
||
if s.modelController != nil && s.modelReservation != nil {
|
||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||
if err := s.modelController.Commit(ctx, s.modelReservation, usage.Total); err != nil && s.log != nil {
|
||
s.log.Warn("model quota commit failed", "error", err)
|
||
}
|
||
cancel()
|
||
}
|
||
if s.onFinish != nil {
|
||
s.onFinish(usage)
|
||
}
|
||
})
|
||
}
|
||
|
||
type usageReadCloser struct {
|
||
io.ReadCloser
|
||
collector *usageCollector
|
||
session *usageSession
|
||
}
|
||
|
||
func newUsageReadCloser(body io.ReadCloser, contentType string, session *usageSession) io.ReadCloser {
|
||
mediaType, _, _ := mime.ParseMediaType(contentType)
|
||
return &usageReadCloser{ReadCloser: body, collector: &usageCollector{sse: mediaType == "text/event-stream"}, session: session}
|
||
}
|
||
|
||
func (r *usageReadCloser) Read(buffer []byte) (int, error) {
|
||
n, err := r.ReadCloser.Read(buffer)
|
||
if n > 0 {
|
||
r.collector.feed(buffer[:n])
|
||
}
|
||
if err == io.EOF {
|
||
r.session.finish(r.collector.usage())
|
||
}
|
||
return n, err
|
||
}
|
||
|
||
func (r *usageReadCloser) Close() error {
|
||
r.session.finish(r.collector.usage())
|
||
return r.ReadCloser.Close()
|
||
}
|
||
|
||
type usageCollector struct {
|
||
sse bool
|
||
pending []byte
|
||
doc []byte
|
||
input int64
|
||
output int64
|
||
total int64
|
||
}
|
||
|
||
func (c *usageCollector) feed(chunk []byte) {
|
||
if !c.sse {
|
||
c.doc = append(c.doc, chunk...)
|
||
// Keep only a bounded tail window. The "usage" member lives at the end
|
||
// of a non-streaming response, so dropping the head (never the tail)
|
||
// preserves accounting for arbitrarily large bodies at a fixed memory
|
||
// cost instead of truncating usage away. 仅在超过 2× 窗口时压缩一次,
|
||
// 避免每个 32KiB 块都做 O(窗口) 的尾部拷贝(大响应下退化为 O(n²))。
|
||
if len(c.doc) > 2*maxUsageDocumentBytes {
|
||
copy(c.doc, c.doc[len(c.doc)-maxUsageDocumentBytes:])
|
||
c.doc = c.doc[:maxUsageDocumentBytes]
|
||
}
|
||
return
|
||
}
|
||
c.pending = append(c.pending, chunk...)
|
||
for {
|
||
index := bytes.IndexByte(c.pending, '\n')
|
||
if index < 0 {
|
||
if len(c.pending) > maxUsageDocumentBytes {
|
||
c.pending = c.pending[:0]
|
||
}
|
||
return
|
||
}
|
||
line := strings.TrimSpace(string(c.pending[:index]))
|
||
c.pending = c.pending[index+1:]
|
||
if strings.HasPrefix(line, "data:") {
|
||
payload := strings.TrimSpace(strings.TrimPrefix(line, "data:"))
|
||
if payload != "" && payload != "[DONE]" {
|
||
c.consumeJSON([]byte(payload))
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
func (c *usageCollector) tokens() int64 {
|
||
return c.usage().Total
|
||
}
|
||
|
||
func (c *usageCollector) usage() TokenUsage {
|
||
if c.sse && len(c.pending) > 0 {
|
||
line := strings.TrimSpace(string(c.pending))
|
||
if strings.HasPrefix(line, "data:") {
|
||
c.consumeJSON([]byte(strings.TrimSpace(strings.TrimPrefix(line, "data:"))))
|
||
}
|
||
c.pending = nil
|
||
}
|
||
if !c.sse && len(c.doc) > 0 {
|
||
c.consumeJSON(c.doc) // fast path: whole valid JSON object
|
||
c.consumeUsageObject(c.doc) // tail extraction: covers truncated bodies
|
||
}
|
||
return TokenUsage{Input: c.input, Output: c.output, Total: max(c.total, c.input+c.output)}
|
||
}
|
||
|
||
// consumeUsageObject extracts the trailing `"usage"` object from a possibly
|
||
// truncated response document. It scans for the final `"usage"` member and
|
||
// decodes the JSON object that immediately follows — where OpenAI-compatible
|
||
// providers place token accounting in non-streaming responses — so usage is
|
||
// still counted when the buffered window starts mid-object.
|
||
func (c *usageCollector) consumeUsageObject(doc []byte) {
|
||
const key = `"usage"`
|
||
// 只认 JSON 对象成员位置的 "usage"(前一个非空白字符是 '{' 或 ','),
|
||
// 避免命中字符串值里的同名文本。
|
||
index := bytes.LastIndex(doc, []byte(key))
|
||
for index >= 0 {
|
||
j := index - 1
|
||
for j >= 0 && (doc[j] == ' ' || doc[j] == '\t' || doc[j] == '\n' || doc[j] == '\r') {
|
||
j--
|
||
}
|
||
if j < 0 || doc[j] == '{' || doc[j] == ',' {
|
||
break
|
||
}
|
||
index = bytes.LastIndex(doc[:index], []byte(key))
|
||
}
|
||
if index < 0 {
|
||
return
|
||
}
|
||
rest := doc[index+len(key):]
|
||
colon := bytes.IndexByte(rest, ':')
|
||
if colon < 0 {
|
||
return
|
||
}
|
||
rest = bytes.TrimSpace(rest[colon+1:])
|
||
if len(rest) == 0 || rest[0] != '{' {
|
||
return
|
||
}
|
||
depth := 0
|
||
end := -1
|
||
inString := false
|
||
escaped := false
|
||
for i := 0; i < len(rest); i++ {
|
||
ch := rest[i]
|
||
if inString {
|
||
if escaped {
|
||
escaped = false
|
||
} else if ch == '\\' {
|
||
escaped = true
|
||
} else if ch == '"' {
|
||
inString = false
|
||
}
|
||
continue
|
||
}
|
||
switch ch {
|
||
case '"':
|
||
inString = true
|
||
case '{':
|
||
depth++
|
||
case '}':
|
||
depth--
|
||
if depth == 0 {
|
||
end = i + 1
|
||
}
|
||
}
|
||
if end > 0 {
|
||
break
|
||
}
|
||
}
|
||
if end > 0 {
|
||
// 提取出的是 usage 对象本身:必须按 inUsage=true 解析,否则其
|
||
// 顶层 prompt_tokens/completion_tokens/total_tokens 不会被计数,
|
||
// 大响应(>4MB 压缩后)的 token 计量静默丢失。
|
||
c.consumeJSONAsUsage(rest[:end])
|
||
}
|
||
}
|
||
|
||
// consumeJSONAsUsage parses payload with the "inside usage" flag already set,
|
||
// so top-level *_tokens keys are counted.
|
||
func (c *usageCollector) consumeJSONAsUsage(payload []byte) {
|
||
decoder := json.NewDecoder(bytes.NewReader(payload))
|
||
decoder.UseNumber()
|
||
var value any
|
||
if decoder.Decode(&value) == nil {
|
||
c.walk(value, true)
|
||
}
|
||
}
|
||
|
||
func (c *usageCollector) consumeJSON(payload []byte) {
|
||
decoder := json.NewDecoder(bytes.NewReader(payload))
|
||
decoder.UseNumber()
|
||
var value any
|
||
if decoder.Decode(&value) == nil {
|
||
c.walk(value, false)
|
||
}
|
||
}
|
||
|
||
func (c *usageCollector) walk(value any, inUsage bool) {
|
||
switch typed := value.(type) {
|
||
case map[string]any:
|
||
for key, child := range typed {
|
||
usage := inUsage || key == "usage"
|
||
if usage {
|
||
switch key {
|
||
case "input_tokens", "prompt_tokens":
|
||
c.input = max(c.input, jsonInt64(child))
|
||
case "output_tokens", "completion_tokens":
|
||
c.output = max(c.output, jsonInt64(child))
|
||
case "total_tokens":
|
||
c.total = max(c.total, jsonInt64(child))
|
||
}
|
||
}
|
||
c.walk(child, usage)
|
||
}
|
||
case []any:
|
||
for _, child := range typed {
|
||
c.walk(child, inUsage)
|
||
}
|
||
}
|
||
}
|
||
|
||
func jsonInt64(value any) int64 {
|
||
switch number := value.(type) {
|
||
case json.Number:
|
||
parsed, _ := number.Int64()
|
||
return max(parsed, 0)
|
||
case float64:
|
||
return max(int64(number), 0)
|
||
case int64:
|
||
return max(number, 0)
|
||
default:
|
||
return 0
|
||
}
|
||
}
|