Merge "Stream Files handling CommonUtil.java"
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / util / SystemFunctions.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.util;
17
18 import com.google.common.io.ByteStreams;
19 import org.apache.http.impl.client.CloseableHttpClient;
20 import org.apache.http.impl.client.HttpClients;
21
22 import java.io.InputStream;
23 import java.io.PrintStream;
24
25 /**
26  * Wrapper class for static method calls to core or core libraries.
27  * Calls to static methods in core or core libraries are wrapped to be able to test
28  * the classes that uses static calls.
29  */
30 public class SystemFunctions {
31     private static SystemFunctions INSTANCE;
32
33     /**
34      * @return singleton instance
35      */
36     public static SystemFunctions systemFunctions() {
37         if (INSTANCE != null) {
38             return INSTANCE;
39         } else {
40             synchronized (SystemFunctions.class) {
41                 INSTANCE = new SystemFunctions();
42             }
43             return INSTANCE;
44         }
45     }
46
47     /**
48      * Causes the currently executing thread to sleep (temporarily cease
49      * execution) for the specified number of milliseconds, subject to
50      * the precision and accuracy of system timers and schedulers. The thread
51      * does not lose ownership of any monitors.
52      *
53      * @param millis the length of time to sleep in milliseconds
54      */
55     public void sleep(long millis) {
56         try {
57             Thread.sleep(millis);
58         } catch (InterruptedException e) {
59             throw new RuntimeException(e);
60         }
61     }
62
63     /**
64      * Returns the current time in milliseconds.  Note that
65      * while the unit of time of the return value is a millisecond,
66      * the granularity of the value depends on the underlying
67      * operating system and may be larger.  For example, many
68      * operating systems measure time in units of tens of
69      * milliseconds.
70      * <p>
71      * <p> See the description of the class <code>Date</code> for
72      * a discussion of slight discrepancies that may arise between
73      * Unable to load /unittests/missing     * "computer time" and coordinated universal time (UTC).
74      *
75      * @return the difference, measured in milliseconds, between
76      * the current time and midnight, January 1, 1970 UTC.
77      * @see java.util.Date
78      */
79     public long currentTimeMillis() {
80         return System.currentTimeMillis();
81     }
82
83     /**
84      * Loads a file from the class path
85      *
86      * @param url the URL of the file
87      * @return the content of the file
88      */
89     public byte[] loadFile(String url) {
90         try {
91             InputStream stream = SystemFunctions.class.getClassLoader().getResourceAsStream(url);
92             return ByteStreams.toByteArray(stream);
93         } catch (Exception e) {
94             throw new RuntimeException("Unable to load " + url, e);
95         }
96     }
97
98     /**
99      * The "standard" error output stream. This stream is already
100      * open and ready to accept output data.
101      * <p>
102      * Typically this stream corresponds to display output or another
103      * output destination specified by the host environment or user. By
104      * convention, this output stream is used to display error messages
105      * or other information that should come to the immediate attention
106      * of a user even if the principal output stream, the value of the
107      * variable <code>out</code>, has been redirected to a file or other
108      * destination that is typically not continuously monitored.
109      */
110     public PrintStream err() {
111         return System.err;
112     }
113
114     /**
115      * The "standard" output stream. This stream is already
116      * open and ready to accept output data. Typically this stream
117      * corresponds to display output or another output destination
118      * specified by the host environment or user.
119      * <p>
120      * For simple stand-alone Java applications, a typical way to write
121      * a line of output data is:
122      * <blockquote><pre>
123      *     System.out.println(data)
124      * </pre></blockquote>
125      * <p>
126      * See the <code>println</code> methods in class <code>PrintStream</code>.
127      *
128      * @see java.io.PrintStream#println()
129      * @see java.io.PrintStream#println(boolean)
130      * @see java.io.PrintStream#println(char)
131      * @see java.io.PrintStream#println(char[])
132      * @see java.io.PrintStream#println(double)
133      * @see java.io.PrintStream#println(float)
134      * @see java.io.PrintStream#println(int)
135      * @see java.io.PrintStream#println(long)
136      * @see java.io.PrintStream#println(java.lang.Object)
137      * @see java.io.PrintStream#println(java.lang.String)
138      */
139     public PrintStream out() {
140         return System.out;
141     }
142
143     /**
144      * The "standard" input stream. This stream is already
145      * open and ready to supply input data. Typically this stream
146      * corresponds to keyboard input or another input source specified by
147      * the host environment or user.
148      */
149     public InputStream in() {
150         return System.in;
151     }
152
153     /**
154      * Wraps the static call (required for being able to test)
155      *
156      * @return the default HTTP client
157      */
158     public CloseableHttpClient getHttpClient() {
159         return HttpClients.createDefault();
160     }
161 }