ec5721b95aeb50d0ff4729749000ca2ebabf08f6
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / jsonjanusgraph / operations / ToscaOperationFacade.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.model.jsonjanusgraph.operations;
21
22 import static java.util.Objects.requireNonNull;
23 import static org.apache.commons.collections.CollectionUtils.isEmpty;
24 import static org.apache.commons.collections.CollectionUtils.isNotEmpty;
25 import static org.janusgraph.core.attribute.Text.REGEX;
26
27 import com.vdurmont.semver4j.Semver;
28 import com.vdurmont.semver4j.Semver.SemverType;
29 import fj.data.Either;
30 import java.util.ArrayList;
31 import java.util.Arrays;
32 import java.util.Collection;
33 import java.util.Collections;
34 import java.util.EnumMap;
35 import java.util.HashMap;
36 import java.util.HashSet;
37 import java.util.Iterator;
38 import java.util.LinkedList;
39 import java.util.List;
40 import java.util.Map;
41 import java.util.Map.Entry;
42 import java.util.Objects;
43 import java.util.Optional;
44 import java.util.Set;
45 import java.util.function.BiPredicate;
46 import java.util.function.Predicate;
47 import java.util.stream.Collectors;
48 import java.util.stream.StreamSupport;
49 import org.apache.commons.collections.CollectionUtils;
50 import org.apache.commons.collections.MapUtils;
51 import org.apache.commons.lang3.StringUtils;
52 import org.apache.commons.lang3.tuple.ImmutablePair;
53 import org.apache.tinkerpop.gremlin.structure.Direction;
54 import org.apache.tinkerpop.gremlin.structure.Edge;
55 import org.janusgraph.graphdb.query.JanusGraphPredicate;
56 import org.openecomp.sdc.be.config.Configuration;
57 import org.openecomp.sdc.be.config.ConfigurationManager;
58 import org.openecomp.sdc.be.dao.janusgraph.JanusGraphOperationStatus;
59 import org.openecomp.sdc.be.dao.jsongraph.GraphVertex;
60 import org.openecomp.sdc.be.dao.jsongraph.HealingJanusGraphDao;
61 import org.openecomp.sdc.be.dao.jsongraph.types.EdgeLabelEnum;
62 import org.openecomp.sdc.be.dao.jsongraph.types.JsonParseFlagEnum;
63 import org.openecomp.sdc.be.dao.jsongraph.types.VertexTypeEnum;
64 import org.openecomp.sdc.be.datatypes.elements.ArtifactDataDefinition;
65 import org.openecomp.sdc.be.datatypes.elements.AttributeDataDefinition;
66 import org.openecomp.sdc.be.datatypes.elements.CapabilityDataDefinition;
67 import org.openecomp.sdc.be.datatypes.elements.ComponentInstanceDataDefinition;
68 import org.openecomp.sdc.be.datatypes.elements.DataTypeDataDefinition;
69 import org.openecomp.sdc.be.datatypes.elements.GroupDataDefinition;
70 import org.openecomp.sdc.be.datatypes.elements.ListCapabilityDataDefinition;
71 import org.openecomp.sdc.be.datatypes.elements.ListRequirementDataDefinition;
72 import org.openecomp.sdc.be.datatypes.elements.MapArtifactDataDefinition;
73 import org.openecomp.sdc.be.datatypes.elements.MapAttributesDataDefinition;
74 import org.openecomp.sdc.be.datatypes.elements.MapCapabilityProperty;
75 import org.openecomp.sdc.be.datatypes.elements.MapInterfaceDataDefinition;
76 import org.openecomp.sdc.be.datatypes.elements.MapListCapabilityDataDefinition;
77 import org.openecomp.sdc.be.datatypes.elements.MapListRequirementDataDefinition;
78 import org.openecomp.sdc.be.datatypes.elements.MapPropertiesDataDefinition;
79 import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
80 import org.openecomp.sdc.be.datatypes.elements.RequirementDataDefinition;
81 import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
82 import org.openecomp.sdc.be.datatypes.enums.GraphPropertyEnum;
83 import org.openecomp.sdc.be.datatypes.enums.JsonPresentationFields;
84 import org.openecomp.sdc.be.datatypes.enums.OriginTypeEnum;
85 import org.openecomp.sdc.be.datatypes.enums.PromoteVersionEnum;
86 import org.openecomp.sdc.be.datatypes.enums.ResourceTypeEnum;
87 import org.openecomp.sdc.be.model.ArtifactDefinition;
88 import org.openecomp.sdc.be.model.AttributeDefinition;
89 import org.openecomp.sdc.be.model.CapabilityDefinition;
90 import org.openecomp.sdc.be.model.CatalogUpdateTimestamp;
91 import org.openecomp.sdc.be.model.Component;
92 import org.openecomp.sdc.be.model.ComponentInstance;
93 import org.openecomp.sdc.be.model.ComponentInstanceAttribute;
94 import org.openecomp.sdc.be.model.ComponentInstanceInput;
95 import org.openecomp.sdc.be.model.ComponentInstanceInterface;
96 import org.openecomp.sdc.be.model.ComponentInstanceOutput;
97 import org.openecomp.sdc.be.model.ComponentInstanceProperty;
98 import org.openecomp.sdc.be.model.ComponentParametersView;
99 import org.openecomp.sdc.be.model.DataTypeDefinition;
100 import org.openecomp.sdc.be.model.DistributionStatusEnum;
101 import org.openecomp.sdc.be.model.GroupDefinition;
102 import org.openecomp.sdc.be.model.GroupInstance;
103 import org.openecomp.sdc.be.model.InputDefinition;
104 import org.openecomp.sdc.be.model.LifecycleStateEnum;
105 import org.openecomp.sdc.be.model.OutputDefinition;
106 import org.openecomp.sdc.be.model.PolicyDefinition;
107 import org.openecomp.sdc.be.model.PropertyDefinition;
108 import org.openecomp.sdc.be.model.RelationshipInfo;
109 import org.openecomp.sdc.be.model.RequirementCapabilityRelDef;
110 import org.openecomp.sdc.be.model.RequirementDefinition;
111 import org.openecomp.sdc.be.model.Resource;
112 import org.openecomp.sdc.be.model.Service;
113 import org.openecomp.sdc.be.model.User;
114 import org.openecomp.sdc.be.model.catalog.CatalogComponent;
115 import org.openecomp.sdc.be.model.jsonjanusgraph.config.ContainerInstanceTypesData;
116 import org.openecomp.sdc.be.model.jsonjanusgraph.datamodel.TopologyTemplate;
117 import org.openecomp.sdc.be.model.jsonjanusgraph.datamodel.ToscaElement;
118 import org.openecomp.sdc.be.model.jsonjanusgraph.utils.ModelConverter;
119 import org.openecomp.sdc.be.model.operations.StorageException;
120 import org.openecomp.sdc.be.model.operations.api.StorageOperationStatus;
121 import org.openecomp.sdc.be.model.operations.impl.DaoStatusConverter;
122 import org.openecomp.sdc.be.model.operations.impl.UniqueIdBuilder;
123 import org.openecomp.sdc.be.model.utils.GroupUtils;
124 import org.openecomp.sdc.be.resources.data.ComponentMetadataData;
125 import org.openecomp.sdc.common.jsongraph.util.CommonUtility;
126 import org.openecomp.sdc.common.jsongraph.util.CommonUtility.LogLevelEnum;
127 import org.openecomp.sdc.common.log.wrappers.Logger;
128 import org.openecomp.sdc.common.util.ValidationUtils;
129 import org.springframework.beans.factory.annotation.Autowired;
130
131 @org.springframework.stereotype.Component("tosca-operation-facade")
132 public class ToscaOperationFacade {
133
134     // region - ToscaElement - GetById
135     public static final String PROXY_SUFFIX = "_proxy";
136     // region - Fields
137     private static final String COULDNT_FETCH_A_COMPONENT_WITH_AND_UNIQUE_ID_ERROR = "Couldn't fetch a component with and UniqueId {}, error: {}";
138     private static final String FAILED_TO_FIND_RECENTLY_ADDED_PROPERTY_ON_THE_RESOURCE_STATUS_IS = "Failed to find recently added property {} on the resource {}. Status is {}. ";
139     private static final String FAILED_TO_GET_UPDATED_RESOURCE_STATUS_IS = "Failed to get updated resource {}. Status is {}. ";
140     private static final String FAILED_TO_ADD_THE_PROPERTY_TO_THE_RESOURCE_STATUS_IS = "Failed to add the property {} to the resource {}. Status is {}. ";
141     private static final String SERVICE = "service";
142     private static final String NOT_SUPPORTED_COMPONENT_TYPE = "Not supported component type {}";
143     private static final String COMPONENT_CREATED_SUCCESSFULLY = "Component created successfully!!!";
144     private static final String COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR = "Couldn't fetch component with and unique id {}, error: {}";
145     private static final Logger log = Logger.getLogger(ToscaOperationFacade.class.getName());
146     @Autowired
147     private NodeTypeOperation nodeTypeOperation;
148     @Autowired
149     private TopologyTemplateOperation topologyTemplateOperation;
150     @Autowired
151     private NodeTemplateOperation nodeTemplateOperation;
152     @Autowired
153     private GroupsOperation groupsOperation;
154     @Autowired
155     private HealingJanusGraphDao janusGraphDao;
156     // endregion
157     @Autowired
158     private ContainerInstanceTypesData containerInstanceTypesData;
159
160     private static Optional<CapabilityDefinition> getPropertyCapability(String propertyParentUniqueId, Component containerComponent) {
161         Map<String, List<CapabilityDefinition>> componentCapabilities = containerComponent.getCapabilities();
162         if (MapUtils.isEmpty(componentCapabilities)) {
163             return Optional.empty();
164         }
165         List<CapabilityDefinition> capabilityDefinitionList = componentCapabilities.values().stream().flatMap(Collection::stream)
166             .collect(Collectors.toList());
167         if (CollectionUtils.isEmpty(capabilityDefinitionList)) {
168             return Optional.empty();
169         }
170         return capabilityDefinitionList.stream().filter(capabilityDefinition -> capabilityDefinition.getUniqueId().equals(propertyParentUniqueId))
171             .findAny();
172     }
173
174     public <T extends Component> Either<T, StorageOperationStatus> getToscaFullElement(String componentId) {
175         ComponentParametersView filters = new ComponentParametersView();
176         filters.setIgnoreCapabiltyProperties(false);
177         filters.setIgnoreServicePath(false);
178         return getToscaElement(componentId, filters);
179     }
180
181     public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(String componentId) {
182         return getToscaElement(componentId, JsonParseFlagEnum.ParseAll);
183     }
184
185     public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(String componentId, ComponentParametersView filters) {
186         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, filters.detectParseFlag());
187         if (getVertexEither.isRight()) {
188             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
189             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
190         }
191         return getToscaElementByOperation(getVertexEither.left().value(), filters);
192     }
193
194     public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(String componentId, JsonParseFlagEnum parseFlag) {
195         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, parseFlag);
196         if (getVertexEither.isRight()) {
197             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
198             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
199         }
200         return getToscaElementByOperation(getVertexEither.left().value());
201     }
202
203     public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(GraphVertex componentVertex) {
204         return getToscaElementByOperation(componentVertex);
205     }
206
207     public Either<Boolean, StorageOperationStatus> validateComponentExists(String componentId) {
208         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
209         if (getVertexEither.isRight()) {
210             JanusGraphOperationStatus status = getVertexEither.right().value();
211             if (status == JanusGraphOperationStatus.NOT_FOUND) {
212                 return Either.left(false);
213             } else {
214                 log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
215                 return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
216             }
217         }
218         return Either.left(true);
219     }
220     // endregion
221
222     public <T extends Component> Either<T, StorageOperationStatus> findLastCertifiedToscaElementByUUID(T component) {
223         Map<GraphPropertyEnum, Object> props = new EnumMap<>(GraphPropertyEnum.class);
224         props.put(GraphPropertyEnum.UUID, component.getUUID());
225         props.put(GraphPropertyEnum.STATE, LifecycleStateEnum.CERTIFIED.name());
226         props.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
227         Either<List<GraphVertex>, JanusGraphOperationStatus> getVertexEither = janusGraphDao
228             .getByCriteria(ModelConverter.getVertexType(component), props);
229         if (getVertexEither.isRight()) {
230             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, component.getUniqueId(), getVertexEither.right().value());
231             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
232         }
233         return getToscaElementByOperation(getVertexEither.left().value().get(0));
234     }
235
236     // region - ToscaElement - GetByOperation
237     private <T extends Component> Either<T, StorageOperationStatus> getToscaElementByOperation(GraphVertex componentV) {
238         return getToscaElementByOperation(componentV, new ComponentParametersView());
239     }
240
241     private <T extends Component> Either<T, StorageOperationStatus> getToscaElementByOperation(GraphVertex componentV,
242                                                                                                ComponentParametersView filters) {
243         if (componentV == null) {
244             log.debug("Unexpected null value for `componentV`");
245             return Either.right(StorageOperationStatus.GENERAL_ERROR);
246         } else {
247             VertexTypeEnum label = componentV.getLabel();
248             ToscaElementOperation toscaOperation = getToscaElementOperation(componentV);
249             if (toscaOperation != null) {
250                 log.debug("getToscaElementByOperation: toscaOperation={}", toscaOperation.getClass());
251             }
252             Either<ToscaElement, StorageOperationStatus> toscaElement;
253             String componentId = componentV.getUniqueId();
254             if (toscaOperation != null) {
255                 log.debug("Need to fetch tosca element for id {}", componentId);
256                 toscaElement = toscaOperation.getToscaElement(componentV, filters);
257             } else {
258                 log.debug("not supported tosca type {} for id {}", label, componentId);
259                 toscaElement = Either.right(StorageOperationStatus.BAD_REQUEST);
260             }
261             return toscaElement.left().map(ModelConverter::convertFromToscaElement);
262         }
263     }
264
265     // endregion
266     private ToscaElementOperation getToscaElementOperation(GraphVertex componentV) {
267         VertexTypeEnum label = componentV.getLabel();
268         switch (label) {
269             case NODE_TYPE:
270                 return nodeTypeOperation;
271             case TOPOLOGY_TEMPLATE:
272                 return topologyTemplateOperation;
273             default:
274                 return null;
275         }
276     }
277
278     public <T extends Component> Either<T, StorageOperationStatus> createToscaComponent(T resource) {
279         ToscaElement toscaElement = ModelConverter.convertToToscaElement(resource);
280         ToscaElementOperation toscaElementOperation = getToscaElementOperation(resource);
281         Either<ToscaElement, StorageOperationStatus> createToscaElement = toscaElementOperation.createToscaElement(toscaElement);
282         if (createToscaElement.isLeft()) {
283             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
284             T dataModel = ModelConverter.convertFromToscaElement(createToscaElement.left().value());
285             return Either.left(dataModel);
286         }
287         return Either.right(createToscaElement.right().value());
288     }
289
290     // region - ToscaElement Delete
291     public StorageOperationStatus markComponentToDelete(Component componentToDelete) {
292         if (Boolean.TRUE.equals(componentToDelete.getIsDeleted()) && Boolean.FALSE.equals(componentToDelete.isHighestVersion())) {
293             // component already marked for delete
294             return StorageOperationStatus.OK;
295         } else {
296             Either<GraphVertex, JanusGraphOperationStatus> getResponse = janusGraphDao
297                 .getVertexById(componentToDelete.getUniqueId(), JsonParseFlagEnum.ParseAll);
298             if (getResponse.isRight()) {
299                 log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentToDelete.getUniqueId(), getResponse.right().value());
300                 return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getResponse.right().value());
301             }
302             GraphVertex componentV = getResponse.left().value();
303             // same operation for node type and topology template operations
304             Either<GraphVertex, StorageOperationStatus> result = nodeTypeOperation.markComponentToDelete(componentV);
305             if (result.isRight()) {
306                 return result.right().value();
307             }
308             return StorageOperationStatus.OK;
309         }
310     }
311
312     public <T extends Component> Either<T, StorageOperationStatus> deleteToscaComponent(String componentId) {
313         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.ParseAll);
314         if (getVertexEither.isRight()) {
315             log.debug("Couldn't fetch component vertex with and unique id {}, error: {}", componentId, getVertexEither.right().value());
316             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
317         }
318         Either<ToscaElement, StorageOperationStatus> deleteElement = deleteToscaElement(getVertexEither.left().value());
319         if (deleteElement.isRight()) {
320             log.debug("Failed to delete component with and unique id {}, error: {}", componentId, deleteElement.right().value());
321             return Either.right(deleteElement.right().value());
322         }
323         T dataModel = ModelConverter.convertFromToscaElement(deleteElement.left().value());
324         return Either.left(dataModel);
325     }
326
327     private Either<ToscaElement, StorageOperationStatus> deleteToscaElement(GraphVertex componentV) {
328         VertexTypeEnum label = componentV.getLabel();
329         Either<ToscaElement, StorageOperationStatus> toscaElement;
330         Object componentId = componentV.getUniqueId();
331         switch (label) {
332             case NODE_TYPE:
333                 log.debug("Need to fetch node type for id {}", componentId);
334                 toscaElement = nodeTypeOperation.deleteToscaElement(componentV);
335                 break;
336             case TOPOLOGY_TEMPLATE:
337                 log.debug("Need to fetch topology template for id {}", componentId);
338                 toscaElement = topologyTemplateOperation.deleteToscaElement(componentV);
339                 break;
340             default:
341                 log.debug("not supported tosca type {} for id {}", label, componentId);
342                 toscaElement = Either.right(StorageOperationStatus.BAD_REQUEST);
343                 break;
344         }
345         return toscaElement;
346     }
347
348     // endregion
349     private ToscaElementOperation getToscaElementOperation(Component component) {
350         return ModelConverter.isAtomicComponent(component) ? nodeTypeOperation : topologyTemplateOperation;
351     }
352
353     public <T extends Component> Either<T, StorageOperationStatus> getLatestByToscaResourceNameAndModel(final String toscaResourceName,
354                                                                                                         final String model) {
355         return getLatestByNameAndModel(toscaResourceName, JsonParseFlagEnum.ParseMetadata, new ComponentParametersView(), model);
356     }
357
358     private <T extends Component> Either<T, StorageOperationStatus> getLatestByNameAndModel(final String nodeName,
359                                                                                             final JsonParseFlagEnum parseFlag,
360                                                                                             final ComponentParametersView filter,
361                                                                                             final String model) {
362         Either<T, StorageOperationStatus> result;
363         final Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
364         final Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
365         propertiesToMatch.put(GraphPropertyEnum.TOSCA_RESOURCE_NAME, nodeName);
366         propertiesToMatch.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
367         propertiesToMatch.put(GraphPropertyEnum.MODEL, model);
368         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
369         final Either<List<GraphVertex>, JanusGraphOperationStatus> highestResources = janusGraphDao
370             .getByCriteria(null, propertiesToMatch, propertiesNotToMatch, parseFlag);
371         if (highestResources.isRight()) {
372             final JanusGraphOperationStatus status = highestResources.right().value();
373             log.debug("failed to find resource with name {}. status={} ", nodeName, status);
374             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
375             return result;
376         }
377         final List<GraphVertex> resources = highestResources.left().value();
378         double version = 0.0;
379         GraphVertex highestResource = null;
380         for (final GraphVertex vertex : resources) {
381             final Object versionObj = vertex.getMetadataProperty(GraphPropertyEnum.VERSION);
382             double resourceVersion = Double.parseDouble((String) versionObj);
383             if (resourceVersion > version) {
384                 version = resourceVersion;
385                 highestResource = vertex;
386             }
387         }
388         return getToscaElementByOperation(highestResource, filter);
389     }
390
391     public <T extends Component> Either<T, StorageOperationStatus> getLatestByToscaResourceName(String toscaResourceName) {
392         return getLatestByName(GraphPropertyEnum.TOSCA_RESOURCE_NAME, toscaResourceName, null);
393     }
394
395     public <T extends Component> Either<T, StorageOperationStatus> getFullLatestComponentByToscaResourceName(String toscaResourceName) {
396         ComponentParametersView fetchAllFilter = new ComponentParametersView();
397         fetchAllFilter.setIgnoreServicePath(true);
398         fetchAllFilter.setIgnoreCapabiltyProperties(false);
399         return getLatestByName(GraphPropertyEnum.TOSCA_RESOURCE_NAME, toscaResourceName, JsonParseFlagEnum.ParseAll, fetchAllFilter, null);
400     }
401
402     public <T extends Component> Either<T, StorageOperationStatus> getLatestByName(String resourceName, String modelName) {
403         return getLatestByName(GraphPropertyEnum.NAME, resourceName, modelName);
404     }
405
406     public StorageOperationStatus validateCsarUuidUniqueness(String csarUUID) {
407         Map<GraphPropertyEnum, Object> properties = new EnumMap<>(GraphPropertyEnum.class);
408         properties.put(GraphPropertyEnum.CSAR_UUID, csarUUID);
409         Either<List<GraphVertex>, JanusGraphOperationStatus> resources = janusGraphDao
410             .getByCriteria(null, properties, JsonParseFlagEnum.ParseMetadata);
411         if (resources.isRight()) {
412             if (resources.right().value() == JanusGraphOperationStatus.NOT_FOUND) {
413                 return StorageOperationStatus.OK;
414             } else {
415                 log.debug("failed to get resources from graph with property name: {}", csarUUID);
416                 return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(resources.right().value());
417             }
418         }
419         return StorageOperationStatus.ENTITY_ALREADY_EXISTS;
420     }
421
422     public <T extends Component> Either<Set<T>, StorageOperationStatus> getFollowed(String userId, Set<LifecycleStateEnum> lifecycleStates,
423                                                                                     Set<LifecycleStateEnum> lastStateStates,
424                                                                                     ComponentTypeEnum componentType) {
425         Either<List<ToscaElement>, StorageOperationStatus> followedResources;
426         if (componentType == ComponentTypeEnum.RESOURCE) {
427             followedResources = nodeTypeOperation.getFollowedComponent(userId, lifecycleStates, lastStateStates, componentType);
428         } else {
429             followedResources = topologyTemplateOperation.getFollowedComponent(userId, lifecycleStates, lastStateStates, componentType);
430         }
431         Set<T> components = new HashSet<>();
432         if (followedResources.isRight() && followedResources.right().value() != StorageOperationStatus.NOT_FOUND) {
433             return Either.right(followedResources.right().value());
434         }
435         if (followedResources.isLeft()) {
436             List<ToscaElement> toscaElements = followedResources.left().value();
437             toscaElements.forEach(te -> {
438                 T component = ModelConverter.convertFromToscaElement(te);
439                 components.add(component);
440             });
441         }
442         return Either.left(components);
443     }
444
445     public Either<Resource, StorageOperationStatus> getLatestCertifiedNodeTypeByToscaResourceName(String toscaResourceName) {
446         return getLatestCertifiedByToscaResourceName(toscaResourceName, VertexTypeEnum.NODE_TYPE, JsonParseFlagEnum.ParseMetadata);
447     }
448
449     public Either<Resource, StorageOperationStatus> getByToscaResourceNameMatchingVendorRelease(final String toscaResourceName,
450                                                                                                 final String vendorVersion) {
451         return getByToscaResourceNameMatchingVendorRelease(toscaResourceName, VertexTypeEnum.NODE_TYPE, JsonParseFlagEnum.ParseMetadata,
452             vendorVersion);
453     }
454
455     public Either<Resource, StorageOperationStatus> getByToscaResourceNameMatchingVendorRelease(String toscaResourceName, VertexTypeEnum vertexType,
456                                                                                                 JsonParseFlagEnum parseFlag, String vendorRelease) {
457         Map<GraphPropertyEnum, Object> props = new EnumMap<>(GraphPropertyEnum.class);
458         props.put(GraphPropertyEnum.TOSCA_RESOURCE_NAME, toscaResourceName);
459         props.put(GraphPropertyEnum.STATE, LifecycleStateEnum.CERTIFIED.name());
460         Map<String, Entry<JanusGraphPredicate, Object>> predicateCriteria = getVendorVersionPredicate(vendorRelease);
461         Either<List<GraphVertex>, JanusGraphOperationStatus> getLatestRes = janusGraphDao
462             .getByCriteria(vertexType, props, null, predicateCriteria, parseFlag);
463         if (getLatestRes.isRight() || CollectionUtils.isEmpty(getLatestRes.left().value())) {
464             getLatestRes = janusGraphDao.getByCriteria(vertexType, props, parseFlag);
465         }
466         return getLatestRes.right().map(status -> {
467             CommonUtility
468                 .addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to fetch {} with name {}. status={} ", vertexType, toscaResourceName, status);
469             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status);
470         }).left().bind(resources -> {
471             double version = 0.0;
472             GraphVertex highestResource = null;
473             for (GraphVertex resource : resources) {
474                 double resourceVersion = Double.parseDouble((String) resource.getJsonMetadataField(JsonPresentationFields.VERSION));
475                 if (resourceVersion > version && isValidForVendorRelease(resource, vendorRelease)) {
476                     version = resourceVersion;
477                     highestResource = resource;
478                 }
479             }
480             if (highestResource != null) {
481                 return getToscaFullElement(highestResource.getUniqueId());
482             } else {
483                 log.debug("The vertex with the highest version could not be found for {}", toscaResourceName);
484                 return Either.right(StorageOperationStatus.GENERAL_ERROR);
485             }
486         });
487     }
488
489     public <T extends Component> Either<T, StorageOperationStatus> getByToscaResourceNameAndVersion(final String toscaResourceName, final String version) {
490         Either<T, StorageOperationStatus> result;
491
492         Map<GraphPropertyEnum, Object> hasProperties = new EnumMap<>(GraphPropertyEnum.class);
493         Map<GraphPropertyEnum, Object> hasNotProperties = new EnumMap<>(GraphPropertyEnum.class);
494
495         hasProperties.put(GraphPropertyEnum.TOSCA_RESOURCE_NAME, toscaResourceName);
496         hasProperties.put(GraphPropertyEnum.VERSION, version);
497         hasNotProperties.put(GraphPropertyEnum.IS_DELETED, true);
498
499         Either<List<GraphVertex>, JanusGraphOperationStatus> getResourceRes = janusGraphDao
500             .getByCriteria(VertexTypeEnum.NODE_TYPE, hasProperties, hasNotProperties, JsonParseFlagEnum.ParseAll);
501         if (getResourceRes.isRight()) {
502             JanusGraphOperationStatus status = getResourceRes.right().value();
503             log.debug("failed to find resource with toscaResourceName {}, version {}. Status is {} ", toscaResourceName, version, status);
504             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
505             return result;
506         }
507         return getToscaElementByOperation(getResourceRes.left().value().get(0));
508     }
509
510     private Map<String, Entry<JanusGraphPredicate, Object>> getVendorVersionPredicate(final String vendorRelease) {
511         Map<String, Entry<JanusGraphPredicate, Object>> predicateCriteria = new HashMap<>();
512         if (!"1.0".equals(vendorRelease)) {
513             String[] vendorReleaseElements = vendorRelease.split("\\.");
514             if (vendorReleaseElements.length > 0) {
515                 String regex = ".*\"vendorRelease\":\"";
516                 for (int i = 0; i < vendorReleaseElements.length; i++) {
517                     regex += vendorReleaseElements[i];
518                     regex += i < vendorReleaseElements.length - 1 ? "\\." : "\".*";
519                 }
520                 predicateCriteria.put("metadata", new HashMap.SimpleEntry<>(REGEX, regex));
521             }
522         }
523         return predicateCriteria;
524     }
525
526     public boolean isNodeAssociatedToModel(final String model, final Resource resource) {
527         final List<GraphVertex> modelElementVertices = getResourceModelElementVertices(resource);
528         if (model == null) {
529             return modelElementVertices.isEmpty();
530         }
531         return modelElementVertices.stream().anyMatch(graphVertex -> graphVertex.getMetadataProperty(GraphPropertyEnum.NAME).equals(model));
532     }
533
534     public List<GraphVertex> getResourceModelElementVertices(final Resource resource) {
535         final Either<GraphVertex, JanusGraphOperationStatus> vertex =
536             janusGraphDao.getVertexById(resource.getUniqueId(), JsonParseFlagEnum.NoParse);
537         if (vertex.isRight() || Objects.isNull(vertex.left().value())) {
538             return Collections.emptyList();
539         }
540         final Either<List<GraphVertex>, JanusGraphOperationStatus> nodeModelVertices =
541             janusGraphDao.getParentVertices(vertex.left().value(), EdgeLabelEnum.MODEL_ELEMENT, JsonParseFlagEnum.NoParse);
542         if (nodeModelVertices.isRight() || nodeModelVertices.left().value() == null) {
543             return Collections.emptyList();
544         }
545         return nodeModelVertices.left().value();
546     }
547
548     private boolean isValidForVendorRelease(final GraphVertex resource, final String vendorRelease) {
549         if (!vendorRelease.equals("1.0")) {
550             try {
551                 Semver resourceSemVer = new Semver((String) resource.getJsonMetadataField(JsonPresentationFields.VENDOR_RELEASE), SemverType.NPM);
552                 Semver packageSemVer = new Semver(vendorRelease, SemverType.NPM);
553                 return !resourceSemVer.isGreaterThan(packageSemVer);
554             } catch (Exception exception) {
555                 log.debug("Error in comparing vendor release", exception);
556                 return true;
557             }
558         }
559         return true;
560     }
561
562     public Either<Resource, StorageOperationStatus> getLatestCertifiedByToscaResourceName(String toscaResourceName, VertexTypeEnum vertexType,
563                                                                                           JsonParseFlagEnum parseFlag) {
564         Map<GraphPropertyEnum, Object> props = new EnumMap<>(GraphPropertyEnum.class);
565         props.put(GraphPropertyEnum.TOSCA_RESOURCE_NAME, toscaResourceName);
566         props.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
567         props.put(GraphPropertyEnum.STATE, LifecycleStateEnum.CERTIFIED.name());
568         Either<List<GraphVertex>, JanusGraphOperationStatus> getLatestRes = janusGraphDao.getByCriteria(vertexType, props, parseFlag);
569         return getLatestRes.right().map(status -> {
570             CommonUtility
571                 .addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to fetch {} with name {}. status={} ", vertexType, toscaResourceName, status);
572             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status);
573         }).left().bind(resources -> {
574             double version = 0.0;
575             GraphVertex highestResource = null;
576             for (GraphVertex resource : resources) {
577                 double resourceVersion = Double.parseDouble((String) resource.getJsonMetadataField(JsonPresentationFields.VERSION));
578                 if (resourceVersion > version) {
579                     version = resourceVersion;
580                     highestResource = resource;
581                 }
582             }
583             if (highestResource != null) {
584                 return getToscaFullElement(highestResource.getUniqueId());
585             } else {
586                 log.debug("The vertex with the highest version could not be found for {}", toscaResourceName);
587                 return Either.right(StorageOperationStatus.GENERAL_ERROR);
588             }
589         });
590     }
591
592     public Either<Resource, StorageOperationStatus> getLatestResourceByToscaResourceName(String toscaResourceName) {
593         if (toscaResourceName != null && toscaResourceName.contains("org.openecomp.resource.vf")) {
594             return getLatestResourceByToscaResourceName(toscaResourceName, VertexTypeEnum.TOPOLOGY_TEMPLATE, JsonParseFlagEnum.ParseMetadata);
595         } else {
596             return getLatestResourceByToscaResourceName(toscaResourceName, VertexTypeEnum.NODE_TYPE, JsonParseFlagEnum.ParseMetadata);
597         }
598     }
599
600     public Either<Resource, StorageOperationStatus> getLatestResourceByToscaResourceName(String toscaResourceName, VertexTypeEnum vertexType,
601                                                                                          JsonParseFlagEnum parseFlag) {
602         Either<Resource, StorageOperationStatus> result = null;
603         Map<GraphPropertyEnum, Object> props = new EnumMap<>(GraphPropertyEnum.class);
604         props.put(GraphPropertyEnum.TOSCA_RESOURCE_NAME, toscaResourceName);
605         props.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
606         if (!toscaResourceName.contains("org.openecomp.resource.vf")) {
607             props.put(GraphPropertyEnum.STATE, LifecycleStateEnum.CERTIFIED.name());
608         }
609         Either<List<GraphVertex>, JanusGraphOperationStatus> getLatestRes = janusGraphDao.getByCriteria(vertexType, props, parseFlag);
610         if (getLatestRes.isRight()) {
611             JanusGraphOperationStatus status = getLatestRes.right().value();
612             CommonUtility
613                 .addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to fetch {} with name {}. status={} ", vertexType, toscaResourceName, status);
614             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
615         }
616         if (result == null) {
617             List<GraphVertex> resources = getLatestRes.left().value();
618             double version = 0.0;
619             GraphVertex highestResource = null;
620             for (GraphVertex resource : resources) {
621                 double resourceVersion = Double.parseDouble((String) resource.getJsonMetadataField(JsonPresentationFields.VERSION));
622                 if (resourceVersion > version) {
623                     version = resourceVersion;
624                     highestResource = resource;
625                 }
626             }
627             if (highestResource != null) {
628                 result = getToscaFullElement(highestResource.getUniqueId());
629             } else {
630                 log.debug("The vertex with the highest version could not be found for {}", toscaResourceName);
631                 result = Either.right(StorageOperationStatus.GENERAL_ERROR);
632             }
633         }
634         return result;
635     }
636
637     public Either<Boolean, StorageOperationStatus> validateToscaResourceNameExists(String templateName) {
638         Either<Boolean, StorageOperationStatus> validateUniquenessRes = validateToscaResourceNameUniqueness(templateName);
639         if (validateUniquenessRes.isLeft()) {
640             return Either.left(!validateUniquenessRes.left().value());
641         }
642         return validateUniquenessRes;
643     }
644
645     public Either<RequirementCapabilityRelDef, StorageOperationStatus> dissociateResourceInstances(String componentId,
646                                                                                                    RequirementCapabilityRelDef requirementDef) {
647         return nodeTemplateOperation.dissociateResourceInstances(componentId, requirementDef);
648     }
649
650     /**
651      * Allows to get fulfilled requirement by relation and received predicate
652      */
653     public Either<RequirementDataDefinition, StorageOperationStatus> getFulfilledRequirementByRelation(String componentId, String instanceId,
654                                                                                                        RequirementCapabilityRelDef relation,
655                                                                                                        BiPredicate<RelationshipInfo, RequirementDataDefinition> predicate) {
656         return nodeTemplateOperation.getFulfilledRequirementByRelation(componentId, instanceId, relation, predicate);
657     }
658
659     /**
660      * Allows to get fulfilled capability by relation and received predicate
661      */
662     public Either<CapabilityDataDefinition, StorageOperationStatus> getFulfilledCapabilityByRelation(String componentId, String instanceId,
663                                                                                                      RequirementCapabilityRelDef relation,
664                                                                                                      BiPredicate<RelationshipInfo, CapabilityDataDefinition> predicate) {
665         return nodeTemplateOperation.getFulfilledCapabilityByRelation(componentId, instanceId, relation, predicate);
666     }
667
668     public Either<List<RequirementCapabilityRelDef>, StorageOperationStatus> associateResourceInstances(Component component, String componentId,
669                                                                                                         List<RequirementCapabilityRelDef> relations) {
670         Either<List<RequirementCapabilityRelDef>, StorageOperationStatus> reqAndCapListEither = nodeTemplateOperation
671             .associateResourceInstances(component, componentId, relations);
672         if (component != null) {
673             updateInstancesCapAndReqOnComponentFromDB(component);
674         }
675         return reqAndCapListEither;
676     }
677
678     protected Either<Boolean, StorageOperationStatus> validateToscaResourceNameUniqueness(String name) {
679         Map<GraphPropertyEnum, Object> properties = new EnumMap<>(GraphPropertyEnum.class);
680         properties.put(GraphPropertyEnum.TOSCA_RESOURCE_NAME, name);
681         Either<List<GraphVertex>, JanusGraphOperationStatus> resources = janusGraphDao
682             .getByCriteria(null, properties, JsonParseFlagEnum.ParseMetadata);
683         if (resources.isRight() && resources.right().value() != JanusGraphOperationStatus.NOT_FOUND) {
684             log.debug("failed to get resources from graph with property name: {}", name);
685             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(resources.right().value()));
686         }
687         List<GraphVertex> resourceList = (resources.isLeft() ? resources.left().value() : null);
688         if (isNotEmpty(resourceList)) {
689             if (log.isDebugEnabled()) {
690                 StringBuilder builder = new StringBuilder();
691                 for (GraphVertex resourceData : resourceList) {
692                     builder.append(resourceData.getUniqueId() + "|");
693                 }
694                 log.debug("resources  with property name:{} exists in graph. found {}", name, builder);
695             }
696             return Either.left(false);
697         } else {
698             log.debug("resources  with property name:{} does not exists in graph", name);
699             return Either.left(true);
700         }
701     }
702
703     // region - Component Update
704     public Either<Resource, StorageOperationStatus> overrideComponent(Resource newComponent, Resource oldComponent) {
705         copyArtifactsToNewComponent(newComponent, oldComponent);
706         Either<GraphVertex, JanusGraphOperationStatus> componentVEither = janusGraphDao
707             .getVertexById(oldComponent.getUniqueId(), JsonParseFlagEnum.NoParse);
708         if (componentVEither.isRight()) {
709             log.debug("Failed to fetch component {} error {}", oldComponent.getUniqueId(), componentVEither.right().value());
710             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(componentVEither.right().value()));
711         }
712         GraphVertex componentv = componentVEither.left().value();
713         Either<GraphVertex, JanusGraphOperationStatus> parentVertexEither = janusGraphDao
714             .getParentVertex(componentv, EdgeLabelEnum.VERSION, JsonParseFlagEnum.NoParse);
715         if (parentVertexEither.isRight() && parentVertexEither.right().value() != JanusGraphOperationStatus.NOT_FOUND) {
716             log.debug("Failed to fetch parent version for component {} error {}", oldComponent.getUniqueId(), parentVertexEither.right().value());
717             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(parentVertexEither.right().value()));
718         }
719         Either<ToscaElement, StorageOperationStatus> deleteToscaComponent = deleteToscaElement(componentv);
720         if (deleteToscaComponent.isRight()) {
721             log.debug("Failed to remove old component {} error {}", oldComponent.getUniqueId(), deleteToscaComponent.right().value());
722             return Either.right(deleteToscaComponent.right().value());
723         }
724         Either<Resource, StorageOperationStatus> createToscaComponent = createToscaComponent(newComponent);
725         if (createToscaComponent.isRight()) {
726             log.debug("Failed to create tosca element component {} error {}", newComponent.getUniqueId(), createToscaComponent.right().value());
727             return Either.right(createToscaComponent.right().value());
728         }
729         Resource newElement = createToscaComponent.left().value();
730         Either<GraphVertex, JanusGraphOperationStatus> newVersionEither = janusGraphDao
731             .getVertexById(newElement.getUniqueId(), JsonParseFlagEnum.NoParse);
732         if (newVersionEither.isRight()) {
733             log.debug("Failed to fetch new tosca element component {} error {}", newComponent.getUniqueId(), newVersionEither.right().value());
734             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(newVersionEither.right().value()));
735         }
736         if (parentVertexEither.isLeft()) {
737             GraphVertex previousVersionV = parentVertexEither.left().value();
738             JanusGraphOperationStatus createEdge = janusGraphDao
739                 .createEdge(previousVersionV, newVersionEither.left().value(), EdgeLabelEnum.VERSION, null);
740             if (createEdge != JanusGraphOperationStatus.OK) {
741                 log.debug("Failed to associate to previous version {} new version {} error {}", previousVersionV.getUniqueId(),
742                     newVersionEither.right().value(), createEdge);
743                 return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(createEdge));
744             }
745         }
746         return Either.left(newElement);
747     }
748
749     void copyArtifactsToNewComponent(Resource newComponent, Resource oldComponent) {
750         // TODO - check if required
751         Map<String, ArtifactDefinition> toscaArtifacts = oldComponent.getToscaArtifacts();
752         if (toscaArtifacts != null && !toscaArtifacts.isEmpty()) {
753             toscaArtifacts.values().stream().forEach(a -> a.setDuplicated(Boolean.TRUE));
754         }
755         newComponent.setToscaArtifacts(toscaArtifacts);
756         Map<String, ArtifactDefinition> artifacts = oldComponent.getArtifacts();
757         if (artifacts != null && !artifacts.isEmpty()) {
758             artifacts.values().stream().forEach(a -> a.setDuplicated(Boolean.TRUE));
759         }
760         newComponent.setArtifacts(artifacts);
761         Map<String, ArtifactDefinition> depArtifacts = oldComponent.getDeploymentArtifacts();
762         if (depArtifacts != null && !depArtifacts.isEmpty()) {
763             depArtifacts.values().stream().forEach(a -> a.setDuplicated(Boolean.TRUE));
764         }
765         newComponent.setDeploymentArtifacts(depArtifacts);
766         newComponent.setLastUpdateDate(null);
767         newComponent.setHighestVersion(true);
768     }
769
770     public <T extends Component> Either<T, StorageOperationStatus> updateToscaElement(T componentToUpdate) {
771         return updateToscaElement(componentToUpdate, new ComponentParametersView());
772     }
773
774     public <T extends Component> Either<T, StorageOperationStatus> updateToscaElement(T componentToUpdate, ComponentParametersView filterResult) {
775         String componentId = componentToUpdate.getUniqueId();
776         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.ParseAll);
777         if (getVertexEither.isRight()) {
778             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
779             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
780         }
781         GraphVertex elementV = getVertexEither.left().value();
782         ToscaElementOperation toscaElementOperation = getToscaElementOperation(elementV);
783         ToscaElement toscaElementToUpdate = ModelConverter.convertToToscaElement(componentToUpdate);
784         Either<ToscaElement, StorageOperationStatus> updateToscaElement = null;
785         if (toscaElementOperation != null) {
786             updateToscaElement = toscaElementOperation.updateToscaElement(toscaElementToUpdate, elementV, filterResult);
787         } else {
788             log.debug("Null value returned by `getToscaElementOperation` with value {}", elementV);
789             updateToscaElement = Either.right(StorageOperationStatus.GENERAL_ERROR);
790         }
791         return updateToscaElement.bimap(ModelConverter::convertFromToscaElement, status -> {
792             log.debug("Failed to update tosca element {} error {}", componentId, status);
793             return status;
794         });
795     }
796
797     private <T extends Component> Either<T, StorageOperationStatus> getLatestByName(GraphPropertyEnum property, String nodeName,
798                                                                                     JsonParseFlagEnum parseFlag, String modelName) {
799         return getLatestByName(property, nodeName, parseFlag, new ComponentParametersView(), modelName);
800     }
801
802     private <T extends Component> Either<T, StorageOperationStatus> getLatestByName(GraphPropertyEnum property, String nodeName,
803                                                                                     JsonParseFlagEnum parseFlag, ComponentParametersView filter,
804                                                                                     String model) {
805         Either<T, StorageOperationStatus> result;
806         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
807         Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
808         propertiesToMatch.put(property, nodeName);
809         propertiesToMatch.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
810         propertiesToMatch.put(GraphPropertyEnum.MODEL, model);
811         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
812         Either<List<GraphVertex>, JanusGraphOperationStatus> highestResources = janusGraphDao
813             .getByCriteria(null, propertiesToMatch, propertiesNotToMatch, parseFlag);
814         if (highestResources.isRight()) {
815             JanusGraphOperationStatus status = highestResources.right().value();
816             log.debug("failed to find resource with name {}. status={} ", nodeName, status);
817             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
818             return result;
819         }
820         List<GraphVertex> resources = highestResources.left().value();
821         double version = 0.0;
822         GraphVertex highestResource = null;
823         for (GraphVertex vertex : resources) {
824             Object versionObj = vertex.getMetadataProperty(GraphPropertyEnum.VERSION);
825             double resourceVersion = Double.parseDouble((String) versionObj);
826             if (resourceVersion > version) {
827                 version = resourceVersion;
828                 highestResource = vertex;
829             }
830         }
831         return getToscaElementByOperation(highestResource, filter);
832     }
833
834     // region - Component Get By ..
835     private <T extends Component> Either<T, StorageOperationStatus> getLatestByName(GraphPropertyEnum property, String nodeName, String modelName) {
836         return getLatestByName(property, nodeName, JsonParseFlagEnum.ParseMetadata, modelName);
837     }
838
839     public <T extends Component> Either<List<T>, StorageOperationStatus> getBySystemName(ComponentTypeEnum componentType, String systemName) {
840         Either<List<T>, StorageOperationStatus> result = null;
841         Either<T, StorageOperationStatus> getComponentRes;
842         List<T> components = new ArrayList<>();
843         List<GraphVertex> componentVertices;
844         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
845         Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
846         propertiesToMatch.put(GraphPropertyEnum.SYSTEM_NAME, systemName);
847         if (componentType != null) {
848             propertiesToMatch.put(GraphPropertyEnum.COMPONENT_TYPE, componentType.name());
849         }
850         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
851         Either<List<GraphVertex>, JanusGraphOperationStatus> getComponentsRes = janusGraphDao
852             .getByCriteria(null, propertiesToMatch, propertiesNotToMatch, JsonParseFlagEnum.ParseAll);
853         if (getComponentsRes.isRight()) {
854             JanusGraphOperationStatus status = getComponentsRes.right().value();
855             log.debug("Failed to fetch the component with system name {}. Status is {} ", systemName, status);
856             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
857         }
858         if (result == null) {
859             componentVertices = getComponentsRes.left().value();
860             for (GraphVertex componentVertex : componentVertices) {
861                 getComponentRes = getToscaElementByOperation(componentVertex);
862                 if (getComponentRes.isRight()) {
863                     log.debug("Failed to get the component {}. Status is {} ", componentVertex.getJsonMetadataField(JsonPresentationFields.NAME),
864                         getComponentRes.right().value());
865                     result = Either.right(getComponentRes.right().value());
866                     break;
867                 }
868                 T componentBySystemName = getComponentRes.left().value();
869                 log.debug("Found component, id: {}", componentBySystemName.getUniqueId());
870                 components.add(componentBySystemName);
871             }
872         }
873         if (result == null) {
874             result = Either.left(components);
875         }
876         return result;
877     }
878
879     public <T extends Component> Either<T, StorageOperationStatus> getComponentByNameAndVersion(ComponentTypeEnum componentType, String name,
880                                                                                                 String version) {
881         return getComponentByNameAndVersion(componentType, name, version, JsonParseFlagEnum.ParseAll);
882     }
883
884     public <T extends Component> Either<T, StorageOperationStatus> getComponentByNameAndVersion(ComponentTypeEnum componentType, String name,
885                                                                                                 String version, JsonParseFlagEnum parseFlag) {
886         Either<T, StorageOperationStatus> result;
887         Map<GraphPropertyEnum, Object> hasProperties = new EnumMap<>(GraphPropertyEnum.class);
888         Map<GraphPropertyEnum, Object> hasNotProperties = new EnumMap<>(GraphPropertyEnum.class);
889         hasProperties.put(GraphPropertyEnum.NAME, name);
890         hasProperties.put(GraphPropertyEnum.VERSION, version);
891         hasNotProperties.put(GraphPropertyEnum.IS_DELETED, true);
892         if (componentType != null) {
893             hasProperties.put(GraphPropertyEnum.COMPONENT_TYPE, componentType.name());
894         }
895         Either<List<GraphVertex>, JanusGraphOperationStatus> getResourceRes = janusGraphDao
896             .getByCriteria(null, hasProperties, hasNotProperties, parseFlag);
897         if (getResourceRes.isRight()) {
898             JanusGraphOperationStatus status = getResourceRes.right().value();
899             log.debug("failed to find resource with name {}, version {}. Status is {} ", name, version, status);
900             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
901             return result;
902         }
903         return getToscaElementByOperation(getResourceRes.left().value().get(0));
904     }
905
906     public <T extends Component> Either<T, StorageOperationStatus> getComponentByNameAndVendorRelease(final ComponentTypeEnum componentType,
907         final String name, final String vendorRelease,
908         final JsonParseFlagEnum parseFlag) {
909         Map<GraphPropertyEnum, Object> hasProperties = new EnumMap<>(GraphPropertyEnum.class);
910         Map<GraphPropertyEnum, Object> hasNotProperties = new EnumMap<>(GraphPropertyEnum.class);
911         hasProperties.put(GraphPropertyEnum.NAME, name);
912         hasNotProperties.put(GraphPropertyEnum.IS_DELETED, true);
913         if (componentType != null) {
914             hasProperties.put(GraphPropertyEnum.COMPONENT_TYPE, componentType.name());
915         }
916         Map<String, Entry<JanusGraphPredicate, Object>> predicateCriteria = getVendorVersionPredicate(vendorRelease);
917         Either<List<GraphVertex>, JanusGraphOperationStatus> getResourceRes = janusGraphDao.getByCriteria(null, hasProperties, hasNotProperties,
918             predicateCriteria, parseFlag);
919         if (getResourceRes.isRight()) {
920             JanusGraphOperationStatus status = getResourceRes.right().value();
921             log.debug("failed to find resource with name {}, version {}. Status is {} ", name, predicateCriteria, status);
922             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
923         }
924         return getToscaElementByOperation(getResourceRes.left().value().get(0));
925     }
926
927     public Either<List<CatalogComponent>, StorageOperationStatus> getCatalogOrArchiveComponents(boolean isCatalog,
928                                                                                                 List<OriginTypeEnum> excludeTypes) {
929         List<ResourceTypeEnum> excludedResourceTypes = Optional.ofNullable(excludeTypes).orElse(Collections.emptyList()).stream()
930             .filter(type -> !type.equals(OriginTypeEnum.SERVICE)).map(type -> ResourceTypeEnum.getTypeByName(type.name()))
931             .collect(Collectors.toList());
932         return topologyTemplateOperation.getElementCatalogData(isCatalog, excludedResourceTypes);
933     }
934
935     // endregion
936     public <T extends Component> Either<List<T>, StorageOperationStatus> getCatalogComponents(ComponentTypeEnum componentType,
937                                                                                               List<OriginTypeEnum> excludeTypes,
938                                                                                               boolean isHighestVersions) {
939         List<T> components = new ArrayList<>();
940         Either<List<ToscaElement>, StorageOperationStatus> catalogDataResult;
941         List<ToscaElement> toscaElements = new ArrayList<>();
942         List<ResourceTypeEnum> excludedResourceTypes = Optional.ofNullable(excludeTypes).orElse(Collections.emptyList()).stream()
943             .filter(type -> !type.equals(OriginTypeEnum.SERVICE)).map(type -> ResourceTypeEnum.getTypeByName(type.name()))
944             .collect(Collectors.toList());
945         switch (componentType) {
946             case RESOURCE:
947                 catalogDataResult = nodeTypeOperation.getElementCatalogData(ComponentTypeEnum.RESOURCE, excludedResourceTypes, isHighestVersions);
948                 if (catalogDataResult.isRight()) {
949                     return Either.right(catalogDataResult.right().value());
950                 }
951                 toscaElements = catalogDataResult.left().value();
952                 break;
953             case SERVICE:
954                 if (excludeTypes != null && excludeTypes.contains(OriginTypeEnum.SERVICE)) {
955                     break;
956                 }
957                 catalogDataResult = topologyTemplateOperation.getElementCatalogData(ComponentTypeEnum.SERVICE, null, isHighestVersions);
958                 if (catalogDataResult.isRight()) {
959                     return Either.right(catalogDataResult.right().value());
960                 }
961                 toscaElements = catalogDataResult.left().value();
962                 break;
963             default:
964                 log.debug(NOT_SUPPORTED_COMPONENT_TYPE, componentType);
965                 return Either.right(StorageOperationStatus.BAD_REQUEST);
966         }
967         toscaElements.forEach(te -> {
968             T component = ModelConverter.convertFromToscaElement(te);
969             components.add(component);
970         });
971         return Either.left(components);
972     }
973
974     public Either<List<String>, StorageOperationStatus> deleteMarkedElements(ComponentTypeEnum componentType) {
975         Either<List<GraphVertex>, StorageOperationStatus> allComponentsMarkedForDeletion;
976         switch (componentType) {
977             case RESOURCE:
978                 allComponentsMarkedForDeletion = nodeTypeOperation.getAllComponentsMarkedForDeletion(componentType);
979                 break;
980             case SERVICE:
981             case PRODUCT:
982                 allComponentsMarkedForDeletion = topologyTemplateOperation.getAllComponentsMarkedForDeletion(componentType);
983                 break;
984             default:
985                 log.debug(NOT_SUPPORTED_COMPONENT_TYPE, componentType);
986                 return Either.right(StorageOperationStatus.BAD_REQUEST);
987         }
988         if (allComponentsMarkedForDeletion.isRight()) {
989             return Either.right(allComponentsMarkedForDeletion.right().value());
990         }
991         List<GraphVertex> allMarked = allComponentsMarkedForDeletion.left().value();
992         return Either.left(checkIfInUseAndDelete(allMarked));
993     }
994
995     private List<String> checkIfInUseAndDelete(List<GraphVertex> allMarked) {
996         final List<EdgeLabelEnum> forbiddenEdgeLabelEnums = Arrays
997             .asList(EdgeLabelEnum.INSTANCE_OF, EdgeLabelEnum.PROXY_OF, EdgeLabelEnum.ALLOTTED_OF);
998         List<String> deleted = new ArrayList<>();
999         for (GraphVertex elementV : allMarked) {
1000             boolean isAllowedToDelete = true;
1001             for (EdgeLabelEnum edgeLabelEnum : forbiddenEdgeLabelEnums) {
1002                 Either<Edge, JanusGraphOperationStatus> belongingEdgeByCriteria = janusGraphDao
1003                     .getBelongingEdgeByCriteria(elementV, edgeLabelEnum, null);
1004                 if (belongingEdgeByCriteria.isLeft()) {
1005                     log.debug("Marked element {} in use. don't delete it", elementV.getUniqueId());
1006                     isAllowedToDelete = false;
1007                     break;
1008                 }
1009             }
1010             if (isAllowedToDelete) {
1011                 Either<ToscaElement, StorageOperationStatus> deleteToscaElement = deleteToscaElement(elementV);
1012                 if (deleteToscaElement.isRight()) {
1013                     log.debug("Failed to delete marked element UniqueID {}, Name {}, error {}", elementV.getUniqueId(),
1014                         elementV.getMetadataProperties().get(GraphPropertyEnum.NAME), deleteToscaElement.right().value());
1015                     continue;
1016                 }
1017                 deleted.add(elementV.getUniqueId());
1018             }
1019         }
1020         return deleted;
1021     }
1022
1023     public Either<List<String>, StorageOperationStatus> getAllComponentsMarkedForDeletion(ComponentTypeEnum componentType) {
1024         Either<List<GraphVertex>, StorageOperationStatus> allComponentsMarkedForDeletion;
1025         switch (componentType) {
1026             case RESOURCE:
1027                 allComponentsMarkedForDeletion = nodeTypeOperation.getAllComponentsMarkedForDeletion(componentType);
1028                 break;
1029             case SERVICE:
1030             case PRODUCT:
1031                 allComponentsMarkedForDeletion = topologyTemplateOperation.getAllComponentsMarkedForDeletion(componentType);
1032                 break;
1033             default:
1034                 log.debug(NOT_SUPPORTED_COMPONENT_TYPE, componentType);
1035                 return Either.right(StorageOperationStatus.BAD_REQUEST);
1036         }
1037         if (allComponentsMarkedForDeletion.isRight()) {
1038             return Either.right(allComponentsMarkedForDeletion.right().value());
1039         }
1040         return Either.left(allComponentsMarkedForDeletion.left().value().stream().map(GraphVertex::getUniqueId).collect(Collectors.toList()));
1041     }
1042
1043     // region - Component Update
1044     public Either<ImmutablePair<Component, String>, StorageOperationStatus> addComponentInstanceToTopologyTemplate(Component containerComponent,
1045                                                                                                                    Component origComponent,
1046                                                                                                                    ComponentInstance componentInstance,
1047                                                                                                                    boolean allowDeleted, User user) {
1048         Either<ImmutablePair<Component, String>, StorageOperationStatus> result = null;
1049         Either<ToscaElement, StorageOperationStatus> updateContainerComponentRes = null;
1050         if (StringUtils.isEmpty(componentInstance.getIcon())) {
1051             componentInstance.setIcon(origComponent.getIcon());
1052         }
1053         String nameToFindForCounter;
1054         switch (componentInstance.getOriginType()) {
1055             case ServiceProxy:
1056                 nameToFindForCounter = ValidationUtils.normaliseComponentName(componentInstance.getSourceModelName()) + PROXY_SUFFIX;
1057                 break;
1058             case ServiceSubstitution:
1059                 nameToFindForCounter = ValidationUtils.normaliseComponentName(componentInstance.getSourceModelName());
1060                 break;
1061             default:
1062                 nameToFindForCounter = origComponent.getName();
1063         }
1064         String nextComponentInstanceCounter = getNextComponentInstanceCounter(containerComponent, nameToFindForCounter);
1065         Either<ImmutablePair<TopologyTemplate, String>, StorageOperationStatus> addResult = nodeTemplateOperation
1066             .addComponentInstanceToTopologyTemplate(ModelConverter.convertToToscaElement(containerComponent),
1067                 ModelConverter.convertToToscaElement(origComponent), nextComponentInstanceCounter, componentInstance, allowDeleted, user);
1068         if (addResult.isRight()) {
1069             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to add the component instance {} to container component {}. ",
1070                 componentInstance.getName(), containerComponent.getName());
1071             result = Either.right(addResult.right().value());
1072         }
1073         if (result == null) {
1074             updateContainerComponentRes = topologyTemplateOperation.getToscaElement(containerComponent.getUniqueId());
1075             if (updateContainerComponentRes.isRight()) {
1076                 CommonUtility
1077                     .addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to fetch updated topology template {} with updated component instance {}. ",
1078                         containerComponent.getName(), componentInstance.getName());
1079                 result = Either.right(updateContainerComponentRes.right().value());
1080             }
1081         }
1082         if (result == null) {
1083             Component updatedComponent = ModelConverter.convertFromToscaElement(updateContainerComponentRes.left().value());
1084             String createdInstanceId = addResult.left().value().getRight();
1085             CommonUtility
1086                 .addRecordToLog(log, LogLevelEnum.TRACE, "The component instance {} has been added to container component {}. ", createdInstanceId,
1087                     updatedComponent.getName());
1088             result = Either.left(new ImmutablePair<>(updatedComponent, createdInstanceId));
1089         }
1090         return result;
1091     }
1092
1093     public void associateComponentInstancesToComponent(Component containerComponent, Map<ComponentInstance, Resource> resourcesInstancesMap,
1094                                                        boolean allowDeleted, boolean isUpdateCsar) {
1095         CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Going to add component instances to component {}", containerComponent.getUniqueId());
1096         Either<GraphVertex, JanusGraphOperationStatus> metadataVertex = janusGraphDao
1097             .getVertexById(containerComponent.getUniqueId(), JsonParseFlagEnum.ParseAll);
1098         if (metadataVertex.isRight()) {
1099             JanusGraphOperationStatus status = metadataVertex.right().value();
1100             if (status == JanusGraphOperationStatus.NOT_FOUND) {
1101                 status = JanusGraphOperationStatus.INVALID_ID;
1102             }
1103             throw new StorageException(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
1104         }
1105         Map<String, ComponentInstanceDataDefinition> compnentInstancesMap = nodeTemplateOperation
1106             .associateComponentInstancesToComponent(containerComponent, resourcesInstancesMap, metadataVertex.left().value(), allowDeleted,
1107                 isUpdateCsar);
1108         containerComponent.setComponentInstances(ModelConverter.getComponentInstancesFromMapObject(compnentInstancesMap, containerComponent));
1109     }
1110
1111     public Either<ImmutablePair<Component, String>, StorageOperationStatus> updateComponentInstanceMetadataOfTopologyTemplate(
1112         Component containerComponent, Component origComponent, ComponentInstance componentInstance) {
1113         Either<ImmutablePair<Component, String>, StorageOperationStatus> result = null;
1114         CommonUtility.addRecordToLog(log, LogLevelEnum.TRACE,
1115             "Going to update the metadata of the component instance {} belonging to container component {}. ", componentInstance.getName(),
1116             containerComponent.getName());
1117         componentInstance.setIcon(origComponent.getIcon());
1118         Either<ImmutablePair<TopologyTemplate, String>, StorageOperationStatus> updateResult = nodeTemplateOperation
1119             .updateComponentInstanceMetadataOfTopologyTemplate(ModelConverter.convertToToscaElement(containerComponent),
1120                 ModelConverter.convertToToscaElement(origComponent), componentInstance);
1121         if (updateResult.isRight()) {
1122             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG,
1123                 "Failed to update the metadata of the component instance {} belonging to container component {}. ", componentInstance.getName(),
1124                 containerComponent.getName());
1125             result = Either.right(updateResult.right().value());
1126         }
1127         if (result == null) {
1128             Component updatedComponent = ModelConverter.convertFromToscaElement(updateResult.left().value().getLeft());
1129             String createdInstanceId = updateResult.left().value().getRight();
1130             CommonUtility
1131                 .addRecordToLog(log, LogLevelEnum.TRACE, "The metadata of the component instance {} has been updated to container component {}. ",
1132                     createdInstanceId, updatedComponent.getName());
1133             result = Either.left(new ImmutablePair<>(updatedComponent, createdInstanceId));
1134         }
1135         return result;
1136     }
1137
1138     public Either<Component, StorageOperationStatus> updateComponentInstanceMetadataOfTopologyTemplate(Component containerComponent) {
1139         return updateComponentInstanceMetadataOfTopologyTemplate(containerComponent, new ComponentParametersView());
1140     }
1141
1142     public Either<Component, StorageOperationStatus> updateComponentInstanceMetadataOfTopologyTemplate(Component containerComponent,
1143                                                                                                        ComponentParametersView filter) {
1144         Either<Component, StorageOperationStatus> result = null;
1145         CommonUtility.addRecordToLog(log, LogLevelEnum.TRACE, "Going to update the metadata  belonging to container component {}. ",
1146             containerComponent.getName());
1147         Either<TopologyTemplate, StorageOperationStatus> updateResult = nodeTemplateOperation
1148             .updateComponentInstanceMetadataOfTopologyTemplate(ModelConverter.convertToToscaElement(containerComponent), filter);
1149         if (updateResult.isRight()) {
1150             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to update the metadata  belonging to container component {}. ",
1151                 containerComponent.getName());
1152             result = Either.right(updateResult.right().value());
1153         }
1154         if (result == null) {
1155             Component updatedComponent = ModelConverter.convertFromToscaElement(updateResult.left().value());
1156             CommonUtility
1157                 .addRecordToLog(log, LogLevelEnum.TRACE, "The metadata has been updated to container component {}. ", updatedComponent.getName());
1158             result = Either.left(updatedComponent);
1159         }
1160         return result;
1161     }
1162
1163     // endregion
1164     public Either<ImmutablePair<Component, String>, StorageOperationStatus> deleteComponentInstanceFromTopologyTemplate(Component containerComponent,
1165                                                                                                                         String resourceInstanceId) {
1166         Either<ImmutablePair<Component, String>, StorageOperationStatus> result = null;
1167         CommonUtility.addRecordToLog(log, LogLevelEnum.TRACE, "Going to delete the component instance {} belonging to container component {}. ",
1168             resourceInstanceId, containerComponent.getName());
1169         Either<ImmutablePair<TopologyTemplate, String>, StorageOperationStatus> updateResult = nodeTemplateOperation
1170             .deleteComponentInstanceFromTopologyTemplate(ModelConverter.convertToToscaElement(containerComponent), resourceInstanceId);
1171         if (updateResult.isRight()) {
1172             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to delete the component instance {} belonging to container component {}. ",
1173                 resourceInstanceId, containerComponent.getName());
1174             result = Either.right(updateResult.right().value());
1175         }
1176         if (result == null) {
1177             Component updatedComponent = ModelConverter.convertFromToscaElement(updateResult.left().value().getLeft());
1178             String deletedInstanceId = updateResult.left().value().getRight();
1179             CommonUtility.addRecordToLog(log, LogLevelEnum.TRACE, "The component instance {} has been deleted from container component {}. ",
1180                 deletedInstanceId, updatedComponent.getName());
1181             result = Either.left(new ImmutablePair<>(updatedComponent, deletedInstanceId));
1182         }
1183         return result;
1184     }
1185
1186     private String getNextComponentInstanceCounter(Component containerComponent, String originResourceName) {
1187         Integer nextCounter = 0;
1188         if (CollectionUtils.isNotEmpty(containerComponent.getComponentInstances())) {
1189             String normalizedName = ValidationUtils.normalizeComponentInstanceName(originResourceName);
1190             Integer maxCounter = getMaxCounterFromNamesAndIds(containerComponent, normalizedName);
1191             if (maxCounter != null) {
1192                 nextCounter = maxCounter + 1;
1193             }
1194         }
1195         return nextCounter.toString();
1196     }
1197
1198     /**
1199      * @return max counter of component instance Id's, null if not found
1200      */
1201     private Integer getMaxCounterFromNamesAndIds(Component containerComponent, String normalizedName) {
1202         List<String> countersInNames = containerComponent.getComponentInstances().stream()
1203             .filter(ci -> ci.getNormalizedName() != null && ci.getNormalizedName().startsWith(normalizedName))
1204             .map(ci -> ci.getNormalizedName().split(normalizedName)[1]).collect(Collectors.toList());
1205         List<String> countersInIds = containerComponent.getComponentInstances().stream()
1206             .filter(ci -> ci.getUniqueId() != null && ci.getUniqueId().contains(normalizedName)).map(ci -> ci.getUniqueId().split(normalizedName)[1])
1207             .collect(Collectors.toList());
1208         List<String> namesAndIdsList = new ArrayList<>(countersInNames);
1209         namesAndIdsList.addAll(countersInIds);
1210         return getMaxInteger(namesAndIdsList);
1211     }
1212
1213     private Integer getMaxInteger(List<String> counters) {
1214         Integer maxCounter = 0;
1215         Integer currCounter = null;
1216         for (String counter : counters) {
1217             try {
1218                 currCounter = Integer.parseInt(counter);
1219                 if (maxCounter < currCounter) {
1220                     maxCounter = currCounter;
1221                 }
1222             } catch (NumberFormatException e) {
1223                 continue;
1224             }
1225         }
1226         return currCounter == null ? null : maxCounter;
1227     }
1228
1229     public Either<RequirementCapabilityRelDef, StorageOperationStatus> associateResourceInstances(Component component, String componentId,
1230                                                                                                   RequirementCapabilityRelDef requirementDef) {
1231         return nodeTemplateOperation.associateResourceInstances(component, componentId, requirementDef);
1232     }
1233
1234     public Either<List<InputDefinition>, StorageOperationStatus> createAndAssociateInputs(Map<String, InputDefinition> inputs, String componentId) {
1235         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1236         if (getVertexEither.isRight()) {
1237             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1238             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1239         }
1240         GraphVertex vertex = getVertexEither.left().value();
1241         Map<String, PropertyDataDefinition> inputsMap = inputs.entrySet().stream()
1242             .collect(Collectors.toMap(Map.Entry::getKey, e -> new PropertyDataDefinition(e.getValue())));
1243         StorageOperationStatus status = topologyTemplateOperation.associateInputsToComponent(vertex, inputsMap, componentId);
1244         if (StorageOperationStatus.OK == status) {
1245             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1246             List<InputDefinition> inputsResList = null;
1247             if (inputsMap != null && !inputsMap.isEmpty()) {
1248                 inputsResList = inputsMap.values().stream().map(InputDefinition::new).collect(Collectors.toList());
1249             }
1250             return Either.left(inputsResList);
1251         }
1252         return Either.right(status);
1253     }
1254
1255     public Either<List<InputDefinition>, StorageOperationStatus> addInputsToComponent(Map<String, InputDefinition> inputs, String componentId) {
1256         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1257         if (getVertexEither.isRight()) {
1258             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1259             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1260         }
1261         GraphVertex vertex = getVertexEither.left().value();
1262         Map<String, PropertyDefinition> inputsMap = inputs.entrySet().stream()
1263             .collect(Collectors.toMap(Map.Entry::getKey, e -> new PropertyDefinition(e.getValue())));
1264         StorageOperationStatus status = topologyTemplateOperation
1265             .addToscaDataToToscaElement(vertex, EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, inputsMap, JsonPresentationFields.NAME);
1266         if (StorageOperationStatus.OK == status) {
1267             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1268             List<InputDefinition> inputsResList = null;
1269             if (inputsMap != null && !inputsMap.isEmpty()) {
1270                 inputsResList = inputsMap.values().stream().map(InputDefinition::new).collect(Collectors.toList());
1271             }
1272             return Either.left(inputsResList);
1273         }
1274         return Either.right(status);
1275     }
1276
1277     public Either<List<OutputDefinition>, StorageOperationStatus> addOutputsToComponent(Map<String, OutputDefinition> outputs, String componentId) {
1278         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1279         if (getVertexEither.isRight()) {
1280             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1281             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1282         }
1283         GraphVertex vertex = getVertexEither.left().value();
1284         Map<String, AttributeDefinition> outputsMap = outputs.entrySet().stream()
1285             .collect(Collectors.toMap(Map.Entry::getKey, e -> new AttributeDefinition(e.getValue())));
1286         StorageOperationStatus status = topologyTemplateOperation
1287             .addToscaDataToToscaElement(vertex, EdgeLabelEnum.OUTPUTS, VertexTypeEnum.OUTPUTS, outputsMap, JsonPresentationFields.NAME);
1288         if (StorageOperationStatus.OK == status) {
1289             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1290             List<OutputDefinition> outputsResList = null;
1291             if (outputsMap != null && !outputsMap.isEmpty()) {
1292                 outputsResList = outputsMap.values().stream().map(OutputDefinition::new).collect(Collectors.toList());
1293             }
1294             return Either.left(outputsResList);
1295         }
1296         return Either.right(status);
1297     }
1298
1299     /**
1300      * Add data types into a Component.
1301      *
1302      * @param dataTypes   datatypes to be added. the key should be each name of data type.
1303      * @param componentId unique ID of Component.
1304      * @return list of data types.
1305      */
1306     public Either<List<DataTypeDefinition>, StorageOperationStatus> addDataTypesToComponent(Map<String, DataTypeDefinition> dataTypes,
1307                                                                                             String componentId) {
1308         log.trace("#addDataTypesToComponent - enter, componentId={}", componentId);
1309         /* get component vertex */
1310         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao
1311             .getVertexById(componentId, JsonParseFlagEnum.NoParse);
1312         if (getVertexEither.isRight()) {
1313             /* not found / error */
1314             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1315             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1316         }
1317         GraphVertex vertex = getVertexEither.left().value();
1318         log.trace("#addDataTypesToComponent - get vertex ok");
1319         // convert DataTypeDefinition to DataTypeDataDefinition
1320         Map<String, DataTypeDataDefinition> dataTypeDataMap = dataTypes.entrySet().stream()
1321             .collect(Collectors.toMap(Map.Entry::getKey, e -> convertDataTypeToDataTypeData(e.getValue())));
1322         // add datatype(s) to the Component.
1323
1324         // if child vertex does not exist, it will be created.
1325         StorageOperationStatus status = topologyTemplateOperation
1326             .addToscaDataToToscaElement(vertex, EdgeLabelEnum.DATA_TYPES, VertexTypeEnum.DATA_TYPES, dataTypeDataMap, JsonPresentationFields.NAME);
1327         if (StorageOperationStatus.OK == status) {
1328             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1329             List<DataTypeDefinition> inputsResList = null;
1330             if (!dataTypes.isEmpty()) {
1331                 inputsResList = new ArrayList<>(dataTypes.values());
1332             }
1333             return Either.left(inputsResList);
1334         }
1335         log.trace("#addDataTypesToComponent - leave");
1336         return Either.right(status);
1337     }
1338
1339     private DataTypeDataDefinition convertDataTypeToDataTypeData(DataTypeDefinition dataType) {
1340         DataTypeDataDefinition dataTypeData = new DataTypeDataDefinition(dataType);
1341         if (CollectionUtils.isNotEmpty(dataType.getProperties())) {
1342             List<PropertyDataDefinition> propertyDataList = dataType.getProperties().stream().map(PropertyDataDefinition::new)
1343                 .collect(Collectors.toList());
1344             dataTypeData.setPropertiesData(propertyDataList);
1345         }
1346         // if "derivedFrom" data_type exists, copy the name to "derivedFromName"
1347         if (dataType.getDerivedFrom() != null && StringUtils.isNotEmpty(dataType.getDerivedFrom().getName())) {
1348             // if names are different, log it
1349             if (!StringUtils.equals(dataTypeData.getDerivedFromName(), dataType.getDerivedFrom().getName())) {
1350                 log.debug("#convertDataTypeToDataTypeData - derivedFromName(={}) overwritten by derivedFrom.name(={})", dataType.getDerivedFromName(),
1351                     dataType.getDerivedFrom().getName());
1352             }
1353             dataTypeData.setDerivedFromName(dataType.getDerivedFrom().getName());
1354         }
1355         // supply "name" field to toscaPresentationValue in each datatype object for DAO operations
1356         dataTypeData.setToscaPresentationValue(JsonPresentationFields.NAME, dataType.getName());
1357         return dataTypeData;
1358     }
1359
1360     public Either<List<InputDefinition>, StorageOperationStatus> getComponentInputs(String componentId) {
1361         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1362         if (getVertexEither.isRight()) {
1363             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1364             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1365         }
1366         Either<ToscaElement, StorageOperationStatus> toscaElement = topologyTemplateOperation.getToscaElement(componentId);
1367         if (toscaElement.isRight()) {
1368             return Either.right(toscaElement.right().value());
1369         }
1370         TopologyTemplate topologyTemplate = (TopologyTemplate) toscaElement.left().value();
1371         Map<String, PropertyDataDefinition> inputsMap = topologyTemplate.getInputs();
1372         List<InputDefinition> inputs = new ArrayList<>();
1373         if (MapUtils.isNotEmpty(inputsMap)) {
1374             inputs = inputsMap.values().stream().map(p -> new InputDefinition(p)).collect(Collectors.toList());
1375         }
1376         return Either.left(inputs);
1377     }
1378
1379     public Either<List<InputDefinition>, StorageOperationStatus> updateInputsToComponent(List<InputDefinition> inputs, String componentId) {
1380         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1381         if (getVertexEither.isRight()) {
1382             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1383             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1384         }
1385         GraphVertex vertex = getVertexEither.left().value();
1386         List<PropertyDataDefinition> inputsAsDataDef = inputs.stream().map(PropertyDataDefinition::new).collect(Collectors.toList());
1387         StorageOperationStatus status = topologyTemplateOperation
1388             .updateToscaDataOfToscaElement(vertex, EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, inputsAsDataDef, JsonPresentationFields.NAME);
1389         if (StorageOperationStatus.OK == status) {
1390             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1391             List<InputDefinition> inputsResList = null;
1392             if (inputsAsDataDef != null && !inputsAsDataDef.isEmpty()) {
1393                 inputsResList = inputsAsDataDef.stream().map(InputDefinition::new).collect(Collectors.toList());
1394             }
1395             return Either.left(inputsResList);
1396         }
1397         return Either.right(status);
1398     }
1399
1400     // region - ComponentInstance
1401     public Either<Map<String, List<ComponentInstanceProperty>>, StorageOperationStatus> associateComponentInstancePropertiesToComponent(
1402         Map<String, List<ComponentInstanceProperty>> instProperties, String componentId) {
1403         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1404         if (getVertexEither.isRight()) {
1405             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1406             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1407         }
1408         GraphVertex vertex = getVertexEither.left().value();
1409         Map<String, MapPropertiesDataDefinition> instPropsMap = new HashMap<>();
1410         if (instProperties != null) {
1411             MapPropertiesDataDefinition propertiesMap;
1412             for (Entry<String, List<ComponentInstanceProperty>> entry : instProperties.entrySet()) {
1413                 propertiesMap = new MapPropertiesDataDefinition();
1414                 propertiesMap.setMapToscaDataDefinition(
1415                     entry.getValue().stream().map(PropertyDataDefinition::new).collect(Collectors.toMap(PropertyDataDefinition::getName, e -> e)));
1416                 instPropsMap.put(entry.getKey(), propertiesMap);
1417             }
1418         }
1419         StorageOperationStatus status = topologyTemplateOperation.associateInstPropertiesToComponent(vertex, instPropsMap);
1420         if (StorageOperationStatus.OK == status) {
1421             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1422             return Either.left(instProperties);
1423         }
1424         return Either.right(status);
1425     }
1426
1427     /**
1428      * saves the instInputs as the updated instance inputs of the component container in DB
1429      */
1430     public Either<Map<String, List<ComponentInstanceInput>>, StorageOperationStatus> updateComponentInstanceInputsToComponent(
1431         Map<String, List<ComponentInstanceInput>> instInputs, String componentId) {
1432         if (instInputs == null || instInputs.isEmpty()) {
1433             return Either.left(instInputs);
1434         }
1435         StorageOperationStatus status;
1436         for (Entry<String, List<ComponentInstanceInput>> inputsPerIntance : instInputs.entrySet()) {
1437             List<ComponentInstanceInput> toscaDataListPerInst = inputsPerIntance.getValue();
1438             List<String> pathKeysPerInst = new ArrayList<>();
1439             pathKeysPerInst.add(inputsPerIntance.getKey());
1440             status = topologyTemplateOperation
1441                 .updateToscaDataDeepElementsOfToscaElement(componentId, EdgeLabelEnum.INST_INPUTS, VertexTypeEnum.INST_INPUTS, toscaDataListPerInst,
1442                     pathKeysPerInst, JsonPresentationFields.NAME);
1443             if (status != StorageOperationStatus.OK) {
1444                 log.debug("Failed to update component instance inputs for instance {} in component {} edge type {} error {}",
1445                     inputsPerIntance.getKey(), componentId, EdgeLabelEnum.INST_INPUTS, status);
1446                 return Either.right(status);
1447             }
1448         }
1449         return Either.left(instInputs);
1450     }
1451
1452     /**
1453      * saves the instProps as the updated instance properties of the component container in DB
1454      */
1455     public Either<Map<String, List<ComponentInstanceProperty>>, StorageOperationStatus> updateComponentInstancePropsToComponent(
1456         Map<String, List<ComponentInstanceProperty>> instProps, String componentId) {
1457         if (instProps == null || instProps.isEmpty()) {
1458             return Either.left(instProps);
1459         }
1460         StorageOperationStatus status;
1461         for (Entry<String, List<ComponentInstanceProperty>> propsPerIntance : instProps.entrySet()) {
1462             List<ComponentInstanceProperty> toscaDataListPerInst = propsPerIntance.getValue();
1463             List<String> pathKeysPerInst = new ArrayList<>();
1464             pathKeysPerInst.add(propsPerIntance.getKey());
1465             status = topologyTemplateOperation
1466                 .updateToscaDataDeepElementsOfToscaElement(componentId, EdgeLabelEnum.INST_PROPERTIES, VertexTypeEnum.INST_PROPERTIES,
1467                     toscaDataListPerInst, pathKeysPerInst, JsonPresentationFields.NAME);
1468             if (status != StorageOperationStatus.OK) {
1469                 log.debug("Failed to update component instance inputs for instance {} in component {} edge type {} error {}",
1470                     propsPerIntance.getKey(), componentId, EdgeLabelEnum.INST_PROPERTIES, status);
1471                 return Either.right(status);
1472             }
1473         }
1474         return Either.left(instProps);
1475     }
1476
1477     public Either<Map<String, List<ComponentInstanceInput>>, StorageOperationStatus> associateComponentInstanceInputsToComponent(
1478         Map<String, List<ComponentInstanceInput>> instInputs, String componentId) {
1479         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1480         if (getVertexEither.isRight()) {
1481             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1482             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
1483         }
1484         GraphVertex vertex = getVertexEither.left().value();
1485         Map<String, MapPropertiesDataDefinition> instPropsMap = new HashMap<>();
1486         if (instInputs != null) {
1487             MapPropertiesDataDefinition propertiesMap;
1488             for (Entry<String, List<ComponentInstanceInput>> entry : instInputs.entrySet()) {
1489                 propertiesMap = new MapPropertiesDataDefinition();
1490                 propertiesMap.setMapToscaDataDefinition(
1491                     entry.getValue().stream().map(PropertyDataDefinition::new).collect(Collectors.toMap(PropertyDataDefinition::getName, e -> e)));
1492                 instPropsMap.put(entry.getKey(), propertiesMap);
1493             }
1494         }
1495         StorageOperationStatus status = topologyTemplateOperation.associateInstInputsToComponent(vertex, instPropsMap);
1496         if (StorageOperationStatus.OK == status) {
1497             log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1498             return Either.left(instInputs);
1499         }
1500         return Either.right(status);
1501     }
1502
1503     public Either<Map<String, List<ComponentInstanceInput>>, StorageOperationStatus> addComponentInstanceInputsToComponent(
1504         Component containerComponent, Map<String, List<ComponentInstanceInput>> instProperties) {
1505         requireNonNull(instProperties);
1506         StorageOperationStatus status;
1507         for (Entry<String, List<ComponentInstanceInput>> entry : instProperties.entrySet()) {
1508             List<ComponentInstanceInput> props = entry.getValue();
1509             String componentInstanceId = entry.getKey();
1510             if (!isEmpty(props)) {
1511                 for (ComponentInstanceInput property : props) {
1512                     List<ComponentInstanceInput> componentInstancesInputs = containerComponent.getComponentInstancesInputs().get(componentInstanceId);
1513                     Optional<ComponentInstanceInput> instanceProperty = componentInstancesInputs.stream()
1514                         .filter(p -> p.getName().equals(property.getName())).findAny();
1515                     if (instanceProperty.isPresent()) {
1516                         status = updateComponentInstanceInput(containerComponent, componentInstanceId, property);
1517                     } else {
1518                         status = addComponentInstanceInput(containerComponent, componentInstanceId, property);
1519                     }
1520                     if (status != StorageOperationStatus.OK) {
1521                         log.debug("Failed to update instance input {} for instance {} error {} ", property, componentInstanceId, status);
1522                         return Either.right(status);
1523                     } else {
1524                         log.trace("instance input {} for instance {} updated", property, componentInstanceId);
1525                     }
1526                 }
1527             }
1528         }
1529         return Either.left(instProperties);
1530     }
1531
1532     public Either<Map<String, List<ComponentInstanceOutput>>, StorageOperationStatus> addComponentInstanceOutputsToComponent(
1533         Component containerComponent, Map<String, List<ComponentInstanceOutput>> instProperties) {
1534         requireNonNull(instProperties);
1535         StorageOperationStatus status;
1536         for (final Entry<String, List<ComponentInstanceOutput>> entry : instProperties.entrySet()) {
1537             final List<ComponentInstanceOutput> props = entry.getValue();
1538             final String componentInstanceId = entry.getKey();
1539             if (!isEmpty(props)) {
1540                 for (final ComponentInstanceOutput property : props) {
1541                     final List<ComponentInstanceOutput> componentInstancesInputs = containerComponent.getComponentInstancesOutputs()
1542                         .get(componentInstanceId);
1543                     final Optional<ComponentInstanceOutput> instanceProperty = componentInstancesInputs.stream()
1544                         .filter(p -> p.getName().equals(property.getName())).findAny();
1545                     if (instanceProperty.isPresent()) {
1546                         status = updateComponentInstanceOutput(containerComponent, componentInstanceId, property);
1547                     } else {
1548                         status = addComponentInstanceOutput(containerComponent, componentInstanceId, property);
1549                     }
1550                     if (status != StorageOperationStatus.OK) {
1551                         log.debug("Failed to update instance input {} for instance {} error {} ", property, componentInstanceId, status);
1552                         return Either.right(status);
1553                     } else {
1554                         log.trace("instance input {} for instance {} updated", property, componentInstanceId);
1555                     }
1556                 }
1557             }
1558         }
1559         return Either.left(instProperties);
1560     }
1561
1562     public Either<Map<String, List<ComponentInstanceProperty>>, StorageOperationStatus> addComponentInstancePropertiesToComponent(
1563         Component containerComponent, Map<String, List<ComponentInstanceProperty>> instProperties) {
1564         requireNonNull(instProperties);
1565         for (Entry<String, List<ComponentInstanceProperty>> entry : instProperties.entrySet()) {
1566             List<ComponentInstanceProperty> props = entry.getValue();
1567             String componentInstanceId = entry.getKey();
1568             List<ComponentInstanceProperty> originalComponentInstProps = containerComponent.getComponentInstancesProperties()
1569                 .get(componentInstanceId);
1570             Map<String, List<CapabilityDefinition>> containerComponentCapabilities = containerComponent.getCapabilities();
1571             if (isEmpty(props)) {
1572                 continue;
1573             }
1574             for (ComponentInstanceProperty property : props) {
1575                 StorageOperationStatus status = null;
1576                 String propertyParentUniqueId = property.getParentUniqueId();
1577                 Optional<CapabilityDefinition> capPropDefinition = getPropertyCapability(propertyParentUniqueId, containerComponent);
1578                 if (capPropDefinition.isPresent() && MapUtils.isNotEmpty(containerComponentCapabilities)) {
1579                     status = populateAndUpdateInstanceCapProperty(containerComponent, componentInstanceId, containerComponentCapabilities, property,
1580                         capPropDefinition.get());
1581                 }
1582                 if (status == null) {
1583                     status = updateOrAddComponentInstanceProperty(containerComponent, componentInstanceId, originalComponentInstProps, property);
1584                 }
1585                 if (status != StorageOperationStatus.OK) {
1586                     return Either.right(status);
1587                 }
1588             }
1589         }
1590         return Either.left(instProperties);
1591     }
1592
1593     public Either<Map<String, List<ComponentInstanceAttribute>>, StorageOperationStatus> addComponentInstanceAttributesToComponent(
1594         final Component containerComponent, final Map<String, List<ComponentInstanceAttribute>> instProperties) {
1595         requireNonNull(instProperties);
1596         for (final Entry<String, List<ComponentInstanceAttribute>> entry : instProperties.entrySet()) {
1597             final List<ComponentInstanceAttribute> props = entry.getValue();
1598             if (isEmpty(props)) {
1599                 continue;
1600             }
1601             final String componentInstanceId = entry.getKey();
1602             final List<ComponentInstanceAttribute> originalComponentInstProps = containerComponent.getComponentInstancesAttributes()
1603                 .get(componentInstanceId);
1604             for (final ComponentInstanceAttribute property : props) {
1605                 final StorageOperationStatus status = updateOrAddComponentInstanceAttribute(containerComponent, componentInstanceId,
1606                     originalComponentInstProps, property);
1607                 if (status != StorageOperationStatus.OK) {
1608                     return Either.right(status);
1609                 }
1610             }
1611         }
1612         return Either.left(instProperties);
1613     }
1614
1615     private StorageOperationStatus populateAndUpdateInstanceCapProperty(Component containerComponent, String componentInstanceId,
1616                                                                         Map<String, List<CapabilityDefinition>> containerComponentCapabilities,
1617                                                                         ComponentInstanceProperty property,
1618                                                                         CapabilityDefinition capabilityDefinition) {
1619         List<CapabilityDefinition> capabilityDefinitions = containerComponentCapabilities.get(capabilityDefinition.getType());
1620         if (CollectionUtils.isEmpty(capabilityDefinitions)) {
1621             return null;
1622         }
1623         Optional<CapabilityDefinition> capDefToGetProp = capabilityDefinitions.stream()
1624             .filter(cap -> cap.getUniqueId().equals(capabilityDefinition.getUniqueId()) && cap.getPath().size() == 1).findAny();
1625         if (capDefToGetProp.isPresent()) {
1626             return updateInstanceCapabilityProperty(containerComponent, componentInstanceId, property, capDefToGetProp.get());
1627         }
1628         return null;
1629     }
1630
1631     private StorageOperationStatus updateOrAddComponentInstanceProperty(Component containerComponent, String componentInstanceId,
1632                                                                         List<ComponentInstanceProperty> originalComponentInstProps,
1633                                                                         ComponentInstanceProperty property) {
1634         StorageOperationStatus status;
1635         // check if the property already exists or not
1636         Optional<ComponentInstanceProperty> instanceProperty = originalComponentInstProps.stream()
1637             .filter(p -> p.getUniqueId().equals(property.getUniqueId())).findAny();
1638         if (instanceProperty.isPresent()) {
1639             status = updateComponentInstanceProperty(containerComponent, componentInstanceId, property);
1640         } else {
1641             status = addComponentInstanceProperty(containerComponent, componentInstanceId, property);
1642         }
1643         if (status != StorageOperationStatus.OK) {
1644             log.debug("Failed to update instance property {} for instance {} error {} ", property, componentInstanceId, status);
1645         }
1646         return status;
1647     }
1648
1649     private StorageOperationStatus updateOrAddComponentInstanceAttribute(Component containerComponent, String componentInstanceId,
1650                                                                          List<ComponentInstanceAttribute> originalComponentInstProps,
1651                                                                          ComponentInstanceAttribute property) {
1652         StorageOperationStatus status;
1653         // check if the property already exists or not
1654         Optional<ComponentInstanceAttribute> instanceProperty = originalComponentInstProps.stream()
1655             .filter(p -> p.getUniqueId().equals(property.getUniqueId())).findAny();
1656         if (instanceProperty.isPresent()) {
1657             status = updateComponentInstanceAttribute(containerComponent, componentInstanceId, property);
1658         } else {
1659             status = addComponentInstanceAttribute(containerComponent, componentInstanceId, property);
1660         }
1661         if (status != StorageOperationStatus.OK) {
1662             log.debug("Failed to update instance property {} for instance {} error {} ", property, componentInstanceId, status);
1663         }
1664         return status;
1665     }
1666
1667     public StorageOperationStatus updateInstanceCapabilityProperty(Component containerComponent, String componentInstanceId,
1668                                                                    ComponentInstanceProperty property, CapabilityDefinition capabilityDefinition) {
1669         Optional<ComponentInstance> fetchedCIOptional = containerComponent.getComponentInstanceById(componentInstanceId);
1670         if (!fetchedCIOptional.isPresent()) {
1671             return StorageOperationStatus.GENERAL_ERROR;
1672         }
1673         Either<Component, StorageOperationStatus> getComponentRes = getToscaFullElement(fetchedCIOptional.get().getComponentUid());
1674         if (getComponentRes.isRight()) {
1675             return StorageOperationStatus.GENERAL_ERROR;
1676         }
1677         Optional<Component> componentOptional = isNodeServiceProxy(getComponentRes.left().value());
1678         String propOwner;
1679         if (!componentOptional.isPresent()) {
1680             propOwner = componentInstanceId;
1681         } else {
1682             propOwner = fetchedCIOptional.get().getSourceModelUid();
1683         }
1684         StorageOperationStatus status;
1685         StringBuilder sb = new StringBuilder(componentInstanceId);
1686         sb.append(ModelConverter.CAP_PROP_DELIM).append(propOwner).append(ModelConverter.CAP_PROP_DELIM).append(capabilityDefinition.getType())
1687             .append(ModelConverter.CAP_PROP_DELIM).append(capabilityDefinition.getName());
1688         String capKey = sb.toString();
1689         status = updateComponentInstanceCapabiltyProperty(containerComponent, componentInstanceId, capKey, property);
1690         if (status != StorageOperationStatus.OK) {
1691             log.debug("Failed to update instance capability property {} for instance {} error {} ", property, componentInstanceId, status);
1692             return status;
1693         }
1694         return StorageOperationStatus.OK;
1695     }
1696
1697     private Optional<Component> isNodeServiceProxy(Component component) {
1698         if (component.getComponentType().equals(ComponentTypeEnum.SERVICE)) {
1699             return Optional.empty();
1700         }
1701         Resource resource = (Resource) component;
1702         ResourceTypeEnum resType = resource.getResourceType();
1703         if (resType.equals(ResourceTypeEnum.ServiceProxy)) {
1704             return Optional.of(component);
1705         }
1706         return Optional.empty();
1707     }
1708
1709     public StorageOperationStatus associateCapabilitiesToService(Map<String, ListCapabilityDataDefinition> capabilities, String componentId) {
1710         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1711         if (getVertexEither.isRight()) {
1712             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1713             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value());
1714         }
1715         GraphVertex vertex = getVertexEither.left().value();
1716         if (MapUtils.isNotEmpty(capabilities)) {
1717             Either<GraphVertex, StorageOperationStatus> associateElementToData = topologyTemplateOperation
1718                 .associateElementToData(vertex, VertexTypeEnum.CAPABILITIES, EdgeLabelEnum.CAPABILITIES, capabilities);
1719             if (associateElementToData.isRight()) {
1720                 return associateElementToData.right().value();
1721             }
1722         }
1723         return StorageOperationStatus.OK;
1724     }
1725
1726     public StorageOperationStatus associateRequirementsToService(Map<String, ListRequirementDataDefinition> requirements, String componentId) {
1727         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
1728         if (getVertexEither.isRight()) {
1729             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
1730             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value());
1731         }
1732         GraphVertex vertex = getVertexEither.left().value();
1733         if (MapUtils.isNotEmpty(requirements)) {
1734             Either<GraphVertex, StorageOperationStatus> associateElementToData = topologyTemplateOperation
1735                 .associateElementToData(vertex, VertexTypeEnum.REQUIREMENTS, EdgeLabelEnum.REQUIREMENTS, requirements);
1736             if (associateElementToData.isRight()) {
1737                 return associateElementToData.right().value();
1738             }
1739         }
1740         return StorageOperationStatus.OK;
1741     }
1742
1743     public StorageOperationStatus associateDeploymentArtifactsToInstances(Map<String, Map<String, ArtifactDefinition>> instDeploymentArtifacts,
1744                                                                           Component component, User user) {
1745         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao
1746             .getVertexById(component.getUniqueId(), JsonParseFlagEnum.NoParse);
1747         if (getVertexEither.isRight()) {
1748             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, component.getUniqueId(), getVertexEither.right().value());
1749             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value());
1750         }
1751         GraphVertex vertex = getVertexEither.left().value();
1752         Map<String, MapArtifactDataDefinition> instArtMap = new HashMap<>();
1753         if (instDeploymentArtifacts != null) {
1754             MapArtifactDataDefinition artifactsMap;
1755             for (Entry<String, Map<String, ArtifactDefinition>> entry : instDeploymentArtifacts.entrySet()) {
1756                 Map<String, ArtifactDefinition> artList = entry.getValue();
1757                 Map<String, ArtifactDataDefinition> artifacts = artList.entrySet().stream()
1758                     .collect(Collectors.toMap(Map.Entry::getKey, e -> new ArtifactDataDefinition(e.getValue())));
1759                 artifactsMap = nodeTemplateOperation
1760                     .prepareInstDeploymentArtifactPerInstance(artifacts, entry.getKey(), user, NodeTemplateOperation.HEAT_VF_ENV_NAME);
1761                 instArtMap.put(entry.getKey(), artifactsMap);
1762             }
1763         }
1764         ModelConverter.setComponentInstancesDeploymentArtifactsToComponent(instArtMap, component);
1765         return topologyTemplateOperation.associateInstDeploymentArtifactsToComponent(vertex, instArtMap);
1766     }
1767
1768     public StorageOperationStatus associateArtifactsToInstances(Map<String, Map<String, ArtifactDefinition>> instArtifacts, Component component) {
1769         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao
1770             .getVertexById(component.getUniqueId(), JsonParseFlagEnum.NoParse);
1771         if (getVertexEither.isRight()) {
1772             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, component.getUniqueId(), getVertexEither.right().value());
1773             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value());
1774         }
1775         GraphVertex vertex = getVertexEither.left().value();
1776         Map<String, MapArtifactDataDefinition> instArtMap = new HashMap<>();
1777         if (instArtifacts != null) {
1778             MapArtifactDataDefinition artifactsMap;
1779             for (Entry<String, Map<String, ArtifactDefinition>> entry : instArtifacts.entrySet()) {
1780                 Map<String, ArtifactDefinition> artList = entry.getValue();
1781                 Map<String, ArtifactDataDefinition> artifacts = artList.entrySet().stream()
1782                     .collect(Collectors.toMap(Map.Entry::getKey, e -> new ArtifactDataDefinition(e.getValue())));
1783                 artifactsMap = new MapArtifactDataDefinition(artifacts);
1784                 instArtMap.put(entry.getKey(), artifactsMap);
1785             }
1786         }
1787         ModelConverter.setComponentInstancesInformationalArtifactsToComponent(instArtMap, component);
1788         return topologyTemplateOperation.associateInstArtifactsToComponent(vertex, instArtMap);
1789     }
1790
1791     public StorageOperationStatus associateInstAttributeToComponentToInstances(Map<String, List<AttributeDefinition>> instArttributes,
1792                                                                                Component component) {
1793         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao
1794             .getVertexById(component.getUniqueId(), JsonParseFlagEnum.NoParse);
1795         if (getVertexEither.isRight()) {
1796             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, component.getUniqueId(), getVertexEither.right().value());
1797             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value());
1798         }
1799         GraphVertex vertex = getVertexEither.left().value();
1800         Map<String, MapAttributesDataDefinition> instAttr = new HashMap<>();
1801         if (instArttributes != null) {
1802             MapAttributesDataDefinition attributesMap;
1803             for (Entry<String, List<AttributeDefinition>> entry : instArttributes.entrySet()) {
1804                 final List<AttributeDefinition> value = entry.getValue();
1805                 attributesMap = new MapAttributesDataDefinition();
1806                 attributesMap.setMapToscaDataDefinition(
1807                     value.stream().map(AttributeDefinition::new).collect(Collectors.toMap(AttributeDefinition::getName, e -> e)));
1808                 instAttr.put(entry.getKey(), attributesMap);
1809             }
1810         }
1811         setComponentInstanceAttributesOnComponent(component, instAttr);
1812         return topologyTemplateOperation.associateInstAttributeToComponent(vertex, instAttr);
1813     }
1814
1815     // endregion
1816     private void setComponentInstanceAttributesOnComponent(Component resource, Map<String, MapAttributesDataDefinition> instAttr) {
1817         Map<String, List<ComponentInstanceAttribute>> componentInstancesAttributes = resource.getComponentInstancesAttributes();
1818         if (componentInstancesAttributes == null) {
1819             componentInstancesAttributes = new HashMap<>();
1820         }
1821         componentInstancesAttributes.putAll(ModelConverter.getComponentInstancesAttributes(instAttr));
1822         resource.setComponentInstancesAttributes(componentInstancesAttributes);
1823     }
1824
1825     public StorageOperationStatus associateOrAddCalculatedCapReq(Map<ComponentInstance, Map<String, List<CapabilityDefinition>>> instCapabilties,
1826                                                                  Map<ComponentInstance, Map<String, List<RequirementDefinition>>> instReg,
1827                                                                  Component component) {
1828         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao
1829             .getVertexById(component.getUniqueId(), JsonParseFlagEnum.NoParse);
1830         if (getVertexEither.isRight()) {
1831             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, component.getUniqueId(), getVertexEither.right().value());
1832             return DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value());
1833         }
1834         GraphVertex vertex = getVertexEither.left().value();
1835         Map<String, MapListRequirementDataDefinition> calcRequirements = new HashMap<>();
1836         Map<String, MapListCapabilityDataDefinition> calcCapabilty = new HashMap<>();
1837         Map<String, MapCapabilityProperty> calculatedCapabilitiesProperties = new HashMap<>();
1838         if (instCapabilties != null) {
1839             for (Entry<ComponentInstance, Map<String, List<CapabilityDefinition>>> entry : instCapabilties.entrySet()) {
1840                 Map<String, List<CapabilityDefinition>> caps = entry.getValue();
1841                 Map<String, ListCapabilityDataDefinition> mapToscaDataDefinition = new HashMap<>();
1842                 for (Entry<String, List<CapabilityDefinition>> instCapability : caps.entrySet()) {
1843                     mapToscaDataDefinition.put(instCapability.getKey(), new ListCapabilityDataDefinition(
1844                         instCapability.getValue().stream().map(CapabilityDataDefinition::new).collect(Collectors.toList())));
1845                 }
1846                 ComponentInstanceDataDefinition componentInstance = new ComponentInstanceDataDefinition(entry.getKey());
1847                 MapListCapabilityDataDefinition capMap = nodeTemplateOperation
1848                     .prepareCalculatedCapabiltyForNodeType(mapToscaDataDefinition, componentInstance);
1849                 MapCapabilityProperty mapCapabilityProperty = ModelConverter
1850                     .convertToMapOfMapCapabiltyProperties(caps, componentInstance.getUniqueId(), true);
1851                 calcCapabilty.put(entry.getKey().getUniqueId(), capMap);
1852                 calculatedCapabilitiesProperties.put(entry.getKey().getUniqueId(), mapCapabilityProperty);
1853             }
1854         }
1855         if (instReg != null) {
1856             for (Entry<ComponentInstance, Map<String, List<RequirementDefinition>>> entry : instReg.entrySet()) {
1857                 Map<String, List<RequirementDefinition>> req = entry.getValue();
1858                 Map<String, ListRequirementDataDefinition> mapToscaDataDefinition = new HashMap<>();
1859                 for (Entry<String, List<RequirementDefinition>> instReq : req.entrySet()) {
1860                     mapToscaDataDefinition.put(instReq.getKey(), new ListRequirementDataDefinition(
1861                         instReq.getValue().stream().map(RequirementDataDefinition::new).collect(Collectors.toList())));
1862                 }
1863                 MapListRequirementDataDefinition reqMap = nodeTemplateOperation
1864                     .prepareCalculatedRequirementForNodeType(mapToscaDataDefinition, new ComponentInstanceDataDefinition(entry.getKey()));
1865                 String componentInstanceId = entry.getKey().getUniqueId();
1866                 calcRequirements.put(componentInstanceId, reqMap);
1867             }
1868         }
1869         StorageOperationStatus storageOperationStatus = topologyTemplateOperation
1870             .associateOrAddCalcCapReqToComponent(vertex, calcRequirements, calcCapabilty, calculatedCapabilitiesProperties);
1871         updateInstancesCapAndReqOnComponentFromDB(component);
1872         return storageOperationStatus;
1873     }
1874
1875     private void updateInstancesCapAndReqOnComponentFromDB(Component component) {
1876         ComponentParametersView componentParametersView = new ComponentParametersView(true);
1877         componentParametersView.setIgnoreCapabilities(false);
1878         componentParametersView.setIgnoreRequirements(false);
1879         componentParametersView.setIgnoreCapabiltyProperties(false);
1880         componentParametersView.setIgnoreComponentInstances(false);
1881         Either<Component, StorageOperationStatus> componentEither = getToscaElement(component.getUniqueId(), componentParametersView);
1882         if (componentEither.isRight()) {
1883             throw new StorageException(StorageOperationStatus.NOT_FOUND);
1884         }
1885         Component updatedComponent = componentEither.left().value();
1886         component.setCapabilities(updatedComponent.getCapabilities());
1887         component.setRequirements(updatedComponent.getRequirements());
1888         component.setComponentInstances(updatedComponent.getComponentInstances());
1889     }
1890
1891     private Either<List<Service>, StorageOperationStatus> getLatestVersionNonCheckoutServicesMetadataOnly(Map<GraphPropertyEnum, Object> hasProps,
1892                                                                                                           Map<GraphPropertyEnum, Object> hasNotProps,
1893                                                                                                           String modelName) {
1894         List<Service> services = new ArrayList<>();
1895         List<LifecycleStateEnum> states = new ArrayList<>();
1896         // include props
1897         hasProps.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.SERVICE.name());
1898         hasProps.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
1899         // exclude props
1900         states.add(LifecycleStateEnum.NOT_CERTIFIED_CHECKOUT);
1901         hasNotProps.put(GraphPropertyEnum.STATE, states);
1902         hasNotProps.put(GraphPropertyEnum.IS_DELETED, true);
1903         hasNotProps.put(GraphPropertyEnum.IS_ARCHIVED, true);
1904         return fetchServicesByCriteria(services, hasProps, hasNotProps, modelName);
1905     }
1906
1907     private Either<List<Component>, StorageOperationStatus> getLatestVersionNotAbstractToscaElementsMetadataOnly(boolean isAbstract,
1908                                                                                                                  ComponentTypeEnum componentTypeEnum,
1909                                                                                                                  String internalComponentType,
1910                                                                                                                  VertexTypeEnum vertexType,
1911                                                                                                                  String modelName) {
1912         List<Service> services = null;
1913         Map<GraphPropertyEnum, Object> hasProps = new EnumMap<>(GraphPropertyEnum.class);
1914         Map<GraphPropertyEnum, Object> hasNotProps = new EnumMap<>(GraphPropertyEnum.class);
1915         fillPropsMap(hasProps, hasNotProps, internalComponentType, componentTypeEnum, isAbstract, vertexType);
1916         Either<List<GraphVertex>, JanusGraphOperationStatus> getRes = janusGraphDao
1917             .getByCriteria(vertexType, hasProps, hasNotProps, JsonParseFlagEnum.ParseMetadata);
1918         if (getRes.isRight() && !JanusGraphOperationStatus.NOT_FOUND.equals(getRes.right().value())) {
1919             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getRes.right().value()));
1920         }
1921         // region -> Fetch non checked-out services
1922         if (internalComponentType != null && internalComponentType.toLowerCase().trim().equals(SERVICE) && VertexTypeEnum.NODE_TYPE == vertexType) {
1923             Either<List<Service>, StorageOperationStatus> result = getLatestVersionNonCheckoutServicesMetadataOnly(
1924                 new EnumMap<>(GraphPropertyEnum.class), new EnumMap<>(GraphPropertyEnum.class), modelName);
1925             if (result.isRight()) {
1926                 log.debug("Failed to fetch services for");
1927                 return Either.right(result.right().value());
1928             }
1929             services = result.left().value();
1930             if (log.isTraceEnabled() && isEmpty(services)) {
1931                 log.trace("No relevant services available");
1932             }
1933         }
1934         // endregion
1935         List<Component> nonAbstractLatestComponents = new ArrayList<>();
1936         ComponentParametersView params = new ComponentParametersView(true);
1937         params.setIgnoreAllVersions(false);
1938         if (getRes.isLeft()) {
1939             for (GraphVertex vertexComponent : getVerticesForModel(modelName, getRes.left().value())) {
1940                 Either<ToscaElement, StorageOperationStatus> componentRes = topologyTemplateOperation
1941                     .getLightComponent(vertexComponent, componentTypeEnum, params);
1942                 if (componentRes.isRight()) {
1943                     log.debug("Failed to fetch light element for {} error {}", vertexComponent.getUniqueId(), componentRes.right().value());
1944                     return Either.right(componentRes.right().value());
1945                 } else {
1946                     Component component = ModelConverter.convertFromToscaElement(componentRes.left().value());
1947                     nonAbstractLatestComponents.add(component);
1948                 }
1949             }
1950         }
1951         if (CollectionUtils.isNotEmpty(services)) {
1952             nonAbstractLatestComponents.addAll(services);
1953         }
1954         return Either.left(nonAbstractLatestComponents);
1955     }
1956
1957     public Either<ComponentMetadataData, StorageOperationStatus> getLatestComponentMetadataByUuid(String componentUuid, JsonParseFlagEnum parseFlag,
1958                                                                                                   Boolean isHighest) {
1959         Either<ComponentMetadataData, StorageOperationStatus> result;
1960         Map<GraphPropertyEnum, Object> hasProperties = new EnumMap<>(GraphPropertyEnum.class);
1961         hasProperties.put(GraphPropertyEnum.UUID, componentUuid);
1962         if (isHighest != null) {
1963             hasProperties.put(GraphPropertyEnum.IS_HIGHEST_VERSION, isHighest);
1964         }
1965         Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
1966         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
1967         propertiesNotToMatch.put(GraphPropertyEnum.IS_ARCHIVED, true); //US382674, US382683
1968         Either<List<GraphVertex>, JanusGraphOperationStatus> getRes = janusGraphDao
1969             .getByCriteria(null, hasProperties, propertiesNotToMatch, parseFlag);
1970         if (getRes.isRight()) {
1971             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getRes.right().value()));
1972         } else {
1973             List<ComponentMetadataData> latestVersionList = getRes.left().value().stream().map(ModelConverter::convertToComponentMetadata)
1974                 .collect(Collectors.toList());
1975             ComponentMetadataData latestVersion = latestVersionList.size() == 1 ? latestVersionList.get(0) : latestVersionList.stream().max(
1976                 (c1, c2) -> Double.compare(Double.parseDouble(c1.getMetadataDataDefinition().getVersion()),
1977                     Double.parseDouble(c2.getMetadataDataDefinition().getVersion()))).get();
1978             result = Either.left(latestVersion);
1979         }
1980         return result;
1981     }
1982
1983     public Either<ComponentMetadataData, StorageOperationStatus> getComponentMetadata(String componentId) {
1984         Either<ComponentMetadataData, StorageOperationStatus> result;
1985         Either<GraphVertex, JanusGraphOperationStatus> getRes = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.ParseMetadata);
1986         if (getRes.isRight()) {
1987             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getRes.right().value()));
1988         } else {
1989             ComponentMetadataData componentMetadata = ModelConverter.convertToComponentMetadata(getRes.left().value());
1990             result = Either.left(componentMetadata);
1991         }
1992         return result;
1993     }
1994
1995     public Either<List<Component>, StorageOperationStatus> getLatestVersionNotAbstractComponents(boolean isAbstract,
1996                                                                                                  ComponentTypeEnum componentTypeEnum,
1997                                                                                                  String internalComponentType,
1998                                                                                                  List<String> componentUids) {
1999         List<Component> components = new ArrayList<>();
2000         if (componentUids == null) {
2001             Either<List<String>, StorageOperationStatus> componentUidsRes = getComponentUids(isAbstract, componentTypeEnum, internalComponentType);
2002             if (componentUidsRes.isRight()) {
2003                 return Either.right(componentUidsRes.right().value());
2004             }
2005             componentUids = componentUidsRes.left().value();
2006         }
2007         if (!isEmpty(componentUids)) {
2008             for (String componentUid : componentUids) {
2009                 ComponentParametersView componentParametersView = buildComponentViewForNotAbstract();
2010                 if ("vl".equalsIgnoreCase(internalComponentType)) {
2011                     componentParametersView.setIgnoreCapabilities(false);
2012                     componentParametersView.setIgnoreRequirements(false);
2013                 }
2014                 Either<ToscaElement, StorageOperationStatus> getToscaElementRes = nodeTemplateOperation.getToscaElementOperation(componentTypeEnum)
2015                     .getLightComponent(componentUid, componentTypeEnum, componentParametersView);
2016                 if (getToscaElementRes.isRight()) {
2017                     log.debug("Failed to fetch resource for error is {}", getToscaElementRes.right().value());
2018                     return Either.right(getToscaElementRes.right().value());
2019                 }
2020                 Component component = ModelConverter.convertFromToscaElement(getToscaElementRes.left().value());
2021                 nullifySomeComponentProperties(component);
2022                 components.add(component);
2023             }
2024         }
2025         return Either.left(components);
2026     }
2027
2028     public void nullifySomeComponentProperties(Component component) {
2029         component.setContactId(null);
2030         component.setCreationDate(null);
2031         component.setCreatorUserId(null);
2032         component.setCreatorFullName(null);
2033         component.setLastUpdateDate(null);
2034         component.setLastUpdaterUserId(null);
2035         component.setLastUpdaterFullName(null);
2036         component.setNormalizedName(null);
2037     }
2038
2039     private Either<List<String>, StorageOperationStatus> getComponentUids(boolean isAbstract, ComponentTypeEnum componentTypeEnum,
2040                                                                           String internalComponentType) {
2041         Either<List<Component>, StorageOperationStatus> getToscaElementsRes = getLatestVersionNotAbstractMetadataOnly(isAbstract, componentTypeEnum,
2042             internalComponentType, null);
2043         if (getToscaElementsRes.isRight()) {
2044             return Either.right(getToscaElementsRes.right().value());
2045         }
2046         List<Component> collection = getToscaElementsRes.left().value();
2047         List<String> componentUids;
2048         if (collection == null) {
2049             componentUids = new ArrayList<>();
2050         } else {
2051             componentUids = collection.stream().map(Component::getUniqueId).collect(Collectors.toList());
2052         }
2053         return Either.left(componentUids);
2054     }
2055
2056     private ComponentParametersView buildComponentViewForNotAbstract() {
2057         ComponentParametersView componentParametersView = new ComponentParametersView();
2058         componentParametersView.disableAll();
2059         componentParametersView.setIgnoreCategories(false);
2060         componentParametersView.setIgnoreAllVersions(false);
2061         return componentParametersView;
2062     }
2063
2064     public Either<Boolean, StorageOperationStatus> validateComponentNameExists(String name, ResourceTypeEnum resourceType,
2065                                                                                ComponentTypeEnum componentType) {
2066         Either<Boolean, StorageOperationStatus> result = validateComponentNameUniqueness(name, resourceType, componentType);
2067         if (result.isLeft()) {
2068             result = Either.left(!result.left().value());
2069         }
2070         return result;
2071     }
2072     public Either<Boolean, StorageOperationStatus> validateComponentNameUniqueness(String name, ResourceTypeEnum resourceType,
2073                                                                                    ComponentTypeEnum componentType) {
2074         String normalizedName = ValidationUtils.normaliseComponentName(name);
2075         Either<List<GraphVertex>, JanusGraphOperationStatus> vertexEither = janusGraphDao
2076             .getByCriteria(getVertexTypeEnum(resourceType), propertiesToMatch(normalizedName, componentType), JsonParseFlagEnum.NoParse);
2077         if (vertexEither.isRight() && vertexEither.right().value() != JanusGraphOperationStatus.NOT_FOUND) {
2078             log.debug("failed to get vertex from graph with property normalizedName: {}", normalizedName);
2079             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(vertexEither.right().value()));
2080         }
2081         return Either.left(CollectionUtils.isEmpty(vertexEither.isLeft() ? vertexEither.left().value() : null));
2082     }
2083
2084     public Either<Boolean, StorageOperationStatus> validateComponentNameAndModelExists(final String resourceName, final String model,
2085                                                                                        final ResourceTypeEnum resourceType,
2086                                                                                        final ComponentTypeEnum componentType) {
2087         Either<Boolean, StorageOperationStatus> result = validateComponentNameAndModelUniqueness(resourceName, model, resourceType, componentType);
2088         if (result.isLeft()) {
2089             result = Either.left(!result.left().value());
2090         }
2091         return result;
2092     }
2093
2094     private Either<Boolean, StorageOperationStatus> validateComponentNameAndModelUniqueness(final String resourceName, final String modelName,
2095                                                                                             final ResourceTypeEnum resourceType,
2096                                                                                             final ComponentTypeEnum componentType) {
2097         final String normalizedName = ValidationUtils.normaliseComponentName(resourceName);
2098         final Either<List<GraphVertex>, JanusGraphOperationStatus> vertexEither = janusGraphDao
2099             .getByCriteria(getVertexTypeEnum(resourceType), propertiesToMatch(normalizedName, componentType), null, null, JsonParseFlagEnum.NoParse);
2100         if (vertexEither.isRight() && vertexEither.right().value() != JanusGraphOperationStatus.NOT_FOUND) {
2101             log.debug("failed to get vertex from graph with property normalizedName: {} and model: {}", normalizedName, modelName);
2102             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(vertexEither.right().value()));
2103         }
2104         return Either.left(CollectionUtils.isEmpty(vertexEither.isLeft() ? vertexEither.left().value().stream()
2105             .filter(graphVertex -> graphVertex.getMetadataProperty(GraphPropertyEnum.NAME).equals(modelName)).collect(Collectors.toList()) : null));
2106     }
2107
2108     private VertexTypeEnum getVertexTypeEnum(final ResourceTypeEnum resourceType) {
2109         return ModelConverter.isAtomicComponent(resourceType) ? VertexTypeEnum.NODE_TYPE : VertexTypeEnum.TOPOLOGY_TEMPLATE;
2110     }
2111
2112     private Map<GraphPropertyEnum, Object> propertiesToMatch(final String normalizedName, final ComponentTypeEnum componentType) {
2113         final Map<GraphPropertyEnum, Object> properties = new EnumMap<>(GraphPropertyEnum.class);
2114         properties.put(GraphPropertyEnum.NORMALIZED_NAME, normalizedName);
2115         properties.put(GraphPropertyEnum.COMPONENT_TYPE, componentType.name());
2116         return properties;
2117     }
2118
2119     private void fillNodeTypePropsMap(final Map<GraphPropertyEnum, Object> hasProps, final Map<GraphPropertyEnum, Object> hasNotProps,
2120                                       final String internalComponentType) {
2121         final Configuration configuration = ConfigurationManager.getConfigurationManager().getConfiguration();
2122         final List<String> allowedTypes;
2123         if (ComponentTypeEnum.SERVICE.getValue().equalsIgnoreCase(internalComponentType)) {
2124             allowedTypes = containerInstanceTypesData.getComponentAllowedList(ComponentTypeEnum.SERVICE, null);
2125         } else {
2126             final ResourceTypeEnum resourceType = ResourceTypeEnum.getTypeIgnoreCase(internalComponentType);
2127             allowedTypes = containerInstanceTypesData.getComponentAllowedList(ComponentTypeEnum.RESOURCE, resourceType);
2128         }
2129         final List<String> allResourceTypes = configuration.getResourceTypes();
2130         if (allowedTypes == null) {
2131             hasNotProps.put(GraphPropertyEnum.RESOURCE_TYPE, allResourceTypes);
2132             return;
2133         }
2134         if (ResourceTypeEnum.VL.getValue().equalsIgnoreCase(internalComponentType)) {
2135             hasProps.put(GraphPropertyEnum.RESOURCE_TYPE, allowedTypes);
2136         } else {
2137             final List<String> notAllowedTypes = allResourceTypes.stream().filter(s -> !allowedTypes.contains(s)).collect(Collectors.toList());
2138             hasNotProps.put(GraphPropertyEnum.RESOURCE_TYPE, notAllowedTypes);
2139         }
2140     }
2141
2142     private void fillTopologyTemplatePropsMap(Map<GraphPropertyEnum, Object> hasProps, Map<GraphPropertyEnum, Object> hasNotProps,
2143                                               ComponentTypeEnum componentTypeEnum) {
2144         switch (componentTypeEnum) {
2145             case RESOURCE:
2146                 hasProps.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.RESOURCE.name());
2147                 break;
2148             case SERVICE:
2149                 hasProps.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.SERVICE.name());
2150                 break;
2151             default:
2152                 break;
2153         }
2154         hasNotProps.put(GraphPropertyEnum.RESOURCE_TYPE, ResourceTypeEnum.CVFC.name());
2155     }
2156
2157     private void fillPropsMap(Map<GraphPropertyEnum, Object> hasProps, Map<GraphPropertyEnum, Object> hasNotProps, String internalComponentType,
2158                               ComponentTypeEnum componentTypeEnum, boolean isAbstract, VertexTypeEnum internalVertexType) {
2159         hasNotProps.put(GraphPropertyEnum.STATE, LifecycleStateEnum.NOT_CERTIFIED_CHECKOUT.name());
2160         hasNotProps.put(GraphPropertyEnum.IS_DELETED, true);
2161         hasNotProps.put(GraphPropertyEnum.IS_ARCHIVED, true);
2162         hasProps.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
2163         if (VertexTypeEnum.NODE_TYPE == internalVertexType) {
2164             hasProps.put(GraphPropertyEnum.IS_ABSTRACT, isAbstract);
2165             if (internalComponentType != null) {
2166                 fillNodeTypePropsMap(hasProps, hasNotProps, internalComponentType);
2167             }
2168         } else {
2169             fillTopologyTemplatePropsMap(hasProps, hasNotProps, componentTypeEnum);
2170         }
2171     }
2172
2173     private List<VertexTypeEnum> getInternalVertexTypes(ComponentTypeEnum componentTypeEnum, String internalComponentType) {
2174         List<VertexTypeEnum> internalVertexTypes = new ArrayList<>();
2175         if (ComponentTypeEnum.RESOURCE == componentTypeEnum) {
2176             internalVertexTypes.add(VertexTypeEnum.NODE_TYPE);
2177         }
2178         if (ComponentTypeEnum.SERVICE == componentTypeEnum || SERVICE.equalsIgnoreCase(internalComponentType)) {
2179             internalVertexTypes.add(VertexTypeEnum.TOPOLOGY_TEMPLATE);
2180         }
2181         return internalVertexTypes;
2182     }
2183
2184     public Either<List<Component>, StorageOperationStatus> getLatestVersionNotAbstractMetadataOnly(boolean isAbstract,
2185                                                                                                    ComponentTypeEnum componentTypeEnum,
2186                                                                                                    String internalComponentType,
2187                                                                                                    String modelName) {
2188         List<VertexTypeEnum> internalVertexTypes = getInternalVertexTypes(componentTypeEnum, internalComponentType);
2189         List<Component> result = new ArrayList<>();
2190         for (VertexTypeEnum vertexType : internalVertexTypes) {
2191             Either<List<Component>, StorageOperationStatus> listByVertexType = getLatestVersionNotAbstractToscaElementsMetadataOnly(isAbstract,
2192                 componentTypeEnum, internalComponentType, vertexType, modelName);
2193             if (listByVertexType.isRight()) {
2194                 return listByVertexType;
2195             }
2196             result.addAll(listByVertexType.left().value());
2197         }
2198         return Either.left(result);
2199     }
2200
2201     private Either<List<Component>, StorageOperationStatus> getLatestComponentListByUuid(String componentUuid,
2202                                                                                          Map<GraphPropertyEnum, Object> additionalPropertiesToMatch) {
2203         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2204         if (additionalPropertiesToMatch != null) {
2205             propertiesToMatch.putAll(additionalPropertiesToMatch);
2206         }
2207         propertiesToMatch.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
2208         return getComponentListByUuid(componentUuid, propertiesToMatch);
2209     }
2210
2211     public Either<Component, StorageOperationStatus> getComponentByUuidAndVersion(String componentUuid, String version) {
2212         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2213         propertiesToMatch.put(GraphPropertyEnum.UUID, componentUuid);
2214         propertiesToMatch.put(GraphPropertyEnum.VERSION, version);
2215         Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
2216         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
2217         Either<List<GraphVertex>, JanusGraphOperationStatus> vertexEither = janusGraphDao
2218             .getByCriteria(null, propertiesToMatch, propertiesNotToMatch, JsonParseFlagEnum.ParseAll);
2219         if (vertexEither.isRight()) {
2220             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(vertexEither.right().value()));
2221         }
2222         List<GraphVertex> vertexList = vertexEither.isLeft() ? vertexEither.left().value() : null;
2223         if (vertexList == null || vertexList.isEmpty() || vertexList.size() > 1) {
2224             return Either.right(StorageOperationStatus.NOT_FOUND);
2225         }
2226         return getToscaElementByOperation(vertexList.get(0));
2227     }
2228
2229     public Either<List<Component>, StorageOperationStatus> getComponentListByUuid(String componentUuid,
2230                                                                                   Map<GraphPropertyEnum, Object> additionalPropertiesToMatch) {
2231         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2232         if (additionalPropertiesToMatch != null) {
2233             propertiesToMatch.putAll(additionalPropertiesToMatch);
2234         }
2235         propertiesToMatch.put(GraphPropertyEnum.UUID, componentUuid);
2236         Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
2237         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
2238         propertiesNotToMatch.put(GraphPropertyEnum.IS_ARCHIVED, true); //US382674, US382683
2239         Either<List<GraphVertex>, JanusGraphOperationStatus> vertexEither = janusGraphDao
2240             .getByCriteria(null, propertiesToMatch, propertiesNotToMatch, JsonParseFlagEnum.ParseAll);
2241         if (vertexEither.isRight()) {
2242             log.debug("Couldn't fetch metadata for component with uuid {}, error: {}", componentUuid, vertexEither.right().value());
2243             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(vertexEither.right().value()));
2244         }
2245         List<GraphVertex> vertexList = vertexEither.isLeft() ? vertexEither.left().value() : null;
2246         if (vertexList == null || vertexList.isEmpty()) {
2247             log.debug("Component with uuid {} was not found", componentUuid);
2248             return Either.right(StorageOperationStatus.NOT_FOUND);
2249         }
2250         ArrayList<Component> latestComponents = new ArrayList<>();
2251         for (GraphVertex vertex : vertexList) {
2252             Either<Component, StorageOperationStatus> toscaElementByOperation = getToscaElementByOperation(vertex);
2253             if (toscaElementByOperation.isRight()) {
2254                 log.debug("Could not fetch the following Component by UUID {}", vertex.getUniqueId());
2255                 return Either.right(toscaElementByOperation.right().value());
2256             }
2257             latestComponents.add(toscaElementByOperation.left().value());
2258         }
2259         if (latestComponents.size() > 1) {
2260             for (Component component : latestComponents) {
2261                 if (Boolean.TRUE.equals(component.isHighestVersion())) {
2262                     LinkedList<Component> highestComponent = new LinkedList<>();
2263                     highestComponent.add(component);
2264                     return Either.left(highestComponent);
2265                 }
2266             }
2267         }
2268         return Either.left(latestComponents);
2269     }
2270
2271     public Either<Component, StorageOperationStatus> getLatestServiceByUuid(String serviceUuid) {
2272         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2273         propertiesToMatch.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.SERVICE.name());
2274         return getLatestComponentByUuid(serviceUuid, propertiesToMatch);
2275     }
2276
2277     public Either<Component, StorageOperationStatus> getLatestComponentByUuid(String componentUuid) {
2278         return getLatestComponentByUuid(componentUuid, null);
2279     }
2280
2281     public Either<Component, StorageOperationStatus> getLatestComponentByUuid(String componentUuid,
2282                                                                               Map<GraphPropertyEnum, Object> propertiesToMatch) {
2283         Either<List<Component>, StorageOperationStatus> latestVersionListEither = getLatestComponentListByUuid(componentUuid, propertiesToMatch);
2284         if (latestVersionListEither.isRight()) {
2285             return Either.right(latestVersionListEither.right().value());
2286         }
2287         List<Component> latestVersionList = latestVersionListEither.left().value();
2288         if (latestVersionList.isEmpty()) {
2289             return Either.right(StorageOperationStatus.NOT_FOUND);
2290         }
2291         Component component = latestVersionList.size() == 1 ? latestVersionList.get(0)
2292             : latestVersionList.stream().max((c1, c2) -> Double.compare(Double.parseDouble(c1.getVersion()), Double.parseDouble(c2.getVersion())))
2293                 .get();
2294         return Either.left(component);
2295     }
2296
2297     public Either<List<Resource>, StorageOperationStatus> getAllCertifiedResources(boolean isAbstract, Boolean isHighest) {
2298         List<Resource> resources = new ArrayList<>();
2299         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2300         Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
2301         propertiesToMatch.put(GraphPropertyEnum.IS_ABSTRACT, isAbstract);
2302         if (isHighest != null) {
2303             propertiesToMatch.put(GraphPropertyEnum.IS_HIGHEST_VERSION, isHighest);
2304         }
2305         propertiesToMatch.put(GraphPropertyEnum.STATE, LifecycleStateEnum.CERTIFIED.name());
2306         propertiesToMatch.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.RESOURCE.name());
2307         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
2308         Either<List<GraphVertex>, JanusGraphOperationStatus> getResourcesRes = janusGraphDao
2309             .getByCriteria(null, propertiesToMatch, propertiesNotToMatch, JsonParseFlagEnum.ParseAll);
2310         if (getResourcesRes.isRight()) {
2311             log.debug("Failed to fetch all certified resources. Status is {}", getResourcesRes.right().value());
2312             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getResourcesRes.right().value()));
2313         }
2314         List<GraphVertex> resourceVerticies = getResourcesRes.left().value();
2315         for (GraphVertex resourceV : resourceVerticies) {
2316             Either<Resource, StorageOperationStatus> getResourceRes = getToscaElement(resourceV);
2317             if (getResourceRes.isRight()) {
2318                 return Either.right(getResourceRes.right().value());
2319             }
2320             resources.add(getResourceRes.left().value());
2321         }
2322         return Either.left(resources);
2323     }
2324
2325     public <T extends Component> Either<T, StorageOperationStatus> getLatestByNameAndVersion(String name, String version,
2326                                                                                              JsonParseFlagEnum parseFlag) {
2327         Either<T, StorageOperationStatus> result;
2328         Map<GraphPropertyEnum, Object> hasProperties = new EnumMap<>(GraphPropertyEnum.class);
2329         Map<GraphPropertyEnum, Object> hasNotProperties = new EnumMap<>(GraphPropertyEnum.class);
2330         hasProperties.put(GraphPropertyEnum.NAME, name);
2331         hasProperties.put(GraphPropertyEnum.VERSION, version);
2332         hasProperties.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
2333         hasNotProperties.put(GraphPropertyEnum.IS_DELETED, true);
2334         Either<List<GraphVertex>, JanusGraphOperationStatus> getResourceRes = janusGraphDao
2335             .getByCriteria(null, hasProperties, hasNotProperties, parseFlag);
2336         if (getResourceRes.isRight()) {
2337             JanusGraphOperationStatus status = getResourceRes.right().value();
2338             log.debug("failed to find resource with name {}, version {}. Status is {} ", name, version, status);
2339             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
2340             return result;
2341         }
2342         return getToscaElementByOperation(getResourceRes.left().value().get(0));
2343     }
2344
2345     public Either<Resource, StorageOperationStatus> getLatestComponentByCsarOrName(ComponentTypeEnum componentType, String csarUUID,
2346                                                                                    String systemName) {
2347         return getLatestComponentByCsarOrName(componentType, csarUUID, systemName, JsonParseFlagEnum.ParseAll);
2348     }
2349
2350     public Either<Resource, StorageOperationStatus> getLatestComponentByCsarOrName(ComponentTypeEnum componentType, String csarUUID,
2351                                                                                    String systemName, JsonParseFlagEnum parseFlag) {
2352         Map<GraphPropertyEnum, Object> props = new EnumMap<>(GraphPropertyEnum.class);
2353         Map<GraphPropertyEnum, Object> propsHasNot = new EnumMap<>(GraphPropertyEnum.class);
2354         props.put(GraphPropertyEnum.CSAR_UUID, csarUUID);
2355         props.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
2356         if (componentType != null) {
2357             props.put(GraphPropertyEnum.COMPONENT_TYPE, componentType.name());
2358         }
2359         propsHasNot.put(GraphPropertyEnum.IS_DELETED, true);
2360         GraphVertex resourceMetadataData = null;
2361         List<GraphVertex> resourceMetadataDataList = null;
2362         Either<List<GraphVertex>, JanusGraphOperationStatus> byCsar = janusGraphDao
2363             .getByCriteria(null, props, propsHasNot, JsonParseFlagEnum.ParseMetadata);
2364         if (byCsar.isRight()) {
2365             if (JanusGraphOperationStatus.NOT_FOUND == byCsar.right().value()) {
2366                 // Fix Defect DE256036
2367                 if (StringUtils.isEmpty(systemName)) {
2368                     return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(JanusGraphOperationStatus.NOT_FOUND));
2369                 }
2370                 props.clear();
2371                 props.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
2372                 props.put(GraphPropertyEnum.SYSTEM_NAME, systemName);
2373                 Either<List<GraphVertex>, JanusGraphOperationStatus> bySystemname = janusGraphDao
2374                     .getByCriteria(null, props, JsonParseFlagEnum.ParseMetadata);
2375                 if (bySystemname.isRight()) {
2376                     log.debug("getLatestResourceByCsarOrName - Failed to find by system name {}  error {} ", systemName,
2377                         bySystemname.right().value());
2378                     return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(bySystemname.right().value()));
2379                 }
2380                 if (bySystemname.left().value().size() > 2) {
2381                     log.debug(
2382                         "getLatestResourceByCsarOrName - getByCriteria(by system name) must return only 2 latest version, but was returned - {}",
2383                         bySystemname.left().value().size());
2384                     return Either.right(StorageOperationStatus.GENERAL_ERROR);
2385                 }
2386                 resourceMetadataDataList = bySystemname.left().value();
2387                 if (resourceMetadataDataList.size() == 1) {
2388                     resourceMetadataData = resourceMetadataDataList.get(0);
2389                 } else {
2390                     for (GraphVertex curResource : resourceMetadataDataList) {
2391                         if (!((String) curResource.getJsonMetadataField(JsonPresentationFields.LIFECYCLE_STATE)).equals("CERTIFIED")) {
2392                             resourceMetadataData = curResource;
2393                             break;
2394                         }
2395                     }
2396                 }
2397                 if (resourceMetadataData == null) {
2398                     log.debug("getLatestResourceByCsarOrName - getByCriteria(by system name) returned 2 latest CERTIFIED versions");
2399                     return Either.right(StorageOperationStatus.GENERAL_ERROR);
2400                 }
2401                 if (resourceMetadataData.getJsonMetadataField(JsonPresentationFields.CSAR_UUID) != null && !((String) resourceMetadataData
2402                     .getJsonMetadataField(JsonPresentationFields.CSAR_UUID)).equals(csarUUID)) {
2403                     log.debug("getLatestResourceByCsarOrName - same system name {} but different csarUUID. exist {} and new {} ", systemName,
2404                         resourceMetadataData.getJsonMetadataField(JsonPresentationFields.CSAR_UUID), csarUUID);
2405                     // correct error will be returned from create flow. with all
2406
2407                     // correct audit records!!!!!
2408                     return Either.right(StorageOperationStatus.NOT_FOUND);
2409                 }
2410                 return getToscaElement(resourceMetadataData.getUniqueId());
2411             }
2412         } else {
2413             resourceMetadataDataList = byCsar.left().value();
2414             if (resourceMetadataDataList.size() > 2) {
2415                 log.debug("getLatestResourceByCsarOrName - getByCriteria(by csar) must return only 2 latest version, but was returned - {}",
2416                     byCsar.left().value().size());
2417                 return Either.right(StorageOperationStatus.GENERAL_ERROR);
2418             }
2419             if (resourceMetadataDataList.size() == 1) {
2420                 resourceMetadataData = resourceMetadataDataList.get(0);
2421             } else {
2422                 for (GraphVertex curResource : resourceMetadataDataList) {
2423                     if (!((String) curResource.getJsonMetadataField(JsonPresentationFields.LIFECYCLE_STATE)).equals("CERTIFIED")) {
2424                         resourceMetadataData = curResource;
2425                         break;
2426                     }
2427                 }
2428             }
2429             if (resourceMetadataData == null) {
2430                 log.debug("getLatestResourceByCsarOrName - getByCriteria(by csar) returned 2 latest CERTIFIED versions");
2431                 return Either.right(StorageOperationStatus.GENERAL_ERROR);
2432             }
2433             return getToscaElement((String) resourceMetadataData.getJsonMetadataField(JsonPresentationFields.UNIQUE_ID), parseFlag);
2434         }
2435         return null;
2436     }
2437
2438     public Either<Boolean, StorageOperationStatus> validateToscaResourceNameExtends(String templateNameCurrent, String templateNameExtends) {
2439         String currentTemplateNameChecked = templateNameExtends;
2440         while (currentTemplateNameChecked != null && !currentTemplateNameChecked.equalsIgnoreCase(templateNameCurrent)) {
2441             Either<Resource, StorageOperationStatus> latestByToscaResourceName = getLatestByToscaResourceName(currentTemplateNameChecked);
2442             if (latestByToscaResourceName.isRight()) {
2443                 return latestByToscaResourceName.right().value() == StorageOperationStatus.NOT_FOUND ? Either.left(false)
2444                     : Either.right(latestByToscaResourceName.right().value());
2445             }
2446             Resource value = latestByToscaResourceName.left().value();
2447             if (value.getDerivedFrom() != null) {
2448                 currentTemplateNameChecked = value.getDerivedFrom().get(0);
2449             } else {
2450                 currentTemplateNameChecked = null;
2451             }
2452         }
2453         return (currentTemplateNameChecked != null && currentTemplateNameChecked.equalsIgnoreCase(templateNameCurrent)) ? Either.left(true)
2454             : Either.left(false);
2455     }
2456
2457     public Either<List<Component>, StorageOperationStatus> fetchMetaDataByResourceType(String resourceType, ComponentParametersView filterBy) {
2458         Map<GraphPropertyEnum, Object> props = new EnumMap<>(GraphPropertyEnum.class);
2459         props.put(GraphPropertyEnum.RESOURCE_TYPE, resourceType);
2460         props.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
2461         Map<GraphPropertyEnum, Object> propsHasNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
2462         propsHasNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
2463         Either<List<GraphVertex>, JanusGraphOperationStatus> resourcesByTypeEither = janusGraphDao
2464             .getByCriteria(null, props, propsHasNotToMatch, JsonParseFlagEnum.ParseMetadata);
2465         if (resourcesByTypeEither.isRight()) {
2466             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(resourcesByTypeEither.right().value()));
2467         }
2468         List<GraphVertex> vertexList = resourcesByTypeEither.left().value();
2469         List<Component> components = new ArrayList<>();
2470         for (GraphVertex vertex : vertexList) {
2471             components.add(getToscaElementByOperation(vertex, filterBy).left().value());
2472         }
2473         return Either.left(components);
2474     }
2475
2476     public void commit() {
2477         janusGraphDao.commit();
2478     }
2479
2480     public Either<Service, StorageOperationStatus> updateDistributionStatus(Service service, User user, DistributionStatusEnum distributionStatus) {
2481         Either<GraphVertex, StorageOperationStatus> updateDistributionStatus = topologyTemplateOperation
2482             .updateDistributionStatus(service.getUniqueId(), user, distributionStatus);
2483         if (updateDistributionStatus.isRight()) {
2484             return Either.right(updateDistributionStatus.right().value());
2485         }
2486         GraphVertex serviceV = updateDistributionStatus.left().value();
2487         service.setDistributionStatus(distributionStatus);
2488         service.setLastUpdateDate((Long) serviceV.getJsonMetadataField(JsonPresentationFields.LAST_UPDATE_DATE));
2489         return Either.left(service);
2490     }
2491
2492     public Either<ComponentMetadataData, StorageOperationStatus> updateComponentLastUpdateDateOnGraph(Component component) {
2493         Either<ComponentMetadataData, StorageOperationStatus> result = null;
2494         GraphVertex serviceVertex;
2495         Either<GraphVertex, JanusGraphOperationStatus> updateRes = null;
2496         Either<GraphVertex, JanusGraphOperationStatus> getRes = janusGraphDao.getVertexById(component.getUniqueId(), JsonParseFlagEnum.ParseMetadata);
2497         if (getRes.isRight()) {
2498             JanusGraphOperationStatus status = getRes.right().value();
2499             log.error("Failed to fetch component {}. status is {}", component.getUniqueId(), status);
2500             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(status));
2501         }
2502         if (result == null) {
2503             serviceVertex = getRes.left().value();
2504             long lastUpdateDate = System.currentTimeMillis();
2505             serviceVertex.setJsonMetadataField(JsonPresentationFields.LAST_UPDATE_DATE, lastUpdateDate);
2506             component.setLastUpdateDate(lastUpdateDate);
2507             updateRes = janusGraphDao.updateVertex(serviceVertex);
2508             if (updateRes.isRight()) {
2509                 result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(updateRes.right().value()));
2510             }
2511         }
2512         if (result == null) {
2513             result = Either.left(ModelConverter.convertToComponentMetadata(updateRes.left().value()));
2514         }
2515         return result;
2516     }
2517
2518     public HealingJanusGraphDao getJanusGraphDao() {
2519         return janusGraphDao;
2520     }
2521
2522     public Either<List<Service>, StorageOperationStatus> getCertifiedServicesWithDistStatus(Set<DistributionStatusEnum> distStatus) {
2523         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2524         propertiesToMatch.put(GraphPropertyEnum.STATE, LifecycleStateEnum.CERTIFIED.name());
2525         return getServicesWithDistStatus(distStatus, propertiesToMatch);
2526     }
2527
2528     public Either<List<Service>, StorageOperationStatus> getServicesWithDistStatus(Set<DistributionStatusEnum> distStatus,
2529                                                                                    Map<GraphPropertyEnum, Object> additionalPropertiesToMatch) {
2530         List<Service> servicesAll = new ArrayList<>();
2531         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2532         Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
2533         if (additionalPropertiesToMatch != null && !additionalPropertiesToMatch.isEmpty()) {
2534             propertiesToMatch.putAll(additionalPropertiesToMatch);
2535         }
2536         propertiesToMatch.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.SERVICE.name());
2537         propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
2538         if (distStatus != null && !distStatus.isEmpty()) {
2539             for (DistributionStatusEnum state : distStatus) {
2540                 propertiesToMatch.put(GraphPropertyEnum.DISTRIBUTION_STATUS, state.name());
2541                 Either<List<Service>, StorageOperationStatus> fetchServicesByCriteria = fetchServicesByCriteria(servicesAll, propertiesToMatch,
2542                     propertiesNotToMatch, null);
2543                 if (fetchServicesByCriteria.isRight()) {
2544                     return fetchServicesByCriteria;
2545                 } else {
2546                     servicesAll = fetchServicesByCriteria.left().value();
2547                 }
2548             }
2549             return Either.left(servicesAll);
2550         } else {
2551             return fetchServicesByCriteria(servicesAll, propertiesToMatch, propertiesNotToMatch, null);
2552         }
2553     }
2554
2555     private Either<List<Service>, StorageOperationStatus> fetchServicesByCriteria(List<Service> servicesAll,
2556                                                                                   Map<GraphPropertyEnum, Object> propertiesToMatch,
2557                                                                                   Map<GraphPropertyEnum, Object> propertiesNotToMatch,
2558                                                                                   String modelName) {
2559         Either<List<GraphVertex>, JanusGraphOperationStatus> getRes = janusGraphDao
2560             .getByCriteria(VertexTypeEnum.TOPOLOGY_TEMPLATE, propertiesToMatch, propertiesNotToMatch, JsonParseFlagEnum.ParseAll);
2561         if (getRes.isRight()) {
2562             if (getRes.right().value() != JanusGraphOperationStatus.NOT_FOUND) {
2563                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG,
2564                     "Failed to fetch certified services by match properties {} not match properties {} . Status is {}. ", propertiesToMatch,
2565                     propertiesNotToMatch, getRes.right().value());
2566                 return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getRes.right().value()));
2567             }
2568         } else {
2569             for (final GraphVertex vertex : getVerticesForModel(modelName, getRes.left().value())) {
2570                 Either<ToscaElement, StorageOperationStatus> getServiceRes = topologyTemplateOperation
2571                     .getLightComponent(vertex, ComponentTypeEnum.SERVICE, new ComponentParametersView(true));
2572                 if (getServiceRes.isRight()) {
2573                     CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to fetch certified service {}. Status is {}. ",
2574                         vertex.getJsonMetadataField(JsonPresentationFields.NAME), getServiceRes.right().value());
2575                     return Either.right(getServiceRes.right().value());
2576                 } else {
2577                     servicesAll.add(ModelConverter.convertFromToscaElement(getServiceRes.left().value()));
2578                 }
2579             }
2580         }
2581         return Either.left(servicesAll);
2582     }
2583
2584     private List<GraphVertex> getVerticesForModel(final String modelName, final List<GraphVertex> graphVertexList) {
2585         final Predicate<? super GraphVertex> filterPredicate =
2586             StringUtils.isEmpty(modelName) ? this::vertexNotConnectedToAnyModel
2587                 : graphVertex -> vertexValidForModel(graphVertex, modelName).isPresent();
2588         return StreamSupport.stream(graphVertexList.spliterator(), false).filter(filterPredicate).collect(Collectors.toList());
2589     }
2590
2591     private boolean vertexNotConnectedToAnyModel(final GraphVertex vertex) {
2592         return !vertex.getVertex().edges(Direction.OUT, EdgeLabelEnum.MODEL.name()).hasNext();
2593     }
2594
2595     private Optional<GraphVertex> vertexValidForModel(final GraphVertex vertex, final String model) {
2596         final Either<List<GraphVertex>, JanusGraphOperationStatus> nodeModelVertices = janusGraphDao
2597             .getParentVertices(vertex, EdgeLabelEnum.MODEL, JsonParseFlagEnum.NoParse);
2598         if (nodeModelVertices.isRight() || Objects.isNull(nodeModelVertices.left().value())) {
2599             return Optional.empty();
2600         }
2601         return nodeModelVertices.left().value().stream().filter(graphVertex -> graphVertex.getMetadataProperty(GraphPropertyEnum.MODEL).equals(model))
2602             .findFirst();
2603     }
2604
2605     public void rollback() {
2606         janusGraphDao.rollback();
2607     }
2608
2609     public StorageOperationStatus addDeploymentArtifactsToInstance(String componentId, ComponentInstance componentInstance,
2610                                                                    Map<String, ArtifactDefinition> finalDeploymentArtifacts) {
2611         Map<String, ArtifactDataDefinition> instDeplArtifacts = finalDeploymentArtifacts.entrySet().stream()
2612             .collect(Collectors.toMap(Map.Entry::getKey, e -> new ArtifactDataDefinition(e.getValue())));
2613         return nodeTemplateOperation.addDeploymentArtifactsToInstance(componentId, componentInstance.getUniqueId(), instDeplArtifacts);
2614     }
2615
2616     public StorageOperationStatus addInformationalArtifactsToInstance(String componentId, ComponentInstance componentInstance,
2617                                                                       Map<String, ArtifactDefinition> artifacts) {
2618         StorageOperationStatus status = StorageOperationStatus.OK;
2619         if (MapUtils.isNotEmpty(artifacts)) {
2620             Map<String, ArtifactDataDefinition> instDeplArtifacts = artifacts.entrySet().stream()
2621                 .collect(Collectors.toMap(Map.Entry::getKey, e -> new ArtifactDataDefinition(e.getValue())));
2622             status = nodeTemplateOperation.addInformationalArtifactsToInstance(componentId, componentInstance.getUniqueId(), instDeplArtifacts);
2623         }
2624         return status;
2625     }
2626
2627     public StorageOperationStatus generateCustomizationUUIDOnInstance(String componentId, String instanceId) {
2628         return nodeTemplateOperation.generateCustomizationUUIDOnInstance(componentId, instanceId);
2629     }
2630
2631     public StorageOperationStatus generateCustomizationUUIDOnInstanceGroup(String componentId, String instanceId, List<String> groupInstances) {
2632         return nodeTemplateOperation.generateCustomizationUUIDOnInstanceGroup(componentId, instanceId, groupInstances);
2633     }
2634
2635     public Either<PropertyDefinition, StorageOperationStatus> addPropertyToComponent(String propertyName, PropertyDefinition newPropertyDefinition,
2636                                                                                      Component component) {
2637         newPropertyDefinition.setName(propertyName);
2638         StorageOperationStatus status = getToscaElementOperation(component)
2639             .addToscaDataToToscaElement(component.getUniqueId(), EdgeLabelEnum.PROPERTIES, VertexTypeEnum.PROPERTIES, newPropertyDefinition,
2640                 JsonPresentationFields.NAME);
2641         if (status != StorageOperationStatus.OK) {
2642             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to add the property {} to the component {}. Status is {}. ", propertyName,
2643                 component.getName(), status);
2644             return Either.right(status);
2645         }
2646         ComponentParametersView filter = new ComponentParametersView(true);
2647         filter.setIgnoreProperties(false);
2648         filter.setIgnoreInputs(false);
2649         Either<Component, StorageOperationStatus> getUpdatedComponentRes = getToscaElement(component.getUniqueId(), filter);
2650         if (getUpdatedComponentRes.isRight()) {
2651             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to get updated component {}. Status is {}. ", component.getUniqueId(),
2652                 getUpdatedComponentRes.right().value());
2653             return Either.right(status);
2654         }
2655         PropertyDefinition newProperty = null;
2656         List<PropertyDefinition> properties = (getUpdatedComponentRes.left().value()).getProperties();
2657         if (CollectionUtils.isNotEmpty(properties)) {
2658             Optional<PropertyDefinition> propertyOptional = properties.stream().filter(propertyEntry -> propertyEntry.getName().equals(propertyName))
2659                 .findAny();
2660             if (propertyOptional.isPresent()) {
2661                 newProperty = propertyOptional.get();
2662             }
2663         }
2664         if (newProperty == null) {
2665             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to find recently added property {} on the component {}. Status is {}. ",
2666                 propertyName, component.getUniqueId(), StorageOperationStatus.NOT_FOUND);
2667             return Either.right(StorageOperationStatus.NOT_FOUND);
2668         }
2669         return Either.left(newProperty);
2670     }
2671
2672     public Either<InputDefinition, StorageOperationStatus> addInputToComponent(String inputName, InputDefinition newInputDefinition,
2673                                                                                Component component) {
2674         newInputDefinition.setName(inputName);
2675         StorageOperationStatus status = getToscaElementOperation(component)
2676             .addToscaDataToToscaElement(component.getUniqueId(), EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, newInputDefinition,
2677                 JsonPresentationFields.NAME);
2678         if (status != StorageOperationStatus.OK) {
2679             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to add the input {} to the component {}. Status is {}. ", inputName,
2680                 component.getName(), status);
2681             return Either.right(status);
2682         }
2683         ComponentParametersView filter = new ComponentParametersView(true);
2684         filter.setIgnoreProperties(false);
2685         filter.setIgnoreInputs(false);
2686         Either<Component, StorageOperationStatus> getUpdatedComponentRes = getToscaElement(component.getUniqueId(), filter);
2687         if (getUpdatedComponentRes.isRight()) {
2688             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to get updated component {}. Status is {}. ", component.getUniqueId(),
2689                 getUpdatedComponentRes.right().value());
2690             return Either.right(status);
2691         }
2692         InputDefinition newInput = null;
2693         List<InputDefinition> inputs = (getUpdatedComponentRes.left().value()).getInputs();
2694         if (CollectionUtils.isNotEmpty(inputs)) {
2695             Optional<InputDefinition> inputOptional = inputs.stream().filter(inputEntry -> inputEntry.getName().equals(inputName)).findAny();
2696             if (inputOptional.isPresent()) {
2697                 newInput = inputOptional.get();
2698             }
2699         }
2700         if (newInput == null) {
2701             CommonUtility
2702                 .addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to find recently added input {} " + "on the component {}. Status is {}. ", inputs,
2703                     component.getUniqueId(), StorageOperationStatus.NOT_FOUND);
2704             return Either.right(StorageOperationStatus.NOT_FOUND);
2705         }
2706         return Either.left(newInput);
2707     }
2708
2709     public StorageOperationStatus deletePropertyOfComponent(Component component, String propertyName) {
2710         return getToscaElementOperation(component)
2711             .deleteToscaDataElement(component.getUniqueId(), EdgeLabelEnum.PROPERTIES, VertexTypeEnum.PROPERTIES, propertyName,
2712                 JsonPresentationFields.NAME);
2713     }
2714
2715     public StorageOperationStatus deleteAttributeOfResource(Component component, String attributeName) {
2716         return getToscaElementOperation(component)
2717             .deleteToscaDataElement(component.getUniqueId(), EdgeLabelEnum.ATTRIBUTES, VertexTypeEnum.ATTRIBUTES, attributeName,
2718                 JsonPresentationFields.NAME);
2719     }
2720
2721     public StorageOperationStatus deleteInputOfResource(Component resource, String inputName) {
2722         return getToscaElementOperation(resource)
2723             .deleteToscaDataElement(resource.getUniqueId(), EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, inputName, JsonPresentationFields.NAME);
2724     }
2725
2726     public StorageOperationStatus deleteOutputOfResource(final Component resource, final String outputName) {
2727         return getToscaElementOperation(resource)
2728             .deleteToscaDataElement(resource.getUniqueId(), EdgeLabelEnum.OUTPUTS, VertexTypeEnum.OUTPUTS, outputName, JsonPresentationFields.NAME);
2729     }
2730
2731     /**
2732      * Deletes a data type from a component.
2733      *
2734      * @param component    the container which has the data type
2735      * @param dataTypeName the data type name to be deleted
2736      * @return Operation result.
2737      */
2738     public StorageOperationStatus deleteDataTypeOfComponent(Component component, String dataTypeName) {
2739         return getToscaElementOperation(component)
2740             .deleteToscaDataElement(component.getUniqueId(), EdgeLabelEnum.DATA_TYPES, VertexTypeEnum.DATA_TYPES, dataTypeName,
2741                 JsonPresentationFields.NAME);
2742     }
2743
2744     public Either<PropertyDefinition, StorageOperationStatus> updatePropertyOfComponent(Component component,
2745                                                                                         PropertyDefinition newPropertyDefinition) {
2746         Either<Component, StorageOperationStatus> getUpdatedComponentRes = null;
2747         Either<PropertyDefinition, StorageOperationStatus> result = null;
2748         StorageOperationStatus status = getToscaElementOperation(component)
2749             .updateToscaDataOfToscaElement(component.getUniqueId(), EdgeLabelEnum.PROPERTIES, VertexTypeEnum.PROPERTIES, newPropertyDefinition,
2750                 JsonPresentationFields.NAME);
2751         if (status != StorageOperationStatus.OK) {
2752             CommonUtility
2753                 .addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_ADD_THE_PROPERTY_TO_THE_RESOURCE_STATUS_IS, newPropertyDefinition.getName(),
2754                     component.getName(), status);
2755             result = Either.right(status);
2756         }
2757         if (result == null) {
2758             ComponentParametersView filter = new ComponentParametersView(true);
2759             filter.setIgnoreProperties(false);
2760             getUpdatedComponentRes = getToscaElement(component.getUniqueId(), filter);
2761             if (getUpdatedComponentRes.isRight()) {
2762                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_GET_UPDATED_RESOURCE_STATUS_IS, component.getUniqueId(),
2763                     getUpdatedComponentRes.right().value());
2764                 result = Either.right(status);
2765             }
2766         }
2767         if (result == null) {
2768             Optional<PropertyDefinition> newProperty = (getUpdatedComponentRes.left().value()).getProperties().stream()
2769                 .filter(p -> p.getName().equals(newPropertyDefinition.getName())).findAny();
2770             if (newProperty.isPresent()) {
2771                 result = Either.left(newProperty.get());
2772             } else {
2773                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_FIND_RECENTLY_ADDED_PROPERTY_ON_THE_RESOURCE_STATUS_IS,
2774                     newPropertyDefinition.getName(), component.getUniqueId(), StorageOperationStatus.NOT_FOUND);
2775                 result = Either.right(StorageOperationStatus.NOT_FOUND);
2776             }
2777         }
2778         return result;
2779     }
2780
2781     public Either<AttributeDefinition, StorageOperationStatus> updateAttributeOfComponent(Component component,
2782                                                                                           AttributeDefinition newPropertyDefinition) {
2783         Either<Component, StorageOperationStatus> getUpdatedComponentRes = null;
2784         Either<AttributeDefinition, StorageOperationStatus> result = null;
2785         StorageOperationStatus status = getToscaElementOperation(component)
2786             .updateToscaDataOfToscaElement(component.getUniqueId(), EdgeLabelEnum.ATTRIBUTES, VertexTypeEnum.ATTRIBUTES, newPropertyDefinition,
2787                 JsonPresentationFields.NAME);
2788         if (status != StorageOperationStatus.OK) {
2789             CommonUtility
2790                 .addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_ADD_THE_PROPERTY_TO_THE_RESOURCE_STATUS_IS, newPropertyDefinition.getName(),
2791                     component.getName(), status);
2792             result = Either.right(status);
2793         }
2794         if (result == null) {
2795             ComponentParametersView filter = new ComponentParametersView(true);
2796             filter.setIgnoreProperties(false);
2797             getUpdatedComponentRes = getToscaElement(component.getUniqueId(), filter);
2798             if (getUpdatedComponentRes.isRight()) {
2799                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_GET_UPDATED_RESOURCE_STATUS_IS, component.getUniqueId(),
2800                     getUpdatedComponentRes.right().value());
2801                 result = Either.right(status);
2802             }
2803         }
2804         if (result == null) {
2805             Optional<AttributeDefinition> newProperty = (getUpdatedComponentRes.left().value()).getAttributes().stream()
2806                 .filter(p -> p.getName().equals(newPropertyDefinition.getName())).findAny();
2807             if (newProperty.isPresent()) {
2808                 result = Either.left(newProperty.get());
2809             } else {
2810                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_FIND_RECENTLY_ADDED_PROPERTY_ON_THE_RESOURCE_STATUS_IS,
2811                     newPropertyDefinition.getName(), component.getUniqueId(), StorageOperationStatus.NOT_FOUND);
2812                 result = Either.right(StorageOperationStatus.NOT_FOUND);
2813             }
2814         }
2815         return result;
2816     }
2817
2818     public Either<AttributeDefinition, StorageOperationStatus> addAttributeOfResource(Component component, AttributeDefinition newAttributeDef) {
2819         Either<Component, StorageOperationStatus> getUpdatedComponentRes = null;
2820         Either<AttributeDefinition, StorageOperationStatus> result = null;
2821         if (newAttributeDef.getUniqueId() == null || newAttributeDef.getUniqueId().isEmpty()) {
2822             String attUniqueId = UniqueIdBuilder.buildAttributeUid(component.getUniqueId(), newAttributeDef.getName());
2823             newAttributeDef.setUniqueId(attUniqueId);
2824             newAttributeDef.setOwnerId(component.getUniqueId());
2825         }
2826         StorageOperationStatus status = getToscaElementOperation(component)
2827             .addToscaDataToToscaElement(component.getUniqueId(), EdgeLabelEnum.ATTRIBUTES, VertexTypeEnum.ATTRIBUTES, newAttributeDef,
2828                 JsonPresentationFields.NAME);
2829         if (status != StorageOperationStatus.OK) {
2830             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_ADD_THE_PROPERTY_TO_THE_RESOURCE_STATUS_IS, newAttributeDef.getName(),
2831                 component.getName(), status);
2832             result = Either.right(status);
2833         }
2834         if (result == null) {
2835             ComponentParametersView filter = new ComponentParametersView(true);
2836             filter.setIgnoreAttributes(false);
2837             getUpdatedComponentRes = getToscaElement(component.getUniqueId(), filter);
2838             if (getUpdatedComponentRes.isRight()) {
2839                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_GET_UPDATED_RESOURCE_STATUS_IS, component.getUniqueId(),
2840                     getUpdatedComponentRes.right().value());
2841                 result = Either.right(status);
2842             }
2843         }
2844         if (result == null) {
2845             Optional<AttributeDefinition> newAttribute = ((Resource) getUpdatedComponentRes.left().value()).getAttributes().stream()
2846                 .filter(p -> p.getName().equals(newAttributeDef.getName())).findAny();
2847             if (newAttribute.isPresent()) {
2848                 result = Either.left(newAttribute.get());
2849             } else {
2850                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_FIND_RECENTLY_ADDED_PROPERTY_ON_THE_RESOURCE_STATUS_IS,
2851                     newAttributeDef.getName(), component.getUniqueId(), StorageOperationStatus.NOT_FOUND);
2852                 result = Either.right(StorageOperationStatus.NOT_FOUND);
2853             }
2854         }
2855         return result;
2856     }
2857
2858     public Either<AttributeDefinition, StorageOperationStatus> updateAttributeOfResource(Component component, AttributeDefinition newAttributeDef) {
2859         Either<Component, StorageOperationStatus> getUpdatedComponentRes = null;
2860         Either<AttributeDefinition, StorageOperationStatus> result = null;
2861         StorageOperationStatus status = getToscaElementOperation(component)
2862             .updateToscaDataOfToscaElement(component.getUniqueId(), EdgeLabelEnum.ATTRIBUTES, VertexTypeEnum.ATTRIBUTES, newAttributeDef,
2863                 JsonPresentationFields.NAME);
2864         if (status != StorageOperationStatus.OK) {
2865             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_ADD_THE_PROPERTY_TO_THE_RESOURCE_STATUS_IS, newAttributeDef.getName(),
2866                 component.getName(), status);
2867             result = Either.right(status);
2868         }
2869         if (result == null) {
2870             ComponentParametersView filter = new ComponentParametersView(true);
2871             filter.setIgnoreAttributes(false);
2872             getUpdatedComponentRes = getToscaElement(component.getUniqueId(), filter);
2873             if (getUpdatedComponentRes.isRight()) {
2874                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_GET_UPDATED_RESOURCE_STATUS_IS, component.getUniqueId(),
2875                     getUpdatedComponentRes.right().value());
2876                 result = Either.right(status);
2877             }
2878         }
2879         if (result == null) {
2880             Optional<AttributeDefinition> newProperty = ((Resource) getUpdatedComponentRes.left().value()).getAttributes().stream()
2881                 .filter(p -> p.getName().equals(newAttributeDef.getName())).findAny();
2882             if (newProperty.isPresent()) {
2883                 result = Either.left(newProperty.get());
2884             } else {
2885                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_FIND_RECENTLY_ADDED_PROPERTY_ON_THE_RESOURCE_STATUS_IS,
2886                     newAttributeDef.getName(), component.getUniqueId(), StorageOperationStatus.NOT_FOUND);
2887                 result = Either.right(StorageOperationStatus.NOT_FOUND);
2888             }
2889         }
2890         return result;
2891     }
2892
2893     public Either<InputDefinition, StorageOperationStatus> updateInputOfComponent(Component component, InputDefinition newInputDefinition) {
2894         Either<Component, StorageOperationStatus> getUpdatedComponentRes = null;
2895         Either<InputDefinition, StorageOperationStatus> result = null;
2896         StorageOperationStatus status = getToscaElementOperation(component)
2897             .updateToscaDataOfToscaElement(component.getUniqueId(), EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, newInputDefinition,
2898                 JsonPresentationFields.NAME);
2899         if (status != StorageOperationStatus.OK) {
2900             CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to update the input {} to the component {}. Status is {}. ",
2901                 newInputDefinition.getName(), component.getName(), status);
2902             result = Either.right(status);
2903         }
2904         if (result == null) {
2905             ComponentParametersView filter = new ComponentParametersView(true);
2906             filter.setIgnoreInputs(false);
2907             getUpdatedComponentRes = getToscaElement(component.getUniqueId(), filter);
2908             if (getUpdatedComponentRes.isRight()) {
2909                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, FAILED_TO_GET_UPDATED_RESOURCE_STATUS_IS, component.getUniqueId(),
2910                     getUpdatedComponentRes.right().value());
2911                 result = Either.right(status);
2912             }
2913         }
2914         if (result == null) {
2915             Optional<InputDefinition> updatedInput = getUpdatedComponentRes.left().value().getInputs().stream()
2916                 .filter(p -> p.getName().equals(newInputDefinition.getName())).findAny();
2917             if (updatedInput.isPresent()) {
2918                 result = Either.left(updatedInput.get());
2919             } else {
2920                 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to find recently updated inputs {} on the resource {}. Status is {}. ",
2921                     newInputDefinition.getName(), component.getUniqueId(), StorageOperationStatus.NOT_FOUND);
2922                 result = Either.right(StorageOperationStatus.NOT_FOUND);
2923             }
2924         }
2925         return result;
2926     }
2927
2928     /**
2929      * method - ename the group instances after referenced container name renamed flow - VF rename -(triggers)-> Group rename
2930      *
2931      * @param containerComponent  - container such as service
2932      * @param componentInstance   - context component
2933      * @param componentInstanceId - id
2934      * @return - successfull/failed status
2935      **/
2936     public Either<StorageOperationStatus, StorageOperationStatus> cleanAndAddGroupInstancesToComponentInstance(Component containerComponent,
2937                                                                                                                ComponentInstance componentInstance,
2938                                                                                                                String componentInstanceId) {
2939         String uniqueId = componentInstance.getUniqueId();
2940         StorageOperationStatus status = nodeTemplateOperation
2941             .deleteToscaDataDeepElementsBlockOfToscaElement(containerComponent.getUniqueId(), EdgeLabelEnum.INST_GROUPS, VertexTypeEnum.INST_GROUPS,
2942                 uniqueId);
2943         if (status != StorageOperationStatus.OK && status != StorageOperationStatus.NOT_FOUND) {
2944             CommonUtility
2945                 .addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to delete group instances for container {}. error {] ", componentInstanceId, status);
2946             return Either.right(status);
2947         }
2948         if (componentInstance.getGroupInstances() != null) {
2949             status = addGroupInstancesToComponentInstance(containerComponent, componentInstance, componentInstance.getGroupInstances());
2950             if (status != StorageOperationStatus.OK && status != StorageOperationStatus.NOT_FOUND) {
2951                 CommonUtility
2952                     .addRecordToLog(log, LogLevelEnum.DEBUG, "Failed to add group instances for container {}. error {] ", componentInstanceId,
2953                         status);
2954                 return Either.right(status);
2955             }
2956         }
2957         return Either.left(status);
2958     }
2959
2960     public StorageOperationStatus addGroupInstancesToComponentInstance(Component containerComponent, ComponentInstance componentInstance,
2961                                                                        List<GroupDefinition> groups,
2962                                                                        Map<String, List<ArtifactDefinition>> groupInstancesArtifacts) {
2963         return nodeTemplateOperation.addGroupInstancesToComponentInstance(containerComponent, componentInstance, groups, groupInstancesArtifacts);
2964     }
2965
2966     public Either<List<GroupDefinition>, StorageOperationStatus> updateGroupsOnComponent(Component component,
2967                                                                                          List<GroupDataDefinition> updatedGroups) {
2968         return groupsOperation.updateGroups(component, updatedGroups, PromoteVersionEnum.MINOR);
2969     }
2970
2971     public Either<List<GroupInstance>, StorageOperationStatus> updateGroupInstancesOnComponent(Component component, String instanceId,
2972                                                                                                List<GroupInstance> updatedGroupInstances) {
2973         return groupsOperation.updateGroupInstances(component, instanceId, updatedGroupInstances);
2974     }
2975
2976     public StorageOperationStatus addGroupInstancesToComponentInstance(Component containerComponent, ComponentInstance componentInstance,
2977                                                                        List<GroupInstance> groupInstances) {
2978         return nodeTemplateOperation.addGroupInstancesToComponentInstance(containerComponent, componentInstance, groupInstances);
2979     }
2980
2981     public StorageOperationStatus addDeploymentArtifactsToComponentInstance(Component containerComponent, ComponentInstance componentInstance,
2982                                                                             Map<String, ArtifactDefinition> deploymentArtifacts) {
2983         return nodeTemplateOperation.addDeploymentArtifactsToComponentInstance(containerComponent, componentInstance, deploymentArtifacts);
2984     }
2985
2986     public StorageOperationStatus updateComponentInstanceProperty(Component containerComponent, String componentInstanceId,
2987                                                                   ComponentInstanceProperty property) {
2988         return nodeTemplateOperation.updateComponentInstanceProperty(containerComponent, componentInstanceId, property);
2989     }
2990
2991     public StorageOperationStatus updateComponentInstanceProperties(Component containerComponent, String componentInstanceId,
2992                                                                     List<ComponentInstanceProperty> properties) {
2993         return nodeTemplateOperation.updateComponentInstanceProperties(containerComponent, componentInstanceId, properties);
2994     }
2995
2996     public StorageOperationStatus updateComponentInstanceAttributes(final Component containerComponent, final String componentInstanceId,
2997                                                                     final List<ComponentInstanceAttribute> attributes) {
2998         return nodeTemplateOperation.updateComponentInstanceAttributes(containerComponent, componentInstanceId, attributes);
2999     }
3000
3001     public StorageOperationStatus addComponentInstanceProperty(Component containerComponent, String componentInstanceId,
3002                                                                ComponentInstanceProperty property) {
3003         return nodeTemplateOperation.addComponentInstanceProperty(containerComponent, componentInstanceId, property);
3004     }
3005
3006     public StorageOperationStatus updateComponentInstanceAttribute(final Component containerComponent, final String componentInstanceId,
3007                                                                    final ComponentInstanceAttribute attribute) {
3008         return nodeTemplateOperation.updateComponentInstanceAttribute(containerComponent, componentInstanceId, attribute);
3009     }
3010
3011     public StorageOperationStatus addComponentInstanceAttribute(Component containerComponent, String componentInstanceId,
3012                                                                 ComponentInstanceAttribute attribute) {
3013         return nodeTemplateOperation.addComponentInstanceAttribute(containerComponent, componentInstanceId, attribute);
3014     }
3015
3016     public StorageOperationStatus updateComponentInstanceInput(Component containerComponent, String componentInstanceId,
3017                                                                ComponentInstanceInput property) {
3018         return nodeTemplateOperation.updateComponentInstanceInput(containerComponent, componentInstanceId, property);
3019     }
3020
3021     public StorageOperationStatus updateComponentInstanceOutput(Component containerComponent, String componentInstanceId,
3022                                                                 ComponentInstanceOutput property) {
3023         return nodeTemplateOperation.updateComponentInstanceOutput(containerComponent, componentInstanceId, property);
3024     }
3025
3026     public StorageOperationStatus updateComponentInstanceInputs(Component containerComponent, String componentInstanceId,
3027                                                                 List<ComponentInstanceInput> instanceInputs) {
3028         return nodeTemplateOperation.updateComponentInstanceInputs(containerComponent, componentInstanceId, instanceInputs);
3029     }
3030
3031     public StorageOperationStatus updateComponentInstanceOutputs(Component containerComponent, String componentInstanceId,
3032                                                                  List<ComponentInstanceOutput> instanceInputs) {
3033         return nodeTemplateOperation.updateComponentInstanceOutputs(containerComponent, componentInstanceId, instanceInputs);
3034     }
3035
3036     public StorageOperationStatus addComponentInstanceInput(Component containerComponent, String componentInstanceId,
3037                                                             ComponentInstanceInput property) {
3038         return nodeTemplateOperation.addComponentInstanceInput(containerComponent, componentInstanceId, property);
3039     }
3040
3041     public StorageOperationStatus addComponentInstanceOutput(Component containerComponent, String componentInstanceId,
3042                                                              ComponentInstanceOutput property) {
3043         return nodeTemplateOperation.addComponentInstanceOutput(containerComponent, componentInstanceId, property);
3044     }
3045
3046     public void setNodeTypeOperation(NodeTypeOperation nodeTypeOperation) {
3047         this.nodeTypeOperation = nodeTypeOperation;
3048     }
3049
3050     public void setTopologyTemplateOperation(TopologyTemplateOperation topologyTemplateOperation) {
3051         this.topologyTemplateOperation = topologyTemplateOperation;
3052     }
3053
3054     public StorageOperationStatus deleteComponentInstanceInputsFromTopologyTemplate(Component containerComponent,
3055                                                                                     List<InputDefinition> inputsToDelete) {
3056         return topologyTemplateOperation.deleteToscaDataElements(containerComponent.getUniqueId(), EdgeLabelEnum.INPUTS,
3057             inputsToDelete.stream().map(PropertyDataDefinition::getName).collect(Collectors.toList()));
3058     }
3059
3060     public StorageOperationStatus deleteComponentInstanceOutputsFromTopologyTemplate(final Component containerComponent,
3061                                                                                      final List<OutputDefinition> outputsToDelete) {
3062         return topologyTemplateOperation.deleteToscaDataElements(containerComponent.getUniqueId(), EdgeLabelEnum.OUTPUTS,
3063             outputsToDelete.stream().map(AttributeDataDefinition::getName).collect(Collectors.toList()));
3064     }
3065
3066     public StorageOperationStatus updateComponentInstanceCapabiltyProperty(Component containerComponent, String componentInstanceUniqueId,
3067                                                                            String capabilityPropertyKey, ComponentInstanceProperty property) {
3068         return nodeTemplateOperation
3069             .updateComponentInstanceCapabilityProperty(containerComponent, componentInstanceUniqueId, capabilityPropertyKey, property);
3070     }
3071
3072     public StorageOperationStatus updateComponentInstanceCapabilityProperties(Component containerComponent, String componentInstanceUniqueId) {
3073         return convertComponentInstanceProperties(containerComponent, componentInstanceUniqueId).map(instanceCapProps -> topologyTemplateOperation
3074             .updateComponentInstanceCapabilityProperties(containerComponent, componentInstanceUniqueId, instanceCapProps))
3075             .orElse(StorageOperationStatus.NOT_FOUND);
3076     }
3077
3078     public StorageOperationStatus updateComponentInstanceRequirement(String containerComponentId, String componentInstanceUniqueId,
3079                                                                      RequirementDataDefinition requirementDataDefinition) {
3080         return nodeTemplateOperation.updateComponentInstanceRequirement(containerComponentId, componentInstanceUniqueId, requirementDataDefinition);
3081     }
3082
3083     public CapabilityDataDefinition updateComponentInstanceCapability(final String containerComponentId, final String componentInstanceUniqueId,
3084                                                                       final CapabilityDataDefinition capabilityDataDefinition) {
3085
3086         return nodeTemplateOperation.updateComponentInstanceCapabilities(containerComponentId, componentInstanceUniqueId, capabilityDataDefinition);
3087     }
3088
3089     public StorageOperationStatus updateComponentInstanceInterfaces(Component containerComponent, String componentInstanceUniqueId) {
3090         MapInterfaceDataDefinition mapInterfaceDataDefinition = convertComponentInstanceInterfaces(containerComponent, componentInstanceUniqueId);
3091         return topologyTemplateOperation.updateComponentInstanceInterfaces(containerComponent, componentInstanceUniqueId, mapInterfaceDataDefinition);
3092     }
3093
3094     public StorageOperationStatus updateComponentCalculatedCapabilitiesProperties(Component containerComponent) {
3095         Map<String, MapCapabilityProperty> mapCapabiltyPropertyMap = convertComponentCapabilitiesProperties(containerComponent);
3096         return nodeTemplateOperation.overrideComponentCapabilitiesProperties(containerComponent, mapCapabiltyPropertyMap);
3097     }
3098
3099     public StorageOperationStatus deleteAllCalculatedCapabilitiesRequirements(String topologyTemplateId) {
3100         StorageOperationStatus status = topologyTemplateOperation
3101             .removeToscaData(topologyTemplateId, EdgeLabelEnum.CALCULATED_CAPABILITIES, VertexTypeEnum.CALCULATED_CAPABILITIES);
3102         if (status == StorageOperationStatus.OK) {
3103             status = topologyTemplateOperation
3104                 .removeToscaData(topologyTemplateId, EdgeLabelEnum.CALCULATED_REQUIREMENTS, VertexTypeEnum.CALCULATED_REQUIREMENTS);
3105         }
3106         if (status == StorageOperationStatus.OK) {
3107             status = topologyTemplateOperation
3108                 .removeToscaData(topologyTemplateId, EdgeLabelEnum.CALCULATED_CAP_PROPERTIES, VertexTypeEnum.CALCULATED_CAP_PROPERTIES);
3109         }
3110         return status;
3111     }
3112
3113     public Either<Component, StorageOperationStatus> shouldUpgradeToLatestDerived(Resource clonedResource) {
3114         String componentId = clonedResource.getUniqueId();
3115         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
3116         if (getVertexEither.isRight()) {
3117             log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
3118             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
3119         }
3120         GraphVertex nodeTypeV = getVertexEither.left().value();
3121         ToscaElement toscaElementToUpdate = ModelConverter.convertToToscaElement(clonedResource);
3122         Either<ToscaElement, StorageOperationStatus> shouldUpdateDerivedVersion = nodeTypeOperation
3123             .shouldUpdateDerivedVersion(toscaElementToUpdate, nodeTypeV);
3124         if (shouldUpdateDerivedVersion.isRight() && StorageOperationStatus.OK != shouldUpdateDerivedVersion.right().value()) {
3125             log.debug("Failed to update derived version for node type {} derived {}, error: {}", componentId, clonedResource.getDerivedFrom().get(0),
3126                 shouldUpdateDerivedVersion.right().value());
3127             return Either.right(shouldUpdateDerivedVersion.right().value());
3128         }
3129         if (shouldUpdateDerivedVersion.isLeft()) {
3130             return Either.left(ModelConverter.convertFromToscaElement(shouldUpdateDerivedVersion.left().value()));
3131         }
3132         return Either.left(clonedResource);
3133     }
3134
3135     /**
3136      * Returns list of ComponentInstanceProperty belonging to component instance capability specified by name, type and ownerId
3137      */
3138     public Either<List<ComponentInstanceProperty>, StorageOperationStatus> getComponentInstanceCapabilityProperties(String componentId,
3139                                                                                                                     String instanceId,
3140                                                                                                                     String capabilityName,
3141                                                                                                                     String capabilityType,
3142                                                                                                                     String ownerId) {
3143         return topologyTemplateOperation.getComponentInstanceCapabilityProperties(componentId, instanceId, capabilityName, capabilityType, ownerId);
3144     }
3145
3146     private MapInterfaceDataDefinition convertComponentInstanceInterfaces(Component currComponent, String componentInstanceId) {
3147         MapInterfaceDataDefinition mapInterfaceDataDefinition = new MapInterfaceDataDefinition();
3148         List<ComponentInstanceInterface> componentInterface = currComponent.getComponentInstancesInterfaces().get(componentInstanceId);
3149         if (CollectionUtils.isNotEmpty(componentInterface)) {
3150             componentInterface.stream().forEach(interfaceDef -> mapInterfaceDataDefinition.put(interfaceDef.getUniqueId(), interfaceDef));
3151         }
3152         return mapInterfaceDataDefinition;
3153     }
3154
3155     private Map<String, MapCapabilityProperty> convertComponentCapabilitiesProperties(Component currComponent) {
3156         Map<String, MapCapabilityProperty> map = ModelConverter.extractCapabilityPropertiesFromGroups(currComponent.getGroups(), true);
3157         map.putAll(ModelConverter.extractCapabilityProperteisFromInstances(currComponent.getComponentInstances(), true));
3158         return map;
3159     }
3160
3161     private Optional<MapCapabilityProperty> convertComponentInstanceProperties(Component component, String instanceId) {
3162         return component.fetchInstanceById(instanceId)
3163             .map(ci -> ModelConverter.convertToMapOfMapCapabilityProperties(ci.getCapabilities(), instanceId, ci.getOriginType().isAtomicType()));
3164     }
3165
3166     public Either<PolicyDefinition, StorageOperationStatus> associatePolicyToComponent(String componentId, PolicyDefinition policyDefinition,
3167                                                                                        int counter) {
3168         Either<PolicyDefinition, StorageOperationStatus> result = null;
3169         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither;
3170         getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.ParseMetadata);
3171         if (getVertexEither.isRight()) {
3172             log.error(COULDNT_FETCH_A_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
3173             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
3174         } else {
3175             if (getVertexEither.left().value().getLabel() != VertexTypeEnum.TOPOLOGY_TEMPLATE) {
3176                 log.error("Policy association to component of Tosca type {} is not allowed. ", getVertexEither.left().value().getLabel());
3177                 result = Either.right(StorageOperationStatus.BAD_REQUEST);
3178             }
3179         }
3180         if (result == null) {
3181             StorageOperationStatus status = topologyTemplateOperation
3182                 .addPolicyToToscaElement(getVertexEither.left().value(), policyDefinition, counter);
3183             if (status != StorageOperationStatus.OK) {
3184                 return Either.right(status);
3185             }
3186         }
3187         if (result == null) {
3188             result = Either.left(policyDefinition);
3189         }
3190         return result;
3191     }
3192
3193     public StorageOperationStatus associatePoliciesToComponent(String componentId, List<PolicyDefinition> policies) {
3194         log.debug("#associatePoliciesToComponent - associating policies for component {}.", componentId);
3195         return janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.ParseMetadata)
3196             .either(containerVertex -> topologyTemplateOperation.addPoliciesToToscaElement(containerVertex, policies),
3197                 DaoStatusConverter::convertJanusGraphStatusToStorageStatus);
3198     }
3199
3200     public Either<PolicyDefinition, StorageOperationStatus> updatePolicyOfComponent(String componentId, PolicyDefinition policyDefinition,
3201                                                                                     PromoteVersionEnum promoteVersionEnum) {
3202         Either<PolicyDefinition, StorageOperationStatus> result = null;
3203         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither;
3204         getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
3205         if (getVertexEither.isRight()) {
3206             log.error(COULDNT_FETCH_A_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
3207             result = Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value()));
3208         }
3209         if (result == null) {
3210             policyDefinition.setVersion(GroupUtils.updateVersion(promoteVersionEnum, policyDefinition.getVersion()));
3211             StorageOperationStatus status = topologyTemplateOperation.updatePolicyOfToscaElement(getVertexEither.left().value(), policyDefinition);
3212             if (status != StorageOperationStatus.OK) {
3213                 return Either.right(status);
3214             }
3215         }
3216         if (result == null) {
3217             result = Either.left(policyDefinition);
3218         }
3219         return result;
3220     }
3221
3222     public StorageOperationStatus updatePoliciesOfComponent(String componentId, List<PolicyDefinition> policyDefinition) {
3223         log.debug("#updatePoliciesOfComponent - updating policies for component {}", componentId);
3224         return janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse).right()
3225             .map(DaoStatusConverter::convertJanusGraphStatusToStorageStatus)
3226             .either(containerVertex -> topologyTemplateOperation.updatePoliciesOfToscaElement(containerVertex, policyDefinition), err -> err);
3227     }
3228
3229     public StorageOperationStatus removePolicyFromComponent(String componentId, String policyId) {
3230         StorageOperationStatus status = null;
3231         Either<GraphVertex, JanusGraphOperationStatus> getVertexEither = janusGraphDao.getVertexById(componentId, JsonParseFlagEnum.NoParse);
3232         if (getVertexEither.isRight()) {
3233             log.error(COULDNT_FETCH_A_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
3234             status = DaoStatusConverter.convertJanusGraphStatusToStorageStatus(getVertexEither.right().value());
3235         }
3236         if (status == null) {
3237             status = topologyTemplateOperation.removePolicyFromToscaElement(getVertexEither.left().value(), policyId);
3238         }
3239         return status;
3240     }
3241
3242     public boolean canAddGroups(String componentId) {
3243         GraphVertex vertex = janusGraphDao.getVertexById(componentId).left().on(this::onJanusGraphError);
3244         return topologyTemplateOperation.hasEdgeOfType(vertex, EdgeLabelEnum.GROUPS);
3245     }
3246
3247     GraphVertex onJanusGraphError(JanusGraphOperationStatus toe) {
3248         throw new StorageException(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(toe));
3249     }
3250
3251     public CatalogUpdateTimestamp updateCatalogTimes() {
3252         long now = System.currentTimeMillis();
3253         GraphVertex catalogRoot = janusGraphDao.getVertexByLabel(VertexTypeEnum.CATALOG_ROOT).left().on(this::onJanusGraphError);
3254         Long currentTime = (Long) catalogRoot.getMetadataProperty(GraphPropertyEnum.CURRENT_CATALOG_UPDATE_TIME);
3255         catalogRoot.addMetadataProperty(GraphPropertyEnum.PREV_CATALOG_UPDATE_TIME, currentTime);
3256         catalogRoot.addMetadataProperty(GraphPropertyEnum.CURRENT_CATALOG_UPDATE_TIME, now);
3257         janusGraphDao.updateVertex(catalogRoot).left().on(this::onJanusGraphError);
3258         return new CatalogUpdateTimestamp(currentTime, now);
3259     }
3260
3261     public CatalogUpdateTimestamp getCatalogTimes() {
3262         GraphVertex catalogRoot = janusGraphDao.getVertexByLabel(VertexTypeEnum.CATALOG_ROOT).left().on(this::onJanusGraphError);
3263         Long currentTime = (Long) catalogRoot.getMetadataProperty(GraphPropertyEnum.CURRENT_CATALOG_UPDATE_TIME);
3264         Long prevTime = (Long) catalogRoot.getMetadataProperty(GraphPropertyEnum.PREV_CATALOG_UPDATE_TIME);
3265         return new CatalogUpdateTimestamp(prevTime == null ? 0 : prevTime.longValue(), currentTime == null ? 0 : currentTime.longValue());
3266     }
3267
3268     public void updateNamesOfCalculatedCapabilitiesRequirements(String componentId) {
3269         topologyTemplateOperation.updateNamesOfCalculatedCapabilitiesRequirements(componentId, getTopologyTemplate(componentId));
3270     }
3271
3272     public void revertNamesOfCalculatedCapabilitiesRequirements(String componentId) {
3273         topologyTemplateOperation.revertNamesOfCalculatedCapabilitiesRequirements(componentId, getTopologyTemplate(componentId));
3274     }
3275
3276     private TopologyTemplate getTopologyTemplate(String componentId) {
3277         return (TopologyTemplate) topologyTemplateOperation.getToscaElement(componentId, getFilterComponentWithCapProperties()).left()
3278             .on(this::throwStorageException);
3279     }
3280
3281     private ComponentParametersView getFilterComponentWithCapProperties() {
3282         ComponentParametersView filter = new ComponentParametersView();
3283         filter.setIgnoreCapabiltyProperties(false);
3284         return filter;
3285     }
3286
3287     private ToscaElement throwStorageException(StorageOperationStatus status) {
3288         throw new StorageException(status);
3289     }
3290
3291     public Either<Boolean, StorageOperationStatus> isComponentInUse(String componentId) {
3292         final List<EdgeLabelEnum> forbiddenEdgeLabelEnums = Arrays
3293             .asList(EdgeLabelEnum.INSTANCE_OF, EdgeLabelEnum.PROXY_OF, EdgeLabelEnum.ALLOTTED_OF);
3294         Either<GraphVertex, JanusGraphOperationStatus> vertexById = janusGraphDao.getVertexById(componentId);
3295         if (vertexById.isLeft()) {
3296             for (EdgeLabelEnum edgeLabelEnum : forbiddenEdgeLabelEnums) {
3297                 Iterator<Edge> edgeItr = vertexById.left().value().getVertex().edges(Direction.IN, edgeLabelEnum.name());
3298                 if (edgeItr != null && edgeItr.hasNext()) {
3299                     return Either.left(true);
3300                 }
3301             }
3302         }
3303         return Either.left(false);
3304     }
3305
3306     public Either<List<Component>, StorageOperationStatus> getComponentListByInvariantUuid(String componentInvariantUuid,
3307                                                                                            Map<GraphPropertyEnum, Object> additionalPropertiesToMatch) {
3308         Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
3309         if (MapUtils.isNotEmpty(additionalPropertiesToMatch)) {
3310             propertiesToMatch.putAll(additionalPropertiesToMatch);
3311         }
3312         propertiesToMatch.put(GraphPropertyEnum.INVARIANT_UUID, componentInvariantUuid);
3313         Either<List<GraphVertex>, JanusGraphOperationStatus> vertexEither = janusGraphDao
3314             .getByCriteria(null, propertiesToMatch, JsonParseFlagEnum.ParseMetadata);
3315         if (vertexEither.isRight()) {
3316             log.debug("Couldn't fetch metadata for component with type {} and invariantUUId {}, error: {}", componentInvariantUuid,
3317                 vertexEither.right().value());
3318             return Either.right(DaoStatusConverter.convertJanusGraphStatusToStorageStatus(vertexEither.right().value()));
3319         }
3320         List<GraphVertex> vertexList = vertexEither.isLeft() ? vertexEither.left().value() : null;
3321         if (vertexList == null || vertexList.isEmpty()) {
3322             log.debug("Component with invariantUUId {} was not found", componentInvariantUuid);
3323             return Either.right(StorageOperationStatus.NOT_FOUND);
3324         }
3325         ArrayList<Component> components = new ArrayList<>();
3326         for (GraphVertex vertex : vertexList) {
3327             Either<Component, StorageOperationStatus> toscaElementByOperation = getToscaElementByOperation(vertex);
3328             if (toscaElementByOperation.isRight()) {
3329                 log.debug("Could not fetch the following Component by Invariant UUID {}", vertex.getUniqueId());
3330                 return Either.right(toscaElementByOperation.right().value());
3331             }
3332             components.add(toscaElementByOperation.left().value());
3333         }
3334         return Either.left(components);
3335     }
3336
3337     public Either<List<Component>, StorageOperationStatus> getParentComponents(String componentId) {
3338         List<Component> parentComponents = new ArrayList<>();
3339         final List<EdgeLabelEnum> relationEdgeLabelEnums = Arrays.asList(EdgeLabelEnum.INSTANCE_OF, EdgeLabelEnum.PROXY_OF);
3340         Either<GraphVertex, JanusGraphOperationStatus> vertexById = janusGraphDao.getVertexById(componentId);
3341         if (vertexById.isLeft()) {
3342             for (EdgeLabelEnum edgeLabelEnum : relationEdgeLabelEnums) {
3343                 Either<GraphVertex, JanusGraphOperationStatus> parentVertexEither = janusGraphDao
3344                     .getParentVertex(vertexById.left().value(), edgeLabelEnum, JsonParseFlagEnum.ParseJson);
3345                 if (parentVertexEither.isLeft()) {
3346                     Either<Component, StorageOperationStatus> componentEither = getToscaElement(parentVertexEither.left().value().getUniqueId());
3347                     if (componentEither.isLeft()) {
3348                         parentComponents.add(componentEither.left().value());
3349                     }
3350                 }
3351             }
3352         }
3353         return Either.left(parentComponents);
3354     }
3355
3356     public void updateCapReqPropertiesOwnerId(String componentId) {
3357         topologyTemplateOperation.updateCapReqPropertiesOwnerId(componentId, getTopologyTemplate(componentId));
3358     }
3359
3360     public <T extends Component> Either<T, StorageOperationStatus> getLatestByServiceName(String serviceName) {
3361         return getLatestByName(GraphPropertyEnum.NAME, serviceName, null);
3362     }
3363 }