Apply modernizations
[netconf.git] / netconf / messagebus-netconf / src / main / java / org / opendaylight / netconf / messagebus / eventsources / netconf / ConnectionNotificationTopicRegistration.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.messagebus.eventsources.netconf;
9
10 import static java.util.Objects.requireNonNull;
11
12 import java.util.ArrayList;
13 import java.util.List;
14 import java.util.Optional;
15 import java.util.Set;
16 import javax.xml.transform.dom.DOMSource;
17 import org.opendaylight.mdsal.dom.api.DOMNotification;
18 import org.opendaylight.mdsal.dom.api.DOMNotificationListener;
19 import org.opendaylight.netconf.api.xml.XmlUtil;
20 import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.messagebus.eventaggregator.rev141202.TopicId;
21 import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.messagebus.eventsource.rev141202.EventSourceStatus;
22 import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.messagebus.eventsource.rev141202.EventSourceStatusNotification;
23 import org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.messagebus.eventsource.rev141202.EventSourceStatusNotificationBuilder;
24 import org.opendaylight.yangtools.util.xml.UntrustedXML;
25 import org.opendaylight.yangtools.yang.common.QName;
26 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
27 import org.opendaylight.yangtools.yang.data.api.schema.AnyXmlNode;
28 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
29 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
30 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.w3c.dom.Document;
34 import org.w3c.dom.Element;
35
36 /**
37  * Topic registration on event-source-status-notification.
38  */
39 class ConnectionNotificationTopicRegistration extends NotificationTopicRegistration {
40
41     private static final Logger LOG = LoggerFactory.getLogger(ConnectionNotificationTopicRegistration.class);
42
43     public static final SchemaPath EVENT_SOURCE_STATUS_PATH = SchemaPath
44             .create(true, QName.create(EventSourceStatusNotification.QNAME, "event-source-status"));
45     private static final NodeIdentifier EVENT_SOURCE_STATUS_ARG = NodeIdentifier.create(
46             EventSourceStatusNotification.QNAME);
47
48     private final DOMNotificationListener domNotificationListener;
49
50     ConnectionNotificationTopicRegistration(final String sourceName,
51                                             final DOMNotificationListener domNotificationListener) {
52         super(NotificationSourceType.ConnectionStatusChange, sourceName,
53                 EVENT_SOURCE_STATUS_PATH.getLastComponent().getNamespace().toString());
54         this.domNotificationListener = requireNonNull(domNotificationListener);
55         LOG.info("Connection notification source has been initialized.");
56         setActive(true);
57         setReplaySupported(false);
58     }
59
60     @Override
61     public void close() {
62         if (isActive()) {
63             LOG.debug("Connection notification - publish Deactive");
64             publishNotification(EventSourceStatus.Deactive);
65             notificationTopicMap.clear();
66             setActive(false);
67         }
68     }
69
70     @Override
71     void activateNotificationSource() {
72         LOG.debug("Connection notification - publish Active");
73         publishNotification(EventSourceStatus.Active);
74     }
75
76     @Override
77     void deActivateNotificationSource() {
78         LOG.debug("Connection notification - publish Inactive");
79         publishNotification(EventSourceStatus.Inactive);
80     }
81
82     @Override
83     void reActivateNotificationSource() {
84         LOG.debug("Connection notification - reactivate - publish active");
85         publishNotification(EventSourceStatus.Active);
86     }
87
88     @Override
89     boolean registerNotificationTopic(final SchemaPath notificationPath, final TopicId topicId) {
90         if (!checkNotificationPath(notificationPath)) {
91             LOG.debug("Bad SchemaPath for notification try to register");
92             return false;
93         }
94         Set<TopicId> topicIds = getTopicsForNotification(notificationPath);
95         topicIds.add(topicId);
96         notificationTopicMap.put(notificationPath, topicIds);
97         return true;
98     }
99
100     @Override
101     synchronized void unRegisterNotificationTopic(final TopicId topicId) {
102         List<SchemaPath> notificationPathToRemove = new ArrayList<>();
103         for (SchemaPath notifKey : notificationTopicMap.keySet()) {
104             Set<TopicId> topicList = notificationTopicMap.get(notifKey);
105             if (topicList != null) {
106                 topicList.remove(topicId);
107                 if (topicList.isEmpty()) {
108                     notificationPathToRemove.add(notifKey);
109                 }
110             }
111         }
112         for (SchemaPath notifKey : notificationPathToRemove) {
113             notificationTopicMap.remove(notifKey);
114         }
115     }
116
117     private void publishNotification(final EventSourceStatus eventSourceStatus) {
118
119         final EventSourceStatusNotification notification = new EventSourceStatusNotificationBuilder()
120                 .setStatus(eventSourceStatus).build();
121         domNotificationListener.onNotification(createNotification(notification));
122     }
123
124     private static DOMNotification createNotification(final EventSourceStatusNotification notification) {
125         final ContainerNode cn = Builders.containerBuilder().withNodeIdentifier(EVENT_SOURCE_STATUS_ARG)
126                 .withChild(encapsulate(notification)).build();
127         DOMNotification dn = new DOMNotification() {
128
129             @Override
130             public SchemaPath getType() {
131                 return EVENT_SOURCE_STATUS_PATH;
132             }
133
134             @Override
135             public ContainerNode getBody() {
136                 return cn;
137             }
138         };
139         return dn;
140     }
141
142     private static AnyXmlNode encapsulate(final EventSourceStatusNotification notification) {
143         Document doc = UntrustedXML.newDocumentBuilder().newDocument();
144
145         final Element rootElement = XmlUtil.createElement(doc, "EventSourceStatusNotification",
146             Optional.of(EVENT_SOURCE_STATUS_ARG.getNodeType().getNamespace().toString()));
147
148         final Element sourceElement = doc.createElement("status");
149         sourceElement.appendChild(doc.createTextNode(notification.getStatus().name()));
150         rootElement.appendChild(sourceElement);
151
152         return Builders.anyXmlBuilder().withNodeIdentifier(EVENT_SOURCE_STATUS_ARG)
153                 .withValue(new DOMSource(rootElement)).build();
154     }
155 }