-
Notifications
You must be signed in to change notification settings - Fork 1
/
codec.go
344 lines (286 loc) · 8.12 KB
/
codec.go
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
// SPDX-FileCopyrightText: 2018-2024 caixw
//
// SPDX-License-Identifier: MIT
package web
import (
"fmt"
"io"
"slices"
"strings"
"github.com/issue9/mux/v9/header"
"github.com/issue9/sliceutil"
"golang.org/x/text/encoding"
"golang.org/x/text/encoding/htmlindex"
"github.com/issue9/web/compressor"
"github.com/issue9/web/internal/qheader"
)
// Codec 编码解码工具
//
// 包含了压缩方法和媒体类型的处理
type Codec struct {
compressions []*compression
acceptEncodingHeader string // 生成 AcceptEncoding 报头内容
types []*mediaType
acceptHeader string // 生成 Accept 报头内容
}
type mediaType struct {
// Mimetype 的名称
//
// 比如:application/json
Name string
// 对应的错误状态下的 mimetype 值
//
// 比如:application/problem+json。
// 可以为空,表示与 Type 相同。
Problem string
// 生成编码方法
Marshal MarshalFunc
// 解码方法
Unmarshal UnmarshalFunc
}
type compression struct {
compressor compressor.Compressor
types []string
// 如果是通配符,则其它配置都将不启作用。
wildcard bool
// 是模糊类型的,比如 text/*,只有在 Types 找不到时,才在此处查找。
wildcardSuffix []string
}
func buildCompression(c compressor.Compressor, types []string) *compression {
m := &compression{compressor: c}
if len(types) == 0 {
m.wildcard = true
return m
}
m.types = make([]string, 0, len(types))
m.wildcardSuffix = make([]string, 0, len(types))
for _, c := range types {
if c == "" {
continue
}
if c == "*" {
m.types = nil
m.wildcardSuffix = nil
m.wildcard = true
return m
}
if c[len(c)-1] == '*' {
m.wildcardSuffix = append(m.wildcardSuffix, c[:len(c)-1])
} else {
m.types = append(m.types, c)
}
}
return m
}
// NewCodec 声明 [Codec] 对象
func NewCodec() *Codec {
return &Codec{
compressions: make([]*compression, 0, 10),
types: make([]*mediaType, 0, 10),
}
}
// AddCompressor 添加新的压缩算法
//
// t 表示适用的 content-type 类型,可以包含通配符,比如:
//
// application/json
// text/*
// *
//
// 如果为空,则和 * 是相同的,表示匹配所有。
func (e *Codec) AddCompressor(c compressor.Compressor, t ...string) *Codec {
e.compressions = append(e.compressions, buildCompression(c, t))
names := make([]string, 0, len(e.compressions))
for _, item := range e.compressions {
names = append(names, item.compressor.Name())
}
names = sliceutil.Unique(names, func(i, j string) bool { return i == j })
e.acceptEncodingHeader = strings.Join(names, ",")
return e
}
// AddMimetype 添加对媒体类型的编解码函数
func (e *Codec) AddMimetype(name string, m MarshalFunc, u UnmarshalFunc, problem string) *Codec {
if problem == "" {
problem = name
}
if name == "" {
panic("参数 name 不能为空")
}
if m == nil {
panic("参数 m 不能为空")
}
if u == nil {
panic("参数 u 不能为空")
}
// 检测复复值
if slices.IndexFunc(e.types, func(v *mediaType) bool { return v.Name == name }) >= 0 {
panic(fmt.Sprintf("存在重复的项 %s", name))
}
e.types = append(e.types, &mediaType{
Name: name,
Marshal: m,
Unmarshal: u,
Problem: problem,
})
names := make([]string, 0, len(e.types))
for _, item := range e.types {
if item.Unmarshal != nil {
names = append(names, item.Name)
}
}
e.acceptHeader = strings.Join(names, ",")
return e
}
// 根据客户端的 Content-Encoding 报头对 r 进行包装
//
// name 编码名称,即 Content-Encoding 报头内容;
// r 为未解码的内容;
func (e *Codec) contentEncoding(name string, r io.Reader) (io.ReadCloser, error) {
if name == "" {
return io.NopCloser(r), nil
}
if c, f := sliceutil.At(e.compressions, func(item *compression, _ int) bool { return item.compressor.Name() == name }); f {
return c.compressor.NewDecoder(r)
}
return nil, NewLocaleError("not found compress for %s", name)
}
// 根据客户端的 Accept-Encoding 报头选择是适合的压缩方法
//
// 如果返回的 c 为空值表示不需要压缩。
// 当有多个符合时,按添加顺序拿第一个符合条件数据。
func (e *Codec) acceptEncoding(contentType, h string) (c compressor.Compressor, notAcceptable bool) {
if len(e.compressions) == 0 {
return
}
accepts := qheader.ParseQHeader(h, "*")
defer qheader.PutQHeader(&accepts)
if len(accepts) == 0 {
return
}
indexes := e.getMatchCompresses(contentType)
if len(indexes) == 0 {
return
}
if last := accepts[len(accepts)-1]; last.Value == "*" { // * 匹配其他任意未在该请求头字段中列出的编码方式
if last.Q == 0.0 {
return nil, true
}
for _, index := range indexes {
curr := e.compressions[index]
if slices.IndexFunc(accepts, func(i *qheader.Item) bool { return i.Value == curr.compressor.Name() }) < 0 {
return curr.compressor, false
}
}
return
}
var identity *qheader.Item
for _, accept := range accepts {
if accept.Err != nil {
// NOTE: 对于客户端的错误,不记录于日志中。
continue
}
if accept.Value == header.Identity { // 除非 q=0,否则表示总是可以被接受
identity = accept
}
for _, index := range indexes {
if curr := e.compressions[index]; curr.compressor.Name() == accept.Value {
return curr.compressor, false
}
}
}
if identity != nil && identity.Q > 0 {
c := e.compressions[indexes[0]]
return c.compressor, false
}
return // 没有匹配,表示不需要进行压缩
}
func (e *Codec) getMatchCompresses(contentType string) []int {
indexes := make([]int, 0, len(e.compressions))
LOOP:
for index, c := range e.compressions {
if c.wildcard {
indexes = append(indexes, index)
continue
}
for _, s := range c.types {
if s == contentType {
indexes = append(indexes, index)
continue LOOP
}
}
for _, p := range c.wildcardSuffix {
if strings.HasPrefix(contentType, p) {
indexes = append(indexes, index)
continue LOOP
}
}
}
return indexes
}
func (m *mediaType) name(problem bool) string {
if problem {
return m.Problem
}
return m.Name
}
// 从请求端提交的 Content-Type 报头中获取解码和字符集函数
//
// h 表示 Content-Type 报头的内容。如果字符集为 utf-8 或是未指定,返回的字符解码为 nil;
func (e *Codec) contentType(h string) (UnmarshalFunc, encoding.Encoding, error) {
mimetype, charset := qheader.ParseWithParam(h, "charset")
item := e.searchFunc(func(s string) bool { return s == mimetype })
if item == nil {
return nil, nil, NewLocaleError("not found serialization function for %s", mimetype)
}
if charset == "" || charset == header.UTF8 {
return item.Unmarshal, nil, nil
}
c, err := htmlindex.Get(charset)
if err != nil {
return nil, nil, err
}
return item.Unmarshal, c, nil
}
// 从请求端提交的 Accept 报头解析出所需要的解码函数
//
// */* 或是空值 表示匹配任意内容,一般会选择第一个元素作匹配;
// xx/* 表示匹配以 xx/ 开头的任意元素,一般会选择 xx/* 开头的第一个元素;
// xx/ 表示完全匹配以 xx/ 的内容
// 如果传递的内容如下:
//
// application/json;q=0.9,*/*;q=1
//
// 则因为 */* 的 q 值比较高,而返回 */* 匹配的内容
func (e *Codec) accept(h string) *mediaType {
if h == "" {
if item := e.findMarshal("*/*"); item != nil {
return item
}
return nil
}
items := qheader.ParseQHeader(h, "*/*")
defer qheader.PutQHeader(&items)
for _, item := range items {
if i := e.findMarshal(item.Value); i != nil {
return i
}
}
return nil
}
func (e *Codec) findMarshal(name string) *mediaType {
switch {
case len(e.types) == 0:
return nil
case name == "" || name == "*/*":
return e.searchFunc(func(s string) bool { return true }) // 第一个元素
case strings.HasSuffix(name, "/*"):
prefix := name[:len(name)-3]
return e.searchFunc(func(s string) bool { return strings.HasPrefix(s, prefix) })
default:
return e.searchFunc(func(s string) bool { return s == name })
}
}
func (e *Codec) searchFunc(match func(string) bool) *mediaType {
item, _ := sliceutil.At(e.types, func(i *mediaType, _ int) bool { return match(i.Name) || match(i.Problem) })
return item
}