a683cb7302d2c2855baa955ac39c1a2d20e38a92
[policy/apex-pdp.git] /
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      * (non-Javadoc)
54      *
55      * @see javax.tools.SimpleJavaFileObject#getCharContent(boolean)
56      */
57     @Override
58     public CharSequence getCharContent(final boolean ignoreEncodingErrors) {
59         // Return the source code to toe caller, the compiler
60         return source;
61     }
62
63     /*
64      * (non-Javadoc)
65      *
66      * @see javax.tools.SimpleJavaFileObject#openOutputStream()
67      */
68     @Override
69     public OutputStream openOutputStream() {
70         throw new IllegalStateException();
71     }
72
73     /*
74      * (non-Javadoc)
75      *
76      * @see javax.tools.SimpleJavaFileObject#openInputStream()
77      */
78     @Override
79     public InputStream openInputStream() {
80         // Return the source code as a stream
81         return new ByteArrayInputStream(source.getBytes());
82     }
83 }