ca7242e8b2c5fee60796e4598d0957c4795a19ad
[bgpcep.git] / bgp / extensions / flowspec / src / main / java / org / opendaylight / protocol / bgp / flowspec / FlowspecIpv6RIBSupport.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.protocol.bgp.flowspec;
9
10 import java.util.Collections;
11 import java.util.List;
12 import org.opendaylight.mdsal.binding.dom.codec.api.BindingNormalizedNodeSerializer;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.FlowspecSubsequentAddressFamily;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.bgp.rib.rib.loc.rib.tables.routes.FlowspecIpv6RoutesCase;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.bgp.rib.rib.loc.rib.tables.routes.FlowspecIpv6RoutesCaseBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.flowspec.destination.ipv6.DestinationFlowspecIpv6;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.flowspec.ipv6.route.FlowspecRoute;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.flowspec.ipv6.route.FlowspecRouteBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.flowspec.ipv6.route.FlowspecRouteKey;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.flowspec.ipv6.routes.FlowspecIpv6Routes;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev180329.flowspec.ipv6.routes.FlowspecIpv6RoutesBuilder;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.PathId;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.path.attributes.Attributes;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev180329.Ipv6AddressFamily;
25
26 public final class FlowspecIpv6RIBSupport
27         extends AbstractFlowspecRIBSupport<SimpleFlowspecIpv6NlriParser,
28         FlowspecIpv6RoutesCase,
29         FlowspecIpv6Routes,
30         FlowspecRoute,
31         FlowspecRouteKey> {
32     private static final FlowspecIpv6Routes EMPTY_CONTAINER = new FlowspecIpv6RoutesBuilder()
33             .setFlowspecRoute(Collections.emptyList()).build();
34     private static final FlowspecIpv6RoutesCase EMPTY_CASE = new FlowspecIpv6RoutesCaseBuilder()
35             .setFlowspecIpv6Routes(EMPTY_CONTAINER).build();
36     private static FlowspecIpv6RIBSupport SINGLETON;
37
38     private FlowspecIpv6RIBSupport(final SimpleFlowspecExtensionProviderContext context,
39             final BindingNormalizedNodeSerializer mappingService) {
40         super(
41                 mappingService,
42                 FlowspecIpv6RoutesCase.class,
43                 FlowspecIpv6Routes.class,
44                 FlowspecRoute.class,
45                 Ipv6AddressFamily.class,
46                 FlowspecSubsequentAddressFamily.class,
47                 DestinationFlowspecIpv6.QNAME,
48                 new SimpleFlowspecIpv6NlriParser(context
49                         .getFlowspecTypeRegistry(SimpleFlowspecExtensionProviderContext.AFI.IPV6,
50                                 SimpleFlowspecExtensionProviderContext.SAFI.FLOWSPEC))
51         );
52     }
53
54     static synchronized FlowspecIpv6RIBSupport getInstance(
55             final SimpleFlowspecExtensionProviderContext context,
56             final BindingNormalizedNodeSerializer mappingService) {
57         if (SINGLETON == null) {
58             SINGLETON = new FlowspecIpv6RIBSupport(context, mappingService);
59         }
60         return SINGLETON;
61     }
62
63     @Override
64     public FlowspecRoute createRoute(final FlowspecRoute route, final FlowspecRouteKey key,
65             final Attributes attributes) {
66         final FlowspecRouteBuilder builder;
67         if (route != null) {
68             builder = new FlowspecRouteBuilder(route);
69         } else {
70             builder = new FlowspecRouteBuilder();
71         }
72         return builder.withKey(key).setAttributes(attributes).build();
73     }
74
75     @Override
76     public FlowspecIpv6RoutesCase emptyRoutesCase() {
77         return EMPTY_CASE;
78     }
79
80     @Override
81     public FlowspecIpv6Routes emptyRoutesContainer() {
82         return EMPTY_CONTAINER;
83     }
84
85     @Override
86     public FlowspecRouteKey createRouteListKey(final PathId pathId, final String routeKey) {
87         return new FlowspecRouteKey(pathId, routeKey);
88     }
89
90     @Override
91     public List<FlowspecRoute> routesFromContainer(final FlowspecIpv6Routes container) {
92         return container.getFlowspecRoute();
93     }
94
95     @Override
96     public PathId extractPathId(final FlowspecRouteKey routeListKey) {
97         return routeListKey.getPathId();
98     }
99
100     @Override
101     public String extractRouteKey(final FlowspecRouteKey routeListKey) {
102         return routeListKey.getRouteKey();
103     }
104 }