blob: d31be2fbac79ad841054805863ff0914d54e827d [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;
21
22import java.util.Map;
23import java.util.Set;
24
25/**
26 * Mock Default Routing Handler.
27 */
28public class MockDefaultRoutingHandler extends DefaultRoutingHandler {
29 private Map<ConnectPoint, Set<IpPrefix>> subnetTable;
Charles Chanc4d68882018-03-15 16:41:10 -070030 private Map<MockRoutingTableKey, MockRoutingTableValue> routingTable;
Charles Chan6c624992017-08-18 17:11:34 -070031
32 MockDefaultRoutingHandler(SegmentRoutingManager srManager,
Charles Chanc4d68882018-03-15 16:41:10 -070033 Map<ConnectPoint, Set<IpPrefix>> subnetTable,
34 Map<MockRoutingTableKey, MockRoutingTableValue> routingTable) {
Charles Chan6c624992017-08-18 17:11:34 -070035 super(srManager);
36 this.subnetTable = subnetTable;
Charles Chanc4d68882018-03-15 16:41:10 -070037 this.routingTable = routingTable;
Charles Chan6c624992017-08-18 17:11:34 -070038 }
39
40 @Override
41 protected void populateSubnet(Set<ConnectPoint> cpts, Set<IpPrefix> subnets) {
Charles Chan910be6a2017-08-23 14:46:43 -070042 subnetTable.forEach((k, v) -> {
43 if (!cpts.contains(k)) {
44 subnetTable.get(k).removeAll(subnets);
45 if (subnetTable.get(k).isEmpty()) {
46 subnetTable.remove(k);
47 }
48 }
49 });
50
Charles Chan6c624992017-08-18 17:11:34 -070051 cpts.forEach(cpt -> subnetTable.put(cpt, subnets));
52 }
53
54 @Override
55 protected boolean revokeSubnet(Set<IpPrefix> subnets) {
56 for (Map.Entry<ConnectPoint, Set<IpPrefix>> entry : subnetTable.entrySet()) {
57 entry.getValue().removeAll(subnets);
58 if (entry.getValue().isEmpty()) {
59 subnetTable.remove(entry.getKey());
60 }
61 }
Charles Chanc4d68882018-03-15 16:41:10 -070062 routingTable.entrySet().removeIf(e -> subnets.contains(e.getKey().ipPrefix));
Charles Chan6c624992017-08-18 17:11:34 -070063 return true;
64 }
65}