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