houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.data.channel.kio.collector;
 
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.iailab.module.data.common.utils.HttpRequest;
import com.iailab.module.data.channel.kio.dto.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年06月04日
 */
public class KingIOClient {
 
    private boolean bLogin = false;
 
    private boolean bConnect = false;
 
    private String ip;
 
    private int port;
 
    private String username;
 
    private String password;
 
    private String instanceName;
 
    private String authorization;
 
    private String url;
 
    private String chartset = "utf-8";
 
    private final String R_CODE = "code";
 
    private final String R_MSG = "message";
 
    private final String R_DATA = "data";
 
    private final int S_CODE = 0;
 
    private final String DATA_V = "V";
 
    private long exp_login = 1000 * 60;
 
    private long logint_time = 0;
 
    private long heartbeat_last = 0;
 
    private int Q_192 = 192;
 
    private Logger logger = LoggerFactory.getLogger(getClass());
 
    KingIOClient(String instanceName) {
        this.instanceName = instanceName;
    }
 
    /**
     * 登录设备
     *
     * @param ip
     * @param port
     * @param username
     * @param password
     */
    public boolean login(String ip, int port, String username, String password) {
        if ((System.currentTimeMillis() - this.logint_time) < exp_login) {
            return bLogin;
        }
        this.ip = ip;
        this.port = port;
        this.username = username;
        this.password = password;
        this.url = "http://" + ip + ":" + port + "/api/v1";
        Map<String, String> form = new HashMap<>(2);
        form.put("username", username);
        form.put("password", password);
        this.logint_time = System.currentTimeMillis();
        String responseStr = HttpRequest.sendPost(this.url + "/login", JSON.toJSONString(form));
        JSONObject responseObj = JSON.parseObject(responseStr);
        if (S_CODE != Integer.parseInt(responseObj.get(R_CODE).toString())) {
            bLogin = false;
            return false;
        }
        this.authorization = responseObj.getJSONObject(R_DATA).get("Authorization").toString();
        bLogin = true;
        return bLogin;
    }
 
    public boolean reLogin() {
        return login(this.ip, this.port, this.username, this.password);
    }
 
    public boolean isExpLogin() {
        /*if ((System.currentTimeMillis() - logint_time) > exp_login) {
            return true;
        } else {
            return false;
        }*/
        if ((System.currentTimeMillis() - logint_time) > exp_login) {
            this.bLogin = false;
            return true;
        }return false;
 
    }
 
    public boolean isConnect() {
        try {
            if ((System.currentTimeMillis() - heartbeat_last) < 10000) {
                return bConnect;
            }
            Map<String, String> map = new HashMap<>();
            String responseStr = HttpRequest.sendPost(this.url + "/heartbeat", "", this.authorization);
            JSONObject responseObj = JSON.parseObject(responseStr);
            if (S_CODE != Integer.parseInt(responseObj.get(R_CODE).toString())) {
                bConnect = false;
            } else {
                logger.info("KIO心跳正常。");
                bConnect = true;
            }
            heartbeat_last = System.currentTimeMillis();
        } catch (Exception ex) {
            logger.info("KIO心跳异常!" + ex.getMessage());
            bConnect = false;
        }
        return bConnect;
    }
 
    public String getTagValue(String tagName) {
        Map<String, String> map = new HashMap<>();
        map.put("projectInstanceName", this.instanceName);
        map.put("TagName", tagName);
        String responseStr = HttpRequest.sendGet(this.url + "/realvalue", map, this.authorization);
        JSONObject responseObj = JSON.parseObject(responseStr);
        if (S_CODE != Integer.parseInt(responseObj.get(R_CODE).toString())) {
            return null;
        }
        JSONObject data = responseObj.getJSONObject(R_DATA);
        Object dataV = data.get(DATA_V);
        return dataV.toString();
    }
 
    public Map<String, String> getTagsValue(List<String> tagNames) {
        Map<String, String> result = new HashMap<>();
        KIOWriteObjDTO queryDto = new KIOWriteObjDTO();
        List<KIOWriteDTO> objs = new ArrayList<>();
        tagNames.forEach(item -> {
            KIOWriteDTO dto = new KIOWriteDTO();
            dto.setN(item);
            objs.add(dto);
        });
        queryDto.setObjs(objs);
        String responseStr = HttpRequest.sendPost(this.url + "/batchrealvalue", JSONObject.toJSONString(queryDto), this.authorization);
        JSONObject responseObj = JSON.parseObject(responseStr);
        if (S_CODE != Integer.parseInt(responseObj.get(R_CODE).toString())) {
            return null;
        }
        JSONArray data = responseObj.getJSONArray(R_DATA);
        for (int i = 0; i < data.size(); i++) {
            JSONObject obj = data.getJSONObject(i);
            if (obj.getInteger("Q") != Q_192) {
                continue;
            }
            result.put(obj.getString("N"), obj.get(DATA_V).toString());
        }
        return result;
    }
 
    public void writeFloatValue(String tagName, Float newValue) throws Exception {
        KIOWriteObjDTO writeObj = new KIOWriteObjDTO();
        List<KIOWriteDTO> objs = new ArrayList<>();
        KIOWriteFloatDTO writeDTO = new KIOWriteFloatDTO();
        writeDTO.setN(tagName);
        writeDTO.setV(newValue);
        objs.add(writeDTO);
        writeObj.setObjs(objs);
        String writeStr = JSONObject.toJSONString(writeObj);
        String responseStr = HttpRequest.sendPost(this.url + "/realvariables", writeStr, this.authorization);
        JSONObject responseObj = JSON.parseObject(responseStr);
        if (S_CODE != Integer.parseInt(responseObj.get(R_CODE).toString())) {
            throw new Exception(responseObj.getString(R_MSG));
        }
 
    }
 
    public void writeIntValue(String tagName, Integer newValue) throws Exception {
        KIOWriteObjDTO writeObj = new KIOWriteObjDTO();
        List<KIOWriteDTO> objs = new ArrayList<>();
        KIOWriteIntDTO writeDTO = new KIOWriteIntDTO();
        writeDTO.setN(tagName);
        writeDTO.setV(newValue);
        objs.add(writeDTO);
        writeObj.setObjs(objs);
        String responseStr = HttpRequest.sendPost(this.url + "/realvariables", JSONObject.toJSONString(writeObj), this.authorization);
        JSONObject responseObj = JSON.parseObject(responseStr);
        if (S_CODE != Integer.parseInt(responseObj.get(R_CODE).toString())) {
            throw new Exception(responseObj.getString(R_MSG));
        }
    }
 
    public void writeBooleanValue(String tagName, Boolean newValue) throws Exception {
        KIOWriteObjDTO writeObj = new KIOWriteObjDTO();
        List<KIOWriteDTO> objs = new ArrayList<>();
        KIOWriteBooleanDTO writeDTO = new KIOWriteBooleanDTO();
        writeDTO.setN(tagName);
        writeDTO.setV(newValue);
        objs.add(writeDTO);
        writeObj.setObjs(objs);
        String responseStr = HttpRequest.sendPost(this.url + "/realvariables", JSONObject.toJSONString(writeObj), this.authorization);
        JSONObject responseObj = JSON.parseObject(responseStr);
        if (S_CODE != Integer.parseInt(responseObj.get(R_CODE).toString())) {
            throw new Exception(responseObj.getString(R_MSG));
        }
    }
}