blob: 8ccdddc24dbba7ef09508ab20e50beb935fdc17c [file] [log] [blame]
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuskac40d4632015-04-09 16:55:03 -07003 *
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 */
16package org.onosproject.provider.nil;
17
18import static com.google.common.base.Preconditions.checkArgument;
19
20/**
21 * Re-routable linear topology simulator with an alternate path in the middle.
22 */
23public class RerouteTopologySimulator extends LinearTopologySimulator {
24
25 @Override
26 protected void processTopoShape(String shape) {
27 super.processTopoShape(shape);
Thomas Vachuskaf651cc92015-04-14 16:11:44 -070028 infrastructurePorts = 5;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070029 deviceCount = (topoShape.length == 1) ? deviceCount : Integer.parseInt(topoShape[1]);
30 }
31
32 @Override
33 public void setUpTopology() {
34 checkArgument(deviceCount > 2, "There must be at least 3 devices");
35 super.setUpTopology();
36 }
37
38 @Override
39 protected void createLinks() {
Thomas Vachuskaf651cc92015-04-14 16:11:44 -070040 int portOffset = 1;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070041 for (int i = 0, n = deviceCount - 2; i < n; i++) {
Thomas Vachuskaf651cc92015-04-14 16:11:44 -070042 createLink(i, i + 1, portOffset, 1);
43 portOffset = 2;
Thomas Vachuskac40d4632015-04-09 16:55:03 -070044 }
45 int middle = (deviceCount - 1) / 2;
46 int alternate = deviceCount - 1;
Thomas Vachuskaf651cc92015-04-14 16:11:44 -070047 createLink(middle - 1, alternate, 3, 1);
48 createLink(middle, alternate, 3, 2);
Thomas Vachuskac40d4632015-04-09 16:55:03 -070049 }
50
51 @Override
52 protected void createHosts() {
53 createHosts(deviceIds.get(0), infrastructurePorts);
54 createHosts(deviceIds.get(deviceCount - 2), infrastructurePorts);
55 }
56
57}