blob: 34b5174007b7b5df18ed7cf607df8d1566a24d51 [file] [log] [blame]
Carmelo Cascone1022a4e2017-05-25 00:16:18 -04001/*
2 * Copyright 2017-present 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 */
16
17package org.onosproject.net.pi.runtime;
18
19import com.google.common.annotations.Beta;
20import org.onosproject.net.DeviceId;
21import org.onosproject.net.pi.model.PiPipeconf;
22import org.onosproject.net.pi.model.PiPipeconfId;
23
24import java.util.Optional;
Andrea Campanellabc112a92017-06-26 19:06:43 +020025import java.util.concurrent.CompletableFuture;
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040026
27/**
28 * A service to manage the configurations of protocol-independent pipelines.
29 */
30@Beta
31public interface PiPipeconfService {
32
33 // TODO: we might want to extend ListenerService to support the broadcasting of PipeconfEvent.
34
35 /**
36 * Registers the given pipeconf.
37 *
38 * @param pipeconf a pipeconf
39 * @throws IllegalStateException if the same pipeconf identifier is already registered.
40 */
41 void register(PiPipeconf pipeconf) throws IllegalStateException;
42
43 /**
44 * Returns all pipeconfs registered.
45 *
46 * @return a collection of pipeconfs
47 */
48 Iterable<PiPipeconf> getPipeconfs();
49
50 /**
51 * Returns the pipeconf instance associated with the given identifier, if present.
52 * If not present, it means that no pipeconf with such identifier has been registered so far.
53 *
54 * @param id a pipeconf identifier
55 * @return an optional pipeconf
56 */
57 Optional<PiPipeconf> getPipeconf(PiPipeconfId id);
58
59 /**
60 * Binds the given pipeconf to the given infrastructure device. As a result of this method call,
61 * if the given pipeconf exposes any pipeline-specific behaviours, those will be merged to the
Andrea Campanellabc112a92017-06-26 19:06:43 +020062 * device's driver. Returns a completable future to provide async methods with a boolean if the merge
63 * of the drivers succeeded.
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040064 *
65 * @param deviceId a device identifier
Andrea Campanellabc112a92017-06-26 19:06:43 +020066 * @param pipeconfId a pipeconf identifier
67 * @return a CompletableFuture with a boolean, true if operation succeeded
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040068 */
69 // TODO: This service doesn't make any effort in deploying the configuration to the device.
70 // Someone else should do that.
Andrea Campanellabc112a92017-06-26 19:06:43 +020071 CompletableFuture<Boolean> bindToDevice(PiPipeconfId pipeconfId, DeviceId deviceId);
Carmelo Cascone1022a4e2017-05-25 00:16:18 -040072
73 /**
74 * Returns the pipeconf identifier currently associated with the given device identifier, if
75 * present. If not present, it means no pipeconf has been associated with that device so far.
76 *
77 * @param deviceId device identifier
78 * @return an optional pipeconf identifier
79 */
80 Optional<PiPipeconfId> ofDevice(DeviceId deviceId);
81}