blob: 90907fbccd52381d3b78396eeae51dd7afaaba38 [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
Ray Milkey460f4022014-11-05 15:41:43 -080025import java.util.List;
tom85258ee2014-10-07 00:10:02 -070026import java.util.Set;
27
28import static com.google.common.base.Preconditions.checkArgument;
29import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connorb876bf12014-10-02 14:59:37 -070030
31/**
32 * Abstraction of multiple source to single destination connectivity intent.
33 */
Ray Milkeye6684082014-10-16 16:59:47 -070034public final class MultiPointToSinglePointIntent extends ConnectivityIntent {
Brian O'Connorb876bf12014-10-02 14:59:37 -070035
tom85258ee2014-10-07 00:10:02 -070036 private final Set<ConnectPoint> ingressPoints;
37 private final ConnectPoint egressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -070038
39 /**
40 * Creates a new multi-to-single point connectivity intent for the specified
Thomas Vachuskac96058a2014-10-20 23:00:16 -070041 * traffic selector and treatment.
Brian O'Connorb876bf12014-10-02 14:59:37 -070042 *
Thomas Vachuskac96058a2014-10-20 23:00:16 -070043 * @param appId application identifier
44 * @param selector traffic selector
45 * @param treatment treatment
tom85258ee2014-10-07 00:10:02 -070046 * @param ingressPoints set of ports from which ingress traffic originates
47 * @param egressPoint port to which traffic will egress
48 * @throws NullPointerException if {@code ingressPoints} or
49 * {@code egressPoint} is null.
50 * @throws IllegalArgumentException if the size of {@code ingressPoints} is
toma1d16b62014-10-02 23:45:11 -070051 * not more than 1
Brian O'Connorb876bf12014-10-02 14:59:37 -070052 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -070053 public MultiPointToSinglePointIntent(ApplicationId appId,
54 TrafficSelector selector,
55 TrafficTreatment treatment,
tom85258ee2014-10-07 00:10:02 -070056 Set<ConnectPoint> ingressPoints,
57 ConnectPoint egressPoint) {
Thomas Vachuskac96058a2014-10-20 23:00:16 -070058 super(id(MultiPointToSinglePointIntent.class, selector, treatment,
59 ingressPoints, egressPoint), appId, null, selector, treatment);
Brian O'Connorb876bf12014-10-02 14:59:37 -070060
tom85258ee2014-10-07 00:10:02 -070061 checkNotNull(ingressPoints);
Thomas Vachuskac96058a2014-10-20 23:00:16 -070062 checkArgument(!ingressPoints.isEmpty(), "Ingress point set cannot be empty");
Brian O'Connorb876bf12014-10-02 14:59:37 -070063
tom85258ee2014-10-07 00:10:02 -070064 this.ingressPoints = Sets.newHashSet(ingressPoints);
65 this.egressPoint = checkNotNull(egressPoint);
Brian O'Connorb876bf12014-10-02 14:59:37 -070066 }
67
68 /**
Ray Milkey460f4022014-11-05 15:41:43 -080069 * Creates a new multi-to-single point connectivity intent for the specified
70 * traffic selector and treatment.
71 *
72 * @param appId application identifier
73 * @param selector traffic selector
74 * @param treatment treatment
75 * @param ingressPoints set of ports from which ingress traffic originates
76 * @param egressPoint port to which traffic will egress
77 * @param constraints constraints to apply to the intent
78 * @throws NullPointerException if {@code ingressPoints} or
79 * {@code egressPoint} is null.
80 * @throws IllegalArgumentException if the size of {@code ingressPoints} is
81 * not more than 1
82 */
83 public MultiPointToSinglePointIntent(ApplicationId appId,
84 TrafficSelector selector,
85 TrafficTreatment treatment,
86 Set<ConnectPoint> ingressPoints,
87 ConnectPoint egressPoint,
88 List<Constraint> constraints) {
89 super(id(MultiPointToSinglePointIntent.class, selector, treatment,
90 ingressPoints, egressPoint), appId, null, selector, treatment,
91 constraints);
92
93 checkNotNull(ingressPoints);
94 checkArgument(!ingressPoints.isEmpty(), "Ingress point set cannot be empty");
95
96 this.ingressPoints = Sets.newHashSet(ingressPoints);
97 this.egressPoint = checkNotNull(egressPoint);
98 }
99
100 /**
Brian O'Connorb876bf12014-10-02 14:59:37 -0700101 * Constructor for serializer.
102 */
103 protected MultiPointToSinglePointIntent() {
104 super();
tom85258ee2014-10-07 00:10:02 -0700105 this.ingressPoints = null;
106 this.egressPoint = null;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700107 }
108
109 /**
110 * Returns the set of ports on which ingress traffic should be connected to
111 * the egress port.
112 *
113 * @return set of ingress ports
114 */
tom85258ee2014-10-07 00:10:02 -0700115 public Set<ConnectPoint> ingressPoints() {
116 return ingressPoints;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700117 }
118
119 /**
120 * Returns the port on which the traffic should egress.
121 *
122 * @return egress port
123 */
tom85258ee2014-10-07 00:10:02 -0700124 public ConnectPoint egressPoint() {
125 return egressPoint;
Brian O'Connorb876bf12014-10-02 14:59:37 -0700126 }
127
128 @Override
Brian O'Connorb876bf12014-10-02 14:59:37 -0700129 public String toString() {
130 return MoreObjects.toStringHelper(getClass())
tom85258ee2014-10-07 00:10:02 -0700131 .add("id", id())
Thomas Vachuskae291c842014-10-21 02:52:38 -0700132 .add("appId", appId())
133 .add("selector", selector())
134 .add("treatment", treatment())
135 .add("ingress", ingressPoints())
136 .add("egress", egressPoint())
Ray Milkey460f4022014-11-05 15:41:43 -0800137 .add("constraints", constraints())
Brian O'Connorb876bf12014-10-02 14:59:37 -0700138 .toString();
139 }
140}