Code Clean Up
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / controller / config / yang / bgp / rib / impl / RIBImplModule.java
1 /*
2  * Copyright (c) 2013 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 /**
9  * Generated file
10
11  * Generated from: yang module name: bgp-rib-impl  yang module local name: rib-impl
12  * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
13  * Generated at: Wed Nov 06 13:02:32 CET 2013
14  *
15  * Do not modify this file unless it is present under src/main directory
16  */
17 package org.opendaylight.controller.config.yang.bgp.rib.impl;
18
19 import com.google.common.reflect.AbstractInvocationHandler;
20 import com.google.common.reflect.Reflection;
21 import java.lang.reflect.Method;
22 import java.util.Collections;
23 import java.util.List;
24 import java.util.Map;
25 import java.util.stream.Collectors;
26 import org.opendaylight.controller.config.api.JmxAttributeValidationException;
27 import org.opendaylight.controller.config.api.osgi.WaitingServiceTracker;
28 import org.opendaylight.protocol.bgp.mode.api.PathSelectionMode;
29 import org.opendaylight.protocol.bgp.rib.impl.config.OpenConfigMappingUtil;
30 import org.opendaylight.protocol.bgp.rib.impl.spi.BGPBestPathSelection;
31 import org.opendaylight.protocol.bgp.rib.impl.spi.BgpDeployer;
32 import org.opendaylight.protocol.bgp.rib.impl.spi.InstanceType;
33 import org.opendaylight.protocol.bgp.rib.impl.spi.RIB;
34 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.bgp.rev151009.bgp.top.Bgp;
35 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.bgp.rev151009.bgp.top.bgp.Global;
36 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.network.instance.rev151018.network.instance.top.network.instances.network.instance.Protocols;
37 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.network.instance.rev151018.network.instance.top.network.instances.network.instance.protocols.Protocol;
38 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.network.instance.rev151018.network.instance.top.network.instances.network.instance.protocols.ProtocolKey;
39 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.policy.types.rev151009.BGP;
40 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber;
41 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.openconfig.extensions.rev160614.Protocol1;
42 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev130925.rib.TablesKey;
43 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
44 import org.osgi.framework.BundleContext;
45
46 /**
47  *
48  */
49 @Deprecated
50 public final class RIBImplModule extends org.opendaylight.controller.config.yang.bgp.rib.impl.AbstractRIBImplModule {
51
52     private static final String IS_NOT_SET = "is not set.";
53     private BundleContext bundleContext;
54
55     public RIBImplModule(final org.opendaylight.controller.config.api.ModuleIdentifier name,
56             final org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
57         super(name, dependencyResolver);
58     }
59
60     public RIBImplModule(final org.opendaylight.controller.config.api.ModuleIdentifier name,
61             final org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, final RIBImplModule oldModule,
62             final java.lang.AutoCloseable oldInstance) {
63         super(name, dependencyResolver, oldModule, oldInstance);
64     }
65
66     @Override
67     public void customValidation() {
68         JmxAttributeValidationException.checkNotNull(getExtensions(), IS_NOT_SET, extensionsJmxAttribute);
69         JmxAttributeValidationException.checkNotNull(getRibId(), IS_NOT_SET, ribIdJmxAttribute);
70         JmxAttributeValidationException.checkNotNull(getLocalAs(), IS_NOT_SET, localAsJmxAttribute);
71         JmxAttributeValidationException.checkNotNull(getBgpRibId(), IS_NOT_SET, bgpRibIdJmxAttribute);
72         JmxAttributeValidationException.checkNotNull(getLocalTable(), IS_NOT_SET, localTableJmxAttribute);
73     }
74
75     @Override
76     public java.lang.AutoCloseable createInstance() {
77         final WaitingServiceTracker<BgpDeployer> bgpDeployerTracker =
78                 WaitingServiceTracker.create(BgpDeployer.class, this.bundleContext);
79         final BgpDeployer bgpDeployer = bgpDeployerTracker.waitForService(WaitingServiceTracker.FIVE_MINUTES);
80         //map configuration to OpenConfig BGP
81         final Global global = OpenConfigMappingUtil.fromRib(getBgpRibId(), getClusterId(), getRibId(),
82             new AsNumber(getLocalAs()), getLocalTableDependency(),
83                 mapBestPathSelectionStrategyByFamily(getRibPathSelectionModeDependency()), bgpDeployer.getTableTypeRegistry());
84         final InstanceIdentifier<Bgp> bgpIID = bgpDeployer.getInstanceIdentifier().child(Protocols.class)
85             .child(Protocol.class, new ProtocolKey(BGP.class, getRibId().getValue())).augmentation(Protocol1.class)
86             .child(Bgp.class);
87         bgpDeployer.onGlobalModified(bgpIID, global, () -> bgpDeployer.writeConfiguration(global, bgpIID.child(Global.class)));
88
89         //get rib instance service, use filter
90         final WaitingServiceTracker<RIB> ribTracker = WaitingServiceTracker.create(RIB.class,
91             this.bundleContext, "(" + InstanceType.RIB.getBeanName() + "=" + getRibId().getValue() + ")");
92         final RIB rib = ribTracker.waitForService(WaitingServiceTracker.FIVE_MINUTES);
93         final RIBImplRuntimeRegistration register = getRootRuntimeBeanRegistratorWrapper().register(rib.getRenderStats());
94
95         return Reflection.newProxy(AutoCloseableRIB.class, new AbstractInvocationHandler() {
96             @Override
97             protected Object handleInvocation(final Object proxy, final Method method, final Object[] args) throws Throwable {
98                 if (method.getName().equals("close")) {
99                     bgpDeployer.onGlobalRemoved(bgpIID);
100                     register.close();
101                     bgpDeployerTracker.close();
102                     ribTracker.close();
103                     return null;
104                 } else {
105                     return method.invoke(rib, args);
106                 }
107             }
108         });
109     }
110
111     public void setBundleContext(final BundleContext bundleContext) {
112         this.bundleContext = bundleContext;
113     }
114
115     private Map<TablesKey, PathSelectionMode> mapBestPathSelectionStrategyByFamily(final List<BGPBestPathSelection> bestPathSelectionDependency) {
116         return Collections.unmodifiableMap(bestPathSelectionDependency.stream().collect(
117                 Collectors.toMap(st -> new TablesKey(st.getAfi(), st.getSafi()), BGPBestPathSelection::getStrategy)));
118     }
119
120     private static interface AutoCloseableRIB extends RIB, AutoCloseable {
121     }
122
123
124 }