2 * ============LICENSE_START=======================================================
3 * controlloop processor
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.controlloop.processor;
23 import org.yaml.snakeyaml.Yaml;
24 import org.yaml.snakeyaml.constructor.Constructor;
26 import org.onap.policy.controlloop.ControlLoopException;
27 import org.onap.policy.controlloop.policy.ControlLoop;
28 import org.onap.policy.controlloop.policy.ControlLoopPolicy;
29 import org.onap.policy.controlloop.policy.FinalResult;
30 import org.onap.policy.controlloop.policy.Policy;
31 import org.onap.policy.controlloop.policy.PolicyResult;
33 public class ControlLoopProcessor {
35 private final String yaml;
36 private final ControlLoopPolicy policy;
37 private String currentPolicy = null;
39 public ControlLoopProcessor(String yaml) throws ControlLoopException {
42 Yaml y = new Yaml(new Constructor(ControlLoopPolicy.class));
43 Object obj = y.load(this.yaml);
44 if (obj instanceof ControlLoopPolicy) {
45 this.policy = (ControlLoopPolicy) obj;
46 this.currentPolicy = this.policy.controlLoop.trigger_policy;
49 throw new ControlLoopException("Unable to parse yaml into ControlLoopPolicy object");
51 } catch (Exception e) {
53 // Most likely this is a YAML Exception
55 throw new ControlLoopException(e);
59 public ControlLoop getControlLoop() {
60 return this.policy.controlLoop;
63 public FinalResult checkIsCurrentPolicyFinal() {
64 return FinalResult.toResult(this.currentPolicy);
67 public Policy getCurrentPolicy() {
68 for (Policy policy : this.policy.policies) {
69 if (policy.id.equals(this.currentPolicy)) {
76 public void nextPolicyForResult(PolicyResult result) throws ControlLoopException {
77 Policy policy = this.getCurrentPolicy();
79 if (this.policy == null) {
80 throw new ControlLoopException("There is no current policy to determine where to go to.");
84 this.currentPolicy = policy.success;
87 this.currentPolicy = policy.failure;
90 this.currentPolicy = policy.failure_timeout;
93 this.currentPolicy = policy.failure_retries;
95 case FAILURE_EXCEPTION:
96 this.currentPolicy = policy.failure_exception;
99 this.currentPolicy = policy.failure_guard;
102 throw new ControlLoopException("Bad policy result given: " + result);
104 } catch (ControlLoopException e) {
105 this.currentPolicy = FinalResult.FINAL_FAILURE_EXCEPTION.toString();