LogUtils.java
18.4 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 com.gimi.common.cinema.utils;
import android.support.annotation.IntDef;
import android.util.Log;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import java.io.BufferedWriter;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.StringReader;
import java.io.StringWriter;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Formatter;
import java.util.Locale;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.zip.DataFormatException;
import java.util.zip.Deflater;
import java.util.zip.Inflater;
/**
* <pre>
* author: Blankj
* blog : http://blankj.com
* time : 2016/09/21
* desc : Log相关工具类
* </pre>
*/
public final class LogUtils {
public static final int V = Log.VERBOSE;
public static final int D = Log.DEBUG;
public static final int I = Log.INFO;
public static final int W = Log.WARN;
public static final int E = Log.ERROR;
public static final int A = Log.ASSERT;
@IntDef({V, D, I, W, E, A})
@Retention(RetentionPolicy.SOURCE)
private @interface TYPE {
}
private static final char[] T = new char[]{'V', 'D', 'I', 'W', 'E', 'A'};
private static final int FILE = 0x10;
private static final int JSON = 0x20;
private static final int XML = 0x30;
private static ExecutorService executor;
private static String defaultDir;// log默认存储目录
private static String dir; // log存储目录
private static boolean sLogSwitch = true; // log总开关,默认开
private static boolean sLog2ConsoleSwitch = true; // logcat是否打印,默认打印
private static String sGlobalTag = null; // log标签
private static boolean sTagIsSpace = true; // log标签是否为空白
private static boolean sLogHeadSwitch = true; // log头部开关,默认开
private static boolean sLog2FileSwitch = false;// log写入文件开关,默认关
private static boolean sLogBorderSwitch = true; // log边框开关,默认开
private static int sConsoleFilter = V; // log控制台过滤器
private static int sFileFilter = V; // log文件过滤器
private static final String FILE_SEP = System.getProperty("file.separator");
private static final String LINE_SEP = System.getProperty("line.separator");
private static final String TOP_BORDER = "╔═══════════════════════════════════════════════════════════════════════════════════════════════════";
private static final String LEFT_BORDER = "║ ";
private static final String BOTTOM_BORDER = "╚═══════════════════════════════════════════════════════════════════════════════════════════════════";
private static final int MAX_LEN = 4000;
private static final Format FORMAT = new SimpleDateFormat("MM-dd HH:mm:ss.SSS ", Locale.getDefault());
private static final String NULL_TIPS = "Log with null object.";
private static final String NULL = "null";
private static final String ARGS = "args";
private LogUtils() {
throw new UnsupportedOperationException("u can't instantiate me...");
}
public static class Builder {
public Builder() {
if (defaultDir != null) return;
defaultDir = "/sdcard/log/";
// if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())
// && Utils.getContext().getExternalCacheDir() != null)
// defaultDir = Utils.getContext().getExternalCacheDir() + FILE_SEP + "log" + FILE_SEP;
// else {
// defaultDir = Utils.getContext().getCacheDir() + FILE_SEP + "log" + FILE_SEP;
// }
}
public Builder setLogSwitch(boolean logSwitch) {
LogUtils.sLogSwitch = logSwitch;
return this;
}
public Builder setConsoleSwitch(boolean consoleSwitch) {
LogUtils.sLog2ConsoleSwitch = consoleSwitch;
return this;
}
public Builder setGlobalTag(final String tag) {
if (isSpace(tag)) {
LogUtils.sGlobalTag = "";
sTagIsSpace = true;
} else {
LogUtils.sGlobalTag = tag;
sTagIsSpace = false;
}
return this;
}
public Builder setLogHeadSwitch(boolean logHeadSwitch) {
LogUtils.sLogHeadSwitch = logHeadSwitch;
return this;
}
public Builder setLog2FileSwitch(boolean log2FileSwitch) {
LogUtils.sLog2FileSwitch = log2FileSwitch;
return this;
}
public Builder setDir(final String dir) {
if (isSpace(dir)) {
LogUtils.dir = null;
} else {
LogUtils.dir = dir.endsWith(FILE_SEP) ? dir : dir + FILE_SEP;
}
return this;
}
public Builder setDir(final File dir) {
LogUtils.dir = dir == null ? null : dir.getAbsolutePath() + FILE_SEP;
return this;
}
public Builder setBorderSwitch(boolean borderSwitch) {
LogUtils.sLogBorderSwitch = borderSwitch;
return this;
}
public Builder setConsoleFilter(@TYPE int consoleFilter) {
LogUtils.sConsoleFilter = consoleFilter;
return this;
}
public Builder setFileFilter(@TYPE int fileFilter) {
LogUtils.sFileFilter = fileFilter;
return this;
}
@Override
public String toString() {
return "switch: " + sLogSwitch
+ LINE_SEP + "console: " + sLog2ConsoleSwitch
+ LINE_SEP + "tag: " + (sTagIsSpace ? "null" : sGlobalTag)
+ LINE_SEP + "head: " + sLogHeadSwitch
+ LINE_SEP + "file: " + sLog2FileSwitch
+ LINE_SEP + "dir: " + (dir == null ? defaultDir : dir)
+ LINE_SEP + "border: " + sLogBorderSwitch
+ LINE_SEP + "consoleFilter: " + T[sConsoleFilter - V]
+ LINE_SEP + "fileFilter: " + T[sFileFilter - V];
}
}
public static void v(Object contents) {
log(V, sGlobalTag, contents);
}
public static void v(String tag, Object... contents) {
log(V, tag, contents);
}
public static void d(Object contents) {
log(D, sGlobalTag, contents);
}
public static void d(String tag, Object... contents) {
log(D, tag, contents);
}
public static void i(Object contents) {
log(I, sGlobalTag, contents);
}
public static void i(String tag, Object... contents) {
log(I, tag, contents);
}
public static void w(Object contents) {
log(W, sGlobalTag, contents);
}
public static void w(String tag, Object... contents) {
log(W, tag, contents);
}
public static void e(Object contents) {
log(E, sGlobalTag, contents);
}
public static void e(String tag, Object... contents) {
log(E, tag, contents);
}
public static void a(Object contents) {
log(A, sGlobalTag, contents);
}
public static void a(String tag, Object... contents) {
log(A, tag, contents);
}
public static void file(Object contents) {
log(FILE | D, sGlobalTag, contents);
}
public static void file(@TYPE int type, Object contents) {
log(FILE | type, sGlobalTag, contents);
}
public static void file(String tag, Object contents) {
log(FILE | D, tag, contents);
}
public static void file(@TYPE int type, String tag, Object contents) {
log(FILE | type, tag, contents);
}
public static void json(String contents) {
log(JSON | D, sGlobalTag, contents);
}
public static void json(@TYPE int type, String contents) {
log(JSON | type, sGlobalTag, contents);
}
public static void json(String tag, String contents) {
log(JSON | D, tag, contents);
}
public static void json(@TYPE int type, String tag, String contents) {
log(JSON | type, tag, contents);
}
public static void xml(String contents) {
log(XML | D, sGlobalTag, contents);
}
public static void xml(@TYPE int type, String contents) {
log(XML | type, sGlobalTag, contents);
}
public static void xml(String tag, String contents) {
log(XML | D, tag, contents);
}
public static void xml(@TYPE int type, String tag, String contents) {
log(XML | type, tag, contents);
}
private static void log(final int type, String tag, final Object... contents) {
if (!sLogSwitch || (!sLog2ConsoleSwitch && !sLog2FileSwitch)) return;
int type_low = type & 0x0f, type_high = type & 0xf0;
if (type_low < sConsoleFilter && type_low < sFileFilter) return;
final String[] tagAndHead = processTagAndHead(tag);
String body = processBody(type_high, contents);
if (sLog2ConsoleSwitch && type_low >= sConsoleFilter) {
print2Console(type_low, tagAndHead[0], tagAndHead[1] + body);
}
if (sLog2FileSwitch || type_high == FILE) {
if (type_low >= sFileFilter)
print2File(type_low, tagAndHead[0], tagAndHead[2] + body);
}
}
private static String[] processTagAndHead(String tag) {
if (!sTagIsSpace && !sLogHeadSwitch) {
tag = sGlobalTag;
} else {
StackTraceElement targetElement = Thread.currentThread().getStackTrace()[5];
String className = targetElement.getClassName();
String[] classNameInfo = className.split("\\.");
if (classNameInfo.length > 0) {
className = classNameInfo[classNameInfo.length - 1];
}
if (className.contains("$")) {
className = className.split("\\$")[0];
}
if (sTagIsSpace) {
tag = isSpace(tag) ? className : tag;
}
if (sLogHeadSwitch) {
String head = new Formatter()
.format("%s, %s(%s.java:%d)",
Thread.currentThread().getName(),
targetElement.getMethodName(),
className,
targetElement.getLineNumber())
.toString();
return new String[]{tag, head + LINE_SEP, " [" + head + "]: "};
}
}
return new String[]{tag, "", ": "};
}
private static String processBody(int type, Object... contents) {
String body = NULL_TIPS;
if (contents != null) {
if (contents.length == 1) {
Object object = contents[0];
body = object == null ? NULL : object.toString();
if (type == JSON) {
body = formatJson(body);
} else if (type == XML) {
body = formatXml(body);
}
} else {
StringBuilder sb = new StringBuilder();
for (int i = 0, len = contents.length; i < len; ++i) {
Object content = contents[i];
sb.append(ARGS)
.append("[")
.append(i)
.append("]")
.append(" = ")
.append(content == null ? NULL : content.toString())
.append(LINE_SEP);
}
body = sb.toString();
}
}
return body;
}
private static String formatJson(String json) {
try {
if (json.startsWith("{")) {
json = new JSONObject(json).toString(4);
} else if (json.startsWith("[")) {
json = new JSONArray(json).toString(4);
}
} catch (JSONException e) {
e.printStackTrace();
}
return json;
}
private static String formatXml(String xml) {
try {
Source xmlInput = new StreamSource(new StringReader(xml));
StreamResult xmlOutput = new StreamResult(new StringWriter());
Transformer transformer = TransformerFactory.newInstance().newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
transformer.transform(xmlInput, xmlOutput);
xml = xmlOutput.getWriter().toString().replaceFirst(">", ">" + LINE_SEP);
} catch (Exception e) {
e.printStackTrace();
}
return xml;
}
private static void print2Console(final int type, String tag, String msg) {
if (sLogBorderSwitch) {
print(type, tag, TOP_BORDER);
msg = addLeftBorder(msg);
}
int len = msg.length();
int countOfSub = len / MAX_LEN;
if (countOfSub > 0) {
print(type, tag, msg.substring(0, MAX_LEN));
String sub;
int index = MAX_LEN;
for (int i = 1; i < countOfSub; i++) {
sub = msg.substring(index, index + MAX_LEN);
print(type, tag, sLogBorderSwitch ? LEFT_BORDER + sub : sub);
index += MAX_LEN;
}
sub = msg.substring(index, len);
print(type, tag, sLogBorderSwitch ? LEFT_BORDER + sub : sub);
} else {
print(type, tag, msg);
}
if (sLogBorderSwitch) print(type, tag, BOTTOM_BORDER);
}
private static void print(final int type, final String tag, String msg) {
Log.println(type, tag, msg);
}
private static String addLeftBorder(String msg) {
if (!sLogBorderSwitch) return msg;
StringBuilder sb = new StringBuilder();
String[] lines = msg.split(LINE_SEP);
for (String line : lines) {
sb.append(LEFT_BORDER).append(line).append(LINE_SEP);
}
return sb.toString();
}
private static void print2File(final int type, final String tag, final String msg) {
Date now = new Date(System.currentTimeMillis());
String format = FORMAT.format(now);
String date = format.substring(0, 5);
String time = format.substring(6);
final String fullPath = (dir == null ? defaultDir : dir) + date + ".txt";
if (!createOrExistsFile(fullPath)) {
Log.e(tag, "log to " + fullPath + " failed!");
return;
}
StringBuilder sb = new StringBuilder();
sb.append(time)
.append(T[type - V])
.append("/")
.append(tag)
.append(msg)
.append(LINE_SEP);
final String content = sb.toString();
if (executor == null) {
executor = Executors.newSingleThreadExecutor();
}
executor.execute(new Runnable() {
@Override
public void run() {
BufferedWriter bw = null;
try {
bw = new BufferedWriter(new FileWriter(fullPath, true));
bw.write(content);
// Log.d(tag, "log to " + fullPath + " success!");
} catch (IOException e) {
e.printStackTrace();
Log.e(tag, "log to " + fullPath + " failed!");
} finally {
try {
if (bw != null) {
bw.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
});
}
private static boolean createOrExistsFile(String filePath) {
File file = new File(filePath);
if (file.exists()) return file.isFile();
if (!createOrExistsDir(file.getParentFile())) return false;
try {
return file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
return false;
}
}
private static boolean createOrExistsDir(File file) {
return file != null && (file.exists() ? file.isDirectory() : file.mkdirs());
}
private static boolean isSpace(String s) {
if (s == null) return true;
for (int i = 0, len = s.length(); i < len; ++i) {
if (!Character.isWhitespace(s.charAt(i))) {
return false;
}
}
return true;
}
public static byte[] compress(byte input[]) {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
Deflater compressor = new Deflater(1);
try {
compressor.setInput(input);
compressor.finish();
final byte[] buf = new byte[2048];
while (!compressor.finished()) {
int count = compressor.deflate(buf);
bos.write(buf, 0, count);
}
} finally {
compressor.end();
}
return bos.toByteArray();
}
public static byte[] uncompress(byte[] input) {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
Inflater decompressor = new Inflater();
try {
decompressor.setInput(input);
final byte[] buf = new byte[2048];
while (!decompressor.finished()) {
int count = 0;
try {
count = decompressor.inflate(buf);
} catch (DataFormatException e) {
e.printStackTrace();
}
bos.write(buf, 0, count);
}
} finally {
decompressor.end();
}
return bos.toByteArray();
}
}