b53159ce33e68ac9d777a30407e81cd4ee2edbf7
[policy/apex-pdp.git] / model / policy-model / src / main / java / org / onap / policy / apex / model / policymodel / concepts / AxTasks.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2019 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.model.policymodel.concepts;
23
24 import java.util.List;
25 import java.util.Map;
26 import java.util.Map.Entry;
27 import java.util.NavigableMap;
28 import java.util.Set;
29 import java.util.TreeMap;
30
31 import javax.persistence.CascadeType;
32 import javax.persistence.EmbeddedId;
33 import javax.persistence.Entity;
34 import javax.persistence.JoinColumn;
35 import javax.persistence.JoinTable;
36 import javax.persistence.ManyToMany;
37 import javax.persistence.Table;
38 import javax.xml.bind.Unmarshaller;
39 import javax.xml.bind.annotation.XmlAccessType;
40 import javax.xml.bind.annotation.XmlAccessorType;
41 import javax.xml.bind.annotation.XmlElement;
42 import javax.xml.bind.annotation.XmlType;
43
44 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
45 import org.onap.policy.apex.model.basicmodel.concepts.AxConcept;
46 import org.onap.policy.apex.model.basicmodel.concepts.AxConceptGetter;
47 import org.onap.policy.apex.model.basicmodel.concepts.AxConceptGetterImpl;
48 import org.onap.policy.apex.model.basicmodel.concepts.AxKey;
49 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationMessage;
50 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult;
51 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult.ValidationResult;
52 import org.onap.policy.common.utils.validation.Assertions;
53
54 /**
55  * This class is a task container and holds a map of the tasks for an entire Apex model. All Apex
56  * models that use tasks must have an {@link AxTasks} field. The {@link AxTasks} class implements
57  * the helper methods of the {@link AxConceptGetter} interface to allow {@link AxTask} instances to
58  * be retrieved by calling methods directly on this class without referencing the contained map.
59  *
60  * <p>Validation checks that the container key is not null. An error is issued if no tasks are defined
61  * in the container. Each task entry is checked to ensure that its key and value are not null and
62  * that the key matches the key in the map value. Each task entry is then validated individually.
63  */
64 @Entity
65 @Table(name = "AxTasks")
66
67 @XmlAccessorType(XmlAccessType.FIELD)
68 @XmlType(name = "AxTasks", namespace = "http://www.onap.org/policy/apex-pdp", propOrder = {"key", "taskMap"})
69 public class AxTasks extends AxConcept implements AxConceptGetter<AxTask> {
70     private static final long serialVersionUID = 4290442590545820316L;
71
72     @EmbeddedId
73     @XmlElement(name = "key", required = true)
74     private AxArtifactKey key;
75
76     // @formatter:off
77     @ManyToMany(cascade = CascadeType.ALL)
78     @JoinTable(
79             joinColumns = {@JoinColumn(name = "taskMapName", referencedColumnName = "name"),
80                     @JoinColumn(name = "taskMapVersion", referencedColumnName = "version")},
81             inverseJoinColumns = {@JoinColumn(name = "taskName", referencedColumnName = "name"),
82                     @JoinColumn(name = "taskVersion", referencedColumnName = "version")})
83     @XmlElement(required = true)
84     private Map<AxArtifactKey, AxTask> taskMap;
85     // @formatter:on
86
87     /**
88      * The Default Constructor creates a {@link AxTasks} object with a null artifact key and creates
89      * an empty event map.
90      */
91     public AxTasks() {
92         this(new AxArtifactKey());
93     }
94
95     /**
96      * Copy constructor.
97      *
98      * @param copyConcept the concept to copy from
99      */
100     public AxTasks(final AxTasks copyConcept) {
101         super(copyConcept);
102     }
103
104     /**
105      * The Keyed Constructor creates a {@link AxTasks} object with the given artifact key and
106      * creates an empty event map.
107      *
108      * @param key the key
109      */
110     public AxTasks(final AxArtifactKey key) {
111         this(key, new TreeMap<AxArtifactKey, AxTask>());
112     }
113
114     /**
115      * This Constructor creates a task container with all of its fields defined.
116      *
117      * @param key the task container key
118      * @param taskMap the tasks to be stored in the task container
119      */
120     public AxTasks(final AxArtifactKey key, final Map<AxArtifactKey, AxTask> taskMap) {
121         super();
122         Assertions.argumentNotNull(key, "key may not be null");
123         Assertions.argumentNotNull(taskMap, "taskMap may not be null");
124
125         this.key = key;
126         this.taskMap = new TreeMap<>();
127         this.taskMap.putAll(taskMap);
128     }
129
130     /**
131      * When a model is unmarshalled from disk or from the database, the task map is returned as a
132      * raw hash map. This method is called by JAXB after unmarshaling and is used to convert the
133      * hash map to a {@link NavigableMap} so that it will work with the {@link AxConceptGetter}
134      * interface.
135      *
136      * @param unmarshaler the unmarshaler that is unmarshaling the model
137      * @param parent the parent object of this object in the unmarshaler
138      */
139     public void afterUnmarshal(final Unmarshaller unmarshaler, final Object parent) {
140         // The map must be navigable to allow name and version searching, unmarshaling returns a
141         // hash map
142         final NavigableMap<AxArtifactKey, AxTask> navigableTaskMap = new TreeMap<>();
143         navigableTaskMap.putAll(taskMap);
144         taskMap = navigableTaskMap;
145     }
146
147     /**
148      * {@inheritDoc}.
149      */
150     @Override
151     public AxArtifactKey getKey() {
152         return key;
153     }
154
155     /**
156      * {@inheritDoc}.
157      */
158     @Override
159     public List<AxKey> getKeys() {
160         final List<AxKey> keyList = key.getKeys();
161
162         for (final AxTask task : taskMap.values()) {
163             keyList.addAll(task.getKeys());
164         }
165
166         return keyList;
167     }
168
169     /**
170      * Sets the task container key.
171      *
172      * @param key the task container key
173      */
174     public void setKey(final AxArtifactKey key) {
175         Assertions.argumentNotNull(key, "key may not be null");
176         this.key = key;
177     }
178
179     /**
180      * Gets the tasks stored in the task container.
181      *
182      * @return the tasks stored in the task container
183      */
184     public Map<AxArtifactKey, AxTask> getTaskMap() {
185         return taskMap;
186     }
187
188     /**
189      * Sets the tasks to be stored in the task container.
190      *
191      * @param taskMap the tasks to be stored in the task container
192      */
193     public void setTaskMap(final Map<AxArtifactKey, AxTask> taskMap) {
194         Assertions.argumentNotNull(taskMap, "taskMap may not be null");
195         this.taskMap = new TreeMap<>();
196         this.taskMap.putAll(taskMap);
197     }
198
199     /**
200      * {@inheritDoc}.
201      */
202     @Override
203     public AxValidationResult validate(final AxValidationResult resultIn) {
204         AxValidationResult result = resultIn;
205
206         if (key.equals(AxArtifactKey.getNullKey())) {
207             result.addValidationMessage(
208                     new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID, "key is a null key"));
209         }
210
211         result = key.validate(result);
212
213         if (taskMap.size() == 0) {
214             result.addValidationMessage(new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID,
215                     "taskMap may not be empty"));
216         } else {
217             for (final Entry<AxArtifactKey, AxTask> taskEntry : taskMap.entrySet()) {
218                 if (taskEntry.getKey().equals(AxArtifactKey.getNullKey())) {
219                     result.addValidationMessage(new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID,
220                             "key on task entry " + taskEntry.getKey() + " may not be the null key"));
221                 } else if (taskEntry.getValue() == null) {
222                     result.addValidationMessage(new AxValidationMessage(key, this.getClass(), ValidationResult.INVALID,
223                             "value on task entry " + taskEntry.getKey() + " may not be null"));
224                 } else {
225                     if (!taskEntry.getKey().equals(taskEntry.getValue().getKey())) {
226                         result.addValidationMessage(new AxValidationMessage(key, this.getClass(),
227                                 ValidationResult.INVALID, "key on task entry key " + taskEntry.getKey()
228                                         + " does not equal task value key " + taskEntry.getValue().getKey()));
229                     }
230
231                     result = taskEntry.getValue().validate(result);
232                 }
233             }
234         }
235
236         return result;
237     }
238
239     /**
240      * {@inheritDoc}.
241      */
242     @Override
243     public void clean() {
244         key.clean();
245         for (final Entry<AxArtifactKey, AxTask> taskEntry : taskMap.entrySet()) {
246             taskEntry.getKey().clean();
247             taskEntry.getValue().clean();
248         }
249     }
250
251     /**
252      * {@inheritDoc}.
253      */
254     @Override
255     public String toString() {
256         final StringBuilder builder = new StringBuilder();
257         builder.append(this.getClass().getSimpleName());
258         builder.append(":(");
259         builder.append("key=");
260         builder.append(key);
261         builder.append(",taskMap=");
262         builder.append(taskMap);
263         builder.append(")");
264         return builder.toString();
265     }
266
267     /**
268      * {@inheritDoc}.
269      */
270     @Override
271     public AxConcept copyTo(final AxConcept targetObject) {
272         Assertions.argumentNotNull(targetObject, "target may not be null");
273
274         final Object copyObject = targetObject;
275         Assertions.instanceOf(copyObject, AxTasks.class);
276
277         final AxTasks copy = ((AxTasks) copyObject);
278         copy.setKey(new AxArtifactKey(key));
279
280         final Map<AxArtifactKey, AxTask> newTaskMap = new TreeMap<>();
281         for (final Entry<AxArtifactKey, AxTask> taskMapEntry : taskMap.entrySet()) {
282             newTaskMap.put(new AxArtifactKey(taskMapEntry.getKey()), new AxTask(taskMapEntry.getValue()));
283         }
284         copy.setTaskMap(newTaskMap);
285
286         return copy;
287     }
288
289     /**
290      * {@inheritDoc}.
291      */
292     @Override
293     public int hashCode() {
294         final int prime = 31;
295         int result = 1;
296         result = prime * result + key.hashCode();
297         result = prime * result + taskMap.hashCode();
298         return result;
299     }
300
301     /**
302      * {@inheritDoc}.
303      */
304     @Override
305     public boolean equals(final Object obj) {
306         if (obj == null) {
307             return false;
308         }
309         if (this == obj) {
310             return true;
311         }
312
313         if (getClass() != obj.getClass()) {
314             return false;
315         }
316
317         final AxTasks other = (AxTasks) obj;
318         if (!key.equals(other.key)) {
319             return false;
320         }
321         return taskMap.equals(other.taskMap);
322     }
323
324     /**
325      * {@inheritDoc}.
326      */
327     @Override
328     public int compareTo(final AxConcept otherObj) {
329         if (otherObj == null) {
330             return -1;
331         }
332         if (this == otherObj) {
333             return 0;
334         }
335         if (getClass() != otherObj.getClass()) {
336             return this.hashCode() - otherObj.hashCode();
337         }
338
339         final AxTasks other = (AxTasks) otherObj;
340         if (!key.equals(other.key)) {
341             return key.compareTo(other.key);
342         }
343         if (!taskMap.equals(other.taskMap)) {
344             return (taskMap.hashCode() - other.taskMap.hashCode());
345         }
346
347         return 0;
348     }
349
350     /**
351      * {@inheritDoc}.
352      */
353     @Override
354     public AxTask get(final AxArtifactKey conceptKey) {
355         return new AxConceptGetterImpl<>((NavigableMap<AxArtifactKey, AxTask>) taskMap).get(conceptKey);
356     }
357
358     /**
359      * {@inheritDoc}.
360      */
361     @Override
362     public AxTask get(final String conceptKeyName) {
363         return new AxConceptGetterImpl<>((NavigableMap<AxArtifactKey, AxTask>) taskMap).get(conceptKeyName);
364     }
365
366     /**
367      * {@inheritDoc}.
368      */
369     @Override
370     public AxTask get(final String conceptKeyName, final String conceptKeyVersion) {
371         return new AxConceptGetterImpl<>((NavigableMap<AxArtifactKey, AxTask>) taskMap).get(conceptKeyName,
372                 conceptKeyVersion);
373     }
374
375     /**
376      * {@inheritDoc}.
377      */
378     @Override
379     public Set<AxTask> getAll(final String conceptKeyName) {
380         return new AxConceptGetterImpl<>((NavigableMap<AxArtifactKey, AxTask>) taskMap).getAll(conceptKeyName);
381     }
382
383     /**
384      * {@inheritDoc}.
385      */
386     @Override
387     public Set<AxTask> getAll(final String conceptKeyName, final String conceptKeyVersion) {
388         return new AxConceptGetterImpl<>((NavigableMap<AxArtifactKey, AxTask>) taskMap).getAll(conceptKeyName,
389                 conceptKeyVersion);
390     }
391 }