blob: 11dc130253a3741a2adb9bb25511ee7b871c4af7 [file] [log] [blame]
Thomas Vachuskac40d4632015-04-09 16:55:03 -07001/*
2 * Copyright 2015 Open Networking Laboratory
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 */
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);
28 infrastructurePorts = 3;
29 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() {
40 for (int i = 0, n = deviceCount - 2; i < n; i++) {
41 createLink(i, i + 1);
42 }
43 int middle = (deviceCount - 1) / 2;
44 int alternate = deviceCount - 1;
45 createLink(middle - 1, alternate);
46 createLink(middle, alternate);
47 }
48
49 @Override
50 protected void createHosts() {
51 createHosts(deviceIds.get(0), infrastructurePorts);
52 createHosts(deviceIds.get(deviceCount - 2), infrastructurePorts);
53 }
54
55}