CzDeviceReportService.java
15.3 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
package com.iot.scheduler.service.chizhou;
import com.alibaba.fastjson.JSON;
import com.iot.scheduler.utils.MqttUtils;
import com.iot.scheduler.utils.SqlTypedValueUtils;
import com.zaxxer.hikari.HikariConfig;
import com.zaxxer.hikari.HikariDataSource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import java.sql.*;
import java.text.MessageFormat;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.Date;
/**
* 池州经开区数据上传
*/
@Slf4j
@Service
public class CzDeviceReportService {
String broker = "112.30.143.137:5007";
String username = "admin";
String password = "ly@666yc";
String jdbcUrl = "postgresql://192.168.0.249:5432/iot";
String jdbcUserName = "postgres";
String jdbcPassword = "1qaz@WSX";
String selectSql = " SELECT\n" +
" de.name AS 设备名称,\n" +
" CASE\n" +
" WHEN ak2.long_v IS NULL OR (ak.bool_v = FALSE AND ak2.long_v IS NOT NULL) THEN\n" +
" 'OFF'\n" +
" WHEN tkl.long_v = 1 THEN\n" +
" 'ERROR'\n" +
" WHEN tkl2.long_v = 1 THEN\n" +
" 'STAND'\n" +
" WHEN tkl3.long_v = 1 THEN\n" +
" 'RUN'\n" +
" ELSE\n" +
" 'OFF'\n" +
" END AS 设备状态,\n" +
" dc.credentials_id AS sn,\n" +
" de.organization_id\n" +
" FROM\n" +
" device de\n" +
" LEFT JOIN ts_kv_latest tkl ON de.id = tkl.entity_id\n" +
" AND tkl.KEY = '60'\n" +
" LEFT JOIN ts_kv_latest tkl2 ON de.id = tkl2.entity_id\n" +
" AND tkl2.KEY = '59'\n" +
" LEFT JOIN ts_kv_latest tkl3 ON de.id = tkl3.entity_id\n" +
" AND tkl3.KEY = '57'\n" +
" LEFT JOIN attribute_kv ak ON de.id = ak.entity_id\n" +
" AND ak.attribute_type = 2\n" +
" AND ak.attribute_key = 41\n" +
" LEFT JOIN attribute_kv ak2 ON de.id = ak2.entity_id\n" +
" AND ak2.attribute_type = 2\n" +
" AND ak2.attribute_key = 43\n" +
" LEFT JOIN device_credentials dc ON dc.device_id = de.id\n" +
" WHERE\n" +
" de.device_profile_id = '5f39ebe0-f6cf-11f0-bebc-e5e3c6471a90' UNION ALL\n" +
" SELECT\n" +
" de.name AS 设备名称,\n" +
" CASE\n" +
" WHEN ak2.long_v IS NULL\n" +
" OR (ak.bool_v = FALSE AND ak2.long_v IS NOT NULL) THEN\n" +
" 'OFF'\n" +
" ELSE\n" +
" 'RUN'\n" +
" END AS 设备状态,\n" +
" dc.credentials_id AS sn,\n" +
" de.organization_id\n" +
" FROM\n" +
" device de\n" +
" LEFT JOIN attribute_kv ak ON de.id = ak.entity_id\n" +
" AND ak.attribute_type = 2\n" +
" AND ak.attribute_key = 41\n" +
" LEFT JOIN attribute_kv ak2 ON de.id = ak2.entity_id\n" +
" AND ak2.attribute_type = 2\n" +
" AND ak2.attribute_key = 43\n" +
" LEFT JOIN device_credentials dc ON dc.device_id = de.id\n" +
" WHERE\n" +
" de.device_profile_id = 'c2401630-ffec-11f0-926f-2f3182abc65f' UNION ALL\n" +
" SELECT\n" +
" de.name AS 设备名称,\n" +
" CASE\n" +
" WHEN ak2.long_v IS NULL\n" +
" OR (ak.bool_v = FALSE AND ak2.long_v IS NOT NULL) THEN\n" +
" 'OFF'\n" +
" ELSE\n" +
" 'RUN'\n" +
" END AS 设备状态,\n" +
" dc.credentials_id AS sn,\n" +
" de.organization_id\n" +
" FROM\n" +
" device de\n" +
" LEFT JOIN attribute_kv ak ON de.id = ak.entity_id\n" +
" AND ak.attribute_type = 2\n" +
" AND ak.attribute_key = 41\n" +
" LEFT JOIN attribute_kv ak2 ON de.id = ak2.entity_id\n" +
" AND ak2.attribute_type = 2\n" +
" AND ak2.attribute_key = 43\n" +
" LEFT JOIN device_credentials dc ON dc.device_id = de.id\n" +
" WHERE\n" +
" de.device_profile_id = '4e404b10-ffe7-11f0-926f-2f3182abc65f'";
public void deviceReport() {
// List<String> deviceIdList = Arrays.asList("TCKJ-001", "TCKJ-002", "TCKJ-003", "TCKJ-004", "TCKJ-005", "TCKJ-006",
// "TCKJ-007", "TCKJ-008", "TCKJ-009", "TCKJ-010", "TCKJ-011", "TCKJ-012", "TCKJ-013", "TCKJ-014", "TCKJ-015",
// "TCKJ-016", "TCKJ-017", "TCKJ-018", "TCKJ-019", "TCKJ-020", "TCKJ-021", "TCKJ-022", "TCKJ-023", "TCKJ-024",
// "TCKJ-025", "TCKJ-026", "TCKJ-027", "TCKJ-028", "TCKJ-029", "TCKJ-030", "TCKJ-031", "TCKJ-032", "TCKJ-033",
// "TCKJ-034", "TCKJ-035", "TCKJ-036", "TCKJ-037", "TCKJ-038", "TCKJ-039", "TCKJ-040", "TCKJ-041",
// "vJAzZWk1Q2I8cdq7kx3z", "LmiW3ljI4KP487CeMmol", "ceK7YSNLrTjVSSPaFmn3", "6KePBYyCiEgo10iJXIrF",
// "9vrxIQhbaZ542DvCVne0", "XMLN-001", "XMLN-002", "XMLN-003", "XMLN-004", "XMLN-005", "XMLN-006", "XMLN-007",
// "XMLN-008", "XMLN-009", "XMLN-010", "XMLN-011", "XMLN-012", "XMLN-013", "XMLN-014", "XMLN-015", "XMLN-016",
// "XMLN-017", "XMLN-018", "XMLN-019", "XMLN-020", "XMLN-021", "XMLN-022", "XMLN-023", "XMLN-024", "XMLN-025",
// "XMLN-026", "XMLN-027", "XMLN-028", "XMLN-029", "XMLN-030", "XMLN-031", "XMLN-032", "XMLN-033", "XMLN-034",
// "XMLN-035", "XMLN-036", "XMLN-037", "XMLN-038", "XMLN-039", "XMLN-040", "XMLN-041", "XMLN-042", "XMLN-043",
// "XMLN-044", "XMLN-045", "XMLN-046", "XMLN-047", "XMLN-048", "XMLN-049", "XMLN-050", "XMLN-051", "XMLN-052",
// "GYDPF-014", "GYDPF-006", "KBS-1-1", "KBS-1-2", "KBS-3-1", "KBS-3-5", "KBS-3-3", "CS-001", "uzGf4mjzkOPwGO4aCOf3",
// "GYDPF-001", "GYDPF-010", "KBS-1-5", "KBS-2-2", "KBS-3-7", "CS-003", "LBKXrYxLQN9W7qmmqzp5", "rba7VggnqGdNyPvVNs1n",
// "GYDPF-002", "GYDPF-016", "GYDPF-017", "KBS-1-6", "EqFMlJarb2aDwpwvUi6J", "x2173A2HKOiPqeRsKtWY", "GYDPF-005",
// "KBS-1-3", "KBS-2-1", "KBS-3-4", "1fzR6X57k2aafbbkH4po", "lbqMr5pmkNJLWEPSa0yp", "mYz1kUajPOROg0Ewcfhr",
// "6TLlfKBbTMaUZGgHtvuH", "XTE8PKwLSYp29gE1umfW", "MqYu4y0OycHQkzZhothe", "IFeN0lAXlAVQ1fD7gwk1", "hZb9NsRCqtVBSagFqnPS",
// "r22r53PNgY7TeqCK5y14", "KCGSwfTvGCtBfd0qsH63", "4KzFQCncmwFh7UT4vbHp", "GYDPF-007", "KBS-3-2", "t2kkUTZYqxmKLN4X4VPB",
// "9vWKALGoat3XalEtQaRB", "vYtwLMkppPbM3CtB3U9U", "4vwTfMqi8oEtWxdEUrE8", "vVvK2cTLvjYtZX1dksyd", "GYDPF-003",
// "KBS-3-8", "2E6eUu66qxl5Llr6ib5v", "iWbeBfwg36lIpBRMDnvO", "GYDPF-015", "KBS-2-4", "OSbA7X7FGETF0TXub4OS",
// "GYDPF-008", "KBS-2-3", "KBS-2-7", "pRhGGECbXu6FBshyg2yg", "zrVVNRo8QIbjeYjdoCUq", "fjPj3oHW7cL5m0AE1t3y",
// "8dJsgqjmxIIduP4Sr2rL", "GYDPF-012", "KBS-1-4", "JZ8Tbzye8rKotYTbHUJw", "dwToSYEWr04sPtBUxaOH", "GYDPF-009",
// "oe3OmagW5Wi9yw9LfUr3", "2mDiH94D7uSh4CtD2bi0", "ceGyDxlK7xzMoUacIwCv", "gxECiKjMEsVkYyowKIMd", "irAqF3fmzaM5GIo8ZLAx",
// "GYDPF-013", "KBS-2-5", "KBS-3-6", "dxPdbg2UqqYADPMy9TVe", "cjFUpeVPTOh4Uf6wnVH1", "VR5XgpqhFWGMcwdy8yPQ",
// "GYDPF-004", "KBS-1-7", "KBS-2-8", "HEXmiSz0sXsahRHV2bQm", "0lIIGWP49Xuo91TnTvVx", "C99WsNGFSGQSV4n3YmrW",
// "3paJSiHK32wvVM6f1tO8", "GYDPF-011", "KBS-1-8", "KBS-2-6", "yrk5Cxa6EJncWX2kTywa", "xOxHHscmrEBhLTlmyRrF",
// "e3HzLoIl0p3iEM860EdK");
List<Object> needSyncDataList = initConnectAndSelectData();
log.info("总设备数量: {}台", needSyncDataList.size());
Map<String, String> organizeIdAndClientIdMap = new HashMap<>(3);
organizeIdAndClientIdMap.put("63934b6f-1e02-4d29-ac14-1a64649e2231", "2020672119054331904"); // 安徽鑫米兰电子科技有限公司
organizeIdAndClientIdMap.put("35bcdb94-31ec-4750-9ee9-cc855aa66e17", "2020672015207559169"); // 安徽同池科技有限公司
organizeIdAndClientIdMap.put("1697500a-dc11-45cc-88f5-2ad47472a9bb", "2020672228886376448"); // 凯盛信息显示材料(池州)有限公司
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = sdf.format(new Date());
log.info("上报时间统一为: {}", formattedDate);
// 用于统计上报结果
int successCount = 0;
int failCount = 0;
List<String> failedDevices = new ArrayList<>();
for (int index = 0; index < needSyncDataList.size(); index++) {
Object needSyncData = needSyncDataList.get(index);
List<Object> dataList = (ArrayList) needSyncData;
String deviceId = dataList.get(2).toString();
String status = dataList.get(1).toString();
String organizeId = dataList.get(3).toString();
// 根据index确定clientId
String clientId = organizeIdAndClientIdMap.get(organizeId);
String topic = MessageFormat.format("/{0}/{1}/properties/report", clientId, deviceId);
// 获取设备状态
int deviceState = getDeviceState(status);
Map<String, Object> properties = new HashMap<>(5);
properties.put("type", 1);
properties.put("state", deviceState);
properties.put("time", formattedDate);
properties.put("output", 0); // 当日产量,还未确定,暂定为0
properties.put("energy", 0); // 当日能耗,还未确定,暂定为0
Map<String, Object> deviceMap = new HashMap<>(2);
deviceMap.put("deviceId", deviceId);
deviceMap.put("properties", properties);
// 记录调试信息
// if (log.isDebugEnabled()) {
// log.debug("准备上报设备信息: deviceId={}, clientId={}, state={}, topic={}",
// deviceId, clientId, deviceState, topic);
// }
try {
log.debug("开始MQTT发布: deviceId={}", deviceId);
MqttUtils.quickPublish(broker, topic, username, password, clientId, JSON.toJSONString(deviceMap));
successCount++;
// 每10个设备记录一次进度
// if ((index + 1) % 10 == 0) {
// log.info("已处理 {} 个设备,当前处理: {}", index + 1, deviceId);
// }
} catch (Exception e) {
failCount++;
failedDevices.add(deviceId);
log.error("设备上报失败: deviceId={}, clientId={}, topic={}, 错误信息: {}",
deviceId, clientId, topic, e.getMessage());
log.error("详细异常信息:", e);
}
// 可选:添加延迟,避免发送过快
try {
Thread.sleep(10); // 10毫秒延迟
} catch (InterruptedException e) {
log.warn("线程休眠被中断", e);
Thread.currentThread().interrupt();
}
}
// 任务完成,输出统计信息
log.info("========== 设备状态上报任务完成 ==========");
log.info("成功上报: {}台", successCount);
log.info("失败上报: {}台", failCount);
if (failCount > 0) {
log.warn("失败设备列表: {}", failedDevices);
}
// 任务执行耗时
log.info("========== 任务执行结束 ==========");
}
private int getDeviceState(String status) {
int deviceState;
if ("RUN".equals(status)) {
deviceState = 1;
} else if ("STAND".equals(status)) {
deviceState = 2;
} else if ("OFF".equals(status)) {
deviceState = 3;
} else {
deviceState = 4;
}
return deviceState;
}
private List<Object> initConnectAndSelectData() {
Connection connection = null;
PreparedStatement statement = null;
ResultSet resultSet = null;
HikariDataSource dataSource = null;
List<Object> resultList = new ArrayList<>();
log.info("开始连接数据库,URL: {}", jdbcUrl);
try {
HikariConfig config = new HikariConfig();
config.setJdbcUrl(jdbcUrl);
config.setUsername(jdbcUserName);
config.setPassword(jdbcPassword);
config.setDriverClassName("org.postgresql.Driver");
config.setMaximumPoolSize(5);
config.setMinimumIdle(5);
config.setConnectionTimeout(60000);
config.setConnectionTestQuery("SELECT 1");
dataSource = new HikariDataSource(config);
log.info("Hikari连接池配置完成");
connection = dataSource.getConnection();
log.info("数据库连接成功");
statement = connection.prepareStatement(selectSql);
log.info("执行SQL查询: {}", selectSql);
resultSet = statement.executeQuery();
ResultSetMetaData metaData = resultSet.getMetaData();
int columnCount = metaData.getColumnCount();
log.info("查询结果集元数据获取成功,共{}列", columnCount);
int rowCount = 0;
while (resultSet.next()) {
List<Object> result = new ArrayList<>(columnCount);
for (int index = 1; index <= columnCount; index++) {
int columnType = metaData.getColumnType(index);
Object value = SqlTypedValueUtils.getTypedValue(resultSet, index, columnType);
result.add(value);
}
resultList.add(result);
rowCount++;
// 每处理1000行记录一次日志
if (rowCount % 1000 == 0) {
log.info("已处理{}行数据", rowCount);
}
}
log.info("数据查询完成,共获取{}行数据", rowCount);
} catch (SQLException e) {
log.error("数据库操作异常,URL: {}, 用户名: {}", jdbcUrl, jdbcUserName, e);
} catch (Exception e) {
log.error("初始化数据库连接或查询数据时发生异常", e);
} finally {
// 释放资源
try {
if (resultSet != null) resultSet.close();
if (statement != null) statement.close();
if (connection != null) connection.close();
log.info("数据库连接资源已释放");
} catch (SQLException e) {
log.error("关闭数据库资源时发生异常", e);
}
if (dataSource != null) {
try {
dataSource.close();
log.info("HikariDataSource连接池已关闭");
} catch (Exception e) {
log.error("关闭HikariDataSource连接池时发生异常", e);
}
}
}
log.info("数据库操作完成,返回{}条记录", resultList.size());
return resultList;
}
}