yantian yue
2023-10-18 69fbaaa1a5fd16b05953e750ea7fcc3e18e3a27c
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
package cn.stylefeng.guns.opcua.client;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageFactory;
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.opcua.controller.OpcuaConfController;
import cn.stylefeng.guns.opcua.entity.OpcuaConf;
import cn.stylefeng.guns.opcua.mapper.OpcuaConfMapper;
import cn.stylefeng.guns.opcua.model.params.OpcuaConfParam;
import cn.stylefeng.guns.opcua.model.result.OpcuaConfResult;
import cn.stylefeng.guns.opcua.service.OpcuaConfService;
import cn.stylefeng.roses.kernel.model.response.ResponseData;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.google.common.collect.ImmutableList;
import cn.stylefeng.guns.opcua.entity.NodeEntity;
import lombok.extern.slf4j.Slf4j;
import org.apache.poi.ss.formula.functions.T;
import org.eclipse.milo.opcua.sdk.client.OpcUaClient;
import org.eclipse.milo.opcua.sdk.client.api.nodes.VariableNode;
import org.eclipse.milo.opcua.sdk.client.api.subscriptions.UaSubscription;
import org.eclipse.milo.opcua.stack.core.AttributeId;
import org.eclipse.milo.opcua.stack.core.BuiltinDataType;
import org.eclipse.milo.opcua.stack.core.types.builtin.DataValue;
import org.eclipse.milo.opcua.stack.core.types.builtin.NodeId;
import org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode;
import org.eclipse.milo.opcua.stack.core.types.builtin.Variant;
import org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.Unsigned;
import org.eclipse.milo.opcua.stack.core.types.enumerated.MonitoringMode;
import org.eclipse.milo.opcua.stack.core.types.enumerated.TimestampsToReturn;
import org.eclipse.milo.opcua.stack.core.types.structured.MonitoredItemCreateRequest;
import org.eclipse.milo.opcua.stack.core.types.structured.MonitoringParameters;
import org.eclipse.milo.opcua.stack.core.types.structured.ReadValueId;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
 
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
 
/**
 * @ClassName: ClientHandler
 * @Description: 客户端处理
 * @author Jellyleo
 * @date 2019年12月12日
 */
@Slf4j
@Service
public class ClientHandler {
 
    // 客户端实例
    private OpcUaClient client = null;
 
    @Autowired
    private ClientRunner clientRunner;
 
    @Autowired
    private OpcuaConfController opcuaConfController;
 
 
    /**
     * 
     * @MethodName: connect
     * @Description: connect
     * @throws Exception
     * @CreateTime 2019年12月18日 上午10:41:09
     */
    public String connect() throws Exception {
 
        if (client != null) {
            return "客户端已创建";
        }
 
        client = clientRunner.run();
 
        if (client == null) {
            return "客户端配置实例化失败";
        }
 
        // 创建连接
        client.connect().get();
        return "创建连接成功";
    }
 
    /**
     * @MethodName: disconnect
     * @Description: 断开连接
     * @return
     * @throws Exception
     * @CreateTime 2019年12月18日 上午10:45:21
     */
    public String disconnect() throws Exception {
 
        if (client == null) {
            return "连接已断开";
        }
 
        // 断开连接
        clientRunner.getFuture().complete(client);
        client = null;
        return "断开连接成功";
    }
 
