InstanceIdentifierContext does not take generics
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / services / impl / RestconfStreamsSubscriptionServiceImpl.java
index f106fc634a6799510e0f53eb2b8e429c2524da7c..0645e82794c1d4bc0a5c05587630a233e0af0929 100644 (file)
  */
 package org.opendaylight.restconf.nb.rfc8040.rests.services.impl;
 
+import static com.google.common.base.Preconditions.checkState;
+
 import java.net.URI;
-import java.time.Instant;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.Map.Entry;
 import java.util.Optional;
-import javax.annotation.Nonnull;
+import javax.ws.rs.Path;
 import javax.ws.rs.core.UriInfo;
-import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
-import org.opendaylight.controller.md.sal.dom.api.DOMNotificationService;
-import org.opendaylight.controller.md.sal.dom.api.DOMTransactionChain;
+import org.opendaylight.mdsal.dom.api.DOMDataBroker;
+import org.opendaylight.mdsal.dom.api.DOMNotificationService;
 import org.opendaylight.restconf.common.context.InstanceIdentifierContext;
-import org.opendaylight.restconf.common.context.NormalizedNodeContext;
 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
-import org.opendaylight.restconf.nb.rfc8040.handlers.DOMDataBrokerHandler;
-import org.opendaylight.restconf.nb.rfc8040.handlers.NotificationServiceHandler;
+import org.opendaylight.restconf.nb.rfc8040.NotificationQueryParams;
+import org.opendaylight.restconf.nb.rfc8040.databind.jaxrs.QueryParams;
 import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler;
-import org.opendaylight.restconf.nb.rfc8040.handlers.TransactionChainHandler;
+import org.opendaylight.restconf.nb.rfc8040.legacy.NormalizedNodePayload;
 import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfStreamsSubscriptionService;
 import org.opendaylight.restconf.nb.rfc8040.rests.utils.RestconfStreamsConstants;
-import org.opendaylight.restconf.nb.rfc8040.rests.utils.SubscribeToStreamUtil;
+import org.opendaylight.restconf.nb.rfc8040.streams.Configuration;
 import org.opendaylight.yangtools.yang.common.QName;
+import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
-import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
-import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.NormalizedNodeAttrBuilder;
-import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableLeafNodeBuilder;
+import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
+import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
+import org.opendaylight.yangtools.yang.model.api.Module;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
  * Implementation of {@link RestconfStreamsSubscriptionService}.
- *
  */
