blob: c22cd35221436876d874c17ceeadd5215cd36329 [file] [log] [blame]
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08001/*
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.net.intent.impl;
17
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080018import org.onosproject.net.intent.IntentData;
19
20import java.util.Optional;
21
22import static com.google.common.base.Preconditions.checkNotNull;
23
24// TODO pull out the IntentUpdate inner classes
25class InstallRequest implements IntentUpdate {
26
27 // TODO: define an interface and use it, instead of IntentManager
28 private final IntentManager intentManager;
Brian O'Connor0e271dc2015-02-04 18:20:25 -080029 private final IntentData pending;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080030
Brian O'Connor0e271dc2015-02-04 18:20:25 -080031 InstallRequest(IntentManager intentManager, IntentData intentData) {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080032 this.intentManager = checkNotNull(intentManager);
Brian O'Connor0e271dc2015-02-04 18:20:25 -080033 this.pending = checkNotNull(intentData);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080034 }
35
36 @Override
37 public Optional<IntentUpdate> execute() {
Brian O'Connor0e271dc2015-02-04 18:20:25 -080038 //FIXME... store hack
39 IntentData current = intentManager.store.getIntentData(pending.key());
40 return Optional.of(new Compiling(intentManager, pending, current));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080041 }
42}