BUG-5511: Support Route Refresh operation from BGP
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / RIB.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 package org.opendaylight.protocol.bgp.rib.impl.spi;
9
10 import com.google.common.base.Optional;
11 import java.util.Set;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.controller.md.sal.common.api.data.TransactionChainListener;
14 import org.opendaylight.controller.md.sal.dom.api.DOMTransactionChain;
15 import org.opendaylight.protocol.bgp.openconfig.spi.BGPOpenConfigProvider;
16 import org.opendaylight.protocol.bgp.rib.RibReference;
17 import org.opendaylight.protocol.bgp.rib.spi.CacheDisconnectedPeers;
18 import org.opendaylight.protocol.bgp.rib.spi.RIBExtensionConsumerContext;
19 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.AsNumber;
20 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv4Address;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev130919.BgpTableType;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev130925.rib.TablesKey;
23 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
24
25 /**
26  * Internal reference to a RIB instance.
27  */
28 public interface RIB  extends RibReference {
29     AsNumber getLocalAs();
30
31     Ipv4Address getBgpIdentifier();
32
33     /**
34      * Return the set of table identifiers which are accepted and advertised
35      * by this RIB instance.
36      *
37      * @return A set of identifiers.
38      */
39     @Nonnull Set<? extends BgpTableType> getLocalTables();
40
41     BGPDispatcher getDispatcher();
42
43     long getRoutesCount(TablesKey key);
44
45     /**
46      * Allocate a new transaction chain for use with a peer.
47      *
48      * @param listener {@link TransactionChainListener} handling recovery
49      * @return A new transaction chain.
50      */
51     DOMTransactionChain createPeerChain(TransactionChainListener listener);
52
53     /**
54      * Return the RIB extensions available to the RIB instance.
55      *
56      * @return RIB extensions handle.
57      */
58     RIBExtensionConsumerContext getRibExtensions();
59
60     /**
61      * Return the RIB extensions available to the RIB instance
62      * with additional RIB specific context such as
63      * translation between DOM and Binding.
64      *
65      * @return RIB extensions handle.
66      */
67     RIBSupportContextRegistry getRibSupportContext();
68
69     /**
70      * Return YangInstanceIdentifier of BGP Rib with its RibId.
71      *
72      * @return YangInstanceIdentifier
73      */
74     YangInstanceIdentifier getYangRibId();
75
76     CodecsRegistry getCodecsRegistry();
77
78     /**
79      * Optionally returns OpenConfigProvider, which brings an access to
80      * BGP OpenConfig mappers.
81      * @return An Optional of BGPOpenConfigProvider or Absent if provider is
82      * not available.
83      */
84     Optional<BGPOpenConfigProvider> getOpenConfigProvider();
85
86     /**
87      * Return cache disconnected peers which allows us to avoid update
88      * DS from a peer already disconnected, when multiple peers are disconnected
89      * at the same time and their own exportPolicy has not been updated yet.
90      * @return
91      */
92     CacheDisconnectedPeers getCacheDisconnectedPeers();
93 }