blob: a19add609517c6d3b5df8f3e194283029f7f5e3b [file] [log] [blame]
Brian O'Connorb7baf712015-07-28 23:27:03 -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 */
16package org.onosproject.incubator.net.domain;
17
18import com.google.common.annotations.Beta;
19
20import java.util.List;
21import java.util.Set;
22
23/**
24 * FIXME.
25 */
26@Beta
27public interface IntentDomainProvider {
28
29 /**
30 * Requests that the provider attempt to satisfy the intent primitive.
31 * The application must apply the context before the intent resource
32 * can be used. Request contexts can be explictly cancelled, or they will
33 * eventually time out so that resources can be reused.
34 *
Brian O'Connor59a92852015-07-30 19:08:24 -070035 * @param domain intent domain for the request
Brian O'Connorb7baf712015-07-28 23:27:03 -070036 * @param primitive intent primitive
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070037 * @return intent resources that specify paths that satisfy the request.
Brian O'Connorb7baf712015-07-28 23:27:03 -070038 */
39 //TODO Consider an iterable and/or holds (only hold one or two reservation(s) at a time)
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070040 List<DomainIntentResource> request(IntentDomain domain, IntentPrimitive primitive);
Brian O'Connorb7baf712015-07-28 23:27:03 -070041
42 /**
43 * Request that the provider attempt to modify an existing resource to satisfy
44 * a new intent primitive. The application must apply the context before
45 * the intent resource can be used.
46 *
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070047 * @param oldResource the resource to be replaced
48 * @param newResource the resource to be applied
Brian O'Connorb7baf712015-07-28 23:27:03 -070049 * @return request contexts that contain resources to satisfy the intent
50 */
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070051 DomainIntentResource modify(DomainIntentResource oldResource, DomainIntentResource newResource);
Brian O'Connorb7baf712015-07-28 23:27:03 -070052
53 /**
54 * Requests that the provider release an intent resource.
55 *
56 * @param resource intent resource
57 */
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070058 void release(DomainIntentResource resource);
Brian O'Connorb7baf712015-07-28 23:27:03 -070059
60 /**
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070061 * Requests that the provider apply the path from the intent resource.
Brian O'Connorb7baf712015-07-28 23:27:03 -070062 *
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070063 * @param domainIntentResource request context
Brian O'Connorb7baf712015-07-28 23:27:03 -070064 * @return intent resource that satisfies the intent
65 */
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070066 DomainIntentResource apply(DomainIntentResource domainIntentResource);
Brian O'Connorb7baf712015-07-28 23:27:03 -070067
68 /**
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070069 * Requests that the provider cancel the path. Requests that are not applied
Brian O'Connorb7baf712015-07-28 23:27:03 -070070 * will be eventually timed out by the provider.
71 *
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070072 * @param domainIntentResource the intent resource whose path should be cancelled.
Brian O'Connorb7baf712015-07-28 23:27:03 -070073 */
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070074 void cancel(DomainIntentResource domainIntentResource);
Brian O'Connorb7baf712015-07-28 23:27:03 -070075
76 /**
77 * Returns all intent resources held by the provider.
78 *
79 * @return set of intent resources
80 */
Aaron Kruglikovb4916d02015-09-08 16:22:25 -070081 Set<DomainIntentResource> getResources();
Brian O'Connorb7baf712015-07-28 23:27:03 -070082}
83
84