Start using Codecs and CodecsRegistry instead of RIBSupportContext.
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / RIB.java
index 96ac30dfcb8fece25c2d96e6505cf41a1bc111af..83fc0931d318e47b4628f004259ee3b883c8d0dd 100644 (file)
@@ -7,29 +7,72 @@
  */
 package org.opendaylight.protocol.bgp.rib.impl.spi;
 
-import java.util.List;
-
-import org.opendaylight.protocol.bgp.rib.spi.Peer;
+import java.util.Set;
+import javax.annotation.Nonnull;
+import org.opendaylight.controller.md.sal.common.api.data.TransactionChainListener;
+import org.opendaylight.controller.md.sal.dom.api.DOMTransactionChain;
+import org.opendaylight.protocol.bgp.rib.spi.RIBExtensionConsumerContext;
 import org.opendaylight.protocol.framework.ReconnectStrategyFactory;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.AsNumber;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv4Address;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.Update;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev130919.BgpTableType;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev130925.rib.TablesKey;
+import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 
 /**
  * Internal reference to a RIB instance.
  */
 public interface RIB {
-       AsNumber getLocalAs();
-       Ipv4Address getBgpIdentifier();
-       List<? extends BgpTableType> getLocalTables();
+    AsNumber getLocalAs();
+
+    Ipv4Address getBgpIdentifier();
+
+    /**
+     * Return the set of table identifiers which are accepted and advertised
+     * by this RIB instance.
+     *
+     * @return A set of identifiers.
+     */
+    @Nonnull Set<? extends BgpTableType> getLocalTables();
+
+    BGPDispatcher getDispatcher();
+
+    ReconnectStrategyFactory getTcpStrategyFactory();
+
+    ReconnectStrategyFactory getSessionStrategyFactory();
+
+    long getRoutesCount(TablesKey key);
+
+    /**
+     * Allocate a new transaction chain for use with a peer.
+     *
+     * @param listener {@link TransactionChainListener} handling recovery
+     * @return A new transaction chain.
+     */
+    DOMTransactionChain createPeerChain(TransactionChainListener listener);
+
+    /**
+     * Return the RIB extensions available to the RIB instance.
+     *
+     * @return RIB extensions handle.
+     */
+    RIBExtensionConsumerContext getRibExtensions();
+
+    /**
+     * Return the RIB extensions available to the RIB instance
+     * with additional RIB specific context such as
+     * translation between DOM and Binding.
+     *
+     * @return RIB extensions handle.
+     */
+    RIBSupportContextRegistry getRibSupportContext();
 
-       void initTable(Peer bgpPeer, TablesKey key);
-       void clearTable(Peer bgpPeer, TablesKey key);
-       void updateTables(Peer bgpPeer, Update message);
+    /**
+     * Return YangInstanceIdentifier of BGP Rib with its RibId.
+     *
+     * @return YangInstanceIdentifier
+     */
+    YangInstanceIdentifier getYangRibId();
 
-       BGPDispatcher getDispatcher();
-       ReconnectStrategyFactory getTcpStrategyFactory();
-       ReconnectStrategyFactory getSessionStrategyFactory();
+    CodecsRegistry getCodecsRegistry();
 }