63662f55122a4a7e1074d0605d6cb64ad8936288
[policy/apex-pdp.git] / core / core-infrastructure / src / main / java / org / onap / policy / apex / core / infrastructure / java / compile / singleclass / SingleClassCompilationUnit.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.core.infrastructure.java.compile.singleclass;
22
23 import java.io.ByteArrayInputStream;
24 import java.io.InputStream;
25 import java.io.OutputStream;
26 import java.net.URI;
27
28 import javax.tools.SimpleJavaFileObject;
29
30 /**
31  * The Class SingleClassCompilationUnit is a container for the source code of the single Java class in memory. The class
32  * uses a {@link String} to hold the source code.
33  *
34  * @author Liam Fallon (liam.fallon@ericsson.com)
35  */
36 public class SingleClassCompilationUnit extends SimpleJavaFileObject {
37
38     private final String source;
39
40     /**
41      * Instantiates a new compilation unit.
42      *
43      * @param className the class name for the source code
44      * @param source the source code for the class
45      */
46     public SingleClassCompilationUnit(final String className, final String source) {
47         // Create a URI for the source code of the class
48         super(URI.create("file:///" + className + ".java"), Kind.SOURCE);
49         this.source = source;
50     }
51
52     /**
53      * {@inheritDoc}.
54      */
55     @Override
56     public CharSequence getCharContent(final boolean ignoreEncodingErrors) {
57         // Return the source code to toe caller, the compiler
58         return source;
59     }
60
61     /**
62      * {@inheritDoc}.
63      */
64     @Override
65     public OutputStream openOutputStream() {
66         throw new IllegalStateException();
67     }
68
69     /**
70      * {@inheritDoc}.
71      */
72     @Override
73     public InputStream openInputStream() {
74         // Return the source code as a stream
75         return new ByteArrayInputStream(source.getBytes());
76     }
77 }