blob: de042e5742c57cecd8bf6bcce2fa278d15e2a3f0 [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 */
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080016package org.onosproject.net.intent.impl.phase;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080017
Brian O'Connor0e271dc2015-02-04 18:20:25 -080018import org.onosproject.net.intent.IntentData;
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080019import org.onosproject.net.intent.impl.IntentProcessor;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080020
21import static com.google.common.base.Preconditions.checkNotNull;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080022import static org.onosproject.net.intent.IntentState.INSTALLING;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080023
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080024/**
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080025 * Represents a phase where an intent is being installed.
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080026 */
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080027class Installing extends FinalIntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080028
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080029 private final IntentProcessor processor;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080030 private final IntentData data;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080031
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080032 /**
33 * Create an installing phase.
34 *
35 * @param processor intent processor that does work for installing
36 * @param data intent data containing an intent to be installed
37 */
38 Installing(IntentProcessor processor, IntentData data) {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080039 this.processor = checkNotNull(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080040 this.data = checkNotNull(data);
41 this.data.setState(INSTALLING);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080042 }
43
44 @Override
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080045 public void preExecute() {
46 processor.install(data);
47 }
48
49 @Override
50 public IntentData data() {
51 return data;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080052 }
53}