blob: c768820f389f53a1e46f9dbff6b31b1daec505e4 [file] [log] [blame]
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -08003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent.constraint;
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080017
Brian O'Connor9476fa12015-06-25 15:17:17 -040018import com.google.common.annotations.Beta;
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080019import com.google.common.base.MoreObjects;
20import com.google.common.collect.ImmutableList;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.net.DeviceId;
22import org.onosproject.net.Link;
23import org.onosproject.net.Path;
24import org.onosproject.net.intent.Constraint;
Sho SHIMIZUb1681bd2016-02-22 12:47:50 -080025import org.onosproject.net.intent.ResourceContext;
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080026
Sho SHIMIZUcd4bac82014-11-11 17:07:25 -080027import java.util.Collections;
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080028import java.util.LinkedList;
29import java.util.List;
30import java.util.Objects;
31
32import static com.google.common.base.Preconditions.checkArgument;
33import static com.google.common.base.Preconditions.checkNotNull;
34
35/**
36 * Constraint that evaluates elements passed through in order.
37 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040038@Beta
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080039public class WaypointConstraint implements Constraint {
40
Sho SHIMIZUfa2cd3b2014-11-11 14:10:32 -080041 private final List<DeviceId> waypoints;
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080042
43 /**
44 * Creates a new waypoint constraint.
45 *
46 * @param waypoints waypoints
47 */
Sho SHIMIZUfa2cd3b2014-11-11 14:10:32 -080048 public WaypointConstraint(DeviceId... waypoints) {
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080049 checkNotNull(waypoints, "waypoints cannot be null");
50 checkArgument(waypoints.length > 0, "length of waypoints should be more than 0");
51 this.waypoints = ImmutableList.copyOf(waypoints);
52 }
53
Sho SHIMIZUcd4bac82014-11-11 17:07:25 -080054 // Constructor for serialization
55 private WaypointConstraint() {
56 this.waypoints = Collections.emptyList();
57 }
58
Sho SHIMIZUfa2cd3b2014-11-11 14:10:32 -080059 public List<DeviceId> waypoints() {
Sho SHIMIZU14ccab52014-11-06 11:11:40 -080060 return waypoints;
61 }
62
Sho SHIMIZUb1681bd2016-02-22 12:47:50 -080063 // doesn't use LinkResourceService
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080064 @Override
Sho SHIMIZUb1681bd2016-02-22 12:47:50 -080065 public double cost(Link link, ResourceContext context) {
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080066 // Always consider the number of hops
67 return 1;
68 }
69
Sho SHIMIZUb1681bd2016-02-22 12:47:50 -080070 // doesn't use LinkResourceService
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080071 @Override
Sho SHIMIZUb1681bd2016-02-22 12:47:50 -080072 public boolean validate(Path path, ResourceContext context) {
73 // explicitly call a method not depending on LinkResourceService
74 return validate(path);
75 }
76
77 private boolean validate(Path path) {
Sho SHIMIZUfa2cd3b2014-11-11 14:10:32 -080078 LinkedList<DeviceId> waypoints = new LinkedList<>(this.waypoints);
79 DeviceId current = waypoints.poll();
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -080080 // This is safe because Path class ensures the number of links are more than 0
81 Link firstLink = path.links().get(0);
82 if (firstLink.src().elementId().equals(current)) {
83 current = waypoints.poll();
84 }
85
86 for (Link link : path.links()) {
87 if (link.dst().elementId().equals(current)) {
88 current = waypoints.poll();
89 // Empty waypoints means passing through all waypoints in the specified order
90 if (current == null) {
91 return true;
92 }
93 }
94 }
95
96 return false;
97 }
98
99 @Override
100 public int hashCode() {
HIGUCHI Yutaca9cc8e2015-10-29 23:26:51 -0700101 return waypoints.hashCode();
Sho SHIMIZU0e51fe52014-11-05 12:04:23 -0800102 }
103
104 @Override
105 public boolean equals(Object obj) {
106 if (this == obj) {
107 return true;
108 }
109
110 if (!(obj instanceof WaypointConstraint)) {
111 return false;
112 }
113
114 final WaypointConstraint that = (WaypointConstraint) obj;
115 return Objects.equals(this.waypoints, that.waypoints);
116 }
117
118 @Override
119 public String toString() {
120 return MoreObjects.toStringHelper(this)
121 .add("waypoints", waypoints)
122 .toString();
123 }
124}