blob: 7b1411a46fbfc6b3fd93955564fd82459a23e777 [file] [log] [blame]
Sho SHIMIZU1df945b2014-11-06 18:36:11 -08001/*
2 * Copyright 2014 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.onlab.onos.net.intent.constraint;
17
18import com.google.common.base.MoreObjects;
19import org.onlab.onos.net.Link;
20import org.onlab.onos.net.Path;
21import org.onlab.onos.net.intent.Constraint;
22import org.onlab.onos.net.resource.LinkResourceService;
23
24import java.time.Duration;
25import java.time.temporal.ChronoUnit;
26import java.util.Objects;
27
Sho SHIMIZUfe129db2014-11-11 14:24:51 -080028import static org.onlab.onos.net.AnnotationKeys.LATENCY;
Sho SHIMIZU97a64cd2014-11-11 16:31:21 -080029import static org.onlab.onos.net.AnnotationKeys.getAnnotatedValue;
Sho SHIMIZUfe129db2014-11-11 14:24:51 -080030
Sho SHIMIZU1df945b2014-11-06 18:36:11 -080031/**
32 * Constraint that evaluates the latency through a path.
33 */
34public class LatencyConstraint implements Constraint {
35
Sho SHIMIZU1df945b2014-11-06 18:36:11 -080036 private final Duration latency;
37
38 /**
39 * Creates a new constraint to keep under specified latency through a path.
40 * @param latency latency to be kept
41 */
42 public LatencyConstraint(Duration latency) {
43 this.latency = latency;
44 }
45
Sho SHIMIZU412a2392014-11-10 18:11:48 -080046 public Duration latency() {
Sho SHIMIZU1df945b2014-11-06 18:36:11 -080047 return latency;
48 }
49
50 @Override
51 public double cost(Link link, LinkResourceService resourceService) {
Sho SHIMIZU97a64cd2014-11-11 16:31:21 -080052 return getAnnotatedValue(link, LATENCY);
Sho SHIMIZU1df945b2014-11-06 18:36:11 -080053 }
54
55 @Override
56 public boolean validate(Path path, LinkResourceService resourceService) {
57 double pathLatency = path.links().stream().mapToDouble(link -> cost(link, resourceService)).sum();
58 return Duration.of((long) pathLatency, ChronoUnit.MICROS).compareTo(latency) <= 0;
59 }
60
61 @Override
62 public int hashCode() {
63 return Objects.hash(latency);
64 }
65
66 @Override
67 public boolean equals(Object obj) {
68 if (this == obj) {
69 return true;
70 }
71
72 if (!(obj instanceof LatencyConstraint)) {
73 return false;
74 }
75
76 final LatencyConstraint that = (LatencyConstraint) obj;
77 return Objects.equals(this.latency, that.latency);
78 }
79
80 @Override
81 public String toString() {
82 return MoreObjects.toStringHelper(this)
83 .add("latency", latency)
84 .toString();
85 }
86}