blob: fe2986fbcbe596189b2b694a4edec2b99f67dc81 [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
Brian O'Connor0e271dc2015-02-04 18:20:25 -080018import org.onosproject.net.intent.IntentData;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080019import org.onosproject.net.intent.IntentException;
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080020import org.onosproject.net.intent.impl.IntentProcessor;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080021import org.slf4j.Logger;
22import org.slf4j.LoggerFactory;
23
24import java.util.Optional;
25
26import static com.google.common.base.Preconditions.checkNotNull;
27
Sho SHIMIZUd3dcaa12015-02-13 13:48:51 -080028/**
29 * Represents a phase where an intent is being compiled.
30 */
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080031final class Compiling implements IntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080032
33 private static final Logger log = LoggerFactory.getLogger(Compiling.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;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080037
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080038 /**
39 * Creates an compiling phase.
40 *
41 * @param processor intent processor that does work for compiling
42 * @param data intent data containing an intent to be compiled
43 */
44 Compiling(IntentProcessor processor, IntentData data) {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080045 this.processor = checkNotNull(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080046 this.data = checkNotNull(data);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080047 }
48
49 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080050 public Optional<IntentProcessPhase> execute() {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080051 try {
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080052 data.setInstallables(processor.compile(data.intent(), null));
Ray Milkeyfd7931d2015-03-30 13:58:38 -070053 return Optional.of(new Installing(processor, data, null));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080054 } catch (IntentException e) {
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080055 log.debug("Unable to compile intent {} due to: {}", data.intent(), e);
56 return Optional.of(new CompileFailed(data));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080057 }
58 }
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080059
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080060}