Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-sdnc-adapter / src / test / java / org / onap / so / adapters / sdnc / FileUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.adapters.sdnc;
24
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import java.io.IOException;
28 import java.io.InputStream;
29
30 /**
31  * file utility class
32  */
33 public class FileUtil {
34
35     private static final Logger logger = LoggerFactory.getLogger(FileUtil.class);
36
37     /**
38      * Read the specified resource file and return the contents as a String.
39      *
40      * @param fileName Name of the resource file
41      * @return the contents of the resource file as a String
42      * @throws IOException if there is a problem reading the file
43      */
44     public static String readResourceFile(String fileName) {
45         InputStream stream;
46         try {
47             stream = getResourceAsStream(fileName);
48             byte[] bytes;
49             bytes = new byte[stream.available()];
50             if (stream.read(bytes) > 0) {
51                 stream.close();
52                 return new String(bytes);
53             } else {
54                 stream.close();
55                 return "";
56             }
57         } catch (IOException e) {
58             logger.debug("Exception:", e);
59             return "";
60         }
61     }
62
63     /**
64      * Get an InputStream for the resource specified.
65      *
66      * @param resourceName Name of resource for which to get InputStream.
67      * @return an InputStream for the resource specified.
68      * @throws IOException If we can't get the InputStream for whatever reason.
69      */
70     private static InputStream getResourceAsStream(String resourceName) throws IOException {
71         InputStream stream = FileUtil.class.getClassLoader().getResourceAsStream(resourceName);
72         if (stream == null) {
73             throw new IOException("Can't access resource '" + resourceName + "'");
74         }
75         return stream;
76     }
77 }