blob: f0e11f1960cb218359f4f56349dcc0c745571e97 [file] [log] [blame]
Thomas Vachuska83e090e2014-10-22 14:25:35 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska83e090e2014-10-22 14:25:35 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska83e090e2014-10-22 14:25:35 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska83e090e2014-10-22 14:25:35 -070015 */
Brian O'Connor66630c82014-10-02 21:08:19 -070016package org.onlab.onos.net.intent;
17
Brian O'Connor66630c82014-10-02 21:08:19 -070018import org.onlab.onos.store.Store;
19
toma1d16b62014-10-02 23:45:11 -070020import java.util.List;
21
Brian O'Connor66630c82014-10-02 21:08:19 -070022/**
23 * Manages inventory of end-station intents; not intended for direct use.
24 */
25public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> {
26
27 /**
tom85258ee2014-10-07 00:10:02 -070028 * Submits a new intent into the store. If the returned event is not
29 * null, the manager is expected to dispatch the event and then to kick
30 * off intent compilation process. Otherwise, another node has been elected
31 * to perform the compilation process and the node will learn about
32 * the submittal and results of the intent compilation via the delegate
33 * mechanism.
Brian O'Connor66630c82014-10-02 21:08:19 -070034 *
tom85258ee2014-10-07 00:10:02 -070035 * @param intent intent to be submitted
36 * @return event indicating the intent was submitted or null if no
37 * change resulted, e.g. duplicate intent
Brian O'Connor66630c82014-10-02 21:08:19 -070038 */
39 IntentEvent createIntent(Intent intent);
40
41 /**
42 * Removes the specified intent from the inventory.
43 *
44 * @param intentId intent identification
toma1d16b62014-10-02 23:45:11 -070045 * @return removed state transition event or null if intent was not found
Brian O'Connor66630c82014-10-02 21:08:19 -070046 */
toma1d16b62014-10-02 23:45:11 -070047 IntentEvent removeIntent(IntentId intentId);
Brian O'Connor66630c82014-10-02 21:08:19 -070048
49 /**
50 * Returns the number of intents in the store.
Toshio Koided32809b2014-10-09 10:58:54 -070051 *
52 * @return the number of intents in the store
Brian O'Connor66630c82014-10-02 21:08:19 -070053 */
54 long getIntentCount();
55
56 /**
57 * Returns a collection of all intents in the store.
58 *
59 * @return iterable collection of all intents
60 */
61 Iterable<Intent> getIntents();
62
63 /**
Toshio Koided32809b2014-10-09 10:58:54 -070064 * Returns the intent with the specified identifier.
Brian O'Connor66630c82014-10-02 21:08:19 -070065 *
66 * @param intentId intent identification
67 * @return intent or null if not found
68 */
69 Intent getIntent(IntentId intentId);
70
toma1d16b62014-10-02 23:45:11 -070071 /**
72 * Returns the state of the specified intent.
73 *
74 * @param intentId intent identification
75 * @return current intent state
76 */
77 IntentState getIntentState(IntentId intentId);
Brian O'Connor66630c82014-10-02 21:08:19 -070078
79 /**
80 * Sets the state of the specified intent to the new state.
81 *
toma1d16b62014-10-02 23:45:11 -070082 * @param intent intent whose state is to be changed
Brian O'Connor66630c82014-10-02 21:08:19 -070083 * @param newState new state
toma1d16b62014-10-02 23:45:11 -070084 * @return state transition event
Brian O'Connor66630c82014-10-02 21:08:19 -070085 */
86 IntentEvent setState(Intent intent, IntentState newState);
87
toma1d16b62014-10-02 23:45:11 -070088 /**
89 * Adds the installable intents which resulted from compilation of the
90 * specified original intent.
91 *
92 * @param intentId original intent identifier
93 * @param installableIntents compiled installable intents
toma1d16b62014-10-02 23:45:11 -070094 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -070095 void addInstallableIntents(IntentId intentId, List<Intent> installableIntents);
Brian O'Connor66630c82014-10-02 21:08:19 -070096
toma1d16b62014-10-02 23:45:11 -070097 /**
98 * Returns the list of the installable events associated with the specified
99 * original intent.
100 *
101 * @param intentId original intent identifier
102 * @return compiled installable intents
103 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -0700104 List<Intent> getInstallableIntents(IntentId intentId);
Brian O'Connor66630c82014-10-02 21:08:19 -0700105
toma1d16b62014-10-02 23:45:11 -0700106 // TODO: this should be triggered from with the store as a result of removeIntent call
107
108 /**
109 * Removes any installable intents which resulted from compilation of the
110 * specified original intent.
111 *
112 * @param intentId original intent identifier
toma1d16b62014-10-02 23:45:11 -0700113 */
Brian O'Connor66630c82014-10-02 21:08:19 -0700114 void removeInstalledIntents(IntentId intentId);
toma1d16b62014-10-02 23:45:11 -0700115
Brian O'Connor66630c82014-10-02 21:08:19 -0700116}