    /**
     * @MethodName: subscribe
     * @Description: 订阅节点变量
     * @throws Exception
     * @CreateTime 2019年12月18日 上午10:38:11
     */
    public String subscribe(List<NodeEntity> nodes) throws Exception {
 
        if (client == null) {
            return "找不到客户端,操作失败";
        }
 
//        List<Node> ns = client.getAddressSpace().browse(new NodeId(2, "模拟通道一.模拟设备一")).get();
 
        // 查询订阅对象,没有则创建
        UaSubscription subscription = null;
        ImmutableList<UaSubscription> subscriptionList = client.getSubscriptionManager().getSubscriptions();
        if (CollectionUtils.isEmpty(subscriptionList)) {
            subscription = client.getSubscriptionManager().createSubscription(1000.0).get();
        } else {
            subscription = subscriptionList.get(0);
        }
 
        // 监控项请求列表
        List<MonitoredItemCreateRequest> requests = new ArrayList<>();
 
        if (!CollectionUtils.isEmpty(nodes)) {
            for (NodeEntity node : nodes) {
                // 创建监控的参数
                MonitoringParameters parameters = new MonitoringParameters(subscription.nextClientHandle(), 1000.0, // sampling
                        // interval
                        null, // filter, null means use default
                        Unsigned.uint(10), // queue size
                        true // discard oldest
                );
                // 创建订阅的变量, 创建监控项请 求
                MonitoredItemCreateRequest request = new MonitoredItemCreateRequest(
                        new ReadValueId(new NodeId(node.getIndex(), node.getIdentifier()), AttributeId.Value.uid(),
                                null, null),
                        MonitoringMode.Reporting, parameters);
                requests.add(request);
            }
        }
 
        // 创建监控项,并且注册变量值改变时候的回调函数
        subscription.createMonitoredItems(TimestampsToReturn.Both, requests, (item, id) -> {
            item.setValueConsumer((i, v) -> {
                handle(i.getReadValueId().getNodeId(), v.getValue());
            });
        }).get();
 
        return "订阅成功";
    }
 
    /**
     * * @MethodName: write
     * @Description: 回调函数
     * @CreateTime 2023年10月13日
     */
 
    public void handle(NodeId id, Variant value){
        long startTime = System.currentTimeMillis();
 
        OpcuaConfParam opcuaConfParam=new OpcuaConfParam();
        opcuaConfParam.setNode(id.getIdentifier().toString());
        List<OpcuaConfResult> a=opcuaConfController.mylist(opcuaConfParam);
 
        String str1 = id.getIdentifier().toString()+":"+value.getValue().toString();
        try {
            Class<?> clazz = Class.forName(a.get(0).getRModule());
            Method method = clazz.getMethod(a.get(0).getRFunction(), String.class);
 
            method.invoke(clazz.newInstance(), str1);
        } catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException | InstantiationException |
                 InvocationTargetException e) {
            e.printStackTrace();
        }
        log.info("代码执行时间:" + (System.currentTimeMillis() - startTime) + "毫秒");
    }
 
    /**
     * @MethodName: write
     * @Description: 变节点量写入
     * @param node
     * @throws Exception
     * @CreateTime 2019年12月18日 上午9:51:40
     */
    public String write(NodeEntity node) throws Exception {
 
        if (client == null) {
            return "找不到客户端,操作失败";
        }
 
        NodeId nodeId = new NodeId(node.getIndex(), node.getIdentifier());
        Variant value = null;
        switch (node.getType()) {
        case "int":
            value = new Variant(Integer.parseInt(node.getValue().toString()));
            break;
        case "boolean":
            value = new Variant(Boolean.parseBoolean(node.getValue().toString()));
            break;
        }
        DataValue dataValue = new DataValue(value, null, null);
 
        StatusCode statusCode = client.writeValue(nodeId, dataValue).get();
 
        return "节点【" + node.getIdentifier() + "】写入状态:" + statusCode.isGood();
    }
 
    /**
     * @MethodName: read
     * @Description: 读取
     * @param node
     * @return
     * @throws Exception
     * @CreateTime 2019年12月19日 下午2:40:34
     */
    public String read(NodeEntity node) throws Exception {
 
        if (client == null) {
            return "找不到客户端,操作失败";
        }
 
        NodeId nodeId = new NodeId(node.getIndex(), node.getIdentifier());
        VariableNode vnode = client.getAddressSpace().createVariableNode(nodeId);
        DataValue value = vnode.readValue().get();
        log.info("Value={}", value);
 
        Variant variant = value.getValue();
        log.info("Variant={}", variant.getValue());
 
        log.info("BackingClass={}", BuiltinDataType.getBackingClass(variant.getDataType().get()));
 
        return "节点【" + node.getIdentifier() + "】:" + variant.getValue();
    }
}