25c3e6dc1a35b20ea95978347115e16f54d06da3
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / TableContext.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.rib.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import javax.annotation.concurrent.NotThreadSafe;
13 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
14 import org.opendaylight.controller.md.sal.dom.api.DOMDataWriteTransaction;
15 import org.opendaylight.protocol.bgp.rib.impl.spi.RIBSupportContext;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev171207.path.attributes.Attributes;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev171207.update.attributes.MpReachNlri;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev171207.update.attributes.MpUnreachNlri;
19 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
20
21 /**
22  * A context for a single RIB table instance. It is always bound to a particular {@link AdjRibInWriter}.
23  *
24  * FIXME: need a better name once we local-rib and rib-out contexts
25  */
26 @NotThreadSafe
27 final class TableContext {
28     private final YangInstanceIdentifier tableId;
29     private final RIBSupportContext tableSupport;
30
31     TableContext(final RIBSupportContext tableSupport, final YangInstanceIdentifier tableId) {
32         this.tableSupport = requireNonNull(tableSupport);
33         this.tableId = requireNonNull(tableId);
34     }
35
36     YangInstanceIdentifier getTableId() {
37         return this.tableId;
38     }
39
40
41     void createEmptyTableStructure(final DOMDataWriteTransaction tx) {
42         this.tableSupport.createEmptyTableStructure(tx, this.tableId);
43     }
44
45     void removeTable(final DOMDataWriteTransaction tx) {
46         tx.delete(LogicalDatastoreType.OPERATIONAL, this.tableId);
47     }
48
49     void writeRoutes(final DOMDataWriteTransaction tx, final MpReachNlri nlri, final Attributes attributes) {
50         this.tableSupport.writeRoutes(tx, this.tableId, nlri, attributes);
51     }
52
53     void removeRoutes(final DOMDataWriteTransaction tx, final MpUnreachNlri nlri) {
54         this.tableSupport.deleteRoutes(tx, this.tableId, nlri);
55     }
56 }