blob: 1b4a2600dde22531e8ad2c4b49f2ce134f6a08a9 [file] [log] [blame]
Thomas Vachuskaedc944c2014-11-04 15:42:25 -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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent.constraint;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080017
Brian O'Connor9476fa12015-06-25 15:17:17 -040018import com.google.common.annotations.Beta;
HIGUCHI Yuta501c4652015-10-29 14:21:48 -070019
Sho SHIMIZUa88db492015-11-23 13:21:04 -080020import org.onlab.util.Bandwidth;
HIGUCHI Yuta501c4652015-10-29 14:21:48 -070021import org.onlab.util.DataRateUnit;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.net.Link;
Brian O'Connor6de2e202015-05-21 14:30:41 -070023import org.onosproject.net.resource.link.BandwidthResourceRequest;
24import org.onosproject.net.resource.link.LinkResourceService;
Brian O'Connorabafb502014-12-02 22:26:20 -080025import org.onosproject.net.resource.ResourceRequest;
26import org.onosproject.net.resource.ResourceType;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080027
28import java.util.Objects;
29
30import static com.google.common.base.MoreObjects.toStringHelper;
31import static com.google.common.base.Preconditions.checkNotNull;
32
33/**
34 * Constraint that evaluates links based on available bandwidths.
35 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040036@Beta
HIGUCHI Yuta501c4652015-10-29 14:21:48 -070037public final class BandwidthConstraint extends BooleanConstraint {
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080038
Sho SHIMIZUa88db492015-11-23 13:21:04 -080039 private final Bandwidth bandwidth;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080040
41 /**
42 * Creates a new bandwidth constraint.
43 *
44 * @param bandwidth required bandwidth
45 */
Sho SHIMIZUa88db492015-11-23 13:21:04 -080046 public BandwidthConstraint(Bandwidth bandwidth) {
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080047 this.bandwidth = checkNotNull(bandwidth, "Bandwidth cannot be null");
48 }
49
HIGUCHI Yuta501c4652015-10-29 14:21:48 -070050 /**
51 * Creates a new bandwidth constraint.
52 *
53 * @param v required amount of bandwidth
54 * @param unit {@link DataRateUnit} of {@code v}
55 * @return {@link BandwidthConstraint} instance with given bandwidth requirement
56 */
57 public static BandwidthConstraint of(double v, DataRateUnit unit) {
Sho SHIMIZUa88db492015-11-23 13:21:04 -080058 return new BandwidthConstraint(Bandwidth.of(v, unit));
HIGUCHI Yuta501c4652015-10-29 14:21:48 -070059 }
60
Thomas Vachuska7d0032b2014-11-04 17:39:57 -080061 // Constructor for serialization
62 private BandwidthConstraint() {
63 this.bandwidth = null;
64 }
65
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080066 @Override
67 public boolean isValid(Link link, LinkResourceService resourceService) {
68 for (ResourceRequest request : resourceService.getAvailableResources(link)) {
69 if (request.type() == ResourceType.BANDWIDTH) {
70 BandwidthResourceRequest brr = (BandwidthResourceRequest) request;
Sho SHIMIZUa88db492015-11-23 13:21:04 -080071 if (brr.bandwidth().toDouble() >= bandwidth.bps()) {
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080072 return true;
73 }
74 }
75 }
76 return false;
77 }
78
79 /**
80 * Returns the bandwidth required by this constraint.
81 *
82 * @return required bandwidth
83 */
Sho SHIMIZUa88db492015-11-23 13:21:04 -080084 public Bandwidth bandwidth() {
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080085 return bandwidth;
86 }
87
88 @Override
89 public int hashCode() {
HIGUCHI Yutaca9cc8e2015-10-29 23:26:51 -070090 return bandwidth.hashCode();
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080091 }
92
93 @Override
94 public boolean equals(Object obj) {
95 if (this == obj) {
96 return true;
97 }
98 if (obj == null || getClass() != obj.getClass()) {
99 return false;
100 }
101 final BandwidthConstraint other = (BandwidthConstraint) obj;
102 return Objects.equals(this.bandwidth, other.bandwidth);
103 }
104
105 @Override
106 public String toString() {
107 return toStringHelper(this).add("bandwidth", bandwidth).toString();
108 }
109}