kimi
2020-05-27 c007f0ca1785db093d48f4846cda82fe8e955765
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
package com.highdatas.mdm.util.pool;
 
import com.alibaba.fastjson.JSONObject;
import com.highdatas.mdm.entity.SysDispenseLogs;
import com.highdatas.mdm.util.Constant;
import com.highdatas.mdm.util.DbUtils;
import lombok.extern.slf4j.Slf4j;
 
import java.util.Date;
import java.util.concurrent.atomic.AtomicInteger;
 
/**
 * @author kimi
 * @description
 * @date 2020-04-20 9:58
 */
 
@Slf4j
public class MqEntity {
 
    /**
     * msgTopicName : 消息主题
     * msgTagName : 消息主题标签
     * msgKey : 消息key
     * msgBody : {"moduleName":"模块名称","from":"源系统","to":"目标系统","data":"weodfsdfwefsdfwefwef","total":"数据总量","version":"版本号","timestamp":"时间戳"}
     */
 
    private String msgTopicName;
 
    private String msgTagName;
    private String msgKey;
    private MsgBodyBean msgBody;
    private transient String logId;
    private transient String userId;
    private transient volatile AtomicInteger pageNo;
    private transient volatile AtomicInteger pageSize;
    private transient volatile AtomicInteger pages;
    private  transient volatile AtomicInteger totalSize;
    private transient String type;
    private transient String dataId;
    private transient String maintainId;
    private Boolean increment;
 
    public String getLogId() {
        return logId;
    }
 
    public void setLogId(String logId) {
        this.logId = logId;
    }
 
    public String getMsgCode() {
        return msgTopicName + msgTagName + userId + msgBody.version;
    }
 
    public AtomicInteger getPageNo() {
        return pageNo;
    }
 
    public void setPageNo(AtomicInteger pageNo) {
        this.pageNo = pageNo;
    }
 
    public AtomicInteger getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(AtomicInteger pageSize) {
        this.pageSize = pageSize;
    }
 
    public AtomicInteger getPages() {
        return pages;
    }
 
    public void setPages(AtomicInteger pages) {
        this.pages = pages;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getDataId() {
        return dataId;
    }
 
    public void setDataId(String dataId) {
        this.dataId = dataId;
    }
 
    public String getMaintainId() {
        return maintainId;
    }
 
    public void setMaintainId(String maintainId) {
        this.maintainId = maintainId;
    }
 
    @Override
    public String toString() {
        return DbUtils.StrJoin("消息主题:", msgTopicName, "消息主题标签:" ,msgTagName, "消息key:", msgKey , "time:" + msgBody.timestamp);
    }
 
    public MqEntity() {
        this.msgBody = new MsgBodyBean();
    }
 
    public String getMsgTopicName() {
        return msgTopicName;
    }
 
    public void setMsgTopicName(String msgTopicName) {
        this.msgTopicName = msgTopicName;
    }
 
    public String getMsgTagName() {
        return msgTagName;
    }
 
    public void setMsgTagName(String msgTagName) {
        this.msgTagName = msgTagName;
    }
 
    public String getMsgKey() {
        return msgKey;
    }
 
    public void setMsgKey(String msgKey) {
        this.msgKey = msgKey;
    }
 
    public MsgBodyBean getMsgBody() {
        return msgBody;
    }
 
    public void setMsgBody(MsgBodyBean msgBody) {
        this.msgBody = msgBody;
    }
 
    public void send2Mq() {
 
        String s = JSONObject.toJSONString(this);
        log.info(s);
        MqResult mqResult = DbUtils.mqClient.syncProduce(this);
        SysDispenseLogs logByMqEntity = DbUtils.dispenseLogsService.selectById(this.getLogId());
        if (logByMqEntity == null) {
            return;
        }
        try{
            String code = mqResult.getCode();
            logByMqEntity.setKeyId(getMsgKey());
            logByMqEntity.setUserId(userId);
            logByMqEntity.setPageNo(pageNo.get()).setMsgCode(code);
            logByMqEntity.setPages(pages.get()).setTotal(totalSize.get()).setPageSize(pageSize.get());
            if (!code.equalsIgnoreCase(Constant.SUCCESSCODE)) {
                logByMqEntity.setStatus("false");
            }
            if (code.equalsIgnoreCase(Constant.SUCCESSCODE) && pageNo.get() == pages.get()) {
                logByMqEntity.setStatus("true");
            }
            MqResult.DataBean data = mqResult.getData();
            if (data != null) {
                String msgId = data.getMsgId();
                logByMqEntity.setMsgId(msgId);
            }
            Date createTime = logByMqEntity.getCreateTime();
            long schedule = new Date().getTime() - createTime.getTime();
            logByMqEntity.setSchedule(schedule);
            logByMqEntity.updateById();
        }
        catch (Exception e) {
            logByMqEntity.setErrorInfo(e.getMessage()).updateById();
            e.printStackTrace();
 
        }
 
 
    }
 
    public void setIncrement(Boolean increment) {
        this.increment = increment;
    }
 
    public Boolean getIncrement() {
        return increment;
    }
 
    public void setTotalSize(AtomicInteger totalSize) {
        this.totalSize = totalSize;
    }
 
    public int getTotalSize() {
        if (totalSize == null) {
            return 0;
        } else {
            return totalSize.get();
        }
    }
 
 
    public static class MsgBodyBean {
        /**
         * moduleName : 模块名称
         * from : 源系统
         * to : 目标系统
         * data : weodfsdfwefsdfwefwef
         * total : 数据总量
         * version : 版本号
         * timestamp : 时间戳
         */
 
        private String moduleName;
        private String from;
        private String to;
        private String data;
        private int total;
        private String version;
        private String timestamp;
 
        public MsgBodyBean() {
            this.moduleName = Constant.MasterDispense;
            this.from = Constant.Master;
            this.timestamp = DbUtils.getNowDateStr();
        }
 
        public String getModuleName() {
            return moduleName;
        }
 
        public void setModuleName(String moduleName) {
            this.moduleName = moduleName;
        }
 
        public String getFrom() {
            return from;
        }
 
        public void setFrom(String from) {
            this.from = from;
        }
 
        public String getTo() {
            return to;
        }
 
        public void setTo(String to) {
            this.to = to;
        }
 
        public String getData() {
            return data;
        }
 
        public void setData(String data) {
            this.data = data;
        }
 
        public int getTotal() {
            return total;
        }
 
        public void setTotal(int total) {
            this.total = total;
        }
 
        public String getVersion() {
            return version;
        }
 
        public void setVersion(String version) {
            this.version = version;
        }
 
        public String getTimestamp() {
            return timestamp;
        }
 
        public void setTimestamp(String timestamp) {
            this.timestamp = timestamp;
        }
    }
}