blob: 8a0709e615e4b9e9eabacd95a32374c3612e10f1 [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
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 SHIMIZU37a24a82015-02-09 09:12:21 -080026/**
27 * Represents a phase of requesting a withdraw of an intent.
28 */
Sho SHIMIZU662c3db2015-02-23 16:59:01 -080029final class WithdrawRequest implements IntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080030
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080031 private final IntentProcessor processor;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080032 private final IntentData data;
Brian O'Connorf0c5a052015-04-27 00:34:53 -070033 private final Optional<IntentData> stored;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080034
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080035 /**
36 * Creates a withdraw 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 */
Brian O'Connorf0c5a052015-04-27 00:34:53 -070043 WithdrawRequest(IntentProcessor processor, IntentData intentData, Optional<IntentData> stored) {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080044 this.processor = checkNotNull(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080045 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'Connor0e271dc2015-02-04 18:20:25 -080051 //TODO perhaps we want to validate that the pending and current are the
52 // same version i.e. they are the same
53 // Note: this call is not just the symmetric version of submit
Brian O'Connorf0c5a052015-04-27 00:34:53 -070054
Brian O'Connor6d8e3172015-04-30 15:43:57 -070055 transferErrorCount(data, stored);
56
Brian O'Connorf0c5a052015-04-27 00:34:53 -070057 if (!stored.isPresent() || stored.get().installables().isEmpty()) {
58 switch (data.request()) {
59 case INSTALL_REQ:
60 return Optional.of(new Failed(data));
61 case WITHDRAW_REQ:
62 default: //TODO "default" case should not happen
63 return Optional.of(new Withdrawn(data));
64 }
65 }
66
67 data.setInstallables(stored.get().installables());
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080068 return Optional.of(new Withdrawing(processor, data));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080069 }
70}