parent
08e5c8fbb6
commit
7f23dfb4ef
@ -0,0 +1,25 @@ |
|||||||
|
package com.king.app.updater.notify; |
||||||
|
|
||||||
|
import android.content.Context; |
||||||
|
|
||||||
|
import com.king.app.updater.UpdateConfig; |
||||||
|
|
||||||
|
import java.io.File; |
||||||
|
|
||||||
|
import androidx.annotation.DrawableRes; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author <a href="mailto:jenly1314@gmail.com">Jenly</a> |
||||||
|
*/ |
||||||
|
public interface INotification { |
||||||
|
|
||||||
|
void onStart(Context context, int notifyId, String channelId, String channelName, @DrawableRes int icon, CharSequence title, CharSequence content, boolean isVibrate, boolean isSound, boolean isCancelDownload); |
||||||
|
|
||||||
|
void onProgress(Context context, int notifyId, String channelId, @DrawableRes int icon, CharSequence title, CharSequence content, int progress, int size, boolean isCancelDownload); |
||||||
|
|
||||||
|
void onFinish(Context context, int notifyId, String channelId, @DrawableRes int icon, CharSequence title, CharSequence content, File file, String authority); |
||||||
|
|
||||||
|
void onError(Context context, int notifyId, String channelId, @DrawableRes int icon, CharSequence title, CharSequence content, boolean isReDownload, UpdateConfig config); |
||||||
|
|
||||||
|
void onCancel(Context context, int notifyId); |
||||||
|
} |
@ -0,0 +1,38 @@ |
|||||||
|
package com.king.app.updater.notify; |
||||||
|
|
||||||
|
import android.content.Context; |
||||||
|
|
||||||
|
import com.king.app.updater.UpdateConfig; |
||||||
|
import com.king.app.updater.util.NotificationUtils; |
||||||
|
|
||||||
|
import java.io.File; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author <a href="mailto:jenly1314@gmail.com">Jenly</a> |
||||||
|
*/ |
||||||
|
public class NotificationImpl implements INotification { |
||||||
|
@Override |
||||||
|
public void onStart(Context context, int notifyId, String channelId, String channelName, int icon, CharSequence title, CharSequence content, boolean isVibrate, boolean isSound, boolean isCancelDownload) { |
||||||
|
NotificationUtils.showStartNotification(context, notifyId, channelId, channelName, icon, title, content, isVibrate, isSound, isCancelDownload); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void onProgress(Context context, int notifyId, String channelId, int icon, CharSequence title, CharSequence content, int progress, int size, boolean isCancelDownload) { |
||||||
|
NotificationUtils.showProgressNotification(context, notifyId, channelId, icon, title, content, progress, size, isCancelDownload); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void onFinish(Context context, int notifyId, String channelId, int icon, CharSequence title, CharSequence content, File file, String authority) { |
||||||
|
NotificationUtils.showFinishNotification(context, notifyId, channelId, icon, title, content, file, authority); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void onError(Context context, int notifyId, String channelId, int icon, CharSequence title, CharSequence content, boolean isReDownload, UpdateConfig config) { |
||||||
|
NotificationUtils.showErrorNotification(context, notifyId, channelId, icon, title, content, isReDownload, config); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void onCancel(Context context, int notifyId) { |
||||||
|
NotificationUtils.cancelNotification(context, notifyId); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,316 @@ |
|||||||
|
/* |
||||||
|
Copyright © 2015, 2016 Jenly Yu <a href="mailto:jenly1314@gmail.com">Jenly</a> |
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
you may not use this file except in compliance with the License. |
||||||
|
You may obtain a copy of the License at |
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software |
||||||
|
distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
See the License for the specific language governing permissions and |
||||||
|
limitations under the License. |
||||||
|
|
||||||
|
*/ |
||||||
|
package com.king.app.updater.util; |
||||||
|
|
||||||
|
|
||||||
|
import android.util.Log; |
||||||
|
|
||||||
|
import java.util.Locale; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Jenly <a href="mailto:jenly1314@gmail.com">Jenly</a> |
||||||
|
*/ |
||||||
|
public class LogUtils { |
||||||
|
|
||||||
|
public static final String TAG = "AppUpdater"; |
||||||
|
|
||||||
|
public static final String VERTICAL = "|"; |
||||||
|
|
||||||
|
/** 是否显示Log日志 */ |
||||||
|
private static boolean isShowLog = true; |
||||||
|
|
||||||
|
/** Log日志优先权 */ |
||||||
|
private static int priority = 1; |
||||||
|
|
||||||
|
/** |
||||||
|
* Priority constant for the println method;use System.out.println |
||||||
|
*/ |
||||||
|
public static final int PRINTLN = 1; |
||||||
|
|
||||||
|
/** |
||||||
|
* Priority constant for the println method; use Log.v. |
||||||
|
*/ |
||||||
|
public static final int VERBOSE = 2; |
||||||
|
|
||||||
|
/** |
||||||
|
* Priority constant for the println method; use Log.d. |
||||||
|
*/ |
||||||
|
public static final int DEBUG = 3; |
||||||
|
|
||||||
|
/** |
||||||
|
* Priority constant for the println method; use Log.i. |
||||||
|
*/ |
||||||
|
public static final int INFO = 4; |
||||||
|
|
||||||
|
/** |
||||||
|
* Priority constant for the println method; use Log.w. |
||||||
|
*/ |
||||||
|
public static final int WARN = 5; |
||||||
|
|
||||||
|
/** |
||||||
|
* Priority constant for the println method; use Log.e. |
||||||
|
*/ |
||||||
|
public static final int ERROR = 6; |
||||||
|
|
||||||
|
/** |
||||||
|
* Priority constant for the println method.use Log.wtf. |
||||||
|
*/ |
||||||
|
public static final int ASSERT = 7; |
||||||
|
|
||||||
|
public static final String TAG_FORMAT = "%s.%s(%s:%d)"; |
||||||
|
|
||||||
|
private LogUtils(){ |
||||||
|
throw new AssertionError(); |
||||||
|
} |
||||||
|
|
||||||
|
public static void setShowLog(boolean isShowLog) { |
||||||
|
|
||||||
|
LogUtils.isShowLog = isShowLog; |
||||||
|
} |
||||||
|
|
||||||
|
public static boolean isShowLog() { |
||||||
|
|
||||||
|
return isShowLog; |
||||||
|
} |
||||||
|
|
||||||
|
public static int getPriority() { |
||||||
|
|
||||||
|
return priority; |
||||||
|
} |
||||||
|
|
||||||
|
public static void setPriority(int priority) { |
||||||
|
|
||||||
|
LogUtils.priority = priority; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 根据堆栈生成TAG |
||||||
|
* @return TAG|className.methodName(fileName:lineNumber) |
||||||
|
*/ |
||||||
|
private static String generateTag(StackTraceElement caller) { |
||||||
|
String tag = TAG_FORMAT; |
||||||
|
String callerClazzName = caller.getClassName(); |
||||||
|
callerClazzName = callerClazzName.substring(callerClazzName.lastIndexOf(".") + 1); |
||||||
|
tag = String.format(Locale.getDefault(),tag,callerClazzName, caller.getMethodName(),caller.getFileName(),caller.getLineNumber()); |
||||||
|
return new StringBuilder().append(TAG).append(VERTICAL).append(tag).toString(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 获取堆栈 |
||||||
|
* @param n |
||||||
|
* n=0 VMStack |
||||||
|
* n=1 Thread |
||||||
|
* n=3 CurrentStack |
||||||
|
* n=4 CallerStack |
||||||
|
* ... |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public static StackTraceElement getStackTraceElement(int n) { |
||||||
|
return Thread.currentThread().getStackTrace()[n]; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 获取调用方的堆栈TAG |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private static String getCallerStackLogTag(){ |
||||||
|
return generateTag(getStackTraceElement(5)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @param t |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
private static String getStackTraceString(Throwable t){ |
||||||
|
return Log.getStackTraceString(t); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------Log.v
|
||||||
|
|
||||||
|
/** |
||||||
|
* Log.v |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void v(String msg) { |
||||||
|
if (isShowLog && priority <= VERBOSE) |
||||||
|
Log.v(getCallerStackLogTag(), String.valueOf(msg)); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public static void v(Throwable t) { |
||||||
|
if (isShowLog && priority <= VERBOSE) |
||||||
|
Log.v(getCallerStackLogTag(), getStackTraceString(t)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void v(String msg,Throwable t) { |
||||||
|
if (isShowLog && priority <= VERBOSE) |
||||||
|
Log.v(getCallerStackLogTag(), String.valueOf(msg), t); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------Log.d
|
||||||
|
|
||||||
|
/** |
||||||
|
* Log.d |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void d(String msg) { |
||||||
|
if (isShowLog && priority <= DEBUG) |
||||||
|
Log.d(getCallerStackLogTag(), String.valueOf(msg)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void d(Throwable t) { |
||||||
|
if (isShowLog && priority <= DEBUG) |
||||||
|
Log.d(getCallerStackLogTag(), getStackTraceString(t)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void d(String msg,Throwable t) { |
||||||
|
if (isShowLog && priority <= DEBUG) |
||||||
|
Log.d(getCallerStackLogTag(), String.valueOf(msg), t); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------Log.i
|
||||||
|
|
||||||
|
/** |
||||||
|
* Log.i |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void i(String msg) { |
||||||
|
if (isShowLog && priority <= INFO) |
||||||
|
Log.i(getCallerStackLogTag(), String.valueOf(msg)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void i(Throwable t) { |
||||||
|
if (isShowLog && priority <= INFO) |
||||||
|
Log.i(getCallerStackLogTag(), getStackTraceString(t)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void i(String msg,Throwable t) { |
||||||
|
if (isShowLog && priority <= INFO) |
||||||
|
Log.i(getCallerStackLogTag(), String.valueOf(msg), t); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------Log.w
|
||||||
|
|
||||||
|
/** |
||||||
|
* Log.w |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void w(String msg) { |
||||||
|
if (isShowLog && priority <= WARN) |
||||||
|
Log.w(getCallerStackLogTag(), String.valueOf(msg)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void w(Throwable t) { |
||||||
|
if (isShowLog && priority <= WARN) |
||||||
|
Log.w(getCallerStackLogTag(), getStackTraceString(t)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void w(String msg,Throwable t) { |
||||||
|
if (isShowLog && priority <= WARN) |
||||||
|
Log.w(getCallerStackLogTag(), String.valueOf(msg), t); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------Log.e
|
||||||
|
|
||||||
|
/** |
||||||
|
* Log.e |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void e(String msg) { |
||||||
|
if (isShowLog && priority <= ERROR) |
||||||
|
Log.e(getCallerStackLogTag(), String.valueOf(msg)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void e(Throwable t) { |
||||||
|
if (isShowLog && priority <= ERROR) |
||||||
|
Log.e(getCallerStackLogTag(), getStackTraceString(t)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void e(String msg,Throwable t) { |
||||||
|
if (isShowLog && priority <= ERROR) |
||||||
|
Log.e(getCallerStackLogTag(), String.valueOf(msg), t); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------Log.wtf
|
||||||
|
|
||||||
|
/** |
||||||
|
* Log.wtf |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void wtf(String msg) { |
||||||
|
if (isShowLog && priority <= ASSERT) |
||||||
|
Log.wtf(getCallerStackLogTag(), String.valueOf(msg)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void wtf(Throwable t) { |
||||||
|
if (isShowLog && priority <= ASSERT) |
||||||
|
Log.wtf(getCallerStackLogTag(), getStackTraceString(t)); |
||||||
|
} |
||||||
|
|
||||||
|
public static void wtf(String msg,Throwable t) { |
||||||
|
if (isShowLog && priority <= ASSERT) |
||||||
|
Log.wtf(getCallerStackLogTag(), String.valueOf(msg), t); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------System.out.print
|
||||||
|
|
||||||
|
/** |
||||||
|
* System.out.print |
||||||
|
* |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void print(String msg) { |
||||||
|
if (isShowLog && priority <= PRINTLN) |
||||||
|
System.out.print(msg); |
||||||
|
} |
||||||
|
|
||||||
|
public static void print(Object obj) { |
||||||
|
if (isShowLog && priority <= PRINTLN) |
||||||
|
System.out.print(obj); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------System.out.printf
|
||||||
|
|
||||||
|
/** |
||||||
|
* System.out.printf |
||||||
|
* |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void printf(String msg) { |
||||||
|
if (isShowLog && priority <= PRINTLN) |
||||||
|
System.out.printf(msg); |
||||||
|
} |
||||||
|
|
||||||
|
// -----------------------------------System.out.println
|
||||||
|
|
||||||
|
/** |
||||||
|
* System.out.println |
||||||
|
* |
||||||
|
* @param msg |
||||||
|
*/ |
||||||
|
public static void println(String msg) { |
||||||
|
if (isShowLog && priority <= PRINTLN) |
||||||
|
System.out.println(msg); |
||||||
|
} |
||||||
|
|
||||||
|
public static void println(Object obj) { |
||||||
|
if (isShowLog && priority <= PRINTLN) |
||||||
|
System.out.println(obj); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Binary file not shown.
Loading…
Reference in new issue