Changes for Checkstyle 8.32
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaEntityType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
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.models.tosca.simple.concepts;
23
24 import java.util.LinkedHashMap;
25 import java.util.List;
26 import java.util.Map;
27 import java.util.Map.Entry;
28 import java.util.TreeMap;
29 import javax.persistence.AttributeOverride;
30 import javax.persistence.AttributeOverrides;
31 import javax.persistence.Column;
32 import javax.persistence.ElementCollection;
33 import javax.persistence.EmbeddedId;
34 import javax.persistence.MappedSuperclass;
35 import lombok.Data;
36 import lombok.EqualsAndHashCode;
37 import lombok.NonNull;
38 import org.apache.commons.lang3.ObjectUtils;
39 import org.onap.policy.common.utils.validation.ParameterValidationUtils;
40 import org.onap.policy.models.base.PfAuthorative;
41 import org.onap.policy.models.base.PfConcept;
42 import org.onap.policy.models.base.PfConceptKey;
43 import org.onap.policy.models.base.PfKey;
44 import org.onap.policy.models.base.PfUtils;
45 import org.onap.policy.models.base.PfValidationMessage;
46 import org.onap.policy.models.base.PfValidationResult;
47 import org.onap.policy.models.base.PfValidationResult.ValidationResult;
48 import org.onap.policy.models.tosca.authorative.concepts.ToscaEntity;
49
50 /**
51  * Class to represent the EntrySchema of list/map property in TOSCA definition.
52  */
53 @MappedSuperclass
54 @Data
55 @EqualsAndHashCode(callSuper = false)
56 public class JpaToscaEntityType<T extends ToscaEntity> extends PfConcept implements PfAuthorative<T> {
57     private static final long serialVersionUID = -1330661834220739393L;
58
59     @EmbeddedId
60     private PfConceptKey key;
61
62     // @formatter:off
63     @Column
64     @AttributeOverrides({
65         @AttributeOverride(name = "name",
66                            column = @Column(name = "derived_from_name")),
67         @AttributeOverride(name = "version",
68                            column = @Column(name = "derived_from_version"))
69         })
70     private PfConceptKey derivedFrom;
71
72     @ElementCollection
73     private Map<String, String> metadata = new TreeMap<>();
74
75     @Column
76     private String description;
77
78     private transient T toscaEntity;
79     // @formatter:on
80
81     /**
82      * The Default Constructor creates a {@link JpaToscaEntityType} object with a null key.
83      */
84     public JpaToscaEntityType() {
85         this(new PfConceptKey());
86     }
87
88     /**
89      * The Key Constructor creates a {@link JpaToscaEntityType} object with the given concept key.
90      *
91      * @param key the key
92      */
93     public JpaToscaEntityType(@NonNull final PfConceptKey key) {
94         this.key = key;
95     }
96
97     /**
98      * Copy constructor.
99      *
100      * @param copyConcept the concept to copy from
101      */
102     public JpaToscaEntityType(final JpaToscaEntityType<T> copyConcept) {
103         super(copyConcept);
104         this.key = new PfConceptKey(copyConcept.key);
105         this.derivedFrom = (copyConcept.derivedFrom != null ? new PfConceptKey(copyConcept.derivedFrom) : null);
106         this.metadata = (copyConcept.metadata != null ? new TreeMap<>(copyConcept.metadata) : null);
107         this.description = copyConcept.description;
108     }
109
110     /**
111      * Authorative constructor.
112      *
113      * @param authorativeConcept the authorative concept to copy from
114      */
115     public JpaToscaEntityType(final T authorativeConcept) {
116         this.fromAuthorative(authorativeConcept);
117     }
118
119     @Override
120     public T toAuthorative() {
121         toscaEntity.setName(getKey().getName());
122         toscaEntity.setVersion(getKey().getVersion());
123
124         if (derivedFrom != null) {
125             toscaEntity.setDerivedFrom(derivedFrom.getName());
126         }
127
128         if (description != null) {
129             toscaEntity.setDescription(description);
130         }
131
132         if (metadata != null) {
133             Map<String, String> metadataMap = new LinkedHashMap<>();
134
135             for (Entry<String, String> entry : metadata.entrySet()) {
136                 metadataMap.put(entry.getKey(), entry.getValue());
137             }
138
139             toscaEntity.setMetadata(metadataMap);
140         }
141
142         return toscaEntity;
143     }
144
145     @Override
146     public void fromAuthorative(T toscaEntity) {
147         key = new PfConceptKey();
148
149         if (toscaEntity.getName() != null) {
150             key.setName(toscaEntity.getName());
151         }
152
153         if (toscaEntity.getVersion() != null) {
154             key.setVersion(toscaEntity.getVersion());
155         }
156
157         if (toscaEntity.getDerivedFrom() != null) {
158             // CHeck if the derived from field contains a name-version ID
159             if (toscaEntity.getDerivedFrom().contains(":")) {
160                 derivedFrom = new PfConceptKey(toscaEntity.getDerivedFrom());
161             } else {
162                 derivedFrom = new PfConceptKey(toscaEntity.getDerivedFrom(), PfKey.NULL_KEY_VERSION);
163             }
164         }
165
166         if (toscaEntity.getDescription() != null) {
167             description = toscaEntity.getDescription();
168         }
169
170         if (toscaEntity.getMetadata() != null) {
171             metadata = new LinkedHashMap<>();
172
173             for (Entry<String, String> metadataEntry : toscaEntity.getMetadata().entrySet()) {
174                 metadata.put(metadataEntry.getKey(), metadataEntry.getValue());
175             }
176         }
177     }
178
179     @Override
180     public List<PfKey> getKeys() {
181         final List<PfKey> keyList = getKey().getKeys();
182         if (derivedFrom != null) {
183             keyList.addAll(derivedFrom.getKeys());
184         }
185         return keyList;
186     }
187
188     @Override
189     public void clean() {
190         key.clean();
191
192         if (derivedFrom != null) {
193             derivedFrom.clean();
194         }
195
196         if (metadata != null) {
197             for (Entry<String, String> metadataEntry : metadata.entrySet()) {
198                 metadataEntry.setValue(metadataEntry.getValue().trim());
199             }
200         }
201
202         description = (description != null ? description.trim() : null);
203     }
204
205     @Override
206     public PfValidationResult validate(PfValidationResult resultIn) {
207         PfValidationResult result = resultIn;
208
209         if (key.isNullKey()) {
210             result.addValidationMessage(
211                     new PfValidationMessage(key, this.getClass(), ValidationResult.INVALID, "key is a null key"));
212         }
213
214         result = key.validate(result);
215
216         if (derivedFrom != null && derivedFrom.isNullKey()) {
217             result.addValidationMessage(new PfValidationMessage(key, this.getClass(), ValidationResult.INVALID,
218                     "derived from key is a null key"));
219         }
220
221         if (metadata != null) {
222             for (Entry<String, String> metadataEntry : metadata.entrySet()) {
223                 if (!ParameterValidationUtils.validateStringParameter(metadataEntry.getKey())) {
224                     result.addValidationMessage(new PfValidationMessage(key, this.getClass(), ValidationResult.INVALID,
225                             "property metadata key may not be null"));
226                 }
227                 if (!ParameterValidationUtils.validateStringParameter(metadataEntry.getValue())) {
228                     result.addValidationMessage(new PfValidationMessage(key, this.getClass(), ValidationResult.INVALID,
229                             "property metadata value may not be null"));
230                 }
231             }
232         }
233
234         if (description != null && description.trim().length() == 0) {
235             result.addValidationMessage(new PfValidationMessage(key, this.getClass(), ValidationResult.INVALID,
236                     "property description may not be blank"));
237         }
238
239         return result;
240     }
241
242     @Override
243     public int compareTo(final PfConcept otherConcept) {
244         if (otherConcept == null) {
245             return -1;
246         }
247         if (this == otherConcept) {
248             return 0;
249         }
250         if (getClass() != otherConcept.getClass()) {
251             return getClass().getName().compareTo(otherConcept.getClass().getName());
252         }
253
254         @SuppressWarnings("unchecked")
255         final JpaToscaEntityType<T> other = (JpaToscaEntityType<T>) otherConcept;
256         if (!key.equals(other.key)) {
257             return key.compareTo(other.key);
258         }
259
260         int result = ObjectUtils.compare(derivedFrom, other.derivedFrom);
261         if (result != 0) {
262             return result;
263         }
264
265         result = PfUtils.compareObjects(metadata, other.metadata);
266         if (result != 0) {
267             return result;
268         }
269
270         return ObjectUtils.compare(description, other.description);
271     }
272 }