80a685b0924ae4641883d80269d3b0953b6fba11
[cps.git] / cps / cps-service / src / main / java / org / onap / cps / api / impl / CpServiceImpl.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.cps.api.impl;
21
22
23 import java.io.BufferedWriter;
24 import java.io.File;
25 import java.io.FileWriter;
26 import java.io.IOException;
27 import org.onap.cps.api.CpService;
28 import org.onap.cps.spi.DataPersistencyService;
29 import org.onap.cps.spi.ModelPersistencyService;
30 import org.onap.cps.utils.YangUtils;
31 import org.opendaylight.yangtools.yang.model.api.Module;
32 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
33 import org.opendaylight.yangtools.yang.model.parser.api.YangParserException;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.stereotype.Component;
38
39
40 @Component
41 public class CpServiceImpl implements CpService {
42
43     private static final Logger LOGGER = LoggerFactory.getLogger(CpServiceImpl.class);
44
45     @Autowired
46     private ModelPersistencyService modelPersistencyService;
47
48     @Autowired
49     private DataPersistencyService dataPersistencyService;
50
51
52     @Override
53     public final SchemaContext parseAndValidateModel(final String yangModelContent) throws IOException,
54         YangParserException {
55         final File tempFile = File.createTempFile("yang", ".yang");
56         try (BufferedWriter writer = new BufferedWriter(new FileWriter(tempFile))) {
57             writer.write(yangModelContent);
58         }
59         return parseAndValidateModel(tempFile);
60     }
61
62     @Override
63     public final SchemaContext parseAndValidateModel(final File yangModelFile) throws IOException, YangParserException {
64         return YangUtils.parseYangModelFile(yangModelFile);
65     }
66
67     @Override
68     public final Integer storeJsonStructure(final String jsonStructure) {
69         return dataPersistencyService.storeJsonStructure(jsonStructure);
70     }
71
72     @Override
73     public final String getJsonById(final int jsonObjectId) {
74         return dataPersistencyService.getJsonById(jsonObjectId);
75     }
76
77     @Override
78     public void deleteJsonById(int jsonObjectId) {
79         dataPersistencyService.deleteJsonById(jsonObjectId);;
80     }
81
82     @Override
83     public final void storeSchemaContext(final SchemaContext schemaContext) {
84         for (final Module module : schemaContext.getModules()) {
85             modelPersistencyService.storeModule(module.getName(), module.toString(), module.getRevision().toString());
86         }
87     }
88 }