6c670b9d827bfb03b9cbb352389c3f8dad3d6d82
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2020 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.core.engine.executor.context;
23
24 import java.util.ArrayList;
25 import java.util.Collections;
26 import java.util.HashMap;
27 import java.util.List;
28 import java.util.Map;
29 import java.util.Properties;
30 import java.util.TreeMap;
31 import lombok.Getter;
32 import lombok.Setter;
33 import org.onap.policy.apex.context.ContextAlbum;
34 import org.onap.policy.apex.context.ContextRuntimeException;
35 import org.onap.policy.apex.core.engine.context.ApexInternalContext;
36 import org.onap.policy.apex.core.engine.executor.Executor;
37 import org.onap.policy.apex.core.engine.executor.TaskExecutor;
38 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
39 import org.onap.policy.apex.model.basicmodel.concepts.AxConcept;
40 import org.onap.policy.apex.model.policymodel.concepts.AxTask;
41 import org.onap.policy.apex.model.policymodel.concepts.AxTaskParameter;
42 import org.slf4j.ext.XLogger;
43 import org.slf4j.ext.XLoggerFactory;
44
45 /**
46  * Container class for the execution context for Task logic executions in a task being executed in an Apex engine. The
47  * task must have easy access to the task definition, the incoming and outgoing field contexts, as well as the policy,
48  * global, and external context.
49  *
50  * @author Sven van der Meer (sven.van.der.meer@ericsson.com)
51  */
52 public class TaskExecutionContext {
53     // Logger for task execution
54     private static final XLogger EXECUTION_LOGGER =
55             XLoggerFactory.getXLogger("org.onap.policy.apex.executionlogging.TaskExecutionLogging");
56
57     // CHECKSTYLE:OFF: checkstyle:VisibilityModifier Logic has access to these field
58
59     /** A constant <code>boolean true</code> value available for reuse e.g., for the return value */
60     public final Boolean isTrue = true;
61
62     /**
63      * A constant <code>boolean false</code> value available for reuse e.g., for the return value
64      */
65     public final Boolean isFalse = false;
66
67     /** A facade to the full task definition for the task logic being executed. */
68     public final AxTaskFacade subject;
69
70     /** the execution ID for the current APEX policy execution instance. */
71     public final Long executionId;
72
73     /**
74      * The incoming fields from the trigger event for the task. The task logic can access these fields when executing
75      * its logic.
76      */
77     public final Map<String, Object> inFields;
78
79     /**
80      * The outgoing fields from the task. The task logic can access and set these fields with its logic. A task outputs
81      * its result using these fields.
82      */
83     public final Map<String, Object> outFields;
84
85     /**
86      * Logger for task execution, task logic can use this field to access and log to Apex logging.
87      */
88     public final XLogger logger = EXECUTION_LOGGER;
89
90     // CHECKSTYLE:ON: checkstyle:VisibilityModifier
91
92     // All available context albums
93     private final Map<String, ContextAlbum> context;
94
95     // The artifact stack of users of this context
96     private final List<AxConcept> usedArtifactStack;
97
98     // A message specified in the logic
99     @Getter
100     @Setter
101     private String message;
102
103     // Execution properties for a policy execution
104     @Getter
105     private Properties executionProperties;
106
107     // Parameters associated to a task
108     @Getter
109     private Map<String, String> parameters = new HashMap<>();
110
111     /**
112      * Instantiates a new task execution context.
113      *
114      * @param taskExecutor the task executor that requires context
115      * @param executionId the execution ID for the current APEX policy execution instance
116      * @param executionProperties the execution properties for task execution
117      * @param axTask the task definition that is the subject of execution
118      * @param inFields the in fields
119      * @param outFields the out fields
120      * @param internalContext the execution context of the Apex engine in which the task is being executed
121      */
122     public TaskExecutionContext(final TaskExecutor taskExecutor, final long executionId,
123             final Properties executionProperties, final AxTask axTask, final Map<String, Object> inFields,
124             final Map<String, Object> outFields, final ApexInternalContext internalContext) {
125         // The subject is the task definition
126         subject = new AxTaskFacade(axTask);
127
128         // Populate parameters to be accessed in the task logic from the task parameters.
129         populateParameters(axTask.getTaskParameters());
130
131         // Execution ID is the current policy execution instance
132         this.executionId = executionId;
133         this.executionProperties = executionProperties;
134
135         // The input and output fields
136         this.inFields = Collections.unmodifiableMap(inFields);
137         this.outFields = outFields;
138
139         // Set up the context albums for this task
140         context = new TreeMap<>();
141         for (final AxArtifactKey mapKey : subject.task.getContextAlbumReferences()) {
142             context.put(mapKey.getName(), internalContext.getContextAlbums().get(mapKey));
143         }
144
145         // Get the artifact stack of the users of the policy
146         usedArtifactStack = new ArrayList<>();
147         for (Executor<?, ?, ?, ?> parent = taskExecutor.getParent(); parent != null; parent = parent.getParent()) {
148             // Add each parent to the top of the stack
149             usedArtifactStack.add(0, parent.getKey());
150         }
151
152         // Change the stack to an array
153         final AxConcept[] usedArtifactStackArray = usedArtifactStack.toArray(new AxConcept[usedArtifactStack.size()]);
154
155         // Set the user of the context
156         for (final ContextAlbum contextAlbum : context.values()) {
157             contextAlbum.setUserArtifactStack(usedArtifactStackArray);
158         }
159     }
160
161     /**
162      * Populate parameters to be accessed in the task logic.
163      *
164      * @param taskParameters The task parameters
165      */
166     private void populateParameters(Map<String, AxTaskParameter> taskParameters) {
167         taskParameters.entrySet().forEach(taskParamEntry -> parameters.put(taskParamEntry.getKey(),
168             taskParamEntry.getValue().getTaskParameterValue()));
169     }
170
171     /**
172      * Return a context album if it exists in the context definition of this task.
173      *
174      * @param contextAlbumName The context album name
175      * @return The context album
176      * @throws ContextRuntimeException if the context album does not exist on the task for this executor
177      */
178     public ContextAlbum getContextAlbum(final String contextAlbumName) {
179         // Find the context album
180         final ContextAlbum foundContextAlbum = context.get(contextAlbumName);
181
182         // Check if the context album exists
183         if (foundContextAlbum != null) {
184             return foundContextAlbum;
185         } else {
186             throw new ContextRuntimeException("cannot find definition of context album \"" + contextAlbumName
187                     + "\" on task \"" + subject.getId() + "\"");
188         }
189     }
190 }