blob: 416768bb90871216ddece6009791a4c1259a2a69 [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'Connorb876bf12014-10-02 14:59:37 -070016package org.onlab.onos.net.intent;
17
tom85258ee2014-10-07 00:10:02 -070018import com.google.common.base.MoreObjects;
19import com.google.common.collect.Sets;
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070020import org.onlab.onos.core.ApplicationId;
Brian O'Connorb876bf12014-10-02 14:59:37 -070021import org.onlab.onos.net.ConnectPoint;
22import org.onlab.onos.net.flow.TrafficSelector;
23import org.onlab.onos.net.flow.TrafficTreatment;
24
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -080025import java.util.Collections;
Ray Milkey460f4022014-11-05 15:41:43 -080026import java.util.List;
tom85258ee2014-10-07 00:10:02 -070027import java.util.Set;
28
29import static com.google.common.base.Preconditions.checkArgument;
30import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connorb876bf12014-10-02 14:59:37 -070031
32/**
33 * Abstraction of multiple source to single destination connectivity intent.
34 */
Ray Milkeye6684082014-10-16 16:59:47 -070035public final class MultiPointToSinglePointIntent extends ConnectivityIntent {
Brian O'Connorb876bf12014-10-02 14:59:37 -070036
tom85258ee2014-10-07 00:10:02 -070037 private final Set<ConnectPoint> ingressPoints;
38 private final ConnectPoint egressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -070039
40 /**
41 * Creates a new multi-to-single point connectivity intent for the specified
Thomas Vachuskac96058a2014-10-20 23:00:16 -070042 * traffic selector and treatment.
Brian O'Connorb876bf12014-10-02 14:59:37 -070043 *
Thomas Vachuskac96058a2014-10-20 23:00:16 -070044 * @param appId application identifier
45 * @param selector traffic selector
46 * @param treatment treatment
tom85258ee2014-10-07 00:10:02 -070047 * @param ingressPoints set of ports from which ingress traffic originates
48 * @param egressPoint port to which traffic will egress
49 * @throws NullPointerException if {@code ingressPoints} or
50 * {@code egressPoint} is null.
51 * @throws IllegalArgumentException if the size of {@code ingressPoints} is
toma1d16b62014-10-02 23:45:11 -070052 * not more than 1
Brian O'Connorb876bf12014-10-02 14:59:37 -070053 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -070054 public MultiPointToSinglePointIntent(ApplicationId appId,
55 TrafficSelector selector,
56 TrafficTreatment treatment,
tom85258ee2014-10-07 00:10:02 -070057 Set<ConnectPoint> ingressPoints,
58 ConnectPoint egressPoint) {
Sho SHIMIZUc3df36b2014-11-11 18:19:29 -080059 this(appId, selector, treatment, ingressPoints, egressPoint, Collections.emptyList());
Brian O'Connorb876bf12014-10-02 14:59:37 -070060 }
61
62 /**
Ray Milkey460f4022014-11-05 15:41:43 -080063 * Creates a new multi-to-single point connectivity intent for the specified
64 * traffic selector and treatment.
65 *
66 * @param appId application identifier
67 * @param selector traffic selector
68 * @param treatment treatment
69 * @param ingressPoints set of ports from which ingress traffic originates
70 * @param egressPoint port to which traffic will egress
71 * @param constraints constraints to apply to the intent
72 * @throws NullPointerException if {@code ingressPoints} or
73 * {@code egressPoint} is null.
74 * @throws IllegalArgumentException if the size of {@code ingressPoints} is
75 * not more than 1
76 */
77 public MultiPointToSinglePointIntent(ApplicationId appId,
78 TrafficSelector selector,
79 TrafficTreatment treatment,
80 Set<ConnectPoint> ingressPoints,
81 ConnectPoint egressPoint,
82 List<Constraint> constraints) {
Brian O'Connor520c0522014-11-23 23:50:47 -080083 super(appId, null, selector, treatment, constraints);
Ray Milkey460f4022014-11-05 15:41:43 -080084
85 checkNotNull(ingressPoints);
86 checkArgument(!ingressPoints.isEmpty(), "Ingress point set cannot be empty");
Sho SHIMIZU2e660802014-11-21 14:55:32 -080087 checkNotNull(egressPoint);
88 checkArgument(!ingressPoints.contains(egressPoint),
89 "Set of ingresses should not contain egress (egress: %s)", egressPoint);
Ray Milkey460f4022014-11-05 15:41:43 -080090
91 this.ingressPoints = Sets.newHashSet(ingressPoints);
Sho SHIMIZU2e660802014-11-21 14:55:32 -080092 this.egressPoint = egressPoint;
Ray Milkey460f4022014-11-05 15:41:43 -080093 }
94
95 /**
Brian O'Connorb876bf12014-10-02 14:59:37 -070096 * Constructor for serializer.
97 */
98 protected MultiPointToSinglePointIntent() {
99 super();
tom85258ee2014-10-07 00:10:02 -0700100 this.ingressPoints = null;
101 this.egressPoint = null;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700102 }
103
104 /**
105 * Returns the set of ports on which ingress traffic should be connected to
106 * the egress port.
107 *
108 * @return set of ingress ports
109 */
tom85258ee2014-10-07 00:10:02 -0700110 public Set<ConnectPoint> ingressPoints() {
111 return ingressPoints;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700112 }
113
114 /**
115 * Returns the port on which the traffic should egress.
116 *
117 * @return egress port
118 */
tom85258ee2014-10-07 00:10:02 -0700119 public ConnectPoint egressPoint() {
120 return egressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700121 }
122
123 @Override
Brian O'Connorb876bf12014-10-02 14:59:37 -0700124 public String toString() {
125 return MoreObjects.toStringHelper(getClass())
tom85258ee2014-10-07 00:10:02 -0700126 .add("id", id())
Thomas Vachuskae291c842014-10-21 02:52:38 -0700127 .add("appId", appId())
128 .add("selector", selector())
129 .add("treatment", treatment())
130 .add("ingress", ingressPoints())
131 .add("egress", egressPoint())
Ray Milkey460f4022014-11-05 15:41:43 -0800132 .add("constraints", constraints())
Brian O'Connorb876bf12014-10-02 14:59:37 -0700133 .toString();
134 }
135}