blob: 645fe6c98303aff68057ddd58e98f20667e3fefe [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 SHIMIZUb5cd5812015-02-09 14:25:13 -080020import org.onosproject.net.intent.IntentException;
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080021import org.onosproject.net.intent.impl.IntentProcessor;
Brian O'Connor7775bda2015-02-06 15:01:18 -080022import org.slf4j.Logger;
23import org.slf4j.LoggerFactory;
24
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 InstallCoordinating implements IntentProcessPhase {
Brian O'Connor7775bda2015-02-06 15:01:18 -080034
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080035 private static final Logger log = LoggerFactory.getLogger(InstallCoordinating.class);
Brian O'Connor7775bda2015-02-06 15:01:18 -080036
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 InstallCoordinating(IntentProcessor processor, IntentData pending, IntentData current) {
42 this.processor = checkNotNull(processor);
Brian O'Connor7775bda2015-02-06 15:01:18 -080043 this.pending = checkNotNull(pending);
44 this.current = current;
45 }
46
47 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080048 public Optional<IntentProcessPhase> execute() {
Brian O'Connor7775bda2015-02-06 15:01:18 -080049 try {
Brian O'Connor998f0cc2015-02-12 16:56:03 -080050 //FIXME we orphan flow rules that are currently on the data plane
51 // ... should either reuse them or remove them
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080052 FlowRuleOperations flowRules = processor.coordinate(current, pending);
53 return Optional.of(new Installing(processor, pending, flowRules));
Sho SHIMIZUb5cd5812015-02-09 14:25:13 -080054 } catch (IntentException e) {
55 log.warn("Unable to generate a FlowRuleOperations from intent {} due to:", pending.intent().id(), e);
56 return Optional.of(new InstallingFailed(pending));
Brian O'Connor7775bda2015-02-06 15:01:18 -080057 }
58 }
59}