blob: 259940933144a170e97a9b3089af3107b2cc1a2a [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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.flow;
Madan Jampani117aaae2014-10-23 10:04:05 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.event.AbstractEvent;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080019import org.onosproject.net.DeviceId;
Madan Jampani117aaae2014-10-23 10:04:05 -070020
Ray Milkeyc4dd7262015-08-21 09:33:42 -070021@Deprecated
Madan Jampani117aaae2014-10-23 10:04:05 -070022/**
23 * Describes flow rule batch event.
Ray Milkeyc4dd7262015-08-21 09:33:42 -070024 *
25 * @deprecated in Drake release - no longer a public API
Madan Jampani117aaae2014-10-23 10:04:05 -070026 */
27public final class FlowRuleBatchEvent extends AbstractEvent<FlowRuleBatchEvent.Type, FlowRuleBatchRequest> {
28
Brian O'Connor72cb19a2015-01-16 16:14:41 -080029
Madan Jampani117aaae2014-10-23 10:04:05 -070030 /**
31 * Type of flow rule events.
32 */
33 public enum Type {
34
Yuta HIGUCHI2fcb40c2014-11-03 14:39:10 -080035 // Request has been forwarded to MASTER Node
Madan Jampani117aaae2014-10-23 10:04:05 -070036 /**
37 * Signifies that a batch operation has been initiated.
38 */
39 BATCH_OPERATION_REQUESTED,
40
Yuta HIGUCHI2fcb40c2014-11-03 14:39:10 -080041 // MASTER Node has pushed the batch down to the Device
42 // (e.g., Received barrier reply)
Madan Jampani117aaae2014-10-23 10:04:05 -070043 /**
44 * Signifies that a batch operation has completed.
45 */
46 BATCH_OPERATION_COMPLETED,
47 }
48
49 private final CompletedBatchOperation result;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080050 private final DeviceId deviceId;
Madan Jampani117aaae2014-10-23 10:04:05 -070051
52 /**
53 * Constructs a new FlowRuleBatchEvent.
Brian O'Connor72cb19a2015-01-16 16:14:41 -080054 *
55 * @param request batch operation request
56 * @param deviceId the device this batch will be processed on
Madan Jampani117aaae2014-10-23 10:04:05 -070057 * @return event.
58 */
Brian O'Connor72cb19a2015-01-16 16:14:41 -080059 public static FlowRuleBatchEvent requested(FlowRuleBatchRequest request, DeviceId deviceId) {
60 FlowRuleBatchEvent event = new FlowRuleBatchEvent(Type.BATCH_OPERATION_REQUESTED, request, deviceId);
Madan Jampani117aaae2014-10-23 10:04:05 -070061 return event;
62 }
63
64 /**
65 * Constructs a new FlowRuleBatchEvent.
66 * @param request batch operation request.
67 * @param result completed batch operation result.
68 * @return event.
69 */
Yuta HIGUCHI9def0472014-10-23 15:51:10 -070070 public static FlowRuleBatchEvent completed(FlowRuleBatchRequest request, CompletedBatchOperation result) {
Madan Jampani117aaae2014-10-23 10:04:05 -070071 FlowRuleBatchEvent event = new FlowRuleBatchEvent(Type.BATCH_OPERATION_COMPLETED, request, result);
72 return event;
73 }
74
75 /**
76 * Returns the result of this batch operation.
77 * @return batch operation result.
78 */
79 public CompletedBatchOperation result() {
80 return result;
81 }
82
83 /**
Brian O'Connor72cb19a2015-01-16 16:14:41 -080084 * Returns the deviceId for this batch.
85 * @return device id
86 */
87 public DeviceId deviceId() {
88 return deviceId;
89 }
90
91 /**
Madan Jampani117aaae2014-10-23 10:04:05 -070092 * Creates an event of a given type and for the specified flow rule batch.
93 *
94 * @param type flow rule batch event type
Brian O'Connor72cb19a2015-01-16 16:14:41 -080095 * @param request event flow rule batch subject
96 * @param result the result of the batch operation
Madan Jampani117aaae2014-10-23 10:04:05 -070097 */
98 private FlowRuleBatchEvent(Type type, FlowRuleBatchRequest request, CompletedBatchOperation result) {
99 super(type, request);
100 this.result = result;
Brian O'Connor72cb19a2015-01-16 16:14:41 -0800101 this.deviceId = result.deviceId();
102 }
103
104 /**
105 * Creates an event of a given type and for the specified flow rule batch.
106 *
107 * @param type flow rule batch event type
108 * @param request event flow rule batch subject
109 * @param deviceId the device id for this batch
110 */
111 private FlowRuleBatchEvent(Type type, FlowRuleBatchRequest request, DeviceId deviceId) {
112 super(type, request);
113 this.result = null;
114 this.deviceId = deviceId;
Madan Jampani117aaae2014-10-23 10:04:05 -0700115 }
116}