blob: 6cea3909c6d143a4261a76b245b42580d956e499 [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;
pierventre37dcf4c2021-09-16 18:43:06 +020032 private Set<DeviceId> ledDevices;
Charles Chan6c624992017-08-18 17:11:34 -070033
34 MockDefaultRoutingHandler(SegmentRoutingManager srManager,
Charles Chanc4d68882018-03-15 16:41:10 -070035 Map<ConnectPoint, Set<IpPrefix>> subnetTable,
pierventre37dcf4c2021-09-16 18:43:06 +020036 Map<MockRoutingTableKey, MockRoutingTableValue> routingTable,
37 Set<DeviceId> ledDevices) {
Charles Chan6c624992017-08-18 17:11:34 -070038 super(srManager);
39 this.subnetTable = subnetTable;
Charles Chanc4d68882018-03-15 16:41:10 -070040 this.routingTable = routingTable;
pierventre37dcf4c2021-09-16 18:43:06 +020041 this.ledDevices = ledDevices;
Charles Chan6c624992017-08-18 17:11:34 -070042 }
43
44 @Override
45 protected void populateSubnet(Set<ConnectPoint> cpts, Set<IpPrefix> subnets) {
Charles Chan910be6a2017-08-23 14:46:43 -070046 subnetTable.forEach((k, v) -> {
47 if (!cpts.contains(k)) {
48 subnetTable.get(k).removeAll(subnets);
49 if (subnetTable.get(k).isEmpty()) {
50 subnetTable.remove(k);
51 }
52 }
53 });
54
Charles Chan6c624992017-08-18 17:11:34 -070055 cpts.forEach(cpt -> subnetTable.put(cpt, subnets));
56 }
57
58 @Override
pierventre0dcbf0e2021-10-11 13:07:09 +020059 protected boolean revokeSubnet(Set<IpPrefix> subnets, DeviceId deviceId) {
Charles Chan6c624992017-08-18 17:11:34 -070060 for (Map.Entry<ConnectPoint, Set<IpPrefix>> entry : subnetTable.entrySet()) {
61 entry.getValue().removeAll(subnets);
62 if (entry.getValue().isEmpty()) {
63 subnetTable.remove(entry.getKey());
64 }
65 }
Charles Chanc4d68882018-03-15 16:41:10 -070066 routingTable.entrySet().removeIf(e -> subnets.contains(e.getKey().ipPrefix));
Charles Chan6c624992017-08-18 17:11:34 -070067 return true;
68 }
Charles Chand66d6712018-03-29 16:03:41 -070069
70 @Override
pierventre37dcf4c2021-09-16 18:43:06 +020071 public boolean shouldProgram(DeviceId deviceId) {
72 return ledDevices.contains(deviceId);
Charles Chand66d6712018-03-29 16:03:41 -070073 }
Charles Chan6c624992017-08-18 17:11:34 -070074}