bc9eca88ed30088cd45da592e1b9f39a26f560cb
[policy/apex-pdp.git] / examples / examples-pcvs / src / main / java / org / onap / policy / apex / examples / pcvs / model / PCVSDomainModelFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
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  *
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.policy.apex.examples.pcvs.model;
22
23 import java.io.File;
24
25 import org.onap.policy.apex.auth.clieditor.ApexCLIEditorMain;
26 import org.onap.policy.apex.model.basicmodel.concepts.ApexRuntimeException;
27 import org.onap.policy.apex.model.basicmodel.handling.ApexModelReader;
28 import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
29 import org.onap.policy.common.utils.resources.ResourceUtils;
30
31 /**
32  * A factory for creating PCVSDomainModel objects.
33  *
34  * @author Sven van der Meer (sven.van.der.meer@ericsson.com)
35  */
36 public class PCVSDomainModelFactory {
37
38     /**
39      * Generates the PCVS VPN-SLA policy model from CLI commands and creates an APEX model.
40      *
41      * @param workingDirectory The working directory for the CLI editor for includes
42      *
43      * @return the PCVS VPN-SLA policy model
44      */
45     public AxPolicyModel getPCVVpnSlaSPolicyModel(final String workingDirectory) {
46         final String path = "target/model-gen/pcvs/vpnsla";
47         final String file = "policy.json";
48         final String full = path + "/" + file;
49
50         final File pathFile = new File(path);
51         pathFile.mkdirs();
52
53         final String[] args =
54                 new String[] { "-c", "src/main/resources/org/onap/policy/apex/examples/pcvs/vpnsla/vpnsla.apex", "-wd",
55                         workingDirectory, "-o", full };
56
57         final ApexCLIEditorMain cliEditor = new ApexCLIEditorMain(args);
58         if (cliEditor.getErrorCount() > 0) {
59             throw new ApexRuntimeException(
60                     "Apex CLI editor execution failed with " + cliEditor.getErrorCount() + " errors");
61         }
62
63         java.util.TimeZone.getTimeZone("gmt");
64         try {
65             final ApexModelReader<AxPolicyModel> reader = new ApexModelReader<>(AxPolicyModel.class);
66             return reader.read(ResourceUtils.getResourceAsString(full));
67         } catch (final Exception e) {
68             throw new ApexRuntimeException("Failed to build PCVS SLA1 policy from path: " + full, e);
69         }
70     }
71
72 }