wxr
2022-11-24 2af932533ef851bf983385244e9912976dbd4daa
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
package com.mm.android.deviceaddmodule.mobilecommon.base;
 
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
 
import com.mm.android.deviceaddmodule.mobilecommon.businesstip.HandleMessageCode;
import com.mm.android.deviceaddmodule.mobilecommon.utils.BusinessAuthUtil;
import com.mm.android.deviceaddmodule.mobilecommon.utils.LogUtil;
 
import java.util.concurrent.atomic.AtomicBoolean;
 
/**
 * 文件描述:文件名、类名 功能说明: 版权申明:
 * 
 */
 
public abstract class BaseHandler extends Handler {
 
    private final static String TAG = "LeChange.BaseHandler";
 
    private AtomicBoolean isCancled = new AtomicBoolean(false);
 
    public BaseHandler(){
        super();
    }
    public BaseHandler(Looper looper){
        super(looper);
    }
 
    @Override
    public void handleMessage(Message msg) {
        super.handleMessage(msg);
        if (!isCancled.get()) {
            if (msg.what == HandleMessageCode.HMC_EXCEPTION) {
                LogUtil.debugLog(TAG, "base hander throw exception. what =" + msg.what);
 
                if (BusinessAuthUtil.isAuthFailed(msg.arg1)) {
                    authError(msg);
                    return ;
                }
            }
            handleBusiness(msg);
        }
    }
 
    /**
     * 回调信息
     * 
     * @param msg
     */
    public abstract void handleBusiness(Message msg);
 
    /**
     * 鉴权信息失败
     */
    public void authError(Message msg) {
 
    }
 
    /**
     * 取消数据回调
     */
    public void cancle() {
        isCancled.set(true);
    }
 
    /**
     * 是否继续运行
     * 
     * @return
     */
    public boolean isCanceled() {
        return isCancled.get();
    }
}