blob: 7e55a7412bd0cbf5ea58c23bb47c772ae215d573 [file] [log] [blame]
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
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;
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -070020import org.slf4j.Logger;
21import org.slf4j.LoggerFactory;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080022
23import java.util.Optional;
24
25import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connor6d8e3172015-04-30 15:43:57 -070026import static org.onosproject.net.intent.impl.phase.IntentProcessPhase.transferErrorCount;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080027
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080028/**
29 * Represents a phase of requesting a withdraw of an intent.
30 */
Sho SHIMIZU662c3db2015-02-23 16:59:01 -080031final class WithdrawRequest implements IntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080032
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -070033 private static final Logger log = LoggerFactory.getLogger(WithdrawRequest.class);
34
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080035 private final IntentProcessor processor;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080036 private final IntentData data;
Brian O'Connorf0c5a052015-04-27 00:34:53 -070037 private final Optional<IntentData> stored;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080038
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080039 /**
40 * Creates a withdraw request phase.
41 *
42 * @param processor intent processor to be passed to intent process phases
43 * generated after this phase
44 * @param intentData intent data to be processed
45 * @param stored intent data stored in the store
46 */
Brian O'Connorf0c5a052015-04-27 00:34:53 -070047 WithdrawRequest(IntentProcessor processor, IntentData intentData, Optional<IntentData> stored) {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080048 this.processor = checkNotNull(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080049 this.data = checkNotNull(intentData);
50 this.stored = checkNotNull(stored);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080051 }
52
53 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080054 public Optional<IntentProcessPhase> execute() {
Brian O'Connor0e271dc2015-02-04 18:20:25 -080055 //TODO perhaps we want to validate that the pending and current are the
56 // same version i.e. they are the same
57 // Note: this call is not just the symmetric version of submit
Brian O'Connorf0c5a052015-04-27 00:34:53 -070058
Brian O'Connor6d8e3172015-04-30 15:43:57 -070059 transferErrorCount(data, stored);
60
Brian O'Connorf0c5a052015-04-27 00:34:53 -070061 if (!stored.isPresent() || stored.get().installables().isEmpty()) {
62 switch (data.request()) {
63 case INSTALL_REQ:
Yuta HIGUCHI0164c1c2017-05-04 15:43:55 -070064 // illegal state?
65 log.warn("{} was requested to withdraw during installation?", data.intent());
Brian O'Connorf0c5a052015-04-27 00:34:53 -070066 return Optional.of(new Failed(data));
67 case WITHDRAW_REQ:
68 default: //TODO "default" case should not happen
69 return Optional.of(new Withdrawn(data));
70 }
71 }
72
Ray Milkeye1077f82019-02-20 09:31:12 -080073 return Optional.of(new Withdrawing(processor, IntentData.compiled(data, stored.get().installables())));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080074 }
75}