blob: 000294891ab6a8d0b6056427114fc047a80d28e6 [file] [log] [blame]
Charles Chan6c624992017-08-18 17:11:34 -07001/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.segmentrouting;
18
19import org.onlab.packet.IpPrefix;
20import org.onosproject.net.ConnectPoint;
Charles Chand66d6712018-03-29 16:03:41 -070021import org.onosproject.net.DeviceId;
Charles Chan6c624992017-08-18 17:11:34 -070022
23import java.util.Map;
24import java.util.Set;
25
26/**
27 * Mock Default Routing Handler.
28 */
29public class MockDefaultRoutingHandler extends DefaultRoutingHandler {
30 private Map<ConnectPoint, Set<IpPrefix>> subnetTable;
Charles Chanc4d68882018-03-15 16:41:10 -070031 private Map<MockRoutingTableKey, MockRoutingTableValue> routingTable;
Charles Chan6c624992017-08-18 17:11:34 -070032
33 MockDefaultRoutingHandler(SegmentRoutingManager srManager,
Charles Chanc4d68882018-03-15 16:41:10 -070034 Map<ConnectPoint, Set<IpPrefix>> subnetTable,
35 Map<MockRoutingTableKey, MockRoutingTableValue> routingTable) {
Charles Chan6c624992017-08-18 17:11:34 -070036 super(srManager);
37 this.subnetTable = subnetTable;
Charles Chanc4d68882018-03-15 16:41:10 -070038 this.routingTable = routingTable;
Charles Chan6c624992017-08-18 17:11:34 -070039 }
40
41 @Override
42 protected void populateSubnet(Set<ConnectPoint> cpts, Set<IpPrefix> subnets) {
Charles Chan910be6a2017-08-23 14:46:43 -070043 subnetTable.forEach((k, v) -> {
44 if (!cpts.contains(k)) {
45 subnetTable.get(k).removeAll(subnets);
46 if (subnetTable.get(k).isEmpty()) {
47 subnetTable.remove(k);
48 }
49 }
50 });
51
Charles Chan6c624992017-08-18 17:11:34 -070052 cpts.forEach(cpt -> subnetTable.put(cpt, subnets));
53 }
54
55 @Override
56 protected boolean revokeSubnet(Set<IpPrefix> subnets) {
57 for (Map.Entry<ConnectPoint, Set<IpPrefix>> entry : subnetTable.entrySet()) {
58 entry.getValue().removeAll(subnets);
59 if (entry.getValue().isEmpty()) {
60 subnetTable.remove(entry.getKey());
61 }
62 }
Charles Chanc4d68882018-03-15 16:41:10 -070063 routingTable.entrySet().removeIf(e -> subnets.contains(e.getKey().ipPrefix));
Charles Chan6c624992017-08-18 17:11:34 -070064 return true;
65 }
Charles Chand66d6712018-03-29 16:03:41 -070066
67 @Override
68 protected boolean shouldProgram(DeviceId deviceId) {
69 return true;
70 }
Charles Chan6c624992017-08-18 17:11:34 -070071}