aa631d1b1a1ea6272453186cdbb8a101ffa1180e
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / impl / CpsDataPersistenceServiceImpl.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2023 Nordix Foundation
4  *  Modifications Copyright (C) 2021 Pantheon.tech
5  *  Modifications Copyright (C) 2020-2022 Bell Canada.
6  *  Modifications Copyright (C) 2022-2023 TechMahindra Ltd.
7  *  ================================================================================
8  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  you may not use this file except in compliance with the License.
10  *  You may obtain a copy of the License at
11  *
12  *        http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *  Unless required by applicable law or agreed to in writing, software
15  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  See the License for the specific language governing permissions and
18  *  limitations under the License.
19  *
20  *  SPDX-License-Identifier: Apache-2.0
21  *  ============LICENSE_END=========================================================
22  */
23
24 package org.onap.cps.spi.impl;
25
26 import com.google.common.base.Strings;
27 import com.google.common.collect.ImmutableSet;
28 import com.google.common.collect.ImmutableSet.Builder;
29 import io.micrometer.core.annotation.Timed;
30 import java.io.Serializable;
31 import java.util.ArrayList;
32 import java.util.Collection;
33 import java.util.Collections;
34 import java.util.HashMap;
35 import java.util.HashSet;
36 import java.util.List;
37 import java.util.Map;
38 import java.util.Set;
39 import java.util.regex.Matcher;
40 import java.util.regex.Pattern;
41 import java.util.stream.Collectors;
42 import javax.transaction.Transactional;
43 import lombok.RequiredArgsConstructor;
44 import lombok.extern.slf4j.Slf4j;
45 import org.hibernate.StaleStateException;
46 import org.onap.cps.cpspath.parser.CpsPathQuery;
47 import org.onap.cps.cpspath.parser.CpsPathUtil;
48 import org.onap.cps.cpspath.parser.PathParsingException;
49 import org.onap.cps.spi.CpsDataPersistenceService;
50 import org.onap.cps.spi.FetchDescendantsOption;
51 import org.onap.cps.spi.entities.AnchorEntity;
52 import org.onap.cps.spi.entities.DataspaceEntity;
53 import org.onap.cps.spi.entities.FragmentEntity;
54 import org.onap.cps.spi.entities.FragmentEntityArranger;
55 import org.onap.cps.spi.entities.FragmentExtract;
56 import org.onap.cps.spi.exceptions.AlreadyDefinedException;
57 import org.onap.cps.spi.exceptions.AlreadyDefinedExceptionBatch;
58 import org.onap.cps.spi.exceptions.ConcurrencyException;
59 import org.onap.cps.spi.exceptions.CpsAdminException;
60 import org.onap.cps.spi.exceptions.CpsPathException;
61 import org.onap.cps.spi.exceptions.DataNodeNotFoundException;
62 import org.onap.cps.spi.exceptions.DataNodeNotFoundExceptionBatch;
63 import org.onap.cps.spi.model.DataNode;
64 import org.onap.cps.spi.model.DataNodeBuilder;
65 import org.onap.cps.spi.repository.AnchorRepository;
66 import org.onap.cps.spi.repository.DataspaceRepository;
67 import org.onap.cps.spi.repository.FragmentQueryBuilder;
68 import org.onap.cps.spi.repository.FragmentRepository;
69 import org.onap.cps.spi.utils.SessionManager;
70 import org.onap.cps.utils.JsonObjectMapper;
71 import org.springframework.dao.DataIntegrityViolationException;
72 import org.springframework.stereotype.Service;
73
74 @Service
75 @Slf4j
76 @RequiredArgsConstructor
77 public class CpsDataPersistenceServiceImpl implements CpsDataPersistenceService {
78
79     private final DataspaceRepository dataspaceRepository;
80     private final AnchorRepository anchorRepository;
81     private final FragmentRepository fragmentRepository;
82     private final JsonObjectMapper jsonObjectMapper;
83     private final SessionManager sessionManager;
84
85     private static final String REG_EX_FOR_OPTIONAL_LIST_INDEX = "(\\[@[\\s\\S]+?])?)";
86     private static final String QUERY_ACROSS_ANCHORS = null;
87     private static final AnchorEntity ALL_ANCHORS = null;
88
89     @Override
90     public void addChildDataNode(final String dataspaceName, final String anchorName, final String parentNodeXpath,
91                                  final DataNode newChildDataNode) {
92         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
93         addNewChildDataNode(anchorEntity, parentNodeXpath, newChildDataNode);
94     }
95
96     @Override
97     public void addChildDataNodes(final String dataspaceName, final String anchorName,
98                                   final String parentNodeXpath, final Collection<DataNode> dataNodes) {
99         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
100         addChildrenDataNodes(anchorEntity, parentNodeXpath, dataNodes);
101     }
102
103     @Override
104     public void addListElements(final String dataspaceName, final String anchorName, final String parentNodeXpath,
105                                 final Collection<DataNode> newListElements) {
106         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
107         addChildrenDataNodes(anchorEntity, parentNodeXpath, newListElements);
108     }
109
110     @Override
111     public void addMultipleLists(final String dataspaceName, final String anchorName, final String parentNodeXpath,
112                                  final Collection<Collection<DataNode>> newLists) {
113         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
114         final Collection<String> failedXpaths = new HashSet<>();
115         for (final Collection<DataNode> newList : newLists) {
116             try {
117                 addChildrenDataNodes(anchorEntity, parentNodeXpath, newList);
118             } catch (final AlreadyDefinedExceptionBatch e) {
119                 failedXpaths.addAll(e.getAlreadyDefinedXpaths());
120             }
121         }
122         if (!failedXpaths.isEmpty()) {
123             throw new AlreadyDefinedExceptionBatch(failedXpaths);
124         }
125     }
126
127     private void addNewChildDataNode(final AnchorEntity anchorEntity, final String parentNodeXpath,
128                                      final DataNode newChild) {
129         final FragmentEntity parentFragmentEntity = getFragmentEntity(anchorEntity, parentNodeXpath);
130         final FragmentEntity newChildAsFragmentEntity = convertToFragmentWithAllDescendants(anchorEntity, newChild);
131         newChildAsFragmentEntity.setParentId(parentFragmentEntity.getId());
132         try {
133             fragmentRepository.save(newChildAsFragmentEntity);
134         } catch (final DataIntegrityViolationException e) {
135             throw AlreadyDefinedException.forDataNode(newChild.getXpath(), anchorEntity.getName(), e);
136         }
137     }
138
139     private void addChildrenDataNodes(final AnchorEntity anchorEntity, final String parentNodeXpath,
140                                       final Collection<DataNode> newChildren) {
141         final FragmentEntity parentFragmentEntity = getFragmentEntity(anchorEntity, parentNodeXpath);
142         final List<FragmentEntity> fragmentEntities = new ArrayList<>(newChildren.size());
143         try {
144             for (final DataNode newChildAsDataNode : newChildren) {
145                 final FragmentEntity newChildAsFragmentEntity =
146                     convertToFragmentWithAllDescendants(anchorEntity, newChildAsDataNode);
147                 newChildAsFragmentEntity.setParentId(parentFragmentEntity.getId());
148                 fragmentEntities.add(newChildAsFragmentEntity);
149             }
150             fragmentRepository.saveAll(fragmentEntities);
151         } catch (final DataIntegrityViolationException e) {
152             log.warn("Exception occurred : {} , While saving : {} children, retrying using individual save operations",
153                     e, fragmentEntities.size());
154             retrySavingEachChildIndividually(anchorEntity, parentNodeXpath, newChildren);
155         }
156     }
157
158     private void retrySavingEachChildIndividually(final AnchorEntity anchorEntity, final String parentNodeXpath,
159                                                   final Collection<DataNode> newChildren) {
160         final Collection<String> failedXpaths = new HashSet<>();
161         for (final DataNode newChild : newChildren) {
162             try {
163                 addNewChildDataNode(anchorEntity, parentNodeXpath, newChild);
164             } catch (final AlreadyDefinedException e) {
165                 failedXpaths.add(newChild.getXpath());
166             }
167         }
168         if (!failedXpaths.isEmpty()) {
169             throw new AlreadyDefinedExceptionBatch(failedXpaths);
170         }
171     }
172
173     @Override
174     public void storeDataNode(final String dataspaceName, final String anchorName, final DataNode dataNode) {
175         storeDataNodes(dataspaceName, anchorName, Collections.singletonList(dataNode));
176     }
177
178     @Override
179     public void storeDataNodes(final String dataspaceName, final String anchorName,
180                                final Collection<DataNode> dataNodes) {
181         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
182         final List<FragmentEntity> fragmentEntities = new ArrayList<>(dataNodes.size());
183         try {
184             for (final DataNode dataNode: dataNodes) {
185                 final FragmentEntity fragmentEntity = convertToFragmentWithAllDescendants(anchorEntity, dataNode);
186                 fragmentEntities.add(fragmentEntity);
187             }
188             fragmentRepository.saveAll(fragmentEntities);
189         } catch (final DataIntegrityViolationException exception) {
190             log.warn("Exception occurred : {} , While saving : {} data nodes, Retrying saving data nodes individually",
191                     exception, dataNodes.size());
192             storeDataNodesIndividually(anchorEntity, dataNodes);
193         }
194     }
195
196     private void storeDataNodesIndividually(final AnchorEntity anchorEntity, final Collection<DataNode> dataNodes) {
197         final Collection<String> failedXpaths = new HashSet<>();
198         for (final DataNode dataNode: dataNodes) {
199             try {
200                 final FragmentEntity fragmentEntity = convertToFragmentWithAllDescendants(anchorEntity, dataNode);
201                 fragmentRepository.save(fragmentEntity);
202             } catch (final DataIntegrityViolationException e) {
203                 failedXpaths.add(dataNode.getXpath());
204             }
205         }
206         if (!failedXpaths.isEmpty()) {
207             throw new AlreadyDefinedExceptionBatch(failedXpaths);
208         }
209     }
210
211     /**
212      * Convert DataNode object into Fragment and places the result in the fragments placeholder. Performs same action
213      * for all DataNode children recursively.
214      *
215      * @param anchorEntity          anchorEntity
216      * @param dataNodeToBeConverted dataNode
217      * @return a Fragment built from current DataNode
218      */
219     private FragmentEntity convertToFragmentWithAllDescendants(final AnchorEntity anchorEntity,
220                                                                final DataNode dataNodeToBeConverted) {
221         final FragmentEntity parentFragment = toFragmentEntity(anchorEntity, dataNodeToBeConverted);
222         final Builder<FragmentEntity> childFragmentsImmutableSetBuilder = ImmutableSet.builder();
223         for (final DataNode childDataNode : dataNodeToBeConverted.getChildDataNodes()) {
224             final FragmentEntity childFragment = convertToFragmentWithAllDescendants(anchorEntity, childDataNode);
225             childFragmentsImmutableSetBuilder.add(childFragment);
226         }
227         parentFragment.setChildFragments(childFragmentsImmutableSetBuilder.build());
228         return parentFragment;
229     }
230
231     private FragmentEntity toFragmentEntity(final AnchorEntity anchorEntity, final DataNode dataNode) {
232         return FragmentEntity.builder()
233                 .dataspace(anchorEntity.getDataspace())
234                 .anchor(anchorEntity)
235                 .xpath(dataNode.getXpath())
236                 .attributes(jsonObjectMapper.asJsonString(dataNode.getLeaves()))
237                 .build();
238     }
239
240     @Override
241     @Timed(value = "cps.data.persistence.service.datanode.get",
242             description = "Time taken to get a data node")
243     public Collection<DataNode> getDataNodes(final String dataspaceName, final String anchorName,
244                                              final String xpath,
245                                              final FetchDescendantsOption fetchDescendantsOption) {
246         final String targetXpath = getNormalizedXpath(xpath);
247         final Collection<DataNode> dataNodes = getDataNodesForMultipleXpaths(dataspaceName, anchorName,
248                 Collections.singletonList(targetXpath), fetchDescendantsOption);
249         if (dataNodes.isEmpty()) {
250             throw new DataNodeNotFoundException(dataspaceName, anchorName, xpath);
251         }
252         return dataNodes;
253     }
254
255     @Override
256     @Timed(value = "cps.data.persistence.service.datanode.batch.get",
257             description = "Time taken to get data nodes")
258     public Collection<DataNode> getDataNodesForMultipleXpaths(final String dataspaceName, final String anchorName,
259                                                               final Collection<String> xpaths,
260                                                               final FetchDescendantsOption fetchDescendantsOption) {
261         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
262         final Collection<FragmentEntity> fragmentEntities =
263             getFragmentEntities(anchorEntity, xpaths, fetchDescendantsOption);
264         return toDataNodes(fragmentEntities, fetchDescendantsOption);
265     }
266
267     private Collection<FragmentEntity> getFragmentEntities(final AnchorEntity anchorEntity,
268                                                            final Collection<String> xpaths,
269                                                            final FetchDescendantsOption fetchDescendantsOption) {
270         final Collection<String> nonRootXpaths = new HashSet<>(xpaths);
271         final boolean haveRootXpath = nonRootXpaths.removeIf(CpsDataPersistenceServiceImpl::isRootXpath);
272
273         final Collection<String> normalizedXpaths = new HashSet<>(nonRootXpaths.size());
274         for (final String xpath : nonRootXpaths) {
275             try {
276                 normalizedXpaths.add(CpsPathUtil.getNormalizedXpath(xpath));
277             } catch (final PathParsingException e) {
278                 log.warn("Error parsing xpath \"{}\": {}", xpath, e.getMessage());
279             }
280         }
281         if (haveRootXpath) {
282             normalizedXpaths.addAll(fragmentRepository.findAllXpathByAnchorAndParentIdIsNull(anchorEntity));
283         }
284
285         final List<FragmentExtract> fragmentExtracts =
286             fragmentRepository.findExtractsWithDescendants(anchorEntity.getId(), normalizedXpaths,
287                 fetchDescendantsOption.getDepth());
288
289         return FragmentEntityArranger.toFragmentEntityTrees(anchorEntity, fragmentExtracts);
290     }
291
292     private FragmentEntity getFragmentEntity(final AnchorEntity anchorEntity, final String xpath) {
293         final FragmentEntity fragmentEntity;
294         if (isRootXpath(xpath)) {
295             final List<FragmentExtract> fragmentExtracts = fragmentRepository.findAllExtractsByAnchor(anchorEntity);
296             fragmentEntity = FragmentEntityArranger.toFragmentEntityTrees(anchorEntity, fragmentExtracts)
297                 .stream().findFirst().orElse(null);
298         } else {
299             fragmentEntity = fragmentRepository.getByAnchorAndXpath(anchorEntity, getNormalizedXpath(xpath));
300         }
301         if (fragmentEntity == null) {
302             throw new DataNodeNotFoundException(anchorEntity.getDataspace().getName(), anchorEntity.getName(), xpath);
303         }
304         return fragmentEntity;
305     }
306
307     private Collection<FragmentEntity> buildFragmentEntitiesFromFragmentExtracts(final AnchorEntity anchorEntity,
308                                                                                  final String normalizedXpath) {
309         final List<FragmentExtract> fragmentExtracts =
310             fragmentRepository.findByAnchorAndParentXpath(anchorEntity, normalizedXpath);
311         return FragmentEntityArranger.toFragmentEntityTrees(anchorEntity, fragmentExtracts);
312     }
313
314     @Override
315     @Timed(value = "cps.data.persistence.service.datanode.query",
316             description = "Time taken to query data nodes")
317     public List<DataNode> queryDataNodes(final String dataspaceName, final String anchorName, final String cpsPath,
318                                          final FetchDescendantsOption fetchDescendantsOption) {
319         final AnchorEntity anchorEntity = (Strings.isNullOrEmpty(anchorName)) ? ALL_ANCHORS
320                 : getAnchorEntity(dataspaceName, anchorName);
321         final CpsPathQuery cpsPathQuery;
322         try {
323             cpsPathQuery = CpsPathUtil.getCpsPathQuery(cpsPath);
324         } catch (final PathParsingException e) {
325             throw new CpsPathException(e.getMessage());
326         }
327
328         Collection<FragmentEntity> fragmentEntities;
329         if (canUseRegexQuickFind(fetchDescendantsOption, cpsPathQuery)) {
330             return getDataNodesUsingRegexQuickFind(fetchDescendantsOption, anchorEntity, cpsPathQuery);
331         }
332         fragmentEntities = (anchorEntity == ALL_ANCHORS) ? fragmentRepository.findByCpsPath(cpsPathQuery)
333                 : fragmentRepository.findByAnchorAndCpsPath(anchorEntity.getId(), cpsPathQuery);
334         if (cpsPathQuery.hasAncestorAxis()) {
335             final Collection<String> ancestorXpaths = processAncestorXpath(fragmentEntities, cpsPathQuery);
336             fragmentEntities = (anchorEntity == ALL_ANCHORS) ? getAncestorFragmentEntitiesAcrossAnchors(cpsPathQuery,
337             fragmentEntities) : getFragmentEntities(anchorEntity, ancestorXpaths, fetchDescendantsOption);
338         }
339         return createDataNodesFromProxiedFragmentEntities(fetchDescendantsOption, anchorEntity, fragmentEntities);
340     }
341
342     @Override
343     public List<DataNode> queryDataNodesAcrossAnchors(final String dataspaceName, final String cpsPath,
344                                          final FetchDescendantsOption fetchDescendantsOption) {
345         return queryDataNodes(dataspaceName, QUERY_ACROSS_ANCHORS, cpsPath, fetchDescendantsOption);
346     }
347
348     private static boolean canUseRegexQuickFind(final FetchDescendantsOption fetchDescendantsOption,
349                                                 final CpsPathQuery cpsPathQuery) {
350         return fetchDescendantsOption.equals(FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS)
351             && !cpsPathQuery.hasLeafConditions()
352             && !cpsPathQuery.hasTextFunctionCondition();
353     }
354
355     private List<DataNode> getDataNodesUsingRegexQuickFind(final FetchDescendantsOption fetchDescendantsOption,
356                                                            final AnchorEntity anchorEntity,
357                                                            final CpsPathQuery cpsPathQuery) {
358         Collection<FragmentEntity> fragmentEntities;
359         final String xpathRegex = FragmentQueryBuilder.getXpathSqlRegex(cpsPathQuery, true);
360         final List<FragmentExtract> fragmentExtracts = (anchorEntity == ALL_ANCHORS)
361                 ? fragmentRepository.quickFindWithDescendantsAcrossAnchor(xpathRegex) :
362             fragmentRepository.quickFindWithDescendants(anchorEntity.getId(), xpathRegex);
363         fragmentEntities = FragmentEntityArranger.toFragmentEntityTrees(anchorEntity, fragmentExtracts);
364         if (cpsPathQuery.hasAncestorAxis()) {
365             final Collection<String> ancestorXpaths = processAncestorXpath(fragmentEntities, cpsPathQuery);
366             fragmentEntities = (anchorEntity == ALL_ANCHORS) ? getAncestorFragmentEntitiesAcrossAnchors(cpsPathQuery,
367             fragmentEntities) : getFragmentEntities(anchorEntity, ancestorXpaths, fetchDescendantsOption);
368         }
369         return createDataNodesFromFragmentEntities(fetchDescendantsOption, fragmentEntities);
370     }
371
372     private Collection<FragmentEntity> getAncestorFragmentEntitiesAcrossAnchors(final CpsPathQuery cpsPathQuery,
373         final Collection<FragmentEntity> fragmentEntities) {
374         final Collection<String> ancestorXpaths = processAncestorXpath(fragmentEntities, cpsPathQuery);
375         return ancestorXpaths.isEmpty() ? Collections.emptyList() : fragmentRepository.findAllByXpathIn(ancestorXpaths);
376     }
377
378     private List<DataNode> createDataNodesFromProxiedFragmentEntities(
379                                             final FetchDescendantsOption fetchDescendantsOption,
380                                             final AnchorEntity anchorEntity,
381                                             final Collection<FragmentEntity> proxiedFragmentEntities) {
382         final List<DataNode> dataNodes = new ArrayList<>(proxiedFragmentEntities.size());
383         for (final FragmentEntity proxiedFragmentEntity : proxiedFragmentEntities) {
384             if (FetchDescendantsOption.OMIT_DESCENDANTS.equals(fetchDescendantsOption)) {
385                 dataNodes.add(toDataNode(proxiedFragmentEntity, fetchDescendantsOption));
386             } else {
387                 final String normalizedXpath = getNormalizedXpath(proxiedFragmentEntity.getXpath());
388                 final AnchorEntity anchorEntityForFragmentExtract = (anchorEntity == ALL_ANCHORS)
389                         ? proxiedFragmentEntity.getAnchor() : anchorEntity;
390                 final Collection<FragmentEntity> unproxiedFragmentEntities =
391                     buildFragmentEntitiesFromFragmentExtracts(anchorEntityForFragmentExtract, normalizedXpath);
392                 for (final FragmentEntity unproxiedFragmentEntity : unproxiedFragmentEntities) {
393                     dataNodes.add(toDataNode(unproxiedFragmentEntity, fetchDescendantsOption));
394                 }
395             }
396         }
397         return Collections.unmodifiableList(dataNodes);
398     }
399
400     private List<DataNode> createDataNodesFromFragmentEntities(final FetchDescendantsOption fetchDescendantsOption,
401                                                                final Collection<FragmentEntity> fragmentEntities) {
402         final List<DataNode> dataNodes = new ArrayList<>(fragmentEntities.size());
403         for (final FragmentEntity fragmentEntity : fragmentEntities) {
404             dataNodes.add(toDataNode(fragmentEntity, fetchDescendantsOption));
405         }
406         return Collections.unmodifiableList(dataNodes);
407     }
408
409     private static String getNormalizedXpath(final String xpathSource) {
410         if (isRootXpath(xpathSource)) {
411             return xpathSource;
412         }
413         try {
414             return CpsPathUtil.getNormalizedXpath(xpathSource);
415         } catch (final PathParsingException e) {
416             throw new CpsPathException(e.getMessage());
417         }
418     }
419
420     @Override
421     public String startSession() {
422         return sessionManager.startSession();
423     }
424
425     @Override
426     public void closeSession(final String sessionId) {
427         sessionManager.closeSession(sessionId, SessionManager.WITH_COMMIT);
428     }
429
430     @Override
431     public void lockAnchor(final String sessionId, final String dataspaceName,
432                            final String anchorName, final Long timeoutInMilliseconds) {
433         sessionManager.lockAnchor(sessionId, dataspaceName, anchorName, timeoutInMilliseconds);
434     }
435
436     private static Set<String> processAncestorXpath(final Collection<FragmentEntity> fragmentEntities,
437                                                     final CpsPathQuery cpsPathQuery) {
438         final Set<String> ancestorXpath = new HashSet<>();
439         final Pattern pattern =
440                 Pattern.compile("([\\s\\S]*/" + Pattern.quote(cpsPathQuery.getAncestorSchemaNodeIdentifier())
441                         + REG_EX_FOR_OPTIONAL_LIST_INDEX + "/[\\s\\S]*");
442         for (final FragmentEntity fragmentEntity : fragmentEntities) {
443             final Matcher matcher = pattern.matcher(fragmentEntity.getXpath());
444             if (matcher.matches()) {
445                 ancestorXpath.add(matcher.group(1));
446             }
447         }
448         return ancestorXpath;
449     }
450
451     private DataNode toDataNode(final FragmentEntity fragmentEntity,
452                                 final FetchDescendantsOption fetchDescendantsOption) {
453         final List<DataNode> childDataNodes = getChildDataNodes(fragmentEntity, fetchDescendantsOption);
454         Map<String, Serializable> leaves = new HashMap<>();
455         if (fragmentEntity.getAttributes() != null) {
456             leaves = jsonObjectMapper.convertJsonString(fragmentEntity.getAttributes(), Map.class);
457         }
458         return new DataNodeBuilder()
459                 .withXpath(fragmentEntity.getXpath())
460                 .withLeaves(leaves)
461                 .withAnchor(fragmentEntity.getAnchor().getName())
462                 .withChildDataNodes(childDataNodes).build();
463     }
464
465     private Collection<DataNode> toDataNodes(final Collection<FragmentEntity> fragmentEntities,
466                                              final FetchDescendantsOption fetchDescendantsOption) {
467         final Collection<DataNode> dataNodes = new ArrayList<>(fragmentEntities.size());
468         for (final FragmentEntity fragmentEntity : fragmentEntities) {
469             dataNodes.add(toDataNode(fragmentEntity, fetchDescendantsOption));
470         }
471         return dataNodes;
472     }
473
474     private List<DataNode> getChildDataNodes(final FragmentEntity fragmentEntity,
475                                              final FetchDescendantsOption fetchDescendantsOption) {
476         if (fetchDescendantsOption.hasNext()) {
477             return fragmentEntity.getChildFragments().stream()
478                     .map(childFragmentEntity -> toDataNode(childFragmentEntity, fetchDescendantsOption.next()))
479                     .collect(Collectors.toList());
480         }
481         return Collections.emptyList();
482     }
483
484     @Override
485     public void updateDataLeaves(final String dataspaceName, final String anchorName, final String xpath,
486                                  final Map<String, Serializable> updateLeaves) {
487         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
488         final FragmentEntity fragmentEntity = getFragmentEntity(anchorEntity, xpath);
489         final String currentLeavesAsString = fragmentEntity.getAttributes();
490         final String mergedLeaves = mergeLeaves(updateLeaves, currentLeavesAsString);
491         fragmentEntity.setAttributes(mergedLeaves);
492         fragmentRepository.save(fragmentEntity);
493     }
494
495     @Override
496     public void updateDataNodeAndDescendants(final String dataspaceName, final String anchorName,
497                                              final DataNode dataNode) {
498         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
499         final FragmentEntity fragmentEntity = getFragmentEntity(anchorEntity, dataNode.getXpath());
500         updateFragmentEntityAndDescendantsWithDataNode(fragmentEntity, dataNode);
501         try {
502             fragmentRepository.save(fragmentEntity);
503         } catch (final StaleStateException staleStateException) {
504             throw new ConcurrencyException("Concurrent Transactions",
505                     String.format("dataspace :'%s', Anchor : '%s' and xpath: '%s' is updated by another transaction.",
506                             dataspaceName, anchorName, dataNode.getXpath()));
507         }
508     }
509
510     @Override
511     public void updateDataNodesAndDescendants(final String dataspaceName, final String anchorName,
512                                               final Collection<DataNode> updatedDataNodes) {
513         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
514
515         final Map<String, DataNode> xpathToUpdatedDataNode = updatedDataNodes.stream()
516             .collect(Collectors.toMap(DataNode::getXpath, dataNode -> dataNode));
517
518         final Collection<String> xpaths = xpathToUpdatedDataNode.keySet();
519         final Collection<FragmentEntity> existingFragmentEntities =
520             getFragmentEntities(anchorEntity, xpaths, FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS);
521
522         for (final FragmentEntity existingFragmentEntity : existingFragmentEntities) {
523             final DataNode updatedDataNode = xpathToUpdatedDataNode.get(existingFragmentEntity.getXpath());
524             updateFragmentEntityAndDescendantsWithDataNode(existingFragmentEntity, updatedDataNode);
525         }
526
527         try {
528             fragmentRepository.saveAll(existingFragmentEntities);
529         } catch (final StaleStateException staleStateException) {
530             retryUpdateDataNodesIndividually(anchorEntity, existingFragmentEntities);
531         }
532     }
533
534     private void retryUpdateDataNodesIndividually(final AnchorEntity anchorEntity,
535                                                   final Collection<FragmentEntity> fragmentEntities) {
536         final Collection<String> failedXpaths = new HashSet<>();
537         for (final FragmentEntity dataNodeFragment : fragmentEntities) {
538             try {
539                 fragmentRepository.save(dataNodeFragment);
540             } catch (final StaleStateException e) {
541                 failedXpaths.add(dataNodeFragment.getXpath());
542             }
543         }
544         if (!failedXpaths.isEmpty()) {
545             final String failedXpathsConcatenated = String.join(",", failedXpaths);
546             throw new ConcurrencyException("Concurrent Transactions", String.format(
547                     "DataNodes : %s in Dataspace :'%s' with Anchor : '%s'  are updated by another transaction.",
548                     failedXpathsConcatenated, anchorEntity.getDataspace().getName(), anchorEntity.getName()));
549         }
550     }
551
552     private void updateFragmentEntityAndDescendantsWithDataNode(final FragmentEntity existingFragmentEntity,
553                                                                 final DataNode newDataNode) {
554         existingFragmentEntity.setAttributes(jsonObjectMapper.asJsonString(newDataNode.getLeaves()));
555
556         final Map<String, FragmentEntity> existingChildrenByXpath = existingFragmentEntity.getChildFragments().stream()
557                 .collect(Collectors.toMap(FragmentEntity::getXpath, childFragmentEntity -> childFragmentEntity));
558
559         final Collection<FragmentEntity> updatedChildFragments = new HashSet<>();
560         for (final DataNode newDataNodeChild : newDataNode.getChildDataNodes()) {
561             final FragmentEntity childFragment;
562             if (isNewDataNode(newDataNodeChild, existingChildrenByXpath)) {
563                 childFragment = convertToFragmentWithAllDescendants(existingFragmentEntity.getAnchor(),
564                     newDataNodeChild);
565             } else {
566                 childFragment = existingChildrenByXpath.get(newDataNodeChild.getXpath());
567                 updateFragmentEntityAndDescendantsWithDataNode(childFragment, newDataNodeChild);
568             }
569             updatedChildFragments.add(childFragment);
570         }
571
572         existingFragmentEntity.getChildFragments().clear();
573         existingFragmentEntity.getChildFragments().addAll(updatedChildFragments);
574     }
575
576     @Override
577     @Transactional
578     public void replaceListContent(final String dataspaceName, final String anchorName, final String parentNodeXpath,
579                                    final Collection<DataNode> newListElements) {
580         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
581         final FragmentEntity parentEntity = getFragmentEntity(anchorEntity, parentNodeXpath);
582         final String listElementXpathPrefix = getListElementXpathPrefix(newListElements);
583         final Map<String, FragmentEntity> existingListElementFragmentEntitiesByXPath =
584                 extractListElementFragmentEntitiesByXPath(parentEntity.getChildFragments(), listElementXpathPrefix);
585         parentEntity.getChildFragments().removeAll(existingListElementFragmentEntitiesByXPath.values());
586         final Set<FragmentEntity> updatedChildFragmentEntities = new HashSet<>();
587         for (final DataNode newListElement : newListElements) {
588             final FragmentEntity existingListElementEntity =
589                     existingListElementFragmentEntitiesByXPath.get(newListElement.getXpath());
590             final FragmentEntity entityToBeAdded = getFragmentForReplacement(parentEntity, newListElement,
591                     existingListElementEntity);
592             updatedChildFragmentEntities.add(entityToBeAdded);
593         }
594         parentEntity.getChildFragments().addAll(updatedChildFragmentEntities);
595         fragmentRepository.save(parentEntity);
596     }
597
598     @Override
599     @Transactional
600     public void deleteDataNodes(final String dataspaceName, final String anchorName) {
601         final DataspaceEntity dataspaceEntity = dataspaceRepository.getByName(dataspaceName);
602         anchorRepository.findByDataspaceAndName(dataspaceEntity, anchorName)
603             .ifPresent(anchorEntity -> fragmentRepository.deleteByAnchorIn(Collections.singletonList(anchorEntity)));
604     }
605
606     @Override
607     @Transactional
608     public void deleteDataNodes(final String dataspaceName, final Collection<String> anchorNames) {
609         final DataspaceEntity dataspaceEntity = dataspaceRepository.getByName(dataspaceName);
610         final Collection<AnchorEntity> anchorEntities =
611             anchorRepository.findAllByDataspaceAndNameIn(dataspaceEntity, anchorNames);
612         fragmentRepository.deleteByAnchorIn(anchorEntities);
613     }
614
615     @Override
616     @Transactional
617     public void deleteDataNodes(final String dataspaceName, final String anchorName,
618                                 final Collection<String> xpathsToDelete) {
619         deleteDataNodes(dataspaceName, anchorName, xpathsToDelete, false);
620     }
621
622     private void deleteDataNodes(final String dataspaceName, final String anchorName,
623                                  final Collection<String> xpathsToDelete, final boolean onlySupportListDeletion) {
624         final boolean haveRootXpath = xpathsToDelete.stream().anyMatch(CpsDataPersistenceServiceImpl::isRootXpath);
625         if (haveRootXpath) {
626             deleteDataNodes(dataspaceName, anchorName);
627             return;
628         }
629
630         final AnchorEntity anchorEntity = getAnchorEntity(dataspaceName, anchorName);
631
632         final Collection<String> deleteChecklist = new HashSet<>(xpathsToDelete.size());
633         for (final String xpath : xpathsToDelete) {
634             try {
635                 deleteChecklist.add(CpsPathUtil.getNormalizedXpath(xpath));
636             } catch (final PathParsingException e) {
637                 log.warn("Error parsing xpath \"{}\": {}", xpath, e.getMessage());
638             }
639         }
640
641         final Collection<String> xpathsToExistingContainers =
642             fragmentRepository.findAllXpathByAnchorAndXpathIn(anchorEntity, deleteChecklist);
643         if (onlySupportListDeletion) {
644             final Collection<String> xpathsToExistingListElements = xpathsToExistingContainers.stream()
645                 .filter(CpsPathUtil::isPathToListElement).collect(Collectors.toList());
646             deleteChecklist.removeAll(xpathsToExistingListElements);
647         } else {
648             deleteChecklist.removeAll(xpathsToExistingContainers);
649         }
650
651         final Collection<String> xpathsToExistingLists = deleteChecklist.stream()
652             .filter(xpath -> fragmentRepository.existsByAnchorAndXpathStartsWith(anchorEntity, xpath + "["))
653             .collect(Collectors.toList());
654         deleteChecklist.removeAll(xpathsToExistingLists);
655
656         if (!deleteChecklist.isEmpty()) {
657             throw new DataNodeNotFoundExceptionBatch(dataspaceName, anchorName, deleteChecklist);
658         }
659
660         fragmentRepository.deleteByAnchorIdAndXpaths(anchorEntity.getId(), xpathsToExistingContainers);
661         fragmentRepository.deleteListsByAnchorIdAndXpaths(anchorEntity.getId(), xpathsToExistingLists);
662     }
663
664     @Override
665     @Transactional
666     public void deleteListDataNode(final String dataspaceName, final String anchorName,
667                                    final String targetXpath) {
668         deleteDataNode(dataspaceName, anchorName, targetXpath, true);
669     }
670
671     @Override
672     @Transactional
673     public void deleteDataNode(final String dataspaceName, final String anchorName, final String targetXpath) {
674         deleteDataNode(dataspaceName, anchorName, targetXpath, false);
675     }
676
677     private void deleteDataNode(final String dataspaceName, final String anchorName, final String targetXpath,
678                                 final boolean onlySupportListNodeDeletion) {
679         final String normalizedXpath = getNormalizedXpath(targetXpath);
680         try {
681             deleteDataNodes(dataspaceName, anchorName, Collections.singletonList(normalizedXpath),
682                 onlySupportListNodeDeletion);
683         } catch (final DataNodeNotFoundExceptionBatch dataNodeNotFoundExceptionBatch) {
684             throw new DataNodeNotFoundException(dataspaceName, anchorName, targetXpath);
685         }
686     }
687
688     private static String getListElementXpathPrefix(final Collection<DataNode> newListElements) {
689         if (newListElements.isEmpty()) {
690             throw new CpsAdminException("Invalid list replacement",
691                     "Cannot replace list elements with empty collection");
692         }
693         final String firstChildNodeXpath = newListElements.iterator().next().getXpath();
694         return firstChildNodeXpath.substring(0, firstChildNodeXpath.lastIndexOf('[') + 1);
695     }
696
697     private FragmentEntity getFragmentForReplacement(final FragmentEntity parentEntity,
698                                                      final DataNode newListElement,
699                                                      final FragmentEntity existingListElementEntity) {
700         if (existingListElementEntity == null) {
701             return convertToFragmentWithAllDescendants(parentEntity.getAnchor(), newListElement);
702         }
703         if (newListElement.getChildDataNodes().isEmpty()) {
704             copyAttributesFromNewListElement(existingListElementEntity, newListElement);
705             existingListElementEntity.getChildFragments().clear();
706         } else {
707             updateFragmentEntityAndDescendantsWithDataNode(existingListElementEntity, newListElement);
708         }
709         return existingListElementEntity;
710     }
711
712     private static boolean isNewDataNode(final DataNode replacementDataNode,
713                                          final Map<String, FragmentEntity> existingListElementsByXpath) {
714         return !existingListElementsByXpath.containsKey(replacementDataNode.getXpath());
715     }
716
717     private void copyAttributesFromNewListElement(final FragmentEntity existingListElementEntity,
718                                                   final DataNode newListElement) {
719         final FragmentEntity replacementFragmentEntity =
720                 FragmentEntity.builder().attributes(jsonObjectMapper.asJsonString(
721                         newListElement.getLeaves())).build();
722         existingListElementEntity.setAttributes(replacementFragmentEntity.getAttributes());
723     }
724
725     private static Map<String, FragmentEntity> extractListElementFragmentEntitiesByXPath(
726             final Set<FragmentEntity> childEntities, final String listElementXpathPrefix) {
727         return childEntities.stream()
728                 .filter(fragmentEntity -> fragmentEntity.getXpath().startsWith(listElementXpathPrefix))
729                 .collect(Collectors.toMap(FragmentEntity::getXpath, fragmentEntity -> fragmentEntity));
730     }
731
732     private static boolean isRootXpath(final String xpath) {
733         return "/".equals(xpath) || "".equals(xpath);
734     }
735
736     private String mergeLeaves(final Map<String, Serializable> updateLeaves, final String currentLeavesAsString) {
737         final Map<String, Serializable> currentLeavesAsMap = currentLeavesAsString.isEmpty()
738             ? new HashMap<>() : jsonObjectMapper.convertJsonString(currentLeavesAsString, Map.class);
739         currentLeavesAsMap.putAll(updateLeaves);
740         if (currentLeavesAsMap.isEmpty()) {
741             return "";
742         }
743         return jsonObjectMapper.asJsonString(currentLeavesAsMap);
744     }
745
746     private AnchorEntity getAnchorEntity(final String dataspaceName, final String anchorName) {
747         final DataspaceEntity dataspaceEntity = dataspaceRepository.getByName(dataspaceName);
748         return anchorRepository.getByDataspaceAndName(dataspaceEntity, anchorName);
749     }
750 }