blob: 4843877d8f97b40fc23fe04aba96655eccfa5c56 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
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;
weibitf32383b2014-10-22 10:17:31 -070017
Jonathan Hart23b5a762015-01-26 14:47:33 -080018import com.google.common.base.MoreObjects;
19import com.google.common.collect.ImmutableSet;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.core.ApplicationId;
21import org.onosproject.net.ConnectPoint;
22import org.onosproject.net.Link;
Brian O'Connorabafb502014-12-02 22:26:20 -080023import org.onosproject.net.Path;
weibitf32383b2014-10-22 10:17:31 -070024
Jonathan Hart23b5a762015-01-26 14:47:33 -080025import java.util.Collection;
weibitf32383b2014-10-22 10:17:31 -070026
Ray Milkeyebc5d222015-03-18 15:45:36 -070027import static com.google.common.base.Preconditions.checkNotNull;
28
Ray Milkeybd4f0112015-03-02 17:07:09 -080029public final class OpticalPathIntent extends Intent {
Brian O'Connor086724e2014-10-23 15:47:32 -070030
31 private final ConnectPoint src;
32 private final ConnectPoint dst;
weibitf32383b2014-10-22 10:17:31 -070033 private final Path path;
Brian O'Connor086724e2014-10-23 15:47:32 -070034
weibitf32383b2014-10-22 10:17:31 -070035
weibit7e583462014-10-23 10:14:05 -070036 public OpticalPathIntent(ApplicationId appId,
37 ConnectPoint src,
38 ConnectPoint dst,
weibit7e583462014-10-23 10:14:05 -070039 Path path) {
Ray Milkeyebc5d222015-03-18 15:45:36 -070040 super(appId, null, ImmutableSet.copyOf(path.links()),
41 Intent.DEFAULT_INTENT_PRIORITY);
42 this.src = checkNotNull(src);
43 this.dst = checkNotNull(dst);
44 this.path = checkNotNull(path);
weibitf32383b2014-10-22 10:17:31 -070045 }
46
weibit9e622ac2014-10-23 13:45:44 -070047 protected OpticalPathIntent() {
Brian O'Connor086724e2014-10-23 15:47:32 -070048 this.src = null;
49 this.dst = null;
weibitf32383b2014-10-22 10:17:31 -070050 this.path = null;
51 }
52
Brian O'Connor086724e2014-10-23 15:47:32 -070053 public ConnectPoint src() {
54 return src;
55 }
56
57 public ConnectPoint dst() {
58 return dst;
59 }
60
weibitf32383b2014-10-22 10:17:31 -070061 public Path path() {
62 return path;
63 }
weibitf32383b2014-10-22 10:17:31 -070064
weibitf32383b2014-10-22 10:17:31 -070065 @Override
weibit7e583462014-10-23 10:14:05 -070066 public boolean isInstallable() {
weibitf32383b2014-10-22 10:17:31 -070067 return true;
68 }
69
70 @Override
weibitf32383b2014-10-22 10:17:31 -070071 public String toString() {
72 return MoreObjects.toStringHelper(getClass())
73 .add("id", id())
Jonathan Hart23b5a762015-01-26 14:47:33 -080074 .add("appId", appId())
Ray Milkeyebc5d222015-03-18 15:45:36 -070075 .add("key", key())
Jonathan Hart23b5a762015-01-26 14:47:33 -080076 .add("resources", resources())
Brian O'Connor086724e2014-10-23 15:47:32 -070077 .add("ingressPort", src)
78 .add("egressPort", dst)
weibitf32383b2014-10-22 10:17:31 -070079 .add("path", path)
80 .toString();
81 }
82
Praseed Balakrishnan00dd1f92014-11-19 17:12:36 -080083
weibitf32383b2014-10-22 10:17:31 -070084 public Collection<Link> requiredLinks() {
85 return path.links();
86 }
87}