LogUtil.java
9.14 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
package com.sunvote.xpadapi.util;
import android.os.Environment;
import android.util.Log;
import com.sunvote.util.ByteUtils;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* Created by Elvis on 2017/8/15 15:03
* Email:Eluis@psunsky.com
* 版权所有:长沙中天电子设计开发有限公司
* Description: 工具包
*/
public class LogUtil {
private static FileWriter fileWriter;
public static final int VERBOSE_LEVER = 2;
public static final int DEBUG_LEVER = 3;
public static final int INFO_LEVER = 4;
public static final int WARN_LEVER = 5;
public static final int ERROR_LEVER = 6;
public static final int ASSERT_LEVER = 7;
public static int lever = VERBOSE_LEVER - 1 ;
private static boolean logToFile = false;
private static boolean logToLogcat = true ;
public static SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS");
LogUtil() {
throw new RuntimeException("Stub!");
}
public static int v(String tag, String msg) {
if (VERBOSE_LEVER > lever) {
if(logToLogcat){
Log.v(tag, msg);
}
inputToFile("(V):" + msg );
}
return -1;
}
private static void init(){
if(fileWriter == null){
synchronized (LogUtil.class) {
if(fileWriter == null) {
try {
File path = new File(Environment.getExternalStorageDirectory().getPath() + "/Sunvote/");
if (!path.exists()) {
path.mkdirs();
}
File file = new File(Environment.getExternalStorageDirectory().getPath()
+ "/Sunvote/log" + simpleDateFormat.format(new Date())+".txt");
if (!file.exists()) {
file.createNewFile();
}
fileWriter = new FileWriter(file, true);
} catch (Exception ex) {
ex.printStackTrace();
fileWriter = null;
}
}
}
}
}
public static void enableLogToFile(){
logToFile = true;
}
public static void disabelLogToFile(){
logToFile = false;
}
public static void enableLogToLogcat(){
logToLogcat = true;
}
public static void disableLogToLogcat(){
logToLogcat = false;
}
public static void enableLog(){
lever = VERBOSE_LEVER - 1;
}
public static void disableLog(){
lever = ASSERT_LEVER ;
}
public static int v(String tag, String msg, Throwable tr) {
if(VERBOSE_LEVER > lever){
if(logToLogcat) {
Log.v(tag, msg, tr);
}
inputToFile("(V):" + tag + " " + msg + Log.getStackTraceString(tr));
}
return -1;
}
public static int d(String tag, String msg) {
if(DEBUG_LEVER > lever){
if(logToLogcat) {
Log.d(tag, msg);
}
inputToFile("(D):" + tag + " " + msg );
}
return -1;
}
public static int d(String tag, String msg, Throwable tr) {
if(DEBUG_LEVER > lever){
if(logToLogcat){
Log.d(tag,msg,tr);
}
inputToFile("(D):" + tag + " " + msg + Log.getStackTraceString(tr));
}
return -1;
}
public static int i(String tag, String msg) {
if(INFO_LEVER > lever){
if(logToLogcat){
Log.i(tag,msg);
}
inputToFile("(I):" + tag + " " + msg );
}
return -1;
}
public static int i(String tag, String msg, Throwable tr) {
if(INFO_LEVER > lever){
if(logToLogcat){
Log.i(tag,msg,tr);
}
inputToFile("(I):" + tag + " " + msg + Log.getStackTraceString(tr));
}
return -1;
}
public static int i(String tag,byte[] msg){
String msgStr = ByteUtils.bytesToHexString(msg);
return i(tag,msgStr);
}
public static int i(String tag,String msgTag, byte[] msg){
String msgStr = ByteUtils.bytesToHexString(msg);
return i(tag,msgTag + ":\r\n" + msgStr);
}
public static int v(String tag,String msgTag, byte[] msg){
String msgStr = ByteUtils.bytesToHexString(msg);
return v(tag,msgTag + ":\r\n" + msgStr);
}
public static int i(String tag,String msgTag, byte[] msg,int length){
String msgStr = ByteUtils.bytesToHexString(msg,length);
return i(tag,msgTag + ":\r\n" + msgStr);
}
public static int v(String tag,String msgTag, byte[] msg,int length){
String msgStr = ByteUtils.bytesToHexString(msg,length);
return v(tag,msgTag + ":\r\n" + msgStr);
}
public static int i(String tag,byte[] msg,Throwable tr){
String msgStr = ByteUtils.bytesToHexString(msg);
return i(tag,msgStr,tr);
}
public static int i(String tag,String msgTag,byte[] msg,Throwable tr){
String msgStr = ByteUtils.bytesToHexString(msg);
return i(tag,msgTag + ":\r\n" + msgStr,tr);
}
public static int w(String tag, String msg) {
if(WARN_LEVER > lever){
if(logToLogcat){
Log.w(tag,msg);
}
inputToFile("(V):" + msg);
}
return -1;
}
public static int w(String tag, String msg, Throwable tr) {
if(WARN_LEVER > lever){
if(logToLogcat){
Log.w(tag,msg,tr);
}
inputToFile("(W):" + tag + " " + msg + Log.getStackTraceString(tr));
}
return -1;
}
public static boolean isLoggable(String s, int i){
return Log.isLoggable(s,i);
}
public static int w(String tag, Throwable tr) {
if(WARN_LEVER > lever){
if(logToLogcat){
Log.w(tag,tr);
}
inputToFile("(W):" + tag + " " + Log.getStackTraceString(tr));
}
return -1;
}
public static int e(String tag, String msg) {
if(ERROR_LEVER > lever){
if(logToLogcat){
Log.e(tag,msg);
}
inputToFile("(E):" + tag + " " + msg);
}
return -1;
}
public static int e(String tag,Throwable tr){
String message = "ERROR" ;
if(tr != null && tr.getMessage() != null){
message = tr.getMessage();
}
return e(tag,message,tr);
}
public static int e(String tag, String msg, Throwable tr) {
if(ERROR_LEVER > lever){
if(logToLogcat){
Log.e(tag,msg,tr);
}
inputToFile("(E):" + tag + " " + msg + Log.getStackTraceString(tr));
}
return -1;
}
public static int wtf(String tag, String msg) {
if(ASSERT_LEVER > lever){
if(logToLogcat){
Log.wtf(tag,msg);
}
inputToFile("(WTF):" + tag + " " + msg);
}
return -1;
}
public static int wtf(String tag, Throwable tr) {
if(ASSERT_LEVER > lever){
if(logToLogcat){
Log.wtf(tag,tr);
}
inputToFile("(WTF):" + tag + " " + Log.getStackTraceString(tr));
}
return -1;
}
public static int wtf(String tag, String msg, Throwable tr) {
if(ASSERT_LEVER > lever){
if(logToLogcat){
Log.wtf(tag,msg,tr);
}
inputToFile("(WTF):" + tag + " " + msg + Log.getStackTraceString(tr));
}
return -1;
}
public static String getStackTraceString(Throwable tr) {
return Log.getStackTraceString(tr);
}
public static void stack(){
Throwable throwable = new Throwable();
// 需要处理TAG 要读出上面class method的信息,后续添上
i("STACK",getStackTraceString(throwable));
}
private synchronized static void inputToFile(String msg){
if(logToFile) {
String time = simpleDateFormat.format(new Date());
try {
init();
String log = time + "(" + Thread.currentThread().getName() + ",id=" + Thread.currentThread().getId() + ")" + msg + "\r\n";
if(onLogMessage != null){
onLogMessage.onLog(time + ":" + msg + "\r\n");
}
fileWriter.write(log);
fileWriter.flush();
} catch (Exception ex) {
ex.printStackTrace();
if(fileWriter != null){
try {
fileWriter.close();
} catch (IOException e) {
e.printStackTrace();
}
}
fileWriter = null;
}
}
}
private static OnLogMessage onLogMessage;
public static void setOnLogMessage(OnLogMessage onLogMessage) {
LogUtil.onLogMessage = onLogMessage;
}
public static interface OnLogMessage{
void onLog(String log);
}
}