aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/main/java/org/openecomp/sdc/be/model/jsonjanusgraph/datamodel/ToscaElement.java
blob: ce9e5e0c434e7d5fc7c8fb2fa2566fe2eee3bacc (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
/*-
 * ============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.model.jsonjanusgraph.datamodel;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import lombok.Getter;
import lombok.Setter;
import org.openecomp.sdc.be.datatypes.elements.AdditionalInfoParameterDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ArtifactDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.DataTypeDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ListCapabilityDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ListRequirementDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.MapPropertiesDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
import org.openecomp.sdc.be.datatypes.enums.ResourceTypeEnum;
import org.openecomp.sdc.be.model.LifecycleStateEnum;
import org.openecomp.sdc.be.model.category.CategoryDefinition;
import org.openecomp.sdc.be.model.jsonjanusgraph.operations.NodeTypeOperation;
import org.openecomp.sdc.common.log.api.ILogConfiguration;
import org.slf4j.MDC;

@Getter
@Setter
public abstract class ToscaElement {

    protected Map<String, Object> metadata;
    protected List<CategoryDefinition> categories;
    protected Map<String, ArtifactDataDefinition> toscaArtifacts;
    protected ToscaElementTypeEnum toscaType;
    private Map<String, ArtifactDataDefinition> artifacts;
    private Map<String, ArtifactDataDefinition> deploymentArtifacts;
    private Map<String, AdditionalInfoParameterDataDefinition> additionalInformation;
    private Map<String, PropertyDataDefinition> properties;
    private Map<String, ListCapabilityDataDefinition> capabilities;
    private Map<String, MapPropertiesDataDefinition> capabilitiesProperties;
    private Map<String, ListRequirementDataDefinition> requirements;
    private Map<String, DataTypeDataDefinition> dataTypes;
    // User
    private String creatorUserId;
    private String creatorFullName;
    private String lastUpdaterUserId;
    private String lastUpdaterFullName;

    private Map<String, String> allVersions;
    private String toscaVersion;

    public ToscaElement(ToscaElementTypeEnum toscaType){
        this.toscaType = toscaType;
    }

    // metadata properties
    // ----------------------------
    public Object getMetadataValue(JsonPresentationFields name) {
        return getMetadataValueOrDefault(name, null);
    }

    public Object getMetadataValueOrDefault(JsonPresentationFields name, Object defaultVal) {
        if (metadata != null) {
            return metadata.getOrDefault(name.getPresentation(), defaultVal);
        }
        return null;
    }

    public void setMetadataValue(JsonPresentationFields name, Object value) {
        if (metadata == null) {
            metadata = new HashMap<>();
        }
        metadata.put(name.getPresentation(), value);

    }
    // --------------------
    public String getUUID() {
        return (String) getMetadataValue(JsonPresentationFields.UUID);
    }

    public void setUUID(String uuid) {
        setMetadataValue(JsonPresentationFields.UUID, uuid);
    }

    public String getVersion() {
        return (String) getMetadataValue(JsonPresentationFields.VERSION);
    }

    public String getNormalizedName() {
        return (String) getMetadataValue(JsonPresentationFields.NORMALIZED_NAME);
    }

    public void setNormalizedName(String normaliseComponentName) {
        setMetadataValue(JsonPresentationFields.NORMALIZED_NAME, normaliseComponentName);
    }

    public String getName() {
        return (String) getMetadataValue(JsonPresentationFields.NAME);
    }

    public String getSystemName() {
        return (String) getMetadataValue(JsonPresentationFields.SYSTEM_NAME);
    }
    public void setSystemName(String systemName) {
        setMetadataValue(JsonPresentationFields.SYSTEM_NAME, systemName);
    }

    public void setLifecycleState(LifecycleStateEnum state) {
        if(state != null)
            setMetadataValue(JsonPresentationFields.LIFECYCLE_STATE, state.name());
    }

    public LifecycleStateEnum getLifecycleState() {
        return LifecycleStateEnum.findState( (String) getMetadataValue(JsonPresentationFields.LIFECYCLE_STATE));
    }

    public Long getCreationDate() {
        return (Long) getMetadataValue(JsonPresentationFields.CREATION_DATE);
    }

    public void setCreationDate(Long currentDate) {
        setMetadataValue(JsonPresentationFields.CREATION_DATE, currentDate);
    }

    public void setLastUpdateDate(Long currentDate) {
        setMetadataValue(JsonPresentationFields.LAST_UPDATE_DATE, currentDate);
    }
    public Long getLastUpdateDate() {
        return (Long) getMetadataValue(JsonPresentationFields.LAST_UPDATE_DATE);
    }

    public String getUniqueId() {
        return (String) getMetadataValue(JsonPresentationFields.UNIQUE_ID);
    }
    public void setUniqueId(String uniqueId) {
         setMetadataValue(JsonPresentationFields.UNIQUE_ID, uniqueId);
    }

    public void setHighestVersion(Boolean isHighest) {
         setMetadataValue(JsonPresentationFields.HIGHEST_VERSION, isHighest);

    }
    public Boolean isHighestVersion() {
        return (Boolean) getMetadataValue(JsonPresentationFields.HIGHEST_VERSION);

    }
    public ResourceTypeEnum getResourceType() {
        String resourceType = (String) getMetadataValue(JsonPresentationFields.RESOURCE_TYPE);
        return resourceType != null ? ResourceTypeEnum.valueOf(resourceType) : null;
    }

    public void setResourceType(ResourceTypeEnum resourceType) {
        if(resourceType != null)
            setMetadataValue(JsonPresentationFields.RESOURCE_TYPE, resourceType.name());
    }

    public ComponentTypeEnum getComponentType() {
        return ComponentTypeEnum.valueOf((String) getMetadataValue(JsonPresentationFields.COMPONENT_TYPE));
    }

    public void setComponentType(ComponentTypeEnum componentType) {
        if(componentType != null)
            setMetadataValue(JsonPresentationFields.COMPONENT_TYPE, componentType.name());
    }

    public String getDerivedFromGenericType(){
        return (String) getMetadataValue(JsonPresentationFields.DERIVED_FROM_GENERIC_TYPE);
    }

    public void setDerivedFromGenericType(String derivedFromGenericType){
        setMetadataValue(JsonPresentationFields.DERIVED_FROM_GENERIC_TYPE, derivedFromGenericType);
    }

    public String getDerivedFromGenericVersion(){
        return (String) getMetadataValue(JsonPresentationFields.DERIVED_FROM_GENERIC_VERSION);
    }

    public void setDerivedFromGenericVersion(String derivedFromGenericVersion){
        setMetadataValue(JsonPresentationFields.DERIVED_FROM_GENERIC_VERSION, derivedFromGenericVersion);
    }

    public Boolean isArchived() { return (Boolean) getMetadataValue(JsonPresentationFields.IS_ARCHIVED); }

    public void setArchived(Boolean archived) { setMetadataValue(JsonPresentationFields.IS_ARCHIVED, archived); }

    public Long getArchiveTime() {
        Object archiveTime = getMetadataValue(JsonPresentationFields.ARCHIVE_TIME);
        if (archiveTime instanceof Integer){
            return new Long((Integer)getMetadataValue(JsonPresentationFields.ARCHIVE_TIME));
        }
        return (Long)archiveTime;
    }

    public void setArchiveTime(Long archiveTime) {
        setMetadataValue(JsonPresentationFields.ARCHIVE_TIME, archiveTime);
    }

    public Boolean isVspArchived() {
        return (Boolean) getMetadataValue(JsonPresentationFields.IS_VSP_ARCHIVED);
    }

    public void setVspArchived(Boolean vspArchived) {
        setMetadataValue(JsonPresentationFields.IS_VSP_ARCHIVED, vspArchived);
    }

    public void generateUUID() {
        String prevUUID = getUUID();
        String version = getVersion();
        if ((prevUUID == null && NodeTypeOperation.uuidNormativeNewVersion.matcher(version).matches()) || NodeTypeOperation.uuidNewVersion.matcher(version).matches()) {
            UUID uuid = UUID.randomUUID();
            setUUID(uuid.toString());
            MDC.put(ILogConfiguration.MDC_SERVICE_INSTANCE_ID, uuid.toString());
        }
    }

}