blob: 34469ff196b048b090eb422f2958d566cbb4ad75 [file] [log] [blame]
Sho SHIMIZUfd0cd8c2015-01-28 08:16:58 -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.BatchWrite;
19import org.onosproject.net.intent.Intent;
20
21import java.util.Optional;
22
23import static com.google.common.base.Preconditions.checkNotNull;
24import static org.onosproject.net.intent.IntentState.FAILED;
25
26/**
27 * A processing phase after compilation failure.
28 */
29class CompilingFailed implements CompletedIntentUpdate {
30
31 private final Intent intent;
32
33 /**
34 * Create an instance from the submitted intent.
35 *
36 * @param intent submitted intent.
37 */
38 CompilingFailed(Intent intent) {
39 this.intent = checkNotNull(intent);
40 }
41
42 @Override
43 public Optional<IntentUpdate> execute() {
44 return Optional.empty();
45 }
46
47 @Override
48 public void writeAfterExecution(BatchWrite batchWrite) {
49 batchWrite.setState(intent, FAILED);
50 batchWrite.removeInstalledIntents(intent.id());
51 }
52}