+@Path("/")
 public class RestconfStreamsSubscriptionServiceImpl implements RestconfStreamsSubscriptionService {
-
     private static final Logger LOG = LoggerFactory.getLogger(RestconfStreamsSubscriptionServiceImpl.class);
+    private static final QName LOCATION_QNAME =
+        QName.create("subscribe:to:notification", "2016-10-28", "location").intern();
+    private static final NodeIdentifier LOCATION_NODEID = NodeIdentifier.create(LOCATION_QNAME);
+    private static final QName NOTIFI_QNAME = QName.create(LOCATION_QNAME, "notifi").intern();
+    private static final YangInstanceIdentifier LOCATION_PATH =
+        YangInstanceIdentifier.create(NodeIdentifier.create(NOTIFI_QNAME), LOCATION_NODEID);
 
-    private HandlersHolder handlersHolder;
+    private final SubscribeToStreamUtil streamUtils;
+    private final HandlersHolder handlersHolder;
 
     /**
      * Initialize holder of handlers with holders as parameters.
      *
-     * @param domDataBrokerHandler
-     *             handler of {@link DOMDataBroker}
-     * @param notificationServiceHandler
-     *             handler of {@link DOMNotificationService}
+     * @param dataBroker {@link DOMDataBroker}
+     * @param notificationService {@link DOMNotificationService}
      * @param schemaHandler
      *             handler of {@link SchemaContext}
-     * @param transactionChainHandler
-     *             handler of {@link DOMTransactionChain}
+     * @param configuration
+     *             configuration for restconf {@link Configuration}}
      */
-    public RestconfStreamsSubscriptionServiceImpl(final DOMDataBrokerHandler domDataBrokerHandler,
-            final NotificationServiceHandler notificationServiceHandler, final SchemaContextHandler schemaHandler,
-            final TransactionChainHandler transactionChainHandler) {
-        this.handlersHolder = new HandlersHolder(domDataBrokerHandler, notificationServiceHandler,
-                transactionChainHandler, schemaHandler);
-    }
-
-    @Override
-    public synchronized void updateHandlers(final Object... handlers) {
-        for (final Object object : handlers) {
-            if (object instanceof HandlersHolder) {
-                handlersHolder = (HandlersHolder) object;
-            }
-        }
+    public RestconfStreamsSubscriptionServiceImpl(final DOMDataBroker dataBroker,
+            final DOMNotificationService notificationService, final SchemaContextHandler schemaHandler,
+            final Configuration configuration) {
+        handlersHolder = new HandlersHolder(dataBroker, notificationService, schemaHandler);
+        streamUtils = configuration.isUseSSE() ? SubscribeToStreamUtil.serverSentEvents()
+                : SubscribeToStreamUtil.webSockets();
     }
 
     @Override
-    public NormalizedNodeContext subscribeToStream(final String identifier, final UriInfo uriInfo) {
-        final NotificationQueryParams notificationQueryParams = NotificationQueryParams.fromUriInfo(uriInfo);
+    public NormalizedNodePayload subscribeToStream(final String identifier, final UriInfo uriInfo) {
+        final NotificationQueryParams params = QueryParams.newNotificationQueryParams(uriInfo);
 
-        URI response = null;
-        if (identifier.contains(RestconfStreamsConstants.DATA_SUBSCR)) {
-            response = SubscribeToStreamUtil.notifiDataStream(identifier, uriInfo, notificationQueryParams,
-                    this.handlersHolder);
+        final URI response;
+        if (identifier.contains(RestconfStreamsConstants.DATA_SUBSCRIPTION)) {
+            response = streamUtils.subscribeToDataStream(identifier, uriInfo, params, handlersHolder);
         } else if (identifier.contains(RestconfStreamsConstants.NOTIFICATION_STREAM)) {
-            response = SubscribeToStreamUtil.notifYangStream(identifier, uriInfo, notificationQueryParams,
-                    this.handlersHolder);
+            response = streamUtils.subscribeToYangStream(identifier, uriInfo, params, handlersHolder);
+        } else {
+            final String msg = "Bad type of notification of sal-remote";
+            LOG.warn(msg);
+            throw new RestconfDocumentedException(msg);
         }
 
-        if (response != null) {
-            // prepare node with value of location
-            final InstanceIdentifierContext<?> iid =
-                    SubscribeToStreamUtil.prepareIIDSubsStreamOutput(this.handlersHolder.getSchemaHandler());
-            final NormalizedNodeAttrBuilder<NodeIdentifier, Object, LeafNode<Object>> builder =
-                    ImmutableLeafNodeBuilder.create().withValue(response.toString());
-            builder.withNodeIdentifier(
-                    NodeIdentifier.create(QName.create("subscribe:to:notification", "2016-10-28", "location")));
-
-            // prepare new header with location
-            final Map<String, Object> headers = new HashMap<>();
-            headers.put("Location", response);
-
-            return new NormalizedNodeContext(iid, builder.build(), headers);
-        }
+        // prepare node with value of location
+        return NormalizedNodePayload.ofLocation(prepareIIDSubsStreamOutput(handlersHolder.getSchemaHandler()),
+            LOCATION_NODEID, response);
+    }
 
-        final String msg = "Bad type of notification of sal-remote";
-        LOG.warn(msg);
-        throw new RestconfDocumentedException(msg);
+    /**
+     * Prepare InstanceIdentifierContext for Location leaf.
+     *
+     * @param schemaHandler Schema context handler.
+     * @return InstanceIdentifier of Location leaf.
+     */
+    private static InstanceIdentifierContext prepareIIDSubsStreamOutput(final SchemaContextHandler schemaHandler) {
+        final Optional<Module> module = schemaHandler.get().findModule(NOTIFI_QNAME.getModule());
+        checkState(module.isPresent());
+        final DataSchemaNode notify = module.get().dataChildByName(NOTIFI_QNAME);
+        checkState(notify instanceof ContainerSchemaNode, "Unexpected non-container %s", notify);
+        final DataSchemaNode location = ((ContainerSchemaNode) notify).dataChildByName(LOCATION_QNAME);
+        checkState(location != null, "Missing location");
+
+        return new InstanceIdentifierContext(LOCATION_PATH, location, null, schemaHandler.get());
     }
 
     /**
      * Holder of all handlers for notifications.
      */
-    public final class HandlersHolder {
-
-        private final DOMDataBrokerHandler domDataBrokerHandler;
-        private final NotificationServiceHandler notificationServiceHandler;
-        private final TransactionChainHandler transactionChainHandler;
+    // FIXME: why do we even need this class?!
+    public static final class HandlersHolder {
+        private final DOMDataBroker dataBroker;
+        private final DOMNotificationService notificationService;
         private final SchemaContextHandler schemaHandler;
 
-        private HandlersHolder(final DOMDataBrokerHandler domDataBrokerHandler,
-                final NotificationServiceHandler notificationServiceHandler,
-                final TransactionChainHandler transactionChainHandler, final SchemaContextHandler schemaHandler) {
-            this.domDataBrokerHandler = domDataBrokerHandler;
-            this.notificationServiceHandler = notificationServiceHandler;
-            this.transactionChainHandler = transactionChainHandler;
+        private HandlersHolder(final DOMDataBroker dataBroker, final DOMNotificationService notificationService,
+                final SchemaContextHandler schemaHandler) {
+            this.dataBroker = dataBroker;
+            this.notificationService = notificationService;
             this.schemaHandler = schemaHandler;
         }
 
         /**
-         * Get {@link DOMDataBrokerHandler}.
-         *
-         * @return the domDataBrokerHandler
-         */
-        public DOMDataBrokerHandler getDomDataBrokerHandler() {
-            return this.domDataBrokerHandler;
-        }
-
-        /**
-         * Get {@link NotificationServiceHandler}.
+         * Get {@link DOMDataBroker}.
          *
-         * @return the notificationServiceHandler
+         * @return the dataBroker
          */
-        public NotificationServiceHandler getNotificationServiceHandler() {
-            return this.notificationServiceHandler;
+        public DOMDataBroker getDataBroker() {
+            return dataBroker;
         }
 
         /**
-         * Get {@link TransactionChainHandler}.
+         * Get {@link DOMNotificationService}.
          *
-         * @return the transactionChainHandler
+         * @return the notificationService
          */
-        public TransactionChainHandler getTransactionChainHandler() {
-            return this.transactionChainHandler;
+        public DOMNotificationService getNotificationServiceHandler() {
+            return notificationService;
         }
 
         /**
@@ -162,97 +145,7 @@ public class RestconfStreamsSubscriptionServiceImpl implements RestconfStreamsSu
          * @return the schemaHandler
          */
         public SchemaContextHandler getSchemaHandler() {
-            return this.schemaHandler;
-        }
-    }
-
-    /**
-     * Parser and holder of query paramteres from uriInfo for notifications.
-     *
-     */
-    public static final class NotificationQueryParams {
-
-        private final Instant start;
-        private final Instant stop;
-        private final String filter;
-
-        private NotificationQueryParams(final Instant start, final Instant stop, final String filter) {
-            this.start = start == null ? Instant.now() : start;
-            this.stop = stop;
-            this.filter = filter;
-        }
-
-        static NotificationQueryParams fromUriInfo(final UriInfo uriInfo) {
-            Instant start = null;
-            boolean startTimeUsed = false;
-            Instant stop = null;
-            boolean stopTimeUsed = false;
-            String filter = null;
-            boolean filterUsed = false;
-
-            for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
-                switch (entry.getKey()) {
-                    case "start-time":
-                        if (!startTimeUsed) {
-                            startTimeUsed = true;
-                            start = SubscribeToStreamUtil.parseDateFromQueryParam(entry);
-                        } else {
-                            throw new RestconfDocumentedException("Start-time parameter can be used only once.");
-                        }
-                        break;
-                    case "stop-time":
-                        if (!stopTimeUsed) {
-                            stopTimeUsed = true;
-                            stop = SubscribeToStreamUtil.parseDateFromQueryParam(entry);
-                        } else {
-                            throw new RestconfDocumentedException("Stop-time parameter can be used only once.");
-                        }
-                        break;
-                    case "filter":
-                        if (!filterUsed) {
-                            filterUsed = true;
-                            filter = entry.getValue().iterator().next();
-                        }
-                        break;
-                    default:
-                        throw new RestconfDocumentedException(
-                                "Bad parameter used with notifications: " + entry.getKey());
-                }
-            }
-            if (!startTimeUsed && stopTimeUsed) {
-                throw new RestconfDocumentedException("Stop-time parameter has to be used with start-time parameter.");
-            }
-
-            return new NotificationQueryParams(start, stop, filter);
-        }
-
-        /**
-         * Get start-time query parameter.
-         *
-         * @return start-time
-         */
-        @Nonnull
-        public Instant getStart() {
-            return start;
-        }
-
-        /**
-         * Get stop-time query parameter.
-         *
-         * @return stop-time
-         */
-        public Optional<Instant> getStop() {
-            return Optional.ofNullable(stop);
-        }
-
-        /**
-         * Get filter query parameter.
-         *
-         * @return filter
-         */
-        public Optional<String> getFilter() {
-            return Optional.ofNullable(filter);
+            return schemaHandler;
         }
     }
-
 }