2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.be.model.jsontitan.operations;
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;
58 import java.util.Map.Entry;
59 import java.util.function.BiPredicate;
60 import java.util.stream.Collectors;
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;
67 @org.springframework.stereotype.Component("tosca-operation-facade")
68 public class ToscaOperationFacade {
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: {}";
81 private NodeTypeOperation nodeTypeOperation;
83 private TopologyTemplateOperation topologyTemplateOperation;
85 private NodeTemplateOperation nodeTemplateOperation;
87 private GroupsOperation groupsOperation;
89 private HealingTitanDao titanDao;
91 private static final Logger log = Logger.getLogger(ToscaOperationFacade.class.getName());
94 // region - ToscaElement - GetById
95 public static final String PROXY_SUFFIX = "_proxy";
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);
104 public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(String componentId) {
106 return getToscaElement(componentId, JsonParseFlagEnum.ParseAll);
110 public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(String componentId, ComponentParametersView filters) {
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()));
118 return getToscaElementByOperation(getVertexEither.left().value(), filters);
121 public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(String componentId, JsonParseFlagEnum parseFlag) {
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()));
129 return getToscaElementByOperation(getVertexEither.left().value());
132 public <T extends Component> Either<T, StorageOperationStatus> getToscaElement(GraphVertex componentVertex) {
133 return getToscaElementByOperation(componentVertex);
136 public Either<Boolean, StorageOperationStatus> validateComponentExists(String componentId) {
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);
144 log.debug(COULDNT_FETCH_COMPONENT_WITH_AND_UNIQUE_ID_ERROR, componentId, getVertexEither.right().value());
145 return Either.right(DaoStatusConverter.convertTitanStatusToStorageStatus(getVertexEither.right().value()));
148 return Either.left(true);
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);
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()));
163 return getToscaElementByOperation(getVertexEither.left().value().get(0));
167 // region - ToscaElement - GetByOperation
168 private <T extends Component> Either<T, StorageOperationStatus> getToscaElementByOperation(GraphVertex componentV) {
169 return getToscaElementByOperation(componentV, new ComponentParametersView());
172 private <T extends Component> Either<T, StorageOperationStatus> getToscaElementByOperation(GraphVertex componentV, ComponentParametersView filters) {
173 VertexTypeEnum label = componentV.getLabel();
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);
183 log.debug("not supported tosca type {} for id {}", label, componentId);
184 toscaElement = Either.right(StorageOperationStatus.BAD_REQUEST);
186 if (toscaElement.isRight()) {
187 return Either.right(toscaElement.right().value());
189 return Either.left(ModelConverter.convertFromToscaElement(toscaElement.left().value()));
193 private ToscaElementOperation getToscaElementOperation(GraphVertex componentV) {
194 VertexTypeEnum label = componentV.getLabel();
197 return nodeTypeOperation;
198 case TOPOLOGY_TEMPLATE:
199 return topologyTemplateOperation;
205 public <T extends Component> Either<T, StorageOperationStatus> createToscaComponent(T resource) {
206 ToscaElement toscaElement = ModelConverter.convertToToscaElement(resource);
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);
215 return Either.right(createToscaElement.right().value());
218 // region - ToscaElement Delete
219 public StorageOperationStatus markComponentToDelete(Component componentToDelete) {
221 if ((componentToDelete.getIsDeleted() != null) && componentToDelete.getIsDeleted() && !componentToDelete.isHighestVersion()) {
222 // component already marked for delete
223 return StorageOperationStatus.OK;
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());
232 GraphVertex componentV = getResponse.left().value();
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();
239 return StorageOperationStatus.OK;
243 public <T extends Component> Either<T, StorageOperationStatus> deleteToscaComponent(String componentId) {
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()));
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());
256 T dataModel = ModelConverter.convertFromToscaElement(deleteElement.left().value());
258 return Either.left(dataModel);
261 private Either<ToscaElement, StorageOperationStatus> deleteToscaElement(GraphVertex componentV) {
262 VertexTypeEnum label = componentV.getLabel();
263 Either<ToscaElement, StorageOperationStatus> toscaElement;
264 Object componentId = componentV.getUniqueId();
267 log.debug("Need to fetch node type for id {}", componentId);
268 toscaElement = nodeTypeOperation.deleteToscaElement(componentV);
270 case TOPOLOGY_TEMPLATE:
271 log.debug("Need to fetch topology template for id {}", componentId);
272 toscaElement = topologyTemplateOperation.deleteToscaElement(componentV);
275 log.debug("not supported tosca type {} for id {}", label, componentId);
276 toscaElement = Either.right(StorageOperationStatus.BAD_REQUEST);
283 private ToscaElementOperation getToscaElementOperation(Component component) {
284 return ModelConverter.isAtomicComponent(component) ? nodeTypeOperation : topologyTemplateOperation;
287 public <T extends Component> Either<T, StorageOperationStatus> getLatestByToscaResourceName(String toscaResourceName) {
288 return getLatestByName(GraphPropertyEnum.TOSCA_RESOURCE_NAME, toscaResourceName);
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);
298 public <T extends Component> Either<T, StorageOperationStatus> getLatestByName(String resourceName) {
299 return getLatestByName(GraphPropertyEnum.NAME, resourceName);
303 public StorageOperationStatus validateCsarUuidUniqueness(String csarUUID) {
305 Map<GraphPropertyEnum, Object> properties = new EnumMap<>(GraphPropertyEnum.class);
306 properties.put(GraphPropertyEnum.CSAR_UUID, csarUUID);
308 Either<List<GraphVertex>, TitanOperationStatus> resources = titanDao.getByCriteria(null, properties, JsonParseFlagEnum.ParseMetadata);
310 if (resources.isRight()) {
311 if (resources.right().value() == TitanOperationStatus.NOT_FOUND) {
312 return StorageOperationStatus.OK;
314 log.debug("failed to get resources from graph with property name: {}", csarUUID);
315 return DaoStatusConverter.convertTitanStatusToStorageStatus(resources.right().value());
318 return StorageOperationStatus.ENTITY_ALREADY_EXISTS;
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);
327 followedResources = topologyTemplateOperation.getFollowedComponent(userId, lifecycleStates, lastStateStates, componentType);
330 Set<T> components = new HashSet<>();
331 if (followedResources.isRight() && followedResources.right().value() != StorageOperationStatus.NOT_FOUND) {
332 return Either.right(followedResources.right().value());
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);
341 return Either.left(components);
344 public Either<Resource, StorageOperationStatus> getLatestCertifiedNodeTypeByToscaResourceName(String toscaResourceName) {
346 return getLatestCertifiedByToscaResourceName(toscaResourceName, VertexTypeEnum.NODE_TYPE, JsonParseFlagEnum.ParseMetadata);
349 public Either<Resource, StorageOperationStatus> getLatestCertifiedByToscaResourceName(String toscaResourceName, VertexTypeEnum vertexType, JsonParseFlagEnum parseFlag) {
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);
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));
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;
374 result = getToscaFullElement(highestResource.getUniqueId());
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());
384 return validateUniquenessRes;
387 public Either<RequirementCapabilityRelDef, StorageOperationStatus> dissociateResourceInstances(String componentId, RequirementCapabilityRelDef requirementDef) {
388 return nodeTemplateOperation.dissociateResourceInstances(componentId, requirementDef);
392 * Allows to get fulfilled requirement by relation and received predicate
394 public Either<RequirementDataDefinition, StorageOperationStatus> getFulfilledRequirementByRelation(String componentId, String instanceId, RequirementCapabilityRelDef relation, BiPredicate<RelationshipInfo, RequirementDataDefinition> predicate) {
395 return nodeTemplateOperation.getFulfilledRequirementByRelation(componentId, instanceId, relation, predicate);
399 * Allows to get fulfilled capability by relation and received predicate
401 public Either<CapabilityDataDefinition, StorageOperationStatus> getFulfilledCapabilityByRelation(String componentId, String instanceId, RequirementCapabilityRelDef relation, BiPredicate<RelationshipInfo, CapabilityDataDefinition> predicate) {
402 return nodeTemplateOperation.getFulfilledCapabilityByRelation(componentId, instanceId, relation, predicate);
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();
410 return StorageOperationStatus.OK;
413 protected Either<Boolean, StorageOperationStatus> validateToscaResourceNameUniqueness(String name) {
415 Map<GraphPropertyEnum, Object> properties = new EnumMap<>(GraphPropertyEnum.class);
416 properties.put(GraphPropertyEnum.TOSCA_RESOURCE_NAME, name);
418 Either<List<GraphVertex>, TitanOperationStatus> resources = titanDao.getByCriteria(null, properties, JsonParseFlagEnum.ParseMetadata);
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()));
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() + "|");
431 log.debug("resources with property name:{} exists in graph. found {}", name, builder);
433 return Either.left(false);
435 log.debug("resources with property name:{} does not exists in graph", name);
436 return Either.left(true);
441 // region - Component Update
443 public Either<Resource, StorageOperationStatus> overrideComponent(Resource newComponent, Resource oldComponent) {
445 copyArtifactsToNewComponent(newComponent, oldComponent);
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()));
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()));
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());
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());
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()));
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));
483 return Either.left(newElement);
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));
492 newComponent.setToscaArtifacts(toscaArtifacts);
494 Map<String, ArtifactDefinition> artifacts = oldComponent.getArtifacts();
495 if (artifacts != null && !artifacts.isEmpty()) {
496 artifacts.values().stream().forEach(a -> a.setDuplicated(Boolean.TRUE));
498 newComponent.setArtifacts(artifacts);
500 Map<String, ArtifactDefinition> depArtifacts = oldComponent.getDeploymentArtifacts();
501 if (depArtifacts != null && !depArtifacts.isEmpty()) {
502 depArtifacts.values().stream().forEach(a -> a.setDuplicated(Boolean.TRUE));
504 newComponent.setDeploymentArtifacts(depArtifacts);
506 newComponent.setGroups(oldComponent.getGroups());
507 newComponent.setLastUpdateDate(null);
508 newComponent.setHighestVersion(true);
511 public <T extends Component> Either<T, StorageOperationStatus> updateToscaElement(T componentToUpdate) {
512 return updateToscaElement(componentToUpdate, new ComponentParametersView());
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()));
522 GraphVertex elementV = getVertexEither.left().value();
523 ToscaElementOperation toscaElementOperation = getToscaElementOperation(elementV);
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());
531 return Either.left(ModelConverter.convertFromToscaElement(updateToscaElement.left().value()));
534 private <T extends Component> Either<T, StorageOperationStatus> getLatestByName(GraphPropertyEnum property, String nodeName, JsonParseFlagEnum parseFlag) {
535 return getLatestByName(property, nodeName, parseFlag, new ComponentParametersView());
538 private <T extends Component> Either<T, StorageOperationStatus> getLatestByName(GraphPropertyEnum property, String nodeName, JsonParseFlagEnum parseFlag, ComponentParametersView filter) {
539 Either<T, StorageOperationStatus> result;
541 Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
542 Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
544 propertiesToMatch.put(property, nodeName);
545 propertiesToMatch.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
547 propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
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));
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;
568 return getToscaElementByOperation(highestResource, filter);
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);
577 public <T extends Component> Either<List<T>, StorageOperationStatus> getBySystemName(ComponentTypeEnum componentType, String systemName) {
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);
586 propertiesToMatch.put(GraphPropertyEnum.SYSTEM_NAME, systemName);
587 if (componentType != null)
588 propertiesToMatch.put(GraphPropertyEnum.COMPONENT_TYPE, componentType.name());
590 propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
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));
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());
607 T componentBySystemName = getComponentRes.left().value();
608 log.debug("Found component, id: {}", componentBySystemName.getUniqueId());
609 components.add(componentBySystemName);
612 if (result == null) {
613 result = Either.left(components);
618 public <T extends Component> Either<T, StorageOperationStatus> getComponentByNameAndVersion(ComponentTypeEnum componentType, String name, String version) {
619 return getComponentByNameAndVersion(componentType, name, version, JsonParseFlagEnum.ParseAll);
622 public <T extends Component> Either<T, StorageOperationStatus> getComponentByNameAndVersion(ComponentTypeEnum componentType, String name, String version, JsonParseFlagEnum parseFlag) {
623 Either<T, StorageOperationStatus> result;
625 Map<GraphPropertyEnum, Object> hasProperties = new EnumMap<>(GraphPropertyEnum.class);
626 Map<GraphPropertyEnum, Object> hasNotProperties = new EnumMap<>(GraphPropertyEnum.class);
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());
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));
641 return getToscaElementByOperation(getResourceRes.left().value().get(0));
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);
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());
658 switch (componentType) {
660 catalogDataResult = nodeTypeOperation.getElementCatalogData(ComponentTypeEnum.RESOURCE, excludedResourceTypes, isHighestVersions);
661 if (catalogDataResult.isRight()) {
662 return Either.right(catalogDataResult.right().value());
664 toscaElements = catalogDataResult.left().value();
667 if (excludeTypes != null && excludeTypes.contains(OriginTypeEnum.SERVICE)) {
670 catalogDataResult = topologyTemplateOperation.getElementCatalogData(ComponentTypeEnum.SERVICE, null, isHighestVersions);
671 if (catalogDataResult.isRight()) {
672 return Either.right(catalogDataResult.right().value());
674 toscaElements = catalogDataResult.left().value();
677 log.debug(NOT_SUPPORTED_COMPONENT_TYPE, componentType);
678 return Either.right(StorageOperationStatus.BAD_REQUEST);
680 toscaElements.forEach(te -> {
681 T component = ModelConverter.convertFromToscaElement(te);
682 components.add(component);
684 return Either.left(components);
687 public Either<List<String>, StorageOperationStatus> deleteMarkedElements(ComponentTypeEnum componentType) {
688 Either<List<GraphVertex>, StorageOperationStatus> allComponentsMarkedForDeletion;
689 switch (componentType) {
691 allComponentsMarkedForDeletion = nodeTypeOperation.getAllComponentsMarkedForDeletion(componentType);
695 allComponentsMarkedForDeletion = topologyTemplateOperation.getAllComponentsMarkedForDeletion(componentType);
698 log.debug(NOT_SUPPORTED_COMPONENT_TYPE, componentType);
699 return Either.right(StorageOperationStatus.BAD_REQUEST);
701 if (allComponentsMarkedForDeletion.isRight()) {
702 return Either.right(allComponentsMarkedForDeletion.right().value());
704 List<GraphVertex> allMarked = allComponentsMarkedForDeletion.left().value();
705 return Either.left(checkIfInUseAndDelete(allMarked));
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<>();
712 for (GraphVertex elementV : allMarked) {
713 boolean isAllowedToDelete = true;
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;
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());
730 deleted.add(elementV.getUniqueId());
736 public Either<List<String>, StorageOperationStatus> getAllComponentsMarkedForDeletion(ComponentTypeEnum componentType) {
737 Either<List<GraphVertex>, StorageOperationStatus> allComponentsMarkedForDeletion;
738 switch (componentType) {
740 allComponentsMarkedForDeletion = nodeTypeOperation.getAllComponentsMarkedForDeletion(componentType);
744 allComponentsMarkedForDeletion = topologyTemplateOperation.getAllComponentsMarkedForDeletion(componentType);
747 log.debug(NOT_SUPPORTED_COMPONENT_TYPE, componentType);
748 return Either.right(StorageOperationStatus.BAD_REQUEST);
750 if (allComponentsMarkedForDeletion.isRight()) {
751 return Either.right(allComponentsMarkedForDeletion.right().value());
753 return Either.left(allComponentsMarkedForDeletion.left().value().stream().map(GraphVertex::getUniqueId).collect(Collectors.toList()));
756 // region - Component Update
757 public Either<ImmutablePair<Component, String>, StorageOperationStatus> addComponentInstanceToTopologyTemplate(Component containerComponent, Component origComponent, ComponentInstance componentInstance, boolean allowDeleted, User user) {
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());
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);
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());
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());
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));
789 public StorageOperationStatus associateComponentInstancesToComponent(Component containerComponent, Map<ComponentInstance, Resource> resourcesInstancesMap, boolean allowDeleted) {
791 StorageOperationStatus result = null;
792 CommonUtility.addRecordToLog(log, LogLevelEnum.DEBUG, "Going to add component instances to component {}", containerComponent.getUniqueId());
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;
800 result = DaoStatusConverter.convertTitanStatusToStorageStatus(status);
802 if (result == null) {
803 result = nodeTemplateOperation.associateComponentInstancesToComponent(containerComponent, resourcesInstancesMap, metadataVertex.left().value(), allowDeleted);
808 public Either<ImmutablePair<Component, String>, StorageOperationStatus> updateComponentInstanceMetadataOfTopologyTemplate(Component containerComponent, Component origComponent, ComponentInstance componentInstance) {
810 Either<ImmutablePair<Component, String>, StorageOperationStatus> result = null;
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());
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));
829 public Either<Component, StorageOperationStatus> updateComponentInstanceMetadataOfTopologyTemplate(Component containerComponent) {
830 return updateComponentInstanceMetadataOfTopologyTemplate(containerComponent, new ComponentParametersView());
833 public Either<Component, StorageOperationStatus> updateComponentInstanceMetadataOfTopologyTemplate(Component containerComponent, ComponentParametersView filter) {
835 Either<Component, StorageOperationStatus> result = null;
837 CommonUtility.addRecordToLog(log, LogLevelEnum.TRACE, "Going to update the metadata belonging to container component {}. ", containerComponent.getName());
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());
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);
853 public Either<ImmutablePair<Component, String>, StorageOperationStatus> deleteComponentInstanceFromTopologyTemplate(Component containerComponent, String resourceInstanceId) {
855 Either<ImmutablePair<Component, String>, StorageOperationStatus> result = null;
857 CommonUtility.addRecordToLog(log, LogLevelEnum.TRACE, "Going to delete the component instance {} belonging to container component {}. ", resourceInstanceId, containerComponent.getName());
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());
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));
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;
882 return nextCounter.toString();
886 * @return max counter of component instance Id's, null if not found
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);
902 private Integer getMaxInteger(List<String> counters) {
903 Integer maxCounter = 0;
904 Integer currCounter = null;
905 for (String counter : counters) {
907 currCounter = Integer.parseInt(counter);
908 if (maxCounter < currCounter) {
909 maxCounter = currCounter;
911 } catch (NumberFormatException e) {
915 return currCounter == null ? null : maxCounter;
918 public Either<RequirementCapabilityRelDef, StorageOperationStatus> associateResourceInstances(String componentId, RequirementCapabilityRelDef requirementDef) {
919 return nodeTemplateOperation.associateResourceInstances(componentId, requirementDef);
923 public Either<List<InputDefinition>, StorageOperationStatus> createAndAssociateInputs(Map<String, InputDefinition> inputs, String componentId) {
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()));
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())));
935 StorageOperationStatus status = topologyTemplateOperation.associateInputsToComponent(vertex, inputsMap, componentId);
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());
945 return Either.left(inputsResList);
947 return Either.right(status);
951 public Either<List<InputDefinition>, StorageOperationStatus> addInputsToComponent(Map<String, InputDefinition> inputs, String componentId) {
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()));
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())));
963 StorageOperationStatus status = topologyTemplateOperation.addToscaDataToToscaElement(vertex, EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, inputsMap, JsonPresentationFields.NAME);
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());
971 return Either.left(inputsResList);
973 return Either.right(status);
978 * Add data types into a Component.
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.
984 public Either<List<DataTypeDefinition>, StorageOperationStatus> addDataTypesToComponent(Map<String, DataTypeDefinition> dataTypes, String componentId) {
986 log.trace("#addDataTypesToComponent - enter, componentId={}", componentId);
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()));
995 GraphVertex vertex = getVertexEither.left().value();
996 log.trace("#addDataTypesToComponent - get vertex ok");
998 // convert DataTypeDefinition to DataTypeDataDefinition
999 Map<String, DataTypeDataDefinition> dataTypeDataMap = dataTypes.entrySet().stream()
1000 .collect(Collectors.toMap(Map.Entry::getKey, e -> convertDataTypeToDataTypeData(e.getValue())));
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);
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());
1013 return Either.left(inputsResList);
1016 log.trace("#addDataTypesToComponent - leave");
1017 return Either.right(status);
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);
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());
1035 dataTypeData.setDerivedFromName(dataType.getDerivedFrom().getName());
1038 // supply "name" field to toscaPresentationValue in each datatype object for DAO operations
1039 dataTypeData.setToscaPresentationValue(JsonPresentationFields.NAME, dataType.getName());
1040 return dataTypeData;
1044 public Either<List<InputDefinition>, StorageOperationStatus> getComponentInputs(String componentId) {
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()));
1053 Either<ToscaElement, StorageOperationStatus> toscaElement =
1054 topologyTemplateOperation.getToscaElement(componentId);
1055 if(toscaElement.isRight()) {
1056 return Either.right(toscaElement.right().value());
1059 TopologyTemplate topologyTemplate = (TopologyTemplate) toscaElement.left().value();
1061 Map<String, PropertyDataDefinition> inputsMap = topologyTemplate.getInputs();
1063 List<InputDefinition> inputs = new ArrayList<>();
1064 if(MapUtils.isNotEmpty(inputsMap)) {
1066 inputsMap.values().stream().map(p -> new InputDefinition(p)).collect(Collectors.toList());
1069 return Either.left(inputs);
1072 public Either<List<InputDefinition>, StorageOperationStatus> updateInputsToComponent(List<InputDefinition> inputs, String componentId) {
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()));
1081 GraphVertex vertex = getVertexEither.left().value();
1082 List<PropertyDataDefinition> inputsAsDataDef = inputs.stream().map(PropertyDataDefinition::new).collect(Collectors.toList());
1084 StorageOperationStatus status = topologyTemplateOperation.updateToscaDataOfToscaElement(vertex, EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, inputsAsDataDef, JsonPresentationFields.NAME);
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());
1092 return Either.left(inputsResList);
1094 return Either.right(status);
1098 // region - ComponentInstance
1099 public Either<Map<String, List<ComponentInstanceProperty>>, StorageOperationStatus> associateComponentInstancePropertiesToComponent(Map<String, List<ComponentInstanceProperty>> instProperties, String componentId) {
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()));
1108 GraphVertex vertex = getVertexEither.left().value();
1109 Map<String, MapPropertiesDataDefinition> instPropsMap = new HashMap<>();
1110 if (instProperties != null) {
1112 MapPropertiesDataDefinition propertiesMap;
1113 for (Entry<String, List<ComponentInstanceProperty>> entry : instProperties.entrySet()) {
1114 propertiesMap = new MapPropertiesDataDefinition();
1116 propertiesMap.setMapToscaDataDefinition(entry.getValue().stream().map(PropertyDataDefinition::new).collect(Collectors.toMap(PropertyDataDefinition::getName, e -> e)));
1118 instPropsMap.put(entry.getKey(), propertiesMap);
1122 StorageOperationStatus status = topologyTemplateOperation.associateInstPropertiesToComponent(vertex, instPropsMap);
1124 if (StorageOperationStatus.OK == status) {
1125 log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1126 return Either.left(instProperties);
1128 return Either.right(status);
1133 * saves the instInputs as the updated instance inputs of the component container in DB
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);
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);
1151 return Either.left(instInputs);
1155 * saves the instProps as the updated instance properties of the component container in DB
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);
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);
1173 return Either.left(instProps);
1176 public Either<Map<String, List<ComponentInstanceInput>>, StorageOperationStatus> associateComponentInstanceInputsToComponent(Map<String, List<ComponentInstanceInput>> instInputs, String componentId) {
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()));
1184 GraphVertex vertex = getVertexEither.left().value();
1185 Map<String, MapPropertiesDataDefinition> instPropsMap = new HashMap<>();
1186 if (instInputs != null) {
1188 MapPropertiesDataDefinition propertiesMap;
1189 for (Entry<String, List<ComponentInstanceInput>> entry : instInputs.entrySet()) {
1190 propertiesMap = new MapPropertiesDataDefinition();
1192 propertiesMap.setMapToscaDataDefinition(entry.getValue().stream().map(PropertyDataDefinition::new).collect(Collectors.toMap(PropertyDataDefinition::getName, e -> e)));
1194 instPropsMap.put(entry.getKey(), propertiesMap);
1198 StorageOperationStatus status = topologyTemplateOperation.associateInstInputsToComponent(vertex, instPropsMap);
1200 if (StorageOperationStatus.OK == status) {
1201 log.debug(COMPONENT_CREATED_SUCCESSFULLY);
1202 return Either.left(instInputs);
1204 return Either.right(status);
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()))
1220 if (instanceProperty.isPresent()) {
1221 status = updateComponentInstanceInput(containerComponent, componentInstanceId, property);
1223 status = addComponentInstanceInput(containerComponent, componentInstanceId, property);
1225 if (status != StorageOperationStatus.OK) {
1226 log.debug("Failed to update instance input {} for instance {} error {} ", property, componentInstanceId, status);
1227 return Either.right(status);
1229 log.trace("instance input {} for instance {} updated", property, componentInstanceId);
1234 return Either.left(instProperties);
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();
1244 Map<String, List<CapabilityDefinition>> containerComponentCapabilities = containerComponent.getCapabilities();
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());
1255 if(status == null) {
1256 List<ComponentInstanceProperty> instanceProperties = containerComponent
1257 .getComponentInstancesProperties().get(componentInstanceId);
1258 status = updateInstanceProperty(containerComponent, componentInstanceId, instanceProperties, property);
1260 if(status != StorageOperationStatus.OK) {
1261 return Either.right(status);
1266 return Either.left(instProperties);
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)) {
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());
1285 private static Optional<CapabilityDefinition> getPropertyCapability(String propertyParentUniqueId,
1286 Component containerComponent) {
1288 Map<String, List<CapabilityDefinition>> componentCapabilities = containerComponent.getCapabilities();
1289 if(MapUtils.isEmpty(componentCapabilities)){
1290 return Optional.empty();
1292 List<CapabilityDefinition> capabilityDefinitionList = componentCapabilities.values()
1293 .stream().flatMap(Collection::stream).collect(Collectors.toList());
1294 if(CollectionUtils.isEmpty(capabilityDefinitionList)){
1295 return Optional.empty();
1297 return capabilityDefinitionList.stream()
1298 .filter(capabilityDefinition -> capabilityDefinition.getUniqueId().equals(propertyParentUniqueId))
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()))
1309 if (instanceProperty.isPresent()) {
1310 status = updateComponentInstanceProperty(containerComponent, componentInstanceId, property);
1312 status = addComponentInstanceProperty(containerComponent, componentInstanceId, property);
1314 if (status != StorageOperationStatus.OK) {
1315 log.debug("Failed to update instance property {} for instance {} error {} ", property, componentInstanceId, status);
1318 return StorageOperationStatus.OK;
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;
1328 Either<Component, StorageOperationStatus> getComponentRes =
1329 getToscaFullElement(fetchedCIOptional.get().getComponentUid());
1330 if(getComponentRes.isRight()) {
1331 return StorageOperationStatus.GENERAL_ERROR;
1333 Optional<Component> componentOptional = isNodeServiceProxy(getComponentRes.left().value());
1335 if(!componentOptional.isPresent()) {
1336 propOwner = componentInstanceId;
1338 propOwner = fetchedCIOptional.get().getSourceModelUid();
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);
1351 return StorageOperationStatus.OK;
1354 private Optional<Component> isNodeServiceProxy(Component component) {
1355 if (component.getComponentType().equals(ComponentTypeEnum.SERVICE)) {
1356 return Optional.empty();
1358 Resource resource = (Resource) component;
1359 ResourceTypeEnum resType = resource.getResourceType();
1360 if(resType.equals(ResourceTypeEnum.ServiceProxy)) {
1361 return Optional.of(component);
1363 return Optional.empty();
1366 public StorageOperationStatus associateDeploymentArtifactsToInstances(Map<String, Map<String, ArtifactDefinition>> instDeploymentArtifacts, String componentId, User user) {
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());
1375 GraphVertex vertex = getVertexEither.left().value();
1376 Map<String, MapArtifactDataDefinition> instArtMap = new HashMap<>();
1377 if (instDeploymentArtifacts != null) {
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);
1385 instArtMap.put(entry.getKey(), artifactsMap);
1389 return topologyTemplateOperation.associateInstDeploymentArtifactsToComponent(vertex, instArtMap);
1393 public StorageOperationStatus associateArtifactsToInstances(Map<String, Map<String, ArtifactDefinition>> instArtifacts, String componentId) {
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());
1402 GraphVertex vertex = getVertexEither.left().value();
1403 Map<String, MapArtifactDataDefinition> instArtMap = new HashMap<>();
1404 if (instArtifacts != null) {
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);
1412 instArtMap.put(entry.getKey(), artifactsMap);
1416 return topologyTemplateOperation.associateInstArtifactsToComponent(vertex, instArtMap);
1420 public StorageOperationStatus associateInstAttributeToComponentToInstances(Map<String, List<PropertyDefinition>> instArttributes, String componentId) {
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());
1429 GraphVertex vertex = getVertexEither.left().value();
1430 Map<String, MapPropertiesDataDefinition> instAttr = new HashMap<>();
1431 if (instArttributes != null) {
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);
1441 return topologyTemplateOperation.associateInstAttributeToComponent(vertex, instAttr);
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());
1454 GraphVertex vertex = getVertexEither.left().value();
1456 Map<String, MapListRequirementDataDefinition> calcRequirements = new HashMap<>();
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()) {
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())));
1469 ComponentInstanceDataDefinition componentInstance = new ComponentInstanceDataDefinition(entry.getKey());
1470 MapListCapabilityDataDefinition capMap = nodeTemplateOperation.prepareCalculatedCapabiltyForNodeType(mapToscaDataDefinition, componentInstance);
1472 MapCapabilityProperty mapCapabilityProperty = ModelConverter.convertToMapOfMapCapabiltyProperties(caps, componentInstance.getUniqueId(), true);
1474 calcCapabilty.put(entry.getKey().getUniqueId(), capMap);
1475 calculatedCapabilitiesProperties.put(entry.getKey().getUniqueId(), mapCapabilityProperty);
1479 if (instReg != null) {
1480 for (Entry<ComponentInstance, Map<String, List<RequirementDefinition>>> entry : instReg.entrySet()) {
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())));
1488 MapListRequirementDataDefinition capMap = nodeTemplateOperation.prepareCalculatedRequirementForNodeType(mapToscaDataDefinition, new ComponentInstanceDataDefinition(entry.getKey()));
1490 calcRequirements.put(entry.getKey().getUniqueId(), capMap);
1494 return topologyTemplateOperation.associateOrAddCalcCapReqToComponent(vertex, calcRequirements, calcCapabilty, calculatedCapabilitiesProperties);
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<>();
1501 hasProps.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.SERVICE.name());
1502 hasProps.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
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);
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<>());
1522 return Either.right(DaoStatusConverter.convertTitanStatusToStorageStatus(getRes.right().value()));
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());
1532 services = result.left().value();
1533 if (log.isTraceEnabled() && isEmpty(services))
1534 log.trace("No relevant services available");
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());
1546 Component component = ModelConverter.convertFromToscaElement(componentRes.left().value());
1547 nonAbstractLatestComponents.add(component);
1550 if (CollectionUtils.isNotEmpty(services)) {
1551 nonAbstractLatestComponents.addAll(services);
1553 return Either.left(nonAbstractLatestComponents);
1556 public Either<ComponentMetadataData, StorageOperationStatus> getLatestComponentMetadataByUuid(String componentUuid, JsonParseFlagEnum parseFlag, Boolean isHighest) {
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);
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
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()));
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);
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()));
1586 ComponentMetadataData componentMetadata = ModelConverter.convertToComponentMetadata(getRes.left().value());
1587 result = Either.left(componentMetadata);
1592 public Either<List<Component>, StorageOperationStatus> getLatestVersionNotAbstractComponents(boolean isAbstract, ComponentTypeEnum componentTypeEnum,
1593 String internalComponentType, List<String> componentUids) {
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());
1601 componentUids = componentUidsRes.left().value();
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);
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());
1615 Component component = ModelConverter.convertFromToscaElement(getToscaElementRes.left().value());
1616 nullifySomeComponentProperties(component);
1617 components.add(component);
1620 return Either.left(components);
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);
1634 private Either<List<String>, StorageOperationStatus> getComponentUids(boolean isAbstract, ComponentTypeEnum componentTypeEnum, String internalComponentType) {
1636 Either<List<Component>, StorageOperationStatus> getToscaElementsRes = getLatestVersionNotAbstractMetadataOnly(isAbstract, componentTypeEnum, internalComponentType);
1637 if (getToscaElementsRes.isRight()) {
1638 return Either.right(getToscaElementsRes.right().value());
1640 List<Component> collection = getToscaElementsRes.left().value();
1641 List<String> componentUids;
1642 if (collection == null) {
1643 componentUids = new ArrayList<>();
1645 componentUids = collection.stream()
1646 .map(Component::getUniqueId)
1647 .collect(Collectors.toList());
1649 return Either.left(componentUids);
1652 private ComponentParametersView buildComponentViewForNotAbstract() {
1653 ComponentParametersView componentParametersView = new ComponentParametersView();
1654 componentParametersView.disableAll();
1655 componentParametersView.setIgnoreCategories(false);
1656 componentParametersView.setIgnoreAllVersions(false);
1657 return componentParametersView;
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());
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());
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()));
1680 List<GraphVertex> vertexList = vertexEither.isLeft() ? vertexEither.left().value() : null;
1681 if (vertexList != null && !vertexList.isEmpty()) {
1682 return Either.left(false);
1684 return Either.left(true);
1688 private void fillNodeTypePropsMap(Map<GraphPropertyEnum, Object> hasProps, Map<GraphPropertyEnum, Object> hasNotProps, String internalComponentType) {
1689 switch (internalComponentType.toLowerCase()) {
1692 hasNotProps.put(GraphPropertyEnum.RESOURCE_TYPE, Arrays.asList(ResourceTypeEnum.VFCMT.name(), ResourceTypeEnum.Configuration.name()));
1697 hasNotProps.put(GraphPropertyEnum.RESOURCE_TYPE, Arrays.asList(ResourceTypeEnum.VFC.name(), ResourceTypeEnum.VFCMT.name()));
1700 hasProps.put(GraphPropertyEnum.RESOURCE_TYPE, ResourceTypeEnum.VL.name());
1707 private void fillTopologyTemplatePropsMap(Map<GraphPropertyEnum, Object> hasProps, Map<GraphPropertyEnum, Object> hasNotProps, ComponentTypeEnum componentTypeEnum) {
1708 switch (componentTypeEnum) {
1710 hasProps.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.RESOURCE.name());
1713 hasProps.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.SERVICE.name());
1718 hasNotProps.put(GraphPropertyEnum.RESOURCE_TYPE, ResourceTypeEnum.CVFC.name());
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());
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);
1733 fillTopologyTemplatePropsMap(hasProps, hasNotProps, componentTypeEnum);
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);
1742 if (ComponentTypeEnum.SERVICE == componentTypeEnum || SERVICE.equalsIgnoreCase(internalComponentType)) {
1743 internalVertexTypes.add(VertexTypeEnum.TOPOLOGY_TEMPLATE);
1745 return internalVertexTypes;
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;
1756 result.addAll(listByVertexType.left().value());
1758 return Either.left(result);
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);
1767 propertiesToMatch.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
1768 return getComponentListByUuid(componentUuid, propertiesToMatch);
1771 public Either<Component, StorageOperationStatus> getComponentByUuidAndVersion(String componentUuid, String version) {
1772 Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
1774 propertiesToMatch.put(GraphPropertyEnum.UUID, componentUuid);
1775 propertiesToMatch.put(GraphPropertyEnum.VERSION, version);
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()));
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);
1789 return getToscaElementByOperation(vertexList.get(0));
1792 public Either<List<Component>, StorageOperationStatus> getComponentListByUuid(String componentUuid, Map<GraphPropertyEnum, Object> additionalPropertiesToMatch) {
1794 Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
1796 if (additionalPropertiesToMatch != null) {
1797 propertiesToMatch.putAll(additionalPropertiesToMatch);
1800 propertiesToMatch.put(GraphPropertyEnum.UUID, componentUuid);
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
1806 Either<List<GraphVertex>, TitanOperationStatus> vertexEither = titanDao.getByCriteria(null, propertiesToMatch, propertiesNotToMatch, JsonParseFlagEnum.ParseAll);
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()));
1812 List<GraphVertex> vertexList = vertexEither.isLeft() ? vertexEither.left().value() : null;
1814 if (vertexList == null || vertexList.isEmpty()) {
1815 log.debug("Component with uuid {} was not found", componentUuid);
1816 return Either.right(StorageOperationStatus.NOT_FOUND);
1819 ArrayList<Component> latestComponents = new ArrayList<>();
1820 for (GraphVertex vertex : vertexList) {
1821 Either<Component, StorageOperationStatus> toscaElementByOperation = getToscaElementByOperation(vertex);
1823 if (toscaElementByOperation.isRight()) {
1824 log.debug("Could not fetch the following Component by UUID {}", vertex.getUniqueId());
1825 return Either.right(toscaElementByOperation.right().value());
1828 latestComponents.add(toscaElementByOperation.left().value());
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);
1841 return Either.left(latestComponents);
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);
1850 public Either<Component, StorageOperationStatus> getLatestComponentByUuid(String componentUuid) {
1851 return getLatestComponentByUuid(componentUuid, null);
1854 public Either<Component, StorageOperationStatus> getLatestComponentByUuid(String componentUuid, Map<GraphPropertyEnum, Object> propertiesToMatch) {
1856 Either<List<Component>, StorageOperationStatus> latestVersionListEither = getLatestComponentListByUuid(componentUuid, propertiesToMatch);
1858 if (latestVersionListEither.isRight()) {
1859 return Either.right(latestVersionListEither.right().value());
1862 List<Component> latestVersionList = latestVersionListEither.left().value();
1864 if (latestVersionList.isEmpty()) {
1865 return Either.right(StorageOperationStatus.NOT_FOUND);
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();
1869 return Either.left(component);
1872 public Either<List<Resource>, StorageOperationStatus> getAllCertifiedResources(boolean isAbstract, Boolean isHighest) {
1874 List<Resource> resources = new ArrayList<>();
1875 Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
1876 Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
1878 propertiesToMatch.put(GraphPropertyEnum.IS_ABSTRACT, isAbstract);
1879 if (isHighest != null) {
1880 propertiesToMatch.put(GraphPropertyEnum.IS_HIGHEST_VERSION, isHighest);
1882 propertiesToMatch.put(GraphPropertyEnum.STATE, LifecycleStateEnum.CERTIFIED.name());
1883 propertiesToMatch.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.RESOURCE.name());
1884 propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
1886 Either<List<GraphVertex>, TitanOperationStatus> getResourcesRes = titanDao.getByCriteria(null, propertiesToMatch, propertiesNotToMatch, JsonParseFlagEnum.ParseAll);
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()));
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());
1898 resources.add(getResourceRes.left().value());
1900 return Either.left(resources);
1903 public <T extends Component> Either<T, StorageOperationStatus> getLatestByNameAndVersion(String name, String version, JsonParseFlagEnum parseFlag) {
1904 Either<T, StorageOperationStatus> result;
1906 Map<GraphPropertyEnum, Object> hasProperties = new EnumMap<>(GraphPropertyEnum.class);
1907 Map<GraphPropertyEnum, Object> hasNotProperties = new EnumMap<>(GraphPropertyEnum.class);
1909 hasProperties.put(GraphPropertyEnum.NAME, name);
1910 hasProperties.put(GraphPropertyEnum.VERSION, version);
1911 hasProperties.put(GraphPropertyEnum.IS_HIGHEST_VERSION, true);
1913 hasNotProperties.put(GraphPropertyEnum.IS_DELETED, true);
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));
1922 return getToscaElementByOperation(getResourceRes.left().value().get(0));
1925 public Either<Resource, StorageOperationStatus> getLatestComponentByCsarOrName(ComponentTypeEnum componentType, String csarUUID, String systemName) {
1926 return getLatestComponentByCsarOrName(componentType, csarUUID, systemName, JsonParseFlagEnum.ParseAll);
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());
1937 propsHasNot.put(GraphPropertyEnum.IS_DELETED, true);
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));
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()));
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);
1961 resourceMetadataDataList = bySystemname.left().value();
1962 if (resourceMetadataDataList.size() == 1) {
1963 resourceMetadataData = resourceMetadataDataList.get(0);
1965 for (GraphVertex curResource : resourceMetadataDataList) {
1966 if (!((String) curResource.getJsonMetadataField(JsonPresentationFields.LIFECYCLE_STATE)).equals("CERTIFIED")) {
1967 resourceMetadataData = curResource;
1972 if (resourceMetadataData == null) {
1973 log.debug("getLatestResourceByCsarOrName - getByCriteria(by system name) returned 2 latest CERTIFIED versions");
1974 return Either.right(StorageOperationStatus.GENERAL_ERROR);
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);
1982 return getToscaElement((String) resourceMetadataData.getUniqueId());
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);
1990 if (resourceMetadataDataList.size() == 1) {
1991 resourceMetadataData = resourceMetadataDataList.get(0);
1993 for (GraphVertex curResource : resourceMetadataDataList) {
1994 if (!((String) curResource.getJsonMetadataField(JsonPresentationFields.LIFECYCLE_STATE)).equals("CERTIFIED")) {
1995 resourceMetadataData = curResource;
2000 if (resourceMetadataData == null) {
2001 log.debug("getLatestResourceByCsarOrName - getByCriteria(by csar) returned 2 latest CERTIFIED versions");
2002 return Either.right(StorageOperationStatus.GENERAL_ERROR);
2004 return getToscaElement((String) resourceMetadataData.getJsonMetadataField(JsonPresentationFields.UNIQUE_ID), parseFlag);
2009 public Either<Boolean, StorageOperationStatus> validateToscaResourceNameExtends(String templateNameCurrent, String templateNameExtends) {
2011 String currentTemplateNameChecked = templateNameExtends;
2013 while (currentTemplateNameChecked != null && !currentTemplateNameChecked.equalsIgnoreCase(templateNameCurrent)) {
2014 Either<Resource, StorageOperationStatus> latestByToscaResourceName = getLatestByToscaResourceName(currentTemplateNameChecked);
2016 if (latestByToscaResourceName.isRight()) {
2017 return latestByToscaResourceName.right().value() == StorageOperationStatus.NOT_FOUND ? Either.left(false) : Either.right(latestByToscaResourceName.right().value());
2020 Resource value = latestByToscaResourceName.left().value();
2022 if (value.getDerivedFrom() != null) {
2023 currentTemplateNameChecked = value.getDerivedFrom().get(0);
2025 currentTemplateNameChecked = null;
2029 return (currentTemplateNameChecked != null && currentTemplateNameChecked.equalsIgnoreCase(templateNameCurrent)) ? Either.left(true) : Either.left(false);
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);
2040 if (resourcesByTypeEither.isRight()) {
2041 return Either.right(DaoStatusConverter.convertTitanStatusToStorageStatus(resourcesByTypeEither.right().value()));
2044 List<GraphVertex> vertexList = resourcesByTypeEither.left().value();
2045 List<Component> components = new ArrayList<>();
2047 for (GraphVertex vertex : vertexList) {
2048 components.add(getToscaElementByOperation(vertex, filterBy).left().value());
2051 return Either.left(components);
2054 public void commit() {
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());
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);
2069 public Either<ComponentMetadataData, StorageOperationStatus> updateComponentLastUpdateDateOnGraph(Component component) {
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));
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()));
2090 if (result == null) {
2091 result = Either.left(ModelConverter.convertToComponentMetadata(updateRes.left().value()));
2096 public HealingTitanDao getTitanDao() {
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());
2104 return getServicesWithDistStatus(distStatus, propertiesToMatch);
2107 public Either<List<Service>, StorageOperationStatus> getServicesWithDistStatus(Set<DistributionStatusEnum> distStatus, Map<GraphPropertyEnum, Object> additionalPropertiesToMatch) {
2109 List<Service> servicesAll = new ArrayList<>();
2111 Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2112 Map<GraphPropertyEnum, Object> propertiesNotToMatch = new EnumMap<>(GraphPropertyEnum.class);
2114 if (additionalPropertiesToMatch != null && !additionalPropertiesToMatch.isEmpty()) {
2115 propertiesToMatch.putAll(additionalPropertiesToMatch);
2118 propertiesToMatch.put(GraphPropertyEnum.COMPONENT_TYPE, ComponentTypeEnum.SERVICE.name());
2120 propertiesNotToMatch.put(GraphPropertyEnum.IS_DELETED, true);
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;
2129 servicesAll = fetchServicesByCriteria.left().value();
2132 return Either.left(servicesAll);
2134 return fetchServicesByCriteria(servicesAll, propertiesToMatch, propertiesNotToMatch);
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()));
2146 for (GraphVertex vertex : getRes.left().value()) {
2147 Either<ToscaElement, StorageOperationStatus> getServiceRes = topologyTemplateOperation.getLightComponent(vertex, ComponentTypeEnum.SERVICE, new ComponentParametersView(true));
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());
2153 servicesAll.add(ModelConverter.convertFromToscaElement(getServiceRes.left().value()));
2157 return Either.left(servicesAll);
2160 public void rollback() {
2161 titanDao.rollback();
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())));
2167 return nodeTemplateOperation.addDeploymentArtifactsToInstance(componentId, componentInstance.getUniqueId(), instDeplArtifacts);
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);
2179 public StorageOperationStatus generateCustomizationUUIDOnInstance(String componentId, String instanceId) {
2180 return nodeTemplateOperation.generateCustomizationUUIDOnInstance(componentId, instanceId);
2183 public StorageOperationStatus generateCustomizationUUIDOnInstanceGroup(String componentId, String instanceId, List<String> groupInstances) {
2184 return nodeTemplateOperation.generateCustomizationUUIDOnInstanceGroup(componentId, instanceId, groupInstances);
2187 public Either<PropertyDefinition, StorageOperationStatus> addPropertyToComponent(String propertyName,
2188 PropertyDefinition newPropertyDefinition,
2189 Component component) {
2191 Either<PropertyDefinition, StorageOperationStatus> result = null;
2192 Either<Component, StorageOperationStatus> getUpdatedComponentRes = null;
2193 newPropertyDefinition.setName(propertyName);
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);
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);
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();
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);
2226 result = Either.left(newProperty);
2231 public StorageOperationStatus deletePropertyOfComponent(Component component, String propertyName) {
2232 return getToscaElementOperation(component).deleteToscaDataElement(component.getUniqueId(), EdgeLabelEnum.PROPERTIES, VertexTypeEnum.PROPERTIES, propertyName, JsonPresentationFields.NAME);
2235 public StorageOperationStatus deleteAttributeOfResource(Component component, String attributeName) {
2236 return getToscaElementOperation(component).deleteToscaDataElement(component.getUniqueId(), EdgeLabelEnum.ATTRIBUTES, VertexTypeEnum.ATTRIBUTES, attributeName, JsonPresentationFields.NAME);
2239 public StorageOperationStatus deleteInputOfResource(Component resource, String inputName) {
2240 return getToscaElementOperation(resource).deleteToscaDataElement(resource.getUniqueId(), EdgeLabelEnum.INPUTS, VertexTypeEnum.INPUTS, inputName, JsonPresentationFields.NAME);
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.
2249 public StorageOperationStatus deleteDataTypeOfComponent(Component component, String dataTypeName) {
2250 return getToscaElementOperation(component).deleteToscaDataElement(component.getUniqueId(), EdgeLabelEnum.DATA_TYPES, VertexTypeEnum.DATA_TYPES, dataTypeName, JsonPresentationFields.NAME);
2253 public Either<PropertyDefinition, StorageOperationStatus> updatePropertyOfComponent(Component component,
2254 PropertyDefinition newPropertyDefinition) {
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);
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);
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());
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);
2287 public Either<PropertyDefinition, StorageOperationStatus> addAttributeOfResource(Component component, PropertyDefinition newAttributeDef) {
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);
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);
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);
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());
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);
2322 public Either<PropertyDefinition, StorageOperationStatus> updateAttributeOfResource(Component component, PropertyDefinition newAttributeDef) {
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);
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);
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());
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);
2352 public Either<InputDefinition, StorageOperationStatus> updateInputOfComponent(Component component, InputDefinition newInputDefinition) {
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);
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);
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());
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);
2383 * method - ename the group instances after referenced container name renamed flow - VF rename -(triggers)-> Group rename
2385 * @param containerComponent - container such as service
2386 * @param componentInstance - context component
2387 * @param componentInstanceId - id
2388 * @return - successfull/failed status
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);
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);
2404 return Either.left(status);
2407 public StorageOperationStatus addGroupInstancesToComponentInstance(Component containerComponent, ComponentInstance componentInstance, List<GroupDefinition> groups, Map<String, List<ArtifactDefinition>> groupInstancesArtifacts) {
2408 return nodeTemplateOperation.addGroupInstancesToComponentInstance(containerComponent, componentInstance, groups, groupInstancesArtifacts);
2411 public Either<List<GroupDefinition>, StorageOperationStatus> updateGroupsOnComponent(Component component, List<GroupDataDefinition> updatedGroups) {
2412 return groupsOperation.updateGroups(component, updatedGroups, true);
2415 public Either<List<GroupInstance>, StorageOperationStatus> updateGroupInstancesOnComponent(Component component, String instanceId, List<GroupInstance> updatedGroupInstances) {
2416 return groupsOperation.updateGroupInstances(component, instanceId, updatedGroupInstances);
2419 public StorageOperationStatus addGroupInstancesToComponentInstance(Component containerComponent, ComponentInstance componentInstance, List<GroupInstance> groupInstances) {
2420 return nodeTemplateOperation.addGroupInstancesToComponentInstance(containerComponent, componentInstance, groupInstances);
2423 public StorageOperationStatus addDeploymentArtifactsToComponentInstance(Component containerComponent, ComponentInstance componentInstance, Map<String, ArtifactDefinition> deploymentArtifacts) {
2424 return nodeTemplateOperation.addDeploymentArtifactsToComponentInstance(containerComponent, componentInstance, deploymentArtifacts);
2427 public StorageOperationStatus updateComponentInstanceProperty(Component containerComponent, String componentInstanceId, ComponentInstanceProperty property) {
2428 return nodeTemplateOperation.updateComponentInstanceProperty(containerComponent, componentInstanceId, property);
2431 public StorageOperationStatus updateComponentInstanceProperties(Component containerComponent, String componentInstanceId, List<ComponentInstanceProperty> properties) {
2432 return nodeTemplateOperation.updateComponentInstanceProperties(containerComponent, componentInstanceId, properties);
2436 public StorageOperationStatus addComponentInstanceProperty(Component containerComponent, String componentInstanceId, ComponentInstanceProperty property) {
2437 return nodeTemplateOperation.addComponentInstanceProperty(containerComponent, componentInstanceId, property);
2440 public StorageOperationStatus updateComponentInstanceAttribute(Component containerComponent, String componentInstanceId, ComponentInstanceProperty property){
2441 return nodeTemplateOperation.updateComponentInstanceAttribute(containerComponent, componentInstanceId, property);
2444 public StorageOperationStatus addComponentInstanceAttribute(Component containerComponent, String componentInstanceId, ComponentInstanceProperty property){
2445 return nodeTemplateOperation.addComponentInstanceAttribute(containerComponent, componentInstanceId, property);
2448 public StorageOperationStatus updateComponentInstanceInput(Component containerComponent, String componentInstanceId, ComponentInstanceInput property) {
2449 return nodeTemplateOperation.updateComponentInstanceInput(containerComponent, componentInstanceId, property);
2452 public StorageOperationStatus updateComponentInstanceInputs(Component containerComponent, String componentInstanceId, List<ComponentInstanceInput> instanceInputs) {
2453 return nodeTemplateOperation.updateComponentInstanceInputs(containerComponent, componentInstanceId, instanceInputs);
2456 public StorageOperationStatus addComponentInstanceInput(Component containerComponent, String componentInstanceId, ComponentInstanceInput property) {
2457 return nodeTemplateOperation.addComponentInstanceInput(containerComponent, componentInstanceId, property);
2460 public void setNodeTypeOperation(NodeTypeOperation nodeTypeOperation) {
2461 this.nodeTypeOperation = nodeTypeOperation;
2464 public void setTopologyTemplateOperation(TopologyTemplateOperation topologyTemplateOperation) {
2465 this.topologyTemplateOperation = topologyTemplateOperation;
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()));
2472 public StorageOperationStatus updateComponentInstanceCapabiltyProperty(Component containerComponent, String componentInstanceUniqueId, String capabilityUniqueId, ComponentInstanceProperty property) {
2473 return nodeTemplateOperation.updateComponentInstanceCapabilityProperty(containerComponent, componentInstanceUniqueId, capabilityUniqueId, property);
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);
2482 public StorageOperationStatus updateComponentInstanceInterfaces(Component containerComponent, String componentInstanceUniqueId) {
2483 MapInterfaceDataDefinition mapInterfaceDataDefinition =
2484 convertComponentInstanceInterfaces(containerComponent, componentInstanceUniqueId);
2485 return topologyTemplateOperation
2486 .updateComponentInstanceInterfaces(containerComponent, componentInstanceUniqueId, mapInterfaceDataDefinition);
2489 public StorageOperationStatus updateComponentCalculatedCapabilitiesProperties(Component containerComponent) {
2490 Map<String, MapCapabilityProperty> mapCapabiltyPropertyMap =
2491 convertComponentCapabilitiesProperties(containerComponent);
2492 return nodeTemplateOperation.overrideComponentCapabilitiesProperties(containerComponent, mapCapabiltyPropertyMap);
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);
2500 if (status == StorageOperationStatus.OK) {
2501 status = topologyTemplateOperation.removeToscaData(topologyTemplateId, EdgeLabelEnum.CALCULATED_CAP_PROPERTIES, VertexTypeEnum.CALCULATED_CAP_PROPERTIES);
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()));
2514 GraphVertex nodeTypeV = getVertexEither.left().value();
2516 ToscaElement toscaElementToUpdate = ModelConverter.convertToToscaElement(clonedResource);
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()));
2523 if (shouldUpdateDerivedVersion.isLeft()) {
2524 return Either.left(ModelConverter.convertFromToscaElement(shouldUpdateDerivedVersion.left().value()));
2526 return Either.left(clonedResource);
2530 * Returns list of ComponentInstanceProperty belonging to component instance capability specified by name, type and ownerId
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);
2536 private MapInterfaceDataDefinition convertComponentInstanceInterfaces(Component currComponent,
2537 String componentInstanceId) {
2538 MapInterfaceDataDefinition mapInterfaceDataDefinition = new MapInterfaceDataDefinition();
2539 List<ComponentInstanceInterface> componentInterface = currComponent.getComponentInstancesInterfaces().get(componentInstanceId);
2541 if(CollectionUtils.isNotEmpty(componentInterface)) {
2542 componentInterface.stream().forEach(interfaceDef -> mapInterfaceDataDefinition.put
2543 (interfaceDef.getUniqueId(), interfaceDef));
2546 return mapInterfaceDataDefinition;
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));
2555 private Optional<MapCapabilityProperty> convertComponentInstanceProperties(Component component, String instanceId) {
2556 return component.fetchInstanceById(instanceId)
2557 .map(ci -> ModelConverter.convertToMapOfMapCapabiltyProperties(ci.getCapabilities(), instanceId));
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()));
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);
2573 if (result == null) {
2574 StorageOperationStatus status = topologyTemplateOperation.addPolicyToToscaElement(getVertexEither.left().value(), policyDefinition, counter);
2575 if (status != StorageOperationStatus.OK) {
2576 return Either.right(status);
2579 if (result == null) {
2580 result = Either.left(policyDefinition);
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);
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()));
2600 if (result == null) {
2601 StorageOperationStatus status = topologyTemplateOperation.updatePolicyOfToscaElement(getVertexEither.left().value(), policyDefinition);
2602 if (status != StorageOperationStatus.OK) {
2603 return Either.right(status);
2606 if (result == null) {
2607 result = Either.left(policyDefinition);
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)
2616 .map(DaoStatusConverter::convertTitanStatusToStorageStatus)
2617 .either(containerVertex -> topologyTemplateOperation.updatePoliciesOfToscaElement(containerVertex, policyDefinition),
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());
2628 if (status == null) {
2629 status = topologyTemplateOperation.removePolicyFromToscaElement(getVertexEither.left().value(), policyId);
2634 public boolean canAddGroups(String componentId) {
2635 GraphVertex vertex = titanDao.getVertexById(componentId)
2637 .on(this::onTitanError);
2638 return topologyTemplateOperation.hasEdgeOfType(vertex, EdgeLabelEnum.GROUPS);
2641 GraphVertex onTitanError(TitanOperationStatus toe) {
2642 throw new StorageException(
2643 DaoStatusConverter.convertTitanStatusToStorageStatus(toe));
2646 public void updateNamesOfCalculatedCapabilitiesRequirements(String componentId){
2647 topologyTemplateOperation
2648 .updateNamesOfCalculatedCapabilitiesRequirements(componentId, getTopologyTemplate(componentId));
2651 public void revertNamesOfCalculatedCapabilitiesRequirements(String componentId) {
2652 topologyTemplateOperation
2653 .revertNamesOfCalculatedCapabilitiesRequirements(componentId, getTopologyTemplate(componentId));
2656 private TopologyTemplate getTopologyTemplate(String componentId) {
2657 return (TopologyTemplate)topologyTemplateOperation
2658 .getToscaElement(componentId, getFilterComponentWithCapProperties())
2660 .on(this::throwStorageException);
2663 private ComponentParametersView getFilterComponentWithCapProperties() {
2664 ComponentParametersView filter = new ComponentParametersView();
2665 filter.setIgnoreCapabiltyProperties(false);
2669 private ToscaElement throwStorageException(StorageOperationStatus status) {
2670 throw new StorageException(status);
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);
2684 return Either.left(false);
2687 public Either<List<Component>, StorageOperationStatus> getComponentListByInvariantUuid
2688 (String componentInvariantUuid, Map<GraphPropertyEnum, Object> additionalPropertiesToMatch) {
2690 Map<GraphPropertyEnum, Object> propertiesToMatch = new EnumMap<>(GraphPropertyEnum.class);
2691 if (MapUtils.isNotEmpty(additionalPropertiesToMatch)) {
2692 propertiesToMatch.putAll(additionalPropertiesToMatch);
2694 propertiesToMatch.put(GraphPropertyEnum.INVARIANT_UUID, componentInvariantUuid);
2696 Either<List<GraphVertex>, TitanOperationStatus> vertexEither = titanDao.getByCriteria(null, propertiesToMatch, JsonParseFlagEnum.ParseMetadata);
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()));
2702 List<GraphVertex> vertexList = vertexEither.isLeft() ? vertexEither.left().value() : null;
2704 if (vertexList == null || vertexList.isEmpty()) {
2705 log.debug("Component with invariantUUId {} was not found", componentInvariantUuid);
2706 return Either.right(StorageOperationStatus.NOT_FOUND);
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());
2716 components.add(toscaElementByOperation.left().value());
2719 return Either.left(components);
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());
2737 return Either.left(parentComponents);
2739 public void updateCapReqPropertiesOwnerId(String componentId) {
2740 topologyTemplateOperation
2741 .updateCapReqPropertiesOwnerId(componentId, getTopologyTemplate(componentId));