a85020ffaa779a3432e6c3739e2832c8fff2aaef
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / util / SubStandardConsole.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.cadi.util;
23
24 import java.io.BufferedReader;
25 import java.io.IOException;
26 import java.io.InputStreamReader;
27
28 // Substandard, because System.in doesn't do Passwords..
29 public class SubStandardConsole implements MyConsole {
30     private final static char[] BLANK = new char[0];
31     private final BufferedReader br; 
32
33     public SubStandardConsole() {
34         br = new BufferedReader(new InputStreamReader(System.in));
35     }
36     
37     @Override
38     public String readLine(String fmt, Object... args) {
39         String rv;
40         try {
41             System.out.printf(fmt,args);
42             rv = br.readLine();
43             if (args.length==1 && rv.length()==0) {
44                 rv = args[0].toString();
45             }
46         } catch (IOException e) {
47             System.err.println("uh oh...");
48             rv = "";
49         }
50         return rv;
51     }
52
53     @Override
54     public char[] readPassword(String fmt, Object... args) {
55         try {
56             System.out.printf(fmt,args);
57             String response = br.readLine();
58             return response==null?BLANK:response.toCharArray();
59
60         } catch (IOException e) {
61             System.err.println("uh oh...");
62             return BLANK;
63         }
64     }
65
66     @Override
67     public void printf(String fmt, Object... args) {
68         System.out.printf(fmt, args);
69     }
70 }