blob: e8a295c262749b6f32d0208d7c34bde23b2730fd [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 */
Brian O'Connor6de2e202015-05-21 14:30:41 -070016package org.onosproject.net.resource.link;
Toshio Koide106d4492014-10-28 11:22:02 -070017
18import java.util.Set;
19
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.net.Link;
21import org.onosproject.net.intent.IntentId;
Brian O'Connor6de2e202015-05-21 14:30:41 -070022import org.onosproject.net.resource.ResourceAllocation;
Toshio Koide106d4492014-10-28 11:22:02 -070023
Toshio Koide106d4492014-10-28 11:22:02 -070024/**
25 * Manages link resources.
Sho SHIMIZU364cbac2015-10-29 15:47:35 -070026 *
27 * @deprecated in Emu Release.
Toshio Koide106d4492014-10-28 11:22:02 -070028 */
Sho SHIMIZU364cbac2015-10-29 15:47:35 -070029@Deprecated
Toshio Koide106d4492014-10-28 11:22:02 -070030public interface LinkResourceStore {
Toshio Koide07df7062014-10-30 10:54:25 -070031 /**
32 * Returns free resources for given link.
33 *
34 * @param link a target link
35 * @return free resources for given link
36 */
Toshio Koide106d4492014-10-28 11:22:02 -070037 Set<ResourceAllocation> getFreeResources(Link link);
38
Toshio Koide07df7062014-10-30 10:54:25 -070039 /**
40 * Allocates resources.
41 *
42 * @param allocations resources to be allocated
43 */
Toshio Koide106d4492014-10-28 11:22:02 -070044 void allocateResources(LinkResourceAllocations allocations);
45
Toshio Koide07df7062014-10-30 10:54:25 -070046 /**
47 * Releases resources.
48 *
49 * @param allocations resources to be released
Pavlin Radoslavov119fd5c2014-11-25 19:08:19 -080050 * @return the link resource event
Toshio Koide07df7062014-10-30 10:54:25 -070051 */
Ray Milkeye97ede92014-11-20 10:43:12 -080052 LinkResourceEvent releaseResources(LinkResourceAllocations allocations);
Toshio Koide106d4492014-10-28 11:22:02 -070053
Toshio Koide07df7062014-10-30 10:54:25 -070054 /**
55 * Returns resources allocated for an Intent.
56 *
57 * @param intentId the target Intent's ID
Yuta HIGUCHI65934892014-12-04 17:47:44 -080058 * @return allocated resources or null if no resource is allocated
Toshio Koide07df7062014-10-30 10:54:25 -070059 */
Toshio Koide106d4492014-10-28 11:22:02 -070060 LinkResourceAllocations getAllocations(IntentId intentId);
61
Toshio Koide07df7062014-10-30 10:54:25 -070062 /**
63 * Returns resources allocated for a link.
64 *
65 * @param link the target link
66 * @return allocated resources
67 */
Toshio Koide106d4492014-10-28 11:22:02 -070068 Iterable<LinkResourceAllocations> getAllocations(Link link);
69
Toshio Koide07df7062014-10-30 10:54:25 -070070 /**
71 * Returns all allocated resources.
72 *
73 * @return allocated resources
74 */
Toshio Koide106d4492014-10-28 11:22:02 -070075 Iterable<LinkResourceAllocations> getAllocations();
76}