VSE: Create an anchor in the given dataspace
[cps.git] / cps-service / src / main / java / org / onap / cps / api / impl / CpServiceImpl.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 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 java.io.BufferedWriter;
24 import java.io.File;
25 import java.io.FileWriter;
26 import java.io.IOException;
27 import java.util.Optional;
28 import org.onap.cps.api.CpService;
29 import org.onap.cps.api.model.AnchorDetails;
30 import org.onap.cps.exceptions.CpsException;
31 import org.onap.cps.exceptions.CpsValidationException;
32 import org.onap.cps.spi.DataPersistencyService;
33 import org.onap.cps.spi.FragmentPersistenceService;
34 import org.onap.cps.spi.ModelPersistencyService;
35 import org.onap.cps.utils.YangUtils;
36 import org.opendaylight.yangtools.yang.common.Revision;
37 import org.opendaylight.yangtools.yang.model.api.Module;
38 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
39 import org.opendaylight.yangtools.yang.model.parser.api.YangParserException;
40 import org.springframework.beans.factory.annotation.Autowired;
41 import org.springframework.stereotype.Component;
42
43
44 @Component
45 public class CpServiceImpl implements CpService {
46
47     @Autowired
48     private ModelPersistencyService modelPersistencyService;
49
50     @Autowired
51     private DataPersistencyService dataPersistencyService;
52
53     @Autowired
54     private FragmentPersistenceService fragmentPersistenceService;
55
56     @Override
57     public final SchemaContext parseAndValidateModel(final String yangModelContent) {
58
59         try {
60             final File tempFile = File.createTempFile("yang", ".yang");
61             try (BufferedWriter writer = new BufferedWriter(new FileWriter(tempFile))) {
62                 writer.write(yangModelContent);
63             }
64             return parseAndValidateModel(tempFile);
65         } catch (final IOException e) {
66             throw new CpsException(e);
67         }
68     }
69
70     @Override
71     public final SchemaContext parseAndValidateModel(final File yangModelFile) {
72         try {
73             return YangUtils.parseYangModelFile(yangModelFile);
74         } catch (final YangParserException e) {
75             throw new CpsValidationException("Yang file validation failed", e.getMessage());
76         } catch (final IOException e) {
77             throw new CpsException(e);
78         }
79     }
80
81     @Override
82     public final Integer storeJsonStructure(final String jsonStructure) {
83         return dataPersistencyService.storeJsonStructure(jsonStructure);
84     }
85
86     @Override
87     public final String getJsonById(final int jsonObjectId) {
88         return dataPersistencyService.getJsonById(jsonObjectId);
89     }
90
91     @Override
92     public void deleteJsonById(int jsonObjectId) {
93         dataPersistencyService.deleteJsonById(jsonObjectId);
94     }
95
96     @Override
97     public final void storeSchemaContext(final SchemaContext schemaContext, final String dataspaceName) {
98         for (final Module module : schemaContext.getModules()) {
99             final Optional<Revision> optionalRevision = module.getRevision();
100             final String revisionValue = optionalRevision.map(Object::toString).orElse(null);
101             modelPersistencyService.storeModule(module.getNamespace().toString(), module.toString(),
102                 revisionValue, dataspaceName);
103         }
104     }
105
106     @Override
107     public String createAnchor(AnchorDetails anchorDetails) {
108         return fragmentPersistenceService.createAnchor(anchorDetails);
109     }
110 }