dongyukun
8 天以前 a23e66f179586eeffc55d116f5a3bb53eab9cb09
提交 | 用户 | 时间
e7c126 1 package com.iailab.framework.common.exception.util;
H 2
3 import com.iailab.framework.common.exception.ErrorCode;
4 import com.iailab.framework.common.exception.ServiceException;
5 import com.iailab.framework.common.exception.enums.GlobalErrorCodeConstants;
6 import com.google.common.annotations.VisibleForTesting;
7 import lombok.extern.slf4j.Slf4j;
8
9 /**
10  * {@link ServiceException} 工具类
11  *
12  * 目的在于,格式化异常信息提示。
13  * 考虑到 String.format 在参数不正确时会报错,因此使用 {} 作为占位符,并使用 {@link #doFormat(int, String, Object...)} 方法来格式化
14  *
15  */
16 @Slf4j
17 public class ServiceExceptionUtil {
18
19     // ========== 和 ServiceException 的集成 ==========
20
21     public static ServiceException exception(ErrorCode errorCode) {
22         return exception0(errorCode.getCode(), errorCode.getMsg());
23     }
24
25     public static ServiceException exception(ErrorCode errorCode, Object... params) {
26         return exception0(errorCode.getCode(), errorCode.getMsg(), params);
27     }
28
29     public static ServiceException exception0(Integer code, String messagePattern, Object... params) {
30         String message = doFormat(code, messagePattern, params);
31         return new ServiceException(code, message);
32     }
33
34     public static ServiceException invalidParamException(String messagePattern, Object... params) {
35         return exception0(GlobalErrorCodeConstants.BAD_REQUEST.getCode(), messagePattern, params);
36     }
37
38     // ========== 格式化方法 ==========
39
40     /**
41      * 将错误编号对应的消息使用 params 进行格式化。
42      *
43      * @param code           错误编号
44      * @param messagePattern 消息模版
45      * @param params         参数
46      * @return 格式化后的提示
47      */
48     @VisibleForTesting
49     public static String doFormat(int code, String messagePattern, Object... params) {
50         StringBuilder sbuf = new StringBuilder(messagePattern.length() + 50);
51         int i = 0;
52         int j;
53         int l;
54         for (l = 0; l < params.length; l++) {
55             j = messagePattern.indexOf("{}", i);
56             if (j == -1) {
57                 log.error("[doFormat][参数过多:错误码({})|错误内容({})|参数({})", code, messagePattern, params);
58                 if (i == 0) {
59                     return messagePattern;
60                 } else {
61                     sbuf.append(messagePattern.substring(i));
62                     return sbuf.toString();
63                 }
64             } else {
65                 sbuf.append(messagePattern, i, j);
66                 sbuf.append(params[l]);
67                 i = j + 2;
68             }
69         }
70         if (messagePattern.indexOf("{}", i) != -1) {
71             log.error("[doFormat][参数过少:错误码({})|错误内容({})|参数({})", code, messagePattern, params);
72         }
73         sbuf.append(messagePattern.substring(i));
74         return sbuf.toString();
75     }
76
77 }