Reduce number of parameters for path selection
[bgpcep.git] / bgp / path-selection-mode / src / main / java / org / opendaylight / protocol / bgp / mode / impl / add / n / paths / ComplexRouteEntry.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.mode.impl.add.n.paths;
9
10 import com.google.common.primitives.UnsignedInteger;
11 import org.opendaylight.protocol.bgp.mode.impl.add.AddPathBestPath;
12 import org.opendaylight.protocol.bgp.mode.impl.add.OffsetMap;
13 import org.opendaylight.protocol.bgp.mode.impl.add.RouteKey;
14 import org.opendaylight.protocol.bgp.mode.spi.RouteEntryUtil;
15 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
16 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
17 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
18 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
19
20 final class ComplexRouteEntry extends AbstractNPathsRouteEntry {
21     private static final MapEntryNode[] EMPTY_VALUES = new MapEntryNode[0];
22     private MapEntryNode[] values = EMPTY_VALUES;
23
24     ComplexRouteEntry(final Long npaths) {
25         super(npaths);
26     }
27
28     @Override
29     public boolean removeRoute(final UnsignedInteger routerId, final Long remotePathId) {
30         final RouteKey key = new RouteKey(routerId, remotePathId);
31         final OffsetMap map = getOffsets();
32         final int offset = map.offsetOf(key);
33         this.values = map.removeValue(this.values, offset);
34         return removeRoute(key, offset);
35     }
36
37     @Override
38     public MapEntryNode createValue(final NodeIdentifierWithPredicates routeId, final AddPathBestPath path) {
39         final OffsetMap map = getOffsets();
40         final MapEntryNode mapValues = map.getValue(this.values, map.offsetOf(path.getRouteKey()));
41         return RouteEntryUtil.createComplexRouteValue(routeId, path, mapValues);
42     }
43
44     @Override
45     public int addRoute(final UnsignedInteger routerId, final Long remotePathId,
46             final NodeIdentifier attributesIdentifier, final NormalizedNode<?, ?> data) {
47         final OffsetMap oldMap = getOffsets();
48         final int offset = addRoute(new RouteKey(routerId, remotePathId), attributesIdentifier, data);
49         final OffsetMap newMap = getOffsets();
50
51         if (!newMap.equals(oldMap)) {
52             this.values = newMap.expand(oldMap, this.values, offset);
53         }
54
55         newMap.setValue(this.values, offset, data);
56         return offset;
57     }
58 }