blob: 39ff82a77648ca37b9e17d20302f7258fff90fb3 [file] [log] [blame]
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08003 *
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
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -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 java.util.Optional;
22
23import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connor6d8e3172015-04-30 15:43:57 -070024import static org.onosproject.net.intent.impl.phase.IntentProcessPhase.transferErrorCount;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080025
Sho SHIMIZUd3dcaa12015-02-13 13:48:51 -080026/**
27 * Represents a phase where intent installation has been requested.
28 */
Sho SHIMIZU662c3db2015-02-23 16:59:01 -080029final class InstallRequest implements IntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080030
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080031 private final IntentProcessor processor;
32 private final IntentData data;
33 private final Optional<IntentData> stored;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080034
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080035 /**
36 * Creates an install request phase.
37 *
38 * @param processor intent processor to be passed to intent process phases
39 * generated after this phase
40 * @param intentData intent data to be processed
41 * @param stored intent data stored in the store
42 */
43 InstallRequest(IntentProcessor processor, IntentData intentData, Optional<IntentData> stored) {
44 this.processor = checkNotNull(processor);
45 this.data = checkNotNull(intentData);
46 this.stored = checkNotNull(stored);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080047 }
48
49 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080050 public Optional<IntentProcessPhase> execute() {
Brian O'Connor6d8e3172015-04-30 15:43:57 -070051 transferErrorCount(data, stored);
52
Brian O'Connorf0c5a052015-04-27 00:34:53 -070053 return Optional.of(new Compiling(processor, data, stored));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080054 }
55}