blob: 2df7b8b0b145979b2395dac43666eaf2749c8755 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorb876bf12014-10-02 14:59:37 -070017
toma1d16b62014-10-02 23:45:11 -070018import com.google.common.base.MoreObjects;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080019import com.google.common.collect.ImmutableList;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.core.ApplicationId;
21import org.onosproject.net.ConnectPoint;
22import org.onosproject.net.Link;
23import org.onosproject.net.flow.TrafficSelector;
24import org.onosproject.net.flow.TrafficTreatment;
25import org.onosproject.net.intent.constraint.LinkTypeConstraint;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080026
Sho SHIMIZUd7d18002015-01-21 14:37:14 -080027import java.util.Collections;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080028import java.util.List;
Brian O'Connorb876bf12014-10-02 14:59:37 -070029
Sho SHIMIZU2e660802014-11-21 14:55:32 -080030import static com.google.common.base.Preconditions.checkArgument;
toma1d16b62014-10-02 23:45:11 -070031import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connorb876bf12014-10-02 14:59:37 -070032
33/**
34 * Abstraction of point-to-point connectivity.
35 */
Ray Milkeybd4f0112015-03-02 17:07:09 -080036public final class PointToPointIntent extends ConnectivityIntent {
Brian O'Connorb876bf12014-10-02 14:59:37 -070037
tom85258ee2014-10-07 00:10:02 -070038 private final ConnectPoint ingressPoint;
39 private final ConnectPoint egressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -070040
41 /**
42 * Creates a new point-to-point intent with the supplied ingress/egress
Ray Milkey5b3717e2015-02-05 11:44:08 -080043 * ports and constraints.
44 *
45 * @param appId application identifier
46 * @param key key of the intent
47 * @param selector traffic selector
48 * @param treatment treatment
49 * @param ingressPoint ingress port
50 * @param egressPoint egress port
51 * @param constraints optional list of constraints
Ray Milkeyc24cde32015-03-10 18:20:18 -070052 * @param priority priority to use for flows generated by this intent
Ray Milkey5b3717e2015-02-05 11:44:08 -080053 * @throws NullPointerException if {@code ingressPoint} or {@code egressPoints} is null.
54 */
55 public PointToPointIntent(ApplicationId appId,
56 Key key,
57 TrafficSelector selector,
58 TrafficTreatment treatment,
59 ConnectPoint ingressPoint,
60 ConnectPoint egressPoint,
Ray Milkeyc24cde32015-03-10 18:20:18 -070061 List<Constraint> constraints,
62 int priority) {
63 super(appId, key, Collections.emptyList(), selector, treatment, constraints,
64 priority);
Ray Milkey5b3717e2015-02-05 11:44:08 -080065
66 checkNotNull(ingressPoint);
67 checkNotNull(egressPoint);
68 checkArgument(!ingressPoint.equals(egressPoint),
69 "ingress and egress should be different (ingress: %s, egress: %s)", ingressPoint, egressPoint);
70
71 this.ingressPoint = ingressPoint;
72 this.egressPoint = egressPoint;
73 }
74
75 /**
76 * Creates a new point-to-point intent with the supplied ingress/egress
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080077 * ports and with built-in link type constraint to avoid optical links.
Brian O'Connorb876bf12014-10-02 14:59:37 -070078 *
Thomas Vachuskac96058a2014-10-20 23:00:16 -070079 * @param appId application identifier
tom85258ee2014-10-07 00:10:02 -070080 * @param selector traffic selector
81 * @param treatment treatment
82 * @param ingressPoint ingress port
83 * @param egressPoint egress port
84 * @throws NullPointerException if {@code ingressPoint} or {@code egressPoints} is null.
Brian O'Connorb876bf12014-10-02 14:59:37 -070085 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -070086 public PointToPointIntent(ApplicationId appId, TrafficSelector selector,
toma1d16b62014-10-02 23:45:11 -070087 TrafficTreatment treatment,
tom85258ee2014-10-07 00:10:02 -070088 ConnectPoint ingressPoint,
89 ConnectPoint egressPoint) {
Ray Milkey5b3717e2015-02-05 11:44:08 -080090 this(appId, null, selector, treatment, ingressPoint, egressPoint,
Ray Milkeyc24cde32015-03-10 18:20:18 -070091 ImmutableList.of(new LinkTypeConstraint(false, Link.Type.OPTICAL)),
92 DEFAULT_INTENT_PRIORITY);
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080093 }
94
95 /**
96 * Creates a new point-to-point intent with the supplied ingress/egress
97 * ports and constraints.
98 *
99 * @param appId application identifier
100 * @param selector traffic selector
101 * @param treatment treatment
102 * @param ingressPoint ingress port
103 * @param egressPoint egress port
104 * @param constraints optional list of constraints
Ray Milkeyc24cde32015-03-10 18:20:18 -0700105 * @param priority priority to use for flows generated by this intent
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800106 * @throws NullPointerException if {@code ingressPoint} or {@code egressPoints} is null.
107 */
108 public PointToPointIntent(ApplicationId appId, TrafficSelector selector,
109 TrafficTreatment treatment,
110 ConnectPoint ingressPoint,
111 ConnectPoint egressPoint,
Ray Milkeyc24cde32015-03-10 18:20:18 -0700112 List<Constraint> constraints,
113 int priority) {
114 super(appId, null, Collections.emptyList(), selector, treatment,
115 constraints, priority);
Sho SHIMIZU2e660802014-11-21 14:55:32 -0800116
117 checkNotNull(ingressPoint);
118 checkNotNull(egressPoint);
119 checkArgument(!ingressPoint.equals(egressPoint),
120 "ingress and egress should be different (ingress: %s, egress: %s)", ingressPoint, egressPoint);
121
122 this.ingressPoint = ingressPoint;
123 this.egressPoint = egressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700124 }
125
126 /**
127 * Constructor for serializer.
128 */
129 protected PointToPointIntent() {
130 super();
tom85258ee2014-10-07 00:10:02 -0700131 this.ingressPoint = null;
132 this.egressPoint = null;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700133 }
134
135 /**
136 * Returns the port on which the ingress traffic should be connected to
137 * the egress.
138 *
139 * @return ingress port
140 */
tom85258ee2014-10-07 00:10:02 -0700141 public ConnectPoint ingressPoint() {
142 return ingressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700143 }
144
145 /**
146 * Returns the port on which the traffic should egress.
147 *
148 * @return egress port
149 */
tom85258ee2014-10-07 00:10:02 -0700150 public ConnectPoint egressPoint() {
151 return egressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700152 }
153
154 @Override
Brian O'Connorb876bf12014-10-02 14:59:37 -0700155 public String toString() {
156 return MoreObjects.toStringHelper(getClass())
tom85258ee2014-10-07 00:10:02 -0700157 .add("id", id())
Ray Milkeyc3573812015-02-09 09:18:34 -0800158 .add("key", key())
Thomas Vachuskae291c842014-10-21 02:52:38 -0700159 .add("appId", appId())
Ray Milkeyc24cde32015-03-10 18:20:18 -0700160 .add("priority", priority())
Jonathan Hart23b5a762015-01-26 14:47:33 -0800161 .add("resources", resources())
Thomas Vachuskae291c842014-10-21 02:52:38 -0700162 .add("selector", selector())
163 .add("treatment", treatment())
164 .add("ingress", ingressPoint)
165 .add("egress", egressPoint)
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800166 .add("constraints", constraints())
Brian O'Connorb876bf12014-10-02 14:59:37 -0700167 .toString();
168 }
169
170}