blob: 2373af4e89b1eb3c37d33bdde2876d4bb496b51c [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 Cascone87892e22017-11-13 16:01:29 -080027 * Behavior to program the pipeline of a device that supports protocol-independence.
Carmelo Cascone59f57de2017-07-11 19:55:09 -040028 */
Carmelo Cascone87892e22017-11-13 16:01:29 -080029@Beta
Carmelo Cascone59f57de2017-07-11 19:55:09 -040030public interface PiPipelineProgrammable extends HandlerBehaviour {
31 /**
32 * Deploys the given pipeconf to the device.
33 *
34 * @param pipeconf pipeconf
35 * @return true if the operation was successful, false otherwise
36 */
37 // TODO: return an explanation of why things went wrong, and the status of the device.
38 CompletableFuture<Boolean> deployPipeconf(PiPipeconf pipeconf);
39
40 /**
41 * Returns the default pipeconf for ths device, to be used when any other pipeconf is not available.
42 *
43 * @return optional pipeconf
44 */
45 Optional<PiPipeconf> getDefaultPipeconf();
46}