blob: 9bcace205c7968c2b5e4d8d25abd9cba3abb1e77 [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.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
21/**
22 * Describes flow rule batch event.
23 */
24public final class FlowRuleBatchEvent extends AbstractEvent<FlowRuleBatchEvent.Type, FlowRuleBatchRequest> {
25
Brian O'Connor72cb19a2015-01-16 16:14:41 -080026
Madan Jampani117aaae2014-10-23 10:04:05 -070027 /**
28 * Type of flow rule events.
29 */
30 public enum Type {
31
Yuta HIGUCHI2fcb40c2014-11-03 14:39:10 -080032 // Request has been forwarded to MASTER Node
Madan Jampani117aaae2014-10-23 10:04:05 -070033 /**
34 * Signifies that a batch operation has been initiated.
35 */
36 BATCH_OPERATION_REQUESTED,
37
Yuta HIGUCHI2fcb40c2014-11-03 14:39:10 -080038 // MASTER Node has pushed the batch down to the Device
39 // (e.g., Received barrier reply)
Madan Jampani117aaae2014-10-23 10:04:05 -070040 /**
41 * Signifies that a batch operation has completed.
42 */
43 BATCH_OPERATION_COMPLETED,
44 }
45
46 private final CompletedBatchOperation result;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080047 private final DeviceId deviceId;
Madan Jampani117aaae2014-10-23 10:04:05 -070048
49 /**
50 * Constructs a new FlowRuleBatchEvent.
Brian O'Connor72cb19a2015-01-16 16:14:41 -080051 *
52 * @param request batch operation request
53 * @param deviceId the device this batch will be processed on
Madan Jampani117aaae2014-10-23 10:04:05 -070054 * @return event.
55 */
Brian O'Connor72cb19a2015-01-16 16:14:41 -080056 public static FlowRuleBatchEvent requested(FlowRuleBatchRequest request, DeviceId deviceId) {
57 FlowRuleBatchEvent event = new FlowRuleBatchEvent(Type.BATCH_OPERATION_REQUESTED, request, deviceId);
Madan Jampani117aaae2014-10-23 10:04:05 -070058 return event;
59 }
60
61 /**
62 * Constructs a new FlowRuleBatchEvent.
63 * @param request batch operation request.
64 * @param result completed batch operation result.
65 * @return event.
66 */
Yuta HIGUCHI9def0472014-10-23 15:51:10 -070067 public static FlowRuleBatchEvent completed(FlowRuleBatchRequest request, CompletedBatchOperation result) {
Madan Jampani117aaae2014-10-23 10:04:05 -070068 FlowRuleBatchEvent event = new FlowRuleBatchEvent(Type.BATCH_OPERATION_COMPLETED, request, result);
69 return event;
70 }
71
72 /**
73 * Returns the result of this batch operation.
74 * @return batch operation result.
75 */
76 public CompletedBatchOperation result() {
77 return result;
78 }
79
80 /**
Brian O'Connor72cb19a2015-01-16 16:14:41 -080081 * Returns the deviceId for this batch.
82 * @return device id
83 */
84 public DeviceId deviceId() {
85 return deviceId;
86 }
87
88 /**
Madan Jampani117aaae2014-10-23 10:04:05 -070089 * Creates an event of a given type and for the specified flow rule batch.
90 *
91 * @param type flow rule batch event type
Brian O'Connor72cb19a2015-01-16 16:14:41 -080092 * @param request event flow rule batch subject
93 * @param result the result of the batch operation
Madan Jampani117aaae2014-10-23 10:04:05 -070094 */
95 private FlowRuleBatchEvent(Type type, FlowRuleBatchRequest request, CompletedBatchOperation result) {
96 super(type, request);
97 this.result = result;
Brian O'Connor72cb19a2015-01-16 16:14:41 -080098 this.deviceId = result.deviceId();
99 }
100
101 /**
102 * Creates an event of a given type and for the specified flow rule batch.
103 *
104 * @param type flow rule batch event type
105 * @param request event flow rule batch subject
106 * @param deviceId the device id for this batch
107 */
108 private FlowRuleBatchEvent(Type type, FlowRuleBatchRequest request, DeviceId deviceId) {
109 super(type, request);
110 this.result = null;
111 this.deviceId = deviceId;
Madan Jampani117aaae2014-10-23 10:04:05 -0700112 }
113}