blob: be1c6c47567f969776dc79ea18efccd1e757edc5 [file] [log] [blame]
Carmelo Cascone59f57de2017-07-11 19:55:09 -04001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Carmelo Cascone59f57de2017-07-11 19:55:09 -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
Carmelo Cascone87892e22017-11-13 16:01:29 -080017package org.onosproject.net.behaviour;
Carmelo Cascone59f57de2017-07-11 19:55:09 -040018
Carmelo Cascone87892e22017-11-13 16:01:29 -080019import com.google.common.annotations.Beta;
Carmelo Cascone59f57de2017-07-11 19:55:09 -040020import org.onosproject.net.driver.HandlerBehaviour;
Carmelo Cascone87892e22017-11-13 16:01:29 -080021import org.onosproject.net.pi.model.PiPipeconf;
Carmelo Cascone59f57de2017-07-11 19:55:09 -040022
23import java.util.Optional;
24import java.util.concurrent.CompletableFuture;
25
26/**
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070027 * Behavior to program the pipeline of a device that supports
28 * protocol-independence.
Carmelo Cascone59f57de2017-07-11 19:55:09 -040029 */
Carmelo Cascone87892e22017-11-13 16:01:29 -080030@Beta
Carmelo Cascone59f57de2017-07-11 19:55:09 -040031public interface PiPipelineProgrammable extends HandlerBehaviour {
32 /**
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070033 * Writes the given pipeconf to the device, returns a completable future
34 * with true is the operations was successful, false otherwise.
35 * <p>
36 * After the future has been completed, the device is expected to process
37 * data plane packets according to the written pipeconf.
Carmelo Cascone59f57de2017-07-11 19:55:09 -040038 *
39 * @param pipeconf pipeconf
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070040 * @return completable future set to true if the operation was successful,
41 * false otherwise
Carmelo Cascone59f57de2017-07-11 19:55:09 -040042 */
43 // TODO: return an explanation of why things went wrong, and the status of the device.
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070044 CompletableFuture<Boolean> setPipeconf(PiPipeconf pipeconf);
Carmelo Cascone59f57de2017-07-11 19:55:09 -040045
46 /**
Carmelo Cascone3977ea42019-02-28 13:43:42 -080047 * Probes the device to verify that the given pipeconf is the one currently
48 * configured.
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070049 * <p>
50 * This method is expected to always return true after successfully calling
51 * {@link #setPipeconf(PiPipeconf)} with the given pipeconf.
52 *
53 * @param pipeconf pipeconf
Carmelo Cascone3977ea42019-02-28 13:43:42 -080054 * @return completable future eventually true if the device has the given
55 * pipeconf set, false otherwise
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070056 */
Carmelo Cascone3977ea42019-02-28 13:43:42 -080057 CompletableFuture<Boolean> isPipeconfSet(PiPipeconf pipeconf);
Carmelo Cascone9e4972c2018-08-30 00:29:16 -070058
59 /**
60 * Returns the default pipeconf for this device, to be used when any other
61 * pipeconf is not available.
Carmelo Cascone59f57de2017-07-11 19:55:09 -040062 *
63 * @return optional pipeconf
64 */
65 Optional<PiPipeconf> getDefaultPipeconf();
66}