blob: 1f549a63d3fdc189001d8aad4d7d5d83a8ad894a [file] [log] [blame]
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -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 */
16
17package org.onosproject.net;
18
19import org.onosproject.net.provider.ProviderId;
20
21import java.util.List;
22import java.util.Objects;
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -070023
24/**
25 * Default implementation of a network disjoint path pair.
26 */
27public class DefaultDisjointPath extends DefaultPath implements DisjointPath {
28
29 private final DefaultPath path1;
30 private final DefaultPath path2;
31
32 boolean usingPath1 = true;
33
34 /**
35 * Creates a disjoint path pair from two default paths.
36 *
37 * @param providerId provider identity
38 * @param path1 primary path
39 * @param path2 backup path
40 */
41 public DefaultDisjointPath(ProviderId providerId, DefaultPath path1, DefaultPath path2) {
Yuta HIGUCHIdf970132016-08-09 11:18:30 -070042 // Note: cost passed to super will never be used
43 super(providerId, path1.links(), path1.cost());
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -070044 this.path1 = path1;
45 this.path2 = path2;
46 }
47
48 @Override
49 public List<Link> links() {
50 if (usingPath1) {
51 return path1.links();
52 } else {
53 return path2.links();
54 }
55 }
56
57 @Override
58 public double cost() {
59 if (usingPath1) {
60 return path1.cost();
61 }
62 return path2.cost();
63 }
64
65 @Override
66 public Path primary() {
67 return path1;
68 }
69
70 @Override
71 public Path backup() {
72 return path2;
73 }
74
75 @Override
76 public int hashCode() {
Yuta HIGUCHIdf970132016-08-09 11:18:30 -070077 // Note: DisjointPath with primary and secondary swapped
78 // must result in same hashCode
79 return Objects.hash(Objects.hashCode(path1) + Objects.hashCode(path2), src(), dst());
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -070080 }
81
82 @Override
83 public boolean equals(Object obj) {
84 if (this == obj) {
85 return true;
86 }
87 if (obj instanceof DefaultDisjointPath) {
88 final DefaultDisjointPath other = (DefaultDisjointPath) obj;
Yuta HIGUCHIdf970132016-08-09 11:18:30 -070089 return (Objects.equals(this.path1, other.path1) && Objects.equals(this.path2, other.path2)) ||
90 (Objects.equals(this.path1, other.path2) && Objects.equals(this.path2, other.path1));
Nikhil Cheerla1cf0f9a2015-07-09 12:26:48 -070091 }
92 return false;
93 }
94
95 @Override
96 public boolean useBackup() {
97 if (path2 == null || path2.links() == null) {
98 return false;
99 }
100 usingPath1 = !usingPath1;
101 return true;
102 }
103}