aboutsummaryrefslogtreecommitdiffstats
path: root/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyDataDefinition.java
blob: 5d9453a731275b2f3ad6348bba9a65ca572821df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.be.datatypes.elements;

import org.apache.commons.collections.CollectionUtils;
import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import lombok.Data;
import lombok.EqualsAndHashCode;

import static org.apache.commons.collections.CollectionUtils.isNotEmpty;

@EqualsAndHashCode(callSuper = false)
@Data
public class PropertyDataDefinition extends ToscaDataDefinition {

    private String uniqueId;

    // "boolean", "string", "float", "integer", "version" })
    private String type;

    private Boolean required = Boolean.FALSE;

    protected boolean definition = false;

    private String defaultValue;

    private String description;

    private SchemaDefinition schema;

    private boolean password;

    private String name;

    private String value;

    private String label;
    protected Boolean hidden = Boolean.FALSE;
    private Boolean immutable = Boolean.FALSE;

    private String inputPath;
    private String status;
    private String inputId;
    private String instanceUniqueId;
    private String propertyId;
    private String parentPropertyType;
    private String subPropertyInputPath;

    private List<Annotation> annotations;
    /**
     * The resource id which this property belongs to
     */
    private String parentUniqueId;

    private List<GetInputValueDataDefinition> getInputValues;

    private Boolean isDeclaredListInput = Boolean.FALSE;

    private List<GetPolicyValueDataDefinition> getPolicyValues;

    private List<String> propertyConstraints;

    public PropertyDataDefinition() {
        super();
    }

    public PropertyDataDefinition(Map<String, Object> pr) {
        super(pr);
    }

    public PropertyDataDefinition(PropertyDataDefinition propertyDataDefinition) {
        super();
        this.setUniqueId(propertyDataDefinition.getUniqueId());
        this.setRequired(propertyDataDefinition.isRequired());
        this.setDefaultValue(propertyDataDefinition.getDefaultValue());
        this.setDefinition(propertyDataDefinition.getDefinition());
        this.setDescription(propertyDataDefinition.getDescription());
        this.setSchema(propertyDataDefinition.getSchema());
        this.setPassword(propertyDataDefinition.isPassword());
        this.setType(propertyDataDefinition.getType());
        this.setName(propertyDataDefinition.getName());
        this.setValue(propertyDataDefinition.getValue());
        this.setRequired(propertyDataDefinition.isRequired());
        this.setHidden(propertyDataDefinition.isHidden());
        this.setLabel(propertyDataDefinition.getLabel());
        this.setImmutable(propertyDataDefinition.isImmutable());
        this.setParentUniqueId(propertyDataDefinition.getParentUniqueId());
        this.setOwnerId(propertyDataDefinition.getOwnerId());
        this.setGetInputValues(propertyDataDefinition.getGetInputValues());
        this.setGetPolicyValues(propertyDataDefinition.getGetPolicyValues());
        this.setInputPath(propertyDataDefinition.getInputPath());
        this.setStatus(propertyDataDefinition.getStatus());
        this.setInputId(propertyDataDefinition.getInputId());
        this.setInstanceUniqueId(propertyDataDefinition.getInstanceUniqueId());
        this.setPropertyId(propertyDataDefinition.getPropertyId());
        this.parentPropertyType = propertyDataDefinition.getParentPropertyType();
        this.subPropertyInputPath = propertyDataDefinition.getSubPropertyInputPath();
        if (isNotEmpty(propertyDataDefinition.annotations)) {
            this.setAnnotations(propertyDataDefinition.annotations);
        }
        if(isNotEmpty(propertyDataDefinition.getPropertyConstraints())){
            setPropertyConstraints(new ArrayList<>(propertyDataDefinition.getPropertyConstraints()));
        }
        this.setIsDeclaredListInput(propertyDataDefinition.getIsDeclaredListInput());
    }

    // @Override
    public boolean isDefinition() {
        return true;
    }

    public boolean getDefinition() {
        return definition;
    }

    public Boolean isRequired() {
        return required;
    }

    public void setSchemaType(String schemaType) {
        if (schema != null && schema.getProperty() != null) {
            schema.getProperty().setType(schemaType);
        }
    }

