Create common parent for extensions families
[bgpcep.git] / bgp / flowspec / src / main / java / org / opendaylight / protocol / bgp / flowspec / AbstractFlowspecRIBSupport.java
diff --git a/bgp/flowspec/src/main/java/org/opendaylight/protocol/bgp/flowspec/AbstractFlowspecRIBSupport.java b/bgp/flowspec/src/main/java/org/opendaylight/protocol/bgp/flowspec/AbstractFlowspecRIBSupport.java
deleted file mode 100644 (file)
index fde37f6..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-/*
- * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.protocol.bgp.flowspec;
-
-import static java.util.Objects.requireNonNull;
-
-import com.google.common.annotations.Beta;
-import com.google.common.collect.Iterables;
-import java.util.Collection;
-import java.util.Optional;
-import org.opendaylight.controller.md.sal.dom.api.DOMDataWriteTransaction;
-import org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeSerializer;
-import org.opendaylight.protocol.bgp.parser.spi.PathIdUtil;
-import org.opendaylight.protocol.bgp.rib.spi.AbstractRIBSupport;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.PathId;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev180329.destination.DestinationType;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev180329.Route;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev180329.rib.tables.Routes;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.AddressFamily;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.SubsequentAddressFamily;
-import org.opendaylight.yangtools.yang.binding.ChildOf;
-import org.opendaylight.yangtools.yang.binding.DataObject;
-import org.opendaylight.yangtools.yang.binding.Identifiable;
-import org.opendaylight.yangtools.yang.binding.Identifier;
-import org.opendaylight.yangtools.yang.common.QName;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
-import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
-import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
-import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
-
-@Beta
-public abstract class AbstractFlowspecRIBSupport<
-        T extends AbstractFlowspecNlriParser,
-        C extends Routes & DataObject,
-        S extends ChildOf<? super C>,
-        R extends Route & ChildOf<? super S> & Identifiable<I>,
-        I extends Identifier<R>> extends AbstractRIBSupport<C, S, R, I> {
-    protected final T nlriParser;
-
-    protected AbstractFlowspecRIBSupport(
-            final BindingNormalizedNodeSerializer mappingService,
-            final Class<C> cazeClass,
-            final Class<S> containerClass,
-            final Class<R> listClass,
-            final Class<? extends AddressFamily> afiClass,
-            final Class<? extends SubsequentAddressFamily> safiClass,
-            final QName dstContainerClassQName,
-            final T nlriParser
-    ) {
-        super(mappingService, cazeClass, containerClass, listClass, afiClass, safiClass, dstContainerClassQName);
-
-        this.nlriParser = requireNonNull(nlriParser);
-    }
-
-    @Override
-    protected DestinationType buildDestination(final Collection<MapEntryNode> routes) {
-        final MapEntryNode routesCont = Iterables.getOnlyElement(routes);
-        final PathId pathId = PathIdUtil.buildPathId(routesCont, routePathIdNid());
-        return this.nlriParser.createAdvertizedRoutesDestinationType(
-            new Object[] {this.nlriParser.extractFlowspec(routesCont)},
-            pathId
-        );
-    }
-
-    @Override
-    protected DestinationType buildWithdrawnDestination(final Collection<MapEntryNode> routes) {
-        final MapEntryNode routesCont = Iterables.getOnlyElement(routes);
-        final PathId pathId = PathIdUtil.buildPathId(routesCont, routePathIdNid());
-        return this.nlriParser.createWithdrawnDestinationType(
-            new Object[] {this.nlriParser.extractFlowspec(Iterables.getOnlyElement(routes))},
-            pathId
-        );
-    }
-
-    @Override
-    protected final void processDestination(
-        final DOMDataWriteTransaction tx,
-        final YangInstanceIdentifier routesPath,
-        final ContainerNode destination,
-        final ContainerNode attributes,
-        final ApplyRoute function
-    ) {
-        if (destination != null) {
-            final YangInstanceIdentifier base = routesYangInstanceIdentifier(routesPath);
-
-            final Optional<DataContainerChild<? extends PathArgument, ?>> maybePathIdLeaf
-                    = destination.getChild(routePathIdNid());
-            final String routeKeyValue = this.nlriParser.stringNlri(destination);
-            final NodeIdentifierWithPredicates routeKey = PathIdUtil.createNidKey(routeQName(), routeKeyQName(),
-                    pathIdQName(), routeKeyValue, maybePathIdLeaf);
-            function.apply(tx, base, routeKey, destination, attributes);
-        }
-    }
-}