Merge "BUG-46: follow-up implementation"
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPPeer.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;
9
10 import java.util.Set;
11
12 import org.opendaylight.protocol.bgp.parser.BGPSession;
13 import org.opendaylight.protocol.bgp.parser.BGPSessionListener;
14 import org.opendaylight.protocol.bgp.parser.BGPTerminationReason;
15 import org.opendaylight.protocol.bgp.rib.spi.Peer;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.Update;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev130918.BgpTableType;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev130925.rib.TablesKey;
19 import org.opendaylight.yangtools.yang.binding.Notification;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 import com.google.common.base.Objects;
24 import com.google.common.base.Objects.ToStringHelper;
25 import com.google.common.base.Preconditions;
26
27 /**
28  * Class representing a peer. We have a single instance for each peer, which provides translation from BGP events into
29  * RIB actions.
30  */
31 public final class BGPPeer implements BGPSessionListener, Peer {
32         private static final Logger logger = LoggerFactory.getLogger(BGPPeer.class);
33         private Set<TablesKey> tables;
34         private final String name;
35         private final RIBImpl rib;
36
37         public BGPPeer(final RIBImpl rib, final String name) {
38                 this.rib = Preconditions.checkNotNull(rib);
39                 this.name = Preconditions.checkNotNull(name);
40         }
41
42         @Override
43         public void onMessage(final BGPSession session, final Notification message) {
44                 if (message instanceof Update) {
45                         this.rib.updateTables(this, (Update)message);
46                 } else {
47                         logger.info("Ignoring unhandled message class " + message.getClass());
48                 }
49         }
50
51         @Override
52         public void onSessionUp(final BGPSession session) {
53                 logger.info("Session with peer {} went up with tables: {}", this.name, session.getAdvertisedTableTypes());
54
55                 for (BgpTableType t : session.getAdvertisedTableTypes()) {
56                         tables.add(new TablesKey(t.getAfi(), t.getSafi()));
57                 }
58         }
59
60         @Override
61         public void onSessionDown(final BGPSession session, final Exception e) {
62                 // FIXME: support graceful restart
63                 for (final TablesKey key : this.tables) {
64                         this.rib.clearTable(this, key);
65                 }
66
67                 tables.clear();
68         }
69
70         @Override
71         public void onSessionTerminated(final BGPSession session, final BGPTerminationReason cause) {
72                 logger.info("Session with peer {} terminated: {}", this.name, cause);
73         }
74
75         @Override
76         public final String toString() {
77                 return addToStringAttributes(Objects.toStringHelper(this)).toString();
78         }
79
80         protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) {
81                 toStringHelper.add("name", this.name);
82                 toStringHelper.add("tables", this.tables);
83                 return toStringHelper;
84         }
85 }