Merge "Retrieve an Anchor for a given dataspace by anchor name - REST layer"
[cps.git] / cps-service / src / main / java / org / onap / cps / api / impl / CpsDataServiceImpl.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation
4  *  Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.api.impl;
22
23 import org.onap.cps.api.CpsAdminService;
24 import org.onap.cps.api.CpsDataService;
25 import org.onap.cps.api.CpsModuleService;
26 import org.onap.cps.spi.CpsDataPersistenceService;
27 import org.onap.cps.spi.model.Anchor;
28 import org.onap.cps.spi.model.DataNode;
29 import org.onap.cps.spi.model.DataNodeBuilder;
30 import org.onap.cps.utils.YangUtils;
31 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
32 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.stereotype.Service;
35
36 @Service
37 public class CpsDataServiceImpl implements CpsDataService {
38
39     @Autowired
40     private CpsDataPersistenceService cpsDataPersistenceService;
41
42     @Autowired
43     private CpsAdminService cpsAdminService;
44
45     @Autowired
46     private CpsModuleService cpsModuleService;
47
48     @Autowired
49     private YangTextSchemaSourceSetCache yangTextSchemaSourceSetCache;
50
51     @Override
52     public void saveData(final String dataspaceName, final String anchorName, final String jsonData) {
53         final Anchor anchor = cpsAdminService.getAnchor(dataspaceName, anchorName);
54         final SchemaContext schemaContext = getSchemaContext(dataspaceName, anchor.getSchemaSetName());
55         final NormalizedNode normalizedNode = YangUtils.parseJsonData(jsonData, schemaContext);
56         final DataNode dataNode = new DataNodeBuilder().withNormalizedNodeTree(normalizedNode).build();
57         cpsDataPersistenceService.storeDataNode(dataspaceName, anchor.getName(), dataNode);
58     }
59
60     private SchemaContext getSchemaContext(final String dataspaceName, final String schemaSetName) {
61         return yangTextSchemaSourceSetCache.get(dataspaceName, schemaSetName).getSchemaContext();
62     }
63 }