hxb
2022-09-08 2a01ef5e49422cca49bc7476fc1b8be8c8556561
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
package com.hdl.sdk.link.common.event;
 
 
 
 
import com.hdl.sdk.link.common.utils.LogUtils;
import com.hdl.sdk.link.common.utils.ThreadToolUtils;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutorService;
 
 
/**
 * Created by Tong on 2021/9/22.
 * 事件分发
 */
public class EventDispatcher {
 
    private static final List<EventListener> ALL_TOPICS_EVENT = new ArrayList<>();//所有主题消息
 
    private static final Map<String, List<EventListener>> EVENT = new HashMap<>();
 
    private static final Map<EventListener, Integer> TYPE = new HashMap<>();
 
    private static final int MAIN_TYPE = 0;
    private static final int IO_TYPE = 1;
 
    private static final ExecutorService ioThread = ThreadToolUtils.getInstance().newFixedThreadPool(2);
 
    private EventDispatcher() {
    }
 
    private static class SingletonInstance {
        private static final EventDispatcher INSTANCE = new EventDispatcher();
    }
 
    public static EventDispatcher getInstance() {
        return SingletonInstance.INSTANCE;
    }
 
    public synchronized void register(String tag, EventListener listener) {
        if(TYPE.containsKey(listener)){
            return;
        }
        if (!EVENT.containsKey(tag)) {
            EVENT.put(tag, new ArrayList<>());
        }
        List<EventListener> events = EVENT.get(tag);
        if (events != null && !events.contains(listener)) {
            events.add(listener);
            LogUtils.i(String.format("增加订阅主题:%s,当前回调数量:%s",tag,events.size()));
        }
        TYPE.put(listener, MAIN_TYPE);
    }
 
    public synchronized void registerIo(String tag, EventListener listener) {
        if(TYPE.containsKey(listener)){
            return;
        }
        if (!EVENT.containsKey(tag)) {
            EVENT.put(tag, new ArrayList<>());
        }
        List<EventListener> events = EVENT.get(tag);
        if (events != null && !events.contains(listener)) {
            events.add(listener);
        }
        TYPE.put(listener, IO_TYPE);
    }
 
    public synchronized void remove(Object tag) {
        ioThread.execute(new Runnable() {
            @Override
            public void run() {
                try {
                    if (EVENT.containsKey(tag)) {
                        List<EventListener> list = EVENT.get(tag);
                        for (EventListener eventListener : list) {
                            TYPE.remove(eventListener);
                        }
                        EVENT.remove(tag);
                    }
                } catch (Exception ignored) {
 
                }
 
            }
        });
    }
 
    public synchronized void remove(Object tag, EventListener listener) {
        ioThread.execute(new Runnable() {
            @Override
            public void run() {
                try {
                    if (EVENT.containsKey(tag)) {
                        List<EventListener> ev = EVENT.get(tag);
                        if (ev != null && !ev.isEmpty()) {
                            TYPE.remove(listener);
                            ev.remove(listener);
                            LogUtils.i(String.format("移除订阅主题:%s,当前回调数量:%s",tag,ev.size()));
                        }
                    }
                } catch (Exception ignored) {
 
                }
 
            }
        });
    }
 
    /**
     * 两个主题是否匹配
     * @param desString 字典中的主题
     * @param sourceString 接收到的主题
     * @return
     */
    boolean isMatch(String desString,String sourceString){
        String []des=desString.split("/");
        String []source=sourceString.split("/");
        if(des.length!=source.length){
            return false;
        }
        for(int i=0;i<des.length;i++) {
            if (!(des[i].equals(source[i]) || des[i].equals("+"))) {
                return false;
            }
        }
        return true;
    }
 
    /**
     * 事件分发器,分发所有在接口列表中的事件
     * @param topicTag
     * @param o
     */
    public synchronized void post(String topicTag,  Object o) {
        for (String key : EVENT.keySet()) {
            if (!isMatch(key, topicTag)) {
                continue;
            }
            List<EventListener> list = EVENT.get(key);
            if (list != null && !list.isEmpty()) {
                for (EventListener listener : list) {
//                    ThreadToolUtils.getInstance().runOnUiThread(new Runnable() {
//                        @Override
//                        public void run() {
                            if (listener != null) {
                                listener.onMessage(o);
                            }
//                        }
//                    });
                }
            }
        }
        //所有主题的Listener通知
        if (ALL_TOPICS_EVENT == null || ALL_TOPICS_EVENT.isEmpty()) {
            return;
        }
        //开发分发事件
        for (EventListener listener : ALL_TOPICS_EVENT) {
//            ThreadToolUtils.getInstance().runOnUiThread(new Runnable() {
//                @Override
//                public void run() {
                    if (listener != null) {
                        listener.onMessage(o);
                    }
//                }
//            });
        }
 
    }
 
    /**
     * 文件发送通知 wxr 2022-03-08 15:38:59
     */
    public synchronized void filePost() {
        //TODO
    }
    /**
     * 注册所有主题消息的监听
     * @param listener
     */
    public synchronized void registerAllTopicsListener(EventListener listener) {
        if (ALL_TOPICS_EVENT != null && !ALL_TOPICS_EVENT.contains(listener)) {
            ALL_TOPICS_EVENT.add(listener);
        }
        TYPE.put(listener, MAIN_TYPE);
    }
 
    /**
     * 取消所有主题消息的监听
     * @param listener
     */
    public synchronized void removeAllTopicsListener(EventListener listener) {
        ioThread.execute(new Runnable() {
            @Override
            public void run() {
                try {
                    if (ALL_TOPICS_EVENT != null && !ALL_TOPICS_EVENT.isEmpty()) {
                        TYPE.remove(listener);
                        ALL_TOPICS_EVENT.remove(listener);
                    }
                } catch (Exception ignored) {
 
                }
 
            }
        });
    }
 
    public synchronized void clear() {
        ALL_TOPICS_EVENT.clear();
        EVENT.clear();
        TYPE.clear();
    }
 
    public synchronized void release() {
        clear();
        ioThread.shutdownNow();
    }
 
 
}