    public String getSchemaType() {
        if (schema != null && schema.getProperty() != null) {
            return schema.getProperty().getType();
        }
        return null;
    }

    public PropertyDataDefinition getSchemaProperty() {
        if (schema != null) {
            return schema.getProperty();
        }

        return null;
    }

    public Boolean isHidden() {
        return hidden;
    }

    public Boolean isImmutable() {
        return immutable;
    }

    public String getParentUniqueId() {
        return getOwnerId();
    }

    public void setParentUniqueId(String parentUniqueId) {
        setOwnerId(parentUniqueId);
    }

    public List<GetPolicyValueDataDefinition> safeGetGetPolicyValues() {
        return CollectionUtils.isEmpty(getPolicyValues) ? new ArrayList<>() : getPolicyValues;
    }

    public boolean typeEquals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        PropertyDataDefinition other = (PropertyDataDefinition) obj;
        if (this.getType() == null) {
            return other.getType() == null;
        }
        if (!this.type.equals(other.type)) {
            return false;
        }
        String thisSchemaType = this.getSchemaType();
        String otherSchemaType = other.getSchemaType();
        if (thisSchemaType == null) {
            return otherSchemaType == null;
        }
        return thisSchemaType.equals(otherSchemaType);
    }

    @Override
    public Object getToscaPresentationValue(JsonPresentationFields field) {
        switch (field) {
            case NAME:
                return name;
            case UNIQUE_ID:
                return uniqueId;
            case PASSWORD:
                return password;
            case TYPE:
                return type;
            case DEFINITION:
                return definition;
            case VALUE:
                return value;
            case DEFAULT_VALUE:
                return defaultValue;
            default:
                return super.getToscaPresentationValue(field);
        }
    }

    @Override
    public void setToscaPresentationValue(JsonPresentationFields name, Object value) {
        switch (name) {
            case NAME:
                setName((String) value);
                break;
            case UNIQUE_ID:
                setUniqueId((String) value);
                break;
            case PASSWORD:
                setPassword((Boolean) value);
                break;
            case TYPE:
                setType((String) value);
                break;
            case DEFINITION:
                setDefinition((Boolean) value);
                break;
            case VALUE:
                setValue((String) value);
                break;
            case DEFAULT_VALUE:
                setDefaultValue((String) value);
                break;
            default:
                super.setToscaPresentationValue(name, value);
                break;
        }
    }

    private <T extends ToscaDataDefinition> boolean compareSchemaType(T other) {
        return !"list".equals(type) && !"map".equals(type) || this.getSchema().getProperty().getType().equals(((PropertyDataDefinition) other).getSchema().getProperty().getType());
    }

    @Override
    public <T extends ToscaDataDefinition> T mergeFunction(T other, boolean allowDefaultValueOverride) {
        if (this.getType() != null
                && this.getType().equals(other.getToscaPresentationValue(JsonPresentationFields.TYPE))
                && compareSchemaType(other)) {
            other.setOwnerId(getOwnerId());
            if (allowDefaultValueOverride
                    && getDefaultValue() != null
                    && !getDefaultValue().isEmpty()) {
                other.setToscaPresentationValue(JsonPresentationFields.DEFAULT_VALUE, getDefaultValue());
            }
            return other;
        }
        return null;
    }

    public void convertPropertyDataToInstancePropertyData() {
        if (null != value) {
            defaultValue = value;
        }
    }

    public boolean isGetInputProperty() {
        return this.getGetInputValues() != null && !this.getGetInputValues().isEmpty();
    }

    public void setAnnotations(List<Annotation> newAnnotations) {
        Set<Annotation> annotationSet = isNotEmpty(newAnnotations) ? new HashSet<>(newAnnotations) : new HashSet<>();
        //We would to prioritize the new valid annotations over the old ones if the same one existed.
        if (this.annotations != null) {
            annotationSet.addAll(this.annotations);
        }

        this.annotations = new ArrayList<>(annotationSet);
        setToscaPresentationValue(JsonPresentationFields.ANNOTATIONS, this.annotations);
    }

    public List<Annotation> getAnnotations() {
        return (List<Annotation>) getToscaPresentationValue(JsonPresentationFields.ANNOTATIONS);
    }
}