blob: 0bc8ed6a9a6eaf4f2b4bfa72b4b2f1d32d959e14 [file] [log] [blame]
Carmelo Casconef7aa3f92017-07-06 23:56:50 -04001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Carmelo Casconef7aa3f92017-07-06 23:56:50 -04003 *
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 */
16
17package org.onosproject.p4runtime.api;
18
19import com.google.common.annotations.Beta;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040020import org.onosproject.event.ListenerService;
Yi Tseng2a340f72018-11-02 16:52:47 -070021import org.onosproject.grpc.api.GrpcClientController;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040022import org.onosproject.net.DeviceId;
Carmelo Casconee5b28722018-06-22 17:28:28 +020023import org.onosproject.net.device.DeviceAgentListener;
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070024import org.onosproject.net.provider.ProviderId;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040025
26/**
27 * Controller of P4Runtime devices.
28 */
29@Beta
Carmelo Casconee5b28722018-06-22 17:28:28 +020030public interface P4RuntimeController
Yi Tseng2a340f72018-11-02 16:52:47 -070031 extends GrpcClientController<P4RuntimeClientKey, P4RuntimeClient>,
32 ListenerService<P4RuntimeEvent, P4RuntimeEventListener> {
Yi Tseng3e7f1452017-10-20 10:31:53 -070033 /**
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070034 * Adds a listener for device agent events for the given provider.
Andrea Campanella1e573442018-05-17 17:07:13 +020035 *
36 * @param deviceId device identifier
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070037 * @param providerId provider ID
Carmelo Casconee5b28722018-06-22 17:28:28 +020038 * @param listener the device agent listener
Andrea Campanella1e573442018-05-17 17:07:13 +020039 */
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070040 void addDeviceAgentListener(DeviceId deviceId, ProviderId providerId,
41 DeviceAgentListener listener);
Andrea Campanella1e573442018-05-17 17:07:13 +020042
43 /**
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070044 * Removes the listener for device agent events that was previously
45 * registered for the given provider.
Andrea Campanella1e573442018-05-17 17:07:13 +020046 *
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070047 * @param deviceId device identifier
48 * @param providerId the provider ID
Andrea Campanella1e573442018-05-17 17:07:13 +020049 */
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070050 void removeDeviceAgentListener(DeviceId deviceId, ProviderId providerId);
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040051}