SDN-R add updated devicemanager
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / impl / xml / WebSocketServiceClientImpl2.java
diff --git a/sdnr/wt/devicemanager/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/impl/xml/WebSocketServiceClientImpl2.java b/sdnr/wt/devicemanager/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/impl/xml/WebSocketServiceClientImpl2.java
new file mode 100644 (file)
index 0000000..8c01438
--- /dev/null
@@ -0,0 +1,86 @@
+/*******************************************************************************
+ * ============LICENSE_START========================================================================
+ * ONAP : ccsdk feature sdnr wt
+ * =================================================================================================
+ * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
+ * =================================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ * ============LICENSE_END==========================================================================
+ ******************************************************************************/
+package org.onap.ccsdk.features.sdnr.wt.devicemanager.impl.xml;
+
+import java.util.concurrent.Future;
+import org.eclipse.jdt.annotation.NonNull;
+import org.onap.ccsdk.features.sdnr.wt.devicemanager.impl.handler.ODLEventListenerHandler;
+import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev190801.EventlogEntity;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.websocketmanager.rev150105.WebsocketEventInputBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.websocketmanager.rev150105.WebsocketEventOutput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.websocketmanager.rev150105.WebsocketmanagerService;
+import org.opendaylight.yangtools.yang.common.RpcResult;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Wrapper for forwarding web-socket notifications to the web-socket service, that is running as
+ * bundle.
+ */
+@SuppressWarnings("deprecation")
+public class WebSocketServiceClientImpl2 implements WebSocketServiceClientInternal {
+
+    private static final Logger LOG = LoggerFactory.getLogger(ODLEventListenerHandler.class);
+
+    private final WebsocketmanagerService websocketmanagerService;
+    private final XmlMapper xmlMapper;
+
+    /**
+     * Implementation of Websocket notification processor.
+     * @param rpcProviderRegistry to get MDSAL services.
+     */
+    @Deprecated
+    public WebSocketServiceClientImpl2(@NonNull RpcProviderRegistry rpcProviderRegistry) {
+        super();
+        this.websocketmanagerService = rpcProviderRegistry.getRpcService(WebsocketmanagerService.class);
+        this.xmlMapper = new XmlMapper();
+    }
+
+    /**
+     * New: Implementation of Websocket notification processor.
+     * @param websocketmanagerService2 to be used
+     */
+    public WebSocketServiceClientImpl2(WebsocketmanagerService websocketmanagerService2) {
+        super();
+        this.websocketmanagerService = websocketmanagerService2;
+        this.xmlMapper = new XmlMapper();
+    }
+
+    @Override
+    public <T extends MwtNotificationBase & GetEventType> void sendViaWebsockets(@NonNull String nodeName, @NonNull T notificationXml) {
+        LOG.info("Send websocket event {} for mountpoint {}", notificationXml.getClass().getSimpleName(), nodeName);
+
+        try {
+            WebsocketEventInputBuilder wsBuilder = new WebsocketEventInputBuilder();
+            wsBuilder.setNodeName(nodeName);
+            wsBuilder.setEventType(notificationXml.getEventType());
+            wsBuilder.setXmlEvent(xmlMapper.getXmlString(notificationXml));
+            Future<RpcResult<WebsocketEventOutput>> result = websocketmanagerService.websocketEvent(wsBuilder.build());
+            LOG.info("Send websocket result: {}", result.get().getResult().getResponse());
+        } catch (Exception e) {
+            LOG.warn("Can not send websocket event {} for mountpoint {} {}", notificationXml.getClass().getSimpleName(),
+                    nodeName, e.toString());
+        }
+    }
+
+    @Override
+    public void close() throws Exception {
+    }
+
+}