blob: c73cab7aa975f437ffaa87ef6f6e1d1f1d788d6c [file] [log] [blame]
Marc De Leenheer1afa2a02015-05-13 09:18:07 -07001/*
2 * Copyright 2015 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'Connor6de2e202015-05-21 14:30:41 -070016package org.onosproject.net.resource.device;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070017
18import org.onosproject.net.DeviceId;
19import org.onosproject.net.Port;
20import org.onosproject.net.intent.IntentId;
21
22import java.util.Set;
23
24public interface DeviceResourceStore {
25 Set<Port> getFreePorts(DeviceId deviceId);
26
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070027 /**
28 * Allocates the given ports to the given intent.
29 * @param ports set of ports to allocate
30 * @param intentId intent ID
31 * @return true if allocation was successful, false otherwise
32 */
33 boolean allocatePorts(Set<Port> ports, IntentId intentId);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070034
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070035 /**
36 * Returns set of ports allocated for an intent.
37 *
38 * @param intentId the intent ID
39 * @return set of allocated ports
40 */
41 Set<Port> getAllocations(IntentId intentId);
42
43 /**
44 * Returns intent allocated to a port.
45 *
46 * @param port the port
47 * @return intent ID allocated to the port
48 */
49 IntentId getAllocations(Port port);
50
51 /**
52 * Allocates the mapping between the given intents.
53 *
54 * @param keyIntentId key intent ID
55 * @param valIntentId value intent ID
56 * @return true if mapping was successful, false otherwise
57 */
58 boolean allocateMapping(IntentId keyIntentId, IntentId valIntentId);
59
60 /**
61 * Returns the set of intents mapped to a lower intent.
62 *
63 * @param intentId intent ID
64 * @return set of intent IDs
65 */
66 Set<IntentId> getMapping(IntentId intentId);
67
68 /**
69 * Releases the mapping between the given intents.
70 *
71 * @param keyIntentId key intent ID
72 * @param valIntentId value intent ID
73 */
74 void releaseMapping(IntentId keyIntentId, IntentId valIntentId);
75
76 /**
77 * Releases the ports allocated to the given intent.
78 *
79 * @param intentId intent ID
80 * @return true if release was successful, false otherwise
81 */
82 boolean releasePorts(IntentId intentId);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070083}