blob: 5b7953cb82ca9e5244a445542479e96083495317 [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 */
16package org.onosproject.net.intent.impl;
17
18import org.onosproject.net.intent.Intent;
19import org.onosproject.net.intent.IntentException;
20import org.slf4j.Logger;
21import org.slf4j.LoggerFactory;
22
23import java.util.Optional;
24
25import static com.google.common.base.Preconditions.checkNotNull;
26
27class Compiling implements IntentUpdate {
28
29 private static final Logger log = LoggerFactory.getLogger(Compiling.class);
30
31 // TODO: define an interface and use it, instead of IntentManager
32 private final IntentManager intentManager;
33 private final Intent intent;
34
35 Compiling(IntentManager intentManager, Intent intent) {
36 this.intentManager = checkNotNull(intentManager);
37 this.intent = checkNotNull(intent);
38 }
39
40 @Override
41 public Optional<IntentUpdate> execute() {
42 try {
43 return Optional.of(new Installing(intentManager, intent, intentManager.compileIntent(intent, null)));
44 } catch (PathNotFoundException e) {
45 log.debug("Path not found for intent {}", intent);
46 // TODO: revisit to implement failure handling
47 return Optional.of(new DoNothing());
48 } catch (IntentException e) {
49 log.warn("Unable to compile intent {} due to:", intent.id(), e);
50 // TODO: revisit to implement failure handling
51 return Optional.of(new DoNothing());
52 }
53 }
54}