blob: ee854c8660956fc6d5734784ca282c034ac74841 [file] [log] [blame]
Brian O'Connor7775bda2015-02-06 15:01:18 -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;
Brian O'Connor7775bda2015-02-06 15:01:18 -080017
18import org.onosproject.net.flow.FlowRuleOperations;
19import org.onosproject.net.intent.IntentData;
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080020import org.onosproject.net.intent.IntentException;
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080021import org.onosproject.net.intent.impl.IntentProcessor;
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080022import org.slf4j.Logger;
23import org.slf4j.LoggerFactory;
Brian O'Connor7775bda2015-02-06 15:01:18 -080024
25import java.util.Optional;
26
27import static com.google.common.base.Preconditions.checkNotNull;
28
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080029/**
30 * Represents a phase to create a {@link FlowRuleOperations} instance
31 * with using registered intent installers.
32 */
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080033final class WithdrawCoordinating implements IntentProcessPhase {
Brian O'Connor7775bda2015-02-06 15:01:18 -080034
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080035 private static final Logger log = LoggerFactory.getLogger(WithdrawCoordinating.class);
36
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080037 private final IntentProcessor processor;
Brian O'Connor7775bda2015-02-06 15:01:18 -080038 private final IntentData pending;
39 private final IntentData current;
40
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080041 WithdrawCoordinating(IntentProcessor processor, IntentData pending, IntentData current) {
42 this.processor = checkNotNull(processor);
Brian O'Connor7775bda2015-02-06 15:01:18 -080043 this.pending = checkNotNull(pending);
Sho SHIMIZU6aa4fb42015-02-11 23:33:42 -080044 this.current = checkNotNull(current);
Brian O'Connor7775bda2015-02-06 15:01:18 -080045 }
46
47 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080048 public Optional<IntentProcessPhase> execute() {
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080049 try {
Brian O'Connore2eac102015-02-12 18:30:22 -080050 // Note: current.installables() are not null or empty due to createIntentUpdate check
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080051 FlowRuleOperations flowRules = processor.uninstallCoordinate(current, pending);
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080052 pending.setInstallables(current.installables());
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080053 return Optional.of(new Withdrawing(processor, pending, flowRules));
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080054 } catch (IntentException e) {
55 log.warn("Unable to generate generate a FlowRuleOperations from intent {} due to:", pending.intent(), e);
56 return Optional.of(new WithdrawingFailed(pending));
57 }
Brian O'Connor7775bda2015-02-06 15:01:18 -080058 }
59}