blob: 59d1e19444ec4068d5593ba819d8f16b21d093b2 [file] [log] [blame]
Toshio Koide106d4492014-10-28 11:22:02 -07001/*
2 * Copyright 2014 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 */
16package org.onlab.onos.net.resource;
17
18import java.util.Set;
19
20import org.onlab.onos.net.Link;
21import org.onlab.onos.net.intent.IntentId;
22
Toshio Koide106d4492014-10-28 11:22:02 -070023/**
24 * Manages link resources.
25 */
26public interface LinkResourceStore {
Toshio Koide07df7062014-10-30 10:54:25 -070027 /**
28 * Returns free resources for given link.
29 *
30 * @param link a target link
31 * @return free resources for given link
32 */
Toshio Koide106d4492014-10-28 11:22:02 -070033 Set<ResourceAllocation> getFreeResources(Link link);
34
Toshio Koide07df7062014-10-30 10:54:25 -070035 /**
36 * Allocates resources.
37 *
38 * @param allocations resources to be allocated
39 */
Toshio Koide106d4492014-10-28 11:22:02 -070040 void allocateResources(LinkResourceAllocations allocations);
41
Toshio Koide07df7062014-10-30 10:54:25 -070042 /**
43 * Releases resources.
44 *
45 * @param allocations resources to be released
46 */
Toshio Koide106d4492014-10-28 11:22:02 -070047 void releaseResources(LinkResourceAllocations allocations);
48
Toshio Koide07df7062014-10-30 10:54:25 -070049 /**
50 * Returns resources allocated for an Intent.
51 *
52 * @param intentId the target Intent's ID
53 * @return allocated resources
54 */
Toshio Koide106d4492014-10-28 11:22:02 -070055 LinkResourceAllocations getAllocations(IntentId intentId);
56
Toshio Koide07df7062014-10-30 10:54:25 -070057 /**
58 * Returns resources allocated for a link.
59 *
60 * @param link the target link
61 * @return allocated resources
62 */
Toshio Koide106d4492014-10-28 11:22:02 -070063 Iterable<LinkResourceAllocations> getAllocations(Link link);
64
Toshio Koide07df7062014-10-30 10:54:25 -070065 /**
66 * Returns all allocated resources.
67 *
68 * @return allocated resources
69 */
Toshio Koide106d4492014-10-28 11:22:02 -070070 Iterable<LinkResourceAllocations> getAllocations();
71}