-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.go
More file actions
523 lines (450 loc) · 15.6 KB
/
code.go
File metadata and controls
523 lines (450 loc) · 15.6 KB
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
package errors
import (
"errors"
"fmt"
"net/http"
"time"
)
// ErrCode 错误码结构定义
type ErrCode struct {
Code string
Message string
HttpStatus int
Type ErrType
}
const (
ErrInternalMessage = "Internal Server Error"
ErrTimeoutMessage = "Request Timeout"
ErrNotFoundMessage = "Not Found"
ErrBadRequestMessage = "Bad Request"
ErrUnauthorizedMessage = "Unauthorized"
ErrForbiddenMessage = "Forbidden"
ErrConflictMessage = "Resource Conflict"
ErrRateLimitMessage = "Rate Limit Exceeded"
ErrUsernameExistedMessage = "Username already exists"
ErrEmailExistedMessage = "Email already exists"
ErrPhoneExistedMessage = "Phone already exists"
ErrBusinessMessage = "Business error"
)
var (
ErrInternal = &ErrCode{
Code: ErrTypeInternal.String(),
Message: ErrInternalMessage,
HttpStatus: http.StatusInternalServerError,
Type: ErrTypeInternal,
}
ErrTimeout = &ErrCode{
Code: ErrTypeTimeout.String(),
Message: ErrTimeoutMessage,
HttpStatus: http.StatusRequestTimeout,
Type: ErrTypeTimeout,
}
ErrNotFound = &ErrCode{
Code: ErrTypeNotFound.String(),
Message: ErrNotFoundMessage,
HttpStatus: http.StatusNotFound,
Type: ErrTypeNotFound,
}
ErrBadRequest = &ErrCode{
Code: ErrTypeBadRequest.String(),
Message: ErrBadRequestMessage,
HttpStatus: http.StatusBadRequest,
Type: ErrTypeBadRequest,
}
ErrUnauthorized = &ErrCode{
Code: ErrTypeUnauthorized.String(),
Message: ErrUnauthorizedMessage,
HttpStatus: http.StatusUnauthorized,
Type: ErrTypeUnauthorized,
}
ErrForbidden = &ErrCode{
Code: ErrTypeForbidden.String(),
Message: ErrForbiddenMessage,
HttpStatus: http.StatusForbidden,
Type: ErrTypeForbidden,
}
ErrConflict = &ErrCode{
Code: ErrTypeConflict.String(),
Message: ErrConflictMessage,
HttpStatus: http.StatusConflict,
Type: ErrTypeConflict,
}
ErrRateLimit = &ErrCode{
Code: ErrTypeRateLimit.String(),
Message: ErrRateLimitMessage,
HttpStatus: http.StatusTooManyRequests,
Type: ErrTypeRateLimit,
}
)
var (
ErrUsernameExisted = &ErrCode{
Code: ErrTypeConflict.String(),
Message: ErrUsernameExistedMessage,
HttpStatus: http.StatusConflict,
Type: ErrTypeConflict,
}
ErrEmailExisted = &ErrCode{
Code: ErrTypeConflict.String(),
Message: ErrEmailExistedMessage,
HttpStatus: http.StatusConflict,
Type: ErrTypeConflict,
}
ErrPhoneExisted = &ErrCode{
Code: ErrTypeConflict.String(),
Message: ErrPhoneExistedMessage,
HttpStatus: http.StatusConflict,
Type: ErrTypeConflict,
}
BusinessError = &ErrCode{
Code: ErrTypeBusiness.String(),
Message: ErrBusinessMessage,
HttpStatus: http.StatusInternalServerError,
Type: ErrTypeBusiness,
}
)
// n 创建一个新的错误实例,根据enableStack参数控制是否收集堆栈信息
// 参数:
//
// enableStack: 布尔标志,指示是否应该收集堆栈跟踪信息
// code: 错误码信息,包含错误代码、消息、HTTP状态码和错误类型
//
// 返回值:
//
// Error: 新创建的错误实例
func n(enableStack bool, code *ErrCode) Error {
impl := acquireError()
impl.code = code.Code
impl.message = code.Message
impl.httpStatus = code.HttpStatus
impl.errType = code.Type
impl.timestamp = time.Now().UTC()
if enableStack {
impl.stackTrace = getSimplifiedStackTrace(2, 6)
}
return impl
}
// New 创建一个带堆栈信息的错误实例
// 参数:
//
// code: 错误码信息,包含完整的错误定义
//
// 返回值:
//
// Error: 包含堆栈信息的新错误实例
func New(code *ErrCode) Error {
return n(true, code)
}
// FastNew 创建一个不带堆栈信息的错误实例,适用于性能敏感场景
// 参数:
//
// code: 错误码信息,包含完整的错误定义
//
// 返回值:
//
// Error: 不包含堆栈信息的新错误实例
func FastNew(code *ErrCode) Error {
return n(false, code)
}
func nf(enableStack bool, code *ErrCode, format string, args ...any) Error {
impl := acquireError()
impl.code = code.Code
impl.message = fmt.Sprintf(format, args...)
impl.httpStatus = code.HttpStatus
impl.errType = code.Type
impl.timestamp = time.Now().UTC()
if enableStack {
impl.stackTrace = getSimplifiedStackTrace(2, 6)
}
return impl
}
// Newf 创建一个错误,带堆栈信息格式化的错误
func Newf(code *ErrCode, format string, args ...any) Error {
return nf(true, code, format, args...)
}
func FastNewf(code *ErrCode, format string, args ...any) Error {
return nf(false, code, format, args...)
}
// wrap 将一个标准error包装成自定义的Error类型,可选择是否包含堆栈信息
// 参数:
//
// enableStack: 是否启用堆栈跟踪信息收集
// err: 需要被包装的原始错误,如果为nil则返回nil
// code: 错误码信息,包含错误代码、消息、HTTP状态码和错误类型
//
// 返回值:
//
// Error: 包装后的自定义错误类型,如果原始错误已经是自定义类型则直接返回
func wrap(enableStack bool, err error, code *ErrCode) Error {
if err == nil {
return nil
}
// 检查错误是否已经是自定义的Error类型,如果是则直接返回
var customErr Error
if errors.As(err, &customErr) {
return customErr
}
impl := &ErrorImpl{
code: code.Code,
message: code.Message,
httpStatus: code.HttpStatus,
errType: code.Type,
timestamp: time.Now().UTC(),
cause: err,
}
// 根据enableStack参数决定是否记录简化版的调用堆栈
if enableStack {
impl.stackTrace = getSimplifiedStackTrace(2, 6)
}
return impl
}
// Wrap 将一个标准error包装成自定义的Error类型
// 参数:
//
// err: 需要被包装的原始错误,如果为nil则返回nil
// code: 错误码信息,包含错误代码、消息、HTTP状态码和错误类型
//
// 返回值:
//
// Error: 包装后的自定义错误类型,如果原始错误已经是自定义类型则直接返回
//
// 该函数会携带调用堆栈信息
func Wrap(err error, code *ErrCode) Error {
return wrap(true, err, code)
}
// FastWrap 将一个标准error包装成自定义的Error类型
// 参数:
//
// err: 需要被包装的原始错误,如果为nil则返回nil
// code: 错误码信息,包含错误代码、消息、HTTP状态码和错误类型
//
// 返回值:
//
// Error: 包装后的自定义错误类型,如果原始错误已经是自定义类型则直接返回
//
// 该函数不会携带调用堆栈信息,适用于性能敏感场景
func FastWrap(err error, code *ErrCode) Error {
return wrap(false, err, code)
}
// wrapf 将给定的错误包装成自定义错误类型,可选择是否包含堆栈信息
// enableStack: 是否启用堆栈跟踪信息
// err: 原始错误,如果为nil则返回nil
// format: 格式化字符串,用于格式化错误码中的消息
// code: 错误码信息,包含错误代码、HTTP状态码、错误类型等信息
// 返回值: 包装后的自定义错误类型,如果输入错误为nil则返回nil
func wrapf(enableStack bool, err error, format string, code *ErrCode) Error {
// 如果原始错误为nil,直接返回nil
if err == nil {
return nil
}
// 检查原始错误是否已经是自定义错误类型,如果是则直接返回
var customErr Error
if errors.As(err, &customErr) {
return customErr
}
// 创建新的错误实现,包装原始错误并添加错误码信息
impl := &ErrorImpl{
code: code.Code,
message: fmt.Sprintf(format, code.Message),
httpStatus: code.HttpStatus,
errType: code.Type,
timestamp: time.Now().UTC(),
cause: err,
}
if enableStack {
impl.stackTrace = getSimplifiedStackTrace(2, 6)
}
return impl
}
// Wrapf 将给定的错误包装成带有堆栈信息的自定义错误类型,如果原始错误已经是自定义
// 错误类型则直接返回
// format: 格式化字符串,用于格式化错误码中的消息
// err: 原始错误,如果为nil则返回nil
// code: 错误码信息,包含错误代码、HTTP状态码、错误类型等信息
// 返回值: 包装后的自定义错误类型,如果输入错误为nil则返回nil
func Wrapf(format string, err error, code *ErrCode) Error {
return wrapf(true, err, format, code)
}
// FastWrapf 将给定的错误包装成自定义错误类型,不包含堆栈信息,性能更高
// format: 格式化字符串,用于格式化错误码中的消息
// err: 原始错误,如果为nil则返回nil
// code: 错误码信息,包含错误代码、HTTP状态码、错误类型等信息
// 返回值: 包装后的自定义错误类型,如果输入错误为nil则返回nil
func FastWrapf(format string, err error, code *ErrCode) Error {
return wrapf(false, err, format, code)
}
// ==================== 基础错误函数,带堆栈信息 ====================
//
// ResourceConflictError 创建资源冲突错误
func ResourceConflictError() Error {
return New(ErrConflict)
}
// ParameterValidationError 创建参数验证错误
func ParameterValidationError() Error {
return New(ErrBadRequest)
}
// ResourceNotFoundError 创建资源未找到错误
func ResourceNotFoundError() Error {
return New(ErrNotFound)
}
// ForbiddenError 基础禁止访问错误
func ForbiddenError() Error {
return New(ErrForbidden)
}
// UnAuthorizedError 创建未认证的错误
func UnAuthorizedError() Error {
return New(ErrUnauthorized)
}
// TimeoutError 创建超时错误
func TimeoutError() Error {
return New(ErrTimeout)
}
// InternalError 创建内部错误
func InternalError() Error {
return New(ErrInternal)
}
// ==================== 基础错误函数,不带堆栈信息 ====================
//
// ResourceConflictErrorNoStack 创建资源冲突错误
func ResourceConflictErrorNoStack() Error {
return FastNew(ErrConflict)
}
// ParameterValidationErrorNoStack 创建参数验证错误
func ParameterValidationErrorNoStack() Error {
return FastNew(ErrBadRequest)
}
// ResourceNotFoundErrorNoStack 创建资源未找到错误
func ResourceNotFoundErrorNoStack() Error {
return FastNew(ErrNotFound)
}
// ForbiddenErrorNoStack 基础禁止访问错误
func ForbiddenErrorNoStack() Error {
return FastNew(ErrForbidden)
}
// UnAuthorizedErrorNoStack 创建未认证的错误
func UnAuthorizedErrorNoStack() Error {
return FastNew(ErrUnauthorized)
}
// TimeoutErrorNoStack 创建超时错误
func TimeoutErrorNoStack() Error {
return FastNew(ErrTimeout)
}
// InternalErrorNoStack 创建内部错误
func InternalErrorNoStack() Error {
return New(ErrInternal)
}
// ==================== 格式化的错误函数,带堆栈信息 ====================
//
// UnAuthorizedErrorf 创建未认证错误
func UnAuthorizedErrorf(format string, args ...any) Error {
return Newf(ErrUnauthorized, format, args...)
}
// ResourceConflictErrorf 创建资源冲突错误
func ResourceConflictErrorf(format string, args ...any) Error {
return Newf(ErrConflict, format, args...)
}
// ParameterValidationErrorf 创建参数验证错误
func ParameterValidationErrorf(format string, args ...any) Error {
return Newf(ErrBadRequest, format, args...)
}
// TimeoutErrorf 创建超时的错误
func TimeoutErrorf(format string, args ...any) Error {
return Newf(ErrTimeout, format, args...)
}
// ForbiddenErrorf 创建禁止访问错误
func ForbiddenErrorf(format string, args ...any) Error {
return Newf(ErrForbidden, format, args...)
}
// InternalErrorf 创建内部错误
func InternalErrorf(format string, args ...any) Error {
return Newf(ErrInternal, format, args...)
}
// ==================== 格式化的错误函数,不带堆栈信息 ====================
//
// UnAuthorizedErrorfNoStack 创建未认证错误
func UnAuthorizedErrorfNoStack(format string, args ...any) Error {
return FastNewf(ErrUnauthorized, format, args...)
}
// ResourceConflictErrorfNoStack 创建资源冲突错误
func ResourceConflictErrorfNoStack(format string, args ...any) Error {
return FastNewf(ErrConflict, format, args...)
}
// ParameterValidationErrorfNoStack 创建参数验证错误
func ParameterValidationErrorfNoStack(format string, args ...any) Error {
return FastNewf(ErrBadRequest, format, args...)
}
// TimeoutErrorfNoStack 创建超时的错误
func TimeoutErrorfNoStack(format string, args ...any) Error {
return FastNewf(ErrTimeout, format, args...)
}
// ForbiddenErrorfNoStack 创建禁止访问错误
func ForbiddenErrorfNoStack(format string, args ...any) Error {
return FastNewf(ErrForbidden, format, args...)
}
// InternalErrorfNoStack 创建内部错误
func InternalErrorfNoStack(format string, args ...any) Error {
return FastNewf(ErrInternal, format, args...)
}
// ==================== 带元数据的错误函数,带堆栈信息 ====================
//
// UnAuthorizedErrorWithMeta 创建带元数据的未认证错误
func UnAuthorizedErrorWithMeta(metadata map[string]any, format string, args ...any) Error {
return Newf(ErrUnauthorized, format, args...).
WithMetadataMap(metadata)
}
// ResourceConflictErrorWithMeta 创建带元数据的资源冲突错误
func ResourceConflictErrorWithMeta(metadata map[string]any, format string, args ...any) Error {
return Newf(ErrConflict, format, args...).
WithMetadataMap(metadata)
}
// ParameterValidationErrorWithMeta 创建带元数据的参数验证错误
func ParameterValidationErrorWithMeta(metadata map[string]any, format string, args ...any) Error {
return Newf(ErrBadRequest, format, args...).
WithMetadataMap(metadata)
}
// TimeoutErrorWithMeta 创建带元数据的超时错误
func TimeoutErrorWithMeta(metadata map[string]any, format string, args ...any) Error {
return Newf(ErrTimeout, format, args...).
WithMetadataMap(metadata)
}
// ForbiddenErrorWithMeta 创建带元数据的禁止访问错误
func ForbiddenErrorWithMeta(metadata map[string]any, format string, args ...any) Error {
return Newf(ErrForbidden, format, args...).
WithMetadataMap(metadata)
}
// InternalErrorWithMeta 创建带元数据的内部错误
func InternalErrorWithMeta(metadata map[string]any, format string, args ...any) Error {
return Newf(ErrInternal, format, args...).
WithMetadataMap(metadata)
}
// ==================== 带元数据的错误函数,不带堆栈信息 ====================
//
// UnAuthorizedErrorWithMetaNoStack 创建带元数据的未认证错误
func UnAuthorizedErrorWithMetaNoStack(metadata map[string]any, format string, args ...any) Error {
return FastNewf(ErrUnauthorized, format, args...).
WithMetadataMap(metadata)
}
// ResourceConflictErrorWithMetaNoStack 创建带元数据的资源冲突错误
func ResourceConflictErrorWithMetaNoStack(metadata map[string]any, format string, args ...any) Error {
return FastNewf(ErrConflict, format, args...).
WithMetadataMap(metadata)
}
// ParameterValidationErrorWithMetaNoStack 创建带元数据的参数验证错误
func ParameterValidationErrorWithMetaNoStack(metadata map[string]any, format string, args ...any) Error {
return FastNewf(ErrBadRequest, format, args...).
WithMetadataMap(metadata)
}
// TimeoutErrorWithMetaNoStack 创建带元数据的超时错误
func TimeoutErrorWithMetaNoStack(metadata map[string]any, format string, args ...any) Error {
return FastNewf(ErrTimeout, format, args...).
WithMetadataMap(metadata)
}
// ForbiddenErrorWithMetaNoStack 创建带元数据的禁止访问错误
func ForbiddenErrorWithMetaNoStack(metadata map[string]any, format string, args ...any) Error {
return FastNewf(ErrForbidden, format, args...).
WithMetadataMap(metadata)
}
// InternalErrorWithMetaNoStack 创建带元数据的内部错误
func InternalErrorWithMetaNoStack(metadata map[string]any, format string, args ...any) Error {
return FastNewf(ErrInternal, format, args...).
WithMetadataMap(metadata)
}