Logger.ets
5.58 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
import hilog from '@ohos.hilog';
/**
* Log level define
*
* @syscap SystemCapability.HiviewDFX.HiLog
*/
enum LogLevel {
DEBUG = 3,
INFO = 4,
WARN = 5,
ERROR = 6,
FATAL = 7
}
/**
* Common log for all features.
*
* @param {string} prefix Identifies the log tag.
*/
export class Logger {
private static domain: number = 0xFF00;
private static prefix: string = 'RMRB';
private static format: string = `%{public}s, %{public}s`;
private static format_ext: string = `%{public}s`;
/**
* 暂时没找到限制大小相关文档,尝试4000是不行的,3500可以。可以后续优化
*/
private static CHUNK_SIZE: number = 3500;
static isDebug: boolean = true;
static isCloseOptimzied: boolean = false; // 正常用false,打开是为了暴露性能问题
/**
* constructor.
*
* @param Prefix Identifies the log tag.
* @param domain Domain Indicates the service domain, which is a hexadecimal integer ranging from 0x0 to 0xFFFFF.
*/
constructor(prefix: string = 'RMRB', domain: number = 0xFF00) {
Logger.prefix = prefix;
Logger.domain = domain;
}
static debug(...args: string[]) {
if (!Logger.isDebug) {
return
}
Logger.logContent(LogLevel.DEBUG, ...args)
}
static debugOptimize(tag: string, func: () => string) {
if (!Logger.isDebug || Logger.isCloseOptimzied) {
return
}
let param: string[] = []
param.push(tag)
param.push(func())
Logger.logContent(LogLevel.DEBUG, ...param)
}
static info(...args: string[]) {
if (!Logger.isDebug) {
return
}
Logger.logContent(LogLevel.INFO, ...args)
}
static infoOptimize(tag: string, func: () => string) {
if (!Logger.isDebug || Logger.isCloseOptimzied) {
return
}
let param: string[] = []
param.push(tag)
param.push(func())
Logger.logContent(LogLevel.INFO, ...param)
}
static warn(...args: string[]) {
if (!Logger.isDebug) {
return
}
Logger.logContent(LogLevel.WARN, ...args)
}
static warnOptimize(tag: string, func: () => string) {
if (!Logger.isDebug || Logger.isCloseOptimzied) {
return
}
let param: string[] = []
param.push(tag)
param.push(func())
Logger.logContent(LogLevel.WARN, ...param)
}
static error(...args: string[]) {
if (!Logger.isDebug || Logger.isCloseOptimzied) {
return
}
Logger.logContent(LogLevel.ERROR, ...args)
}
static errorOptimize(tag: string, func: () => string) {
if (!Logger.isDebug || Logger.isCloseOptimzied) {
return
}
let param: string[] = []
param.push(tag)
param.push(func())
Logger.logContent(LogLevel.ERROR, ...param)
}
static fatal(...args: string[]) {
if (!Logger.isDebug) {
return
}
Logger.logContent(LogLevel.FATAL, ...args)
}
static fatalOptimize(tag: string, func: () => string) {
if (!Logger.isDebug || Logger.isCloseOptimzied) {
return
}
let param: string[] = []
param.push(tag)
param.push(func())
Logger.logContent(LogLevel.FATAL, ...param)
}
static isLoggable(level: LogLevel) {
if (!Logger.isDebug) {
return
}
// 判断是否打印 TODO
hilog.isLoggable(Logger.domain, Logger.prefix, level);
}
static logContent(level: LogLevel, ...args: string[]) {
let msg = Logger.getMsg(...args)
let tag = Logger.getTag(...args)
let length = msg.length
if (length < Logger.CHUNK_SIZE) {
// 不超限,保持原来的打印
Logger.print(tag, level, ...args)
} else {
// 超限,分段打印
for (let i = 0; i < length; i += Logger.CHUNK_SIZE) {
let count = Math.min(length - i, Logger.CHUNK_SIZE);
Logger.printExt(tag, level, msg.substring(i, i + count));
}
}
}
static print(tag: string, level: LogLevel, ...msg: string[]) {
let prefix = Logger.prefix
if (tag) {
prefix += "-" + tag
}
switch (level) {
case LogLevel.DEBUG:
hilog.debug(Logger.domain, prefix, Logger.format, msg);
break
case LogLevel.INFO:
hilog.info(Logger.domain, prefix, Logger.format, msg);
break
case LogLevel.WARN:
hilog.warn(Logger.domain, prefix, Logger.format, msg);
break
case LogLevel.ERROR:
hilog.error(Logger.domain, prefix, Logger.format, msg);
break
case LogLevel.FATAL:
hilog.fatal(Logger.domain, prefix, Logger.format, msg);
break
}
}
static printExt(tag: string, level: LogLevel, msg: string) {
let prefix = Logger.prefix
if (tag) {
prefix += "-" + tag
}
switch (level) {
case LogLevel.DEBUG:
hilog.debug(Logger.domain, prefix, Logger.format_ext, msg);
break
case LogLevel.INFO:
hilog.info(Logger.domain, prefix, Logger.format_ext, msg);
break
case LogLevel.WARN:
hilog.warn(Logger.domain, prefix, Logger.format_ext, msg);
break
case LogLevel.ERROR:
hilog.error(Logger.domain, prefix, Logger.format_ext, msg);
break
case LogLevel.FATAL:
hilog.fatal(Logger.domain, prefix, Logger.format_ext, msg);
break
}
}
static getMsg(...args: string[]): string {
if (args == null || args.length <= 0) {
return '';
}
let msg = ''
args.forEach((v) => {
msg = msg.concat(', ').concat(v)
})
return msg.substring(2, msg.length);
}
static getTag(...args: string[]): string {
if (args == null || args.length <= 0) {
return '';
}
if (args.length > 1) {
return args[0]
} else {
return ''
}
}
}
// export default new Logger('SightApp', 0xFF00)