33
33
import jdk .internal .access .SharedSecrets ;
34
34
import jdk .internal .io .JdkConsoleProvider ;
35
35
import jdk .internal .util .StaticProperty ;
36
- import sun .nio .cs .StreamDecoder ;
37
- import sun .nio .cs .StreamEncoder ;
38
36
import sun .security .action .GetPropertyAction ;
39
37
40
38
/**
82
80
* manually zero the returned character array after processing to minimize the
83
81
* lifetime of sensitive data in memory.
84
82
*
85
- * <blockquote><pre>{@code
83
+ * {@snippet lang=java :
86
84
* Console cons;
87
85
* char[] passwd;
88
86
* if ((cons = System.console()) != null &&
89
87
* (passwd = cons.readPassword("[%s]", "Password:")) != null) {
90
88
* ...
91
89
* java.util.Arrays.fill(passwd, ' ');
92
90
* }
93
- * }</pre></blockquote>
91
+ * }
94
92
*
95
93
* @author Xueming Shen
96
94
* @since 1.6
97
95
*/
96
+ public sealed class Console implements Flushable permits ConsoleImpl , ProxyingConsole {
97
+ /**
98
+ * Package private no-arg constructor.
99
+ */
100
+ Console () {}
98
101
99
- public class Console implements Flushable
100
- {
101
- /**
102
- * Retrieves the unique {@link java.io.PrintWriter PrintWriter} object
103
- * associated with this console.
104
- *
105
- * @return The printwriter associated with this console
106
- */
102
+ /**
103
+ * Retrieves the unique {@link java.io.PrintWriter PrintWriter} object
104
+ * associated with this console.
105
+ *
106
+ * @return The printwriter associated with this console
107
+ */
107
108
public PrintWriter writer () {
108
- return pw ;
109
+ throw newUnsupportedOperationException () ;
109
110
}
110
111
111
- /**
112
- * Retrieves the unique {@link java.io.Reader Reader} object associated
113
- * with this console.
114
- * <p>
115
- * This method is intended to be used by sophisticated applications, for
116
- * example, a {@link java.util.Scanner} object which utilizes the rich
117
- * parsing/scanning functionality provided by the {@code Scanner}:
118
- * <blockquote><pre>
119
- * Console con = System.console();
120
- * if (con != null) {
121
- * Scanner sc = new Scanner(con.reader());
122
- * ...
123
- * }
124
- * </pre></blockquote>
125
- * <p>
126
- * For simple applications requiring only line-oriented reading, use
127
- * {@link #readLine}.
128
- * <p>
129
- * The bulk read operations {@link java.io.Reader#read(char[]) read(char[]) },
130
- * {@link java.io.Reader#read(char[], int, int) read(char[], int, int) } and
131
- * {@link java.io.Reader#read(java.nio.CharBuffer) read(java.nio.CharBuffer)}
132
- * on the returned object will not read in characters beyond the line
133
- * bound for each invocation, even if the destination buffer has space for
134
- * more characters. The {@code Reader}'s {@code read} methods may block if a
135
- * line bound has not been entered or reached on the console's input device.
136
- * A line bound is considered to be any one of a line feed ({@code '\n'}),
137
- * a carriage return ({@code '\r'}), a carriage return followed immediately
138
- * by a linefeed, or an end of stream.
139
- *
140
- * @return The reader associated with this console
141
- */
112
+ /**
113
+ * Retrieves the unique {@link java.io.Reader Reader} object associated
114
+ * with this console.
115
+ * <p>
116
+ * This method is intended to be used by sophisticated applications, for
117
+ * example, a {@link java.util.Scanner} object which utilizes the rich
118
+ * parsing/scanning functionality provided by the {@code Scanner}:
119
+ * <blockquote><pre>
120
+ * Console con = System.console();
121
+ * if (con != null) {
122
+ * Scanner sc = new Scanner(con.reader());
123
+ * ...
124
+ * }
125
+ * </pre></blockquote>
126
+ * <p>
127
+ * For simple applications requiring only line-oriented reading, use
128
+ * {@link #readLine}.
129
+ * <p>
130
+ * The bulk read operations {@link java.io.Reader#read(char[]) read(char[]) },
131
+ * {@link java.io.Reader#read(char[], int, int) read(char[], int, int) } and
132
+ * {@link java.io.Reader#read(java.nio.CharBuffer) read(java.nio.CharBuffer)}
133
+ * on the returned object will not read in characters beyond the line
134
+ * bound for each invocation, even if the destination buffer has space for
135
+ * more characters. The {@code Reader}'s {@code read} methods may block if a
136
+ * line bound has not been entered or reached on the console's input device.
137
+ * A line bound is considered to be any one of a line feed ({@code '\n'}),
138
+ * a carriage return ({@code '\r'}), a carriage return followed immediately
139
+ * by a linefeed, or an end of stream.
140
+ *
141
+ * @return The reader associated with this console
142
+ */
142
143
public Reader reader () {
143
- return reader ;
144
+ throw newUnsupportedOperationException () ;
144
145
}
145
146
146
- /**
147
- * Writes a formatted string to this console's output stream using
148
- * the specified format string and arguments.
149
- *
150
- * @param fmt
151
- * A format string as described in <a
152
- * href="../util/Formatter.html#syntax">Format string syntax</a>
153
- *
154
- * @param args
155
- * Arguments referenced by the format specifiers in the format
156
- * string. If there are more arguments than format specifiers, the
157
- * extra arguments are ignored. The number of arguments is
158
- * variable and may be zero. The maximum number of arguments is
159
- * limited by the maximum dimension of a Java array as defined by
160
- * <cite>The Java Virtual Machine Specification</cite>.
161
- * The behaviour on a
162
- * {@code null} argument depends on the <a
163
- * href="../util/Formatter.html#syntax">conversion</a>.
164
- *
165
- * @throws IllegalFormatException
166
- * If a format string contains an illegal syntax, a format
167
- * specifier that is incompatible with the given arguments,
168
- * insufficient arguments given the format string, or other
169
- * illegal conditions. For specification of all possible
170
- * formatting errors, see the <a
171
- * href="../util/Formatter.html#detail">Details</a> section
172
- * of the formatter class specification.
173
- *
174
- * @return This console
175
- */
147
+ /**
148
+ * Writes a formatted string to this console's output stream using
149
+ * the specified format string and arguments.
150
+ *
151
+ * @param fmt
152
+ * A format string as described in <a
153
+ * href="../util/Formatter.html#syntax">Format string syntax</a>
154
+ *
155
+ * @param args
156
+ * Arguments referenced by the format specifiers in the format
157
+ * string. If there are more arguments than format specifiers, the
158
+ * extra arguments are ignored. The number of arguments is
159
+ * variable and may be zero. The maximum number of arguments is
160
+ * limited by the maximum dimension of a Java array as defined by
161
+ * <cite>The Java Virtual Machine Specification</cite>.
162
+ * The behaviour on a
163
+ * {@code null} argument depends on the <a
164
+ * href="../util/Formatter.html#syntax">conversion</a>.
165
+ *
166
+ * @throws IllegalFormatException
167
+ * If a format string contains an illegal syntax, a format
168
+ * specifier that is incompatible with the given arguments,
169
+ * insufficient arguments given the format string, or other
170
+ * illegal conditions. For specification of all possible
171
+ * formatting errors, see the <a
172
+ * href="../util/Formatter.html#detail">Details</a> section
173
+ * of the formatter class specification.
174
+ *
175
+ * @return This console
176
+ */
176
177
public Console format (String fmt , Object ...args ) {
177
- formatter .format (fmt , args ).flush ();
178
- return this ;
178
+ throw newUnsupportedOperationException ();
179
179
}
180
180
181
- /**
182
- * A convenience method to write a formatted string to this console's
183
- * output stream using the specified format string and arguments.
184
- *
185
- * <p> An invocation of this method of the form
186
- * {@code con.printf(format, args)} behaves in exactly the same way
187
- * as the invocation of
188
- * <pre>con.format(format, args)</pre>.
189
- *
190
- * @param format
191
- * A format string as described in <a
192
- * href="../util/Formatter.html#syntax">Format string syntax</a>.
193
- *
194
- * @param args
195
- * Arguments referenced by the format specifiers in the format
196
- * string. If there are more arguments than format specifiers, the
197
- * extra arguments are ignored. The number of arguments is
198
- * variable and may be zero. The maximum number of arguments is
199
- * limited by the maximum dimension of a Java array as defined by
200
- * <cite>The Java Virtual Machine Specification</cite>.
201
- * The behaviour on a
202
- * {@code null} argument depends on the <a
203
- * href="../util/Formatter.html#syntax">conversion</a>.
204
- *
205
- * @throws IllegalFormatException
206
- * If a format string contains an illegal syntax, a format
207
- * specifier that is incompatible with the given arguments,
208
- * insufficient arguments given the format string, or other
209
- * illegal conditions. For specification of all possible
210
- * formatting errors, see the <a
211
- * href="../util/Formatter.html#detail">Details</a> section of the
212
- * formatter class specification.
213
- *
214
- * @return This console
215
- */
181
+ /**
182
+ * A convenience method to write a formatted string to this console's
183
+ * output stream using the specified format string and arguments.
184
+ *
185
+ * <p> An invocation of this method of the form
186
+ * {@code con.printf(format, args)} behaves in exactly the same way
187
+ * as the invocation of
188
+ * <pre>con.format(format, args)</pre>.
189
+ *
190
+ * @param format
191
+ * A format string as described in <a
192
+ * href="../util/Formatter.html#syntax">Format string syntax</a>.
193
+ *
194
+ * @param args
195
+ * Arguments referenced by the format specifiers in the format
196
+ * string. If there are more arguments than format specifiers, the
197
+ * extra arguments are ignored. The number of arguments is
198
+ * variable and may be zero. The maximum number of arguments is
199
+ * limited by the maximum dimension of a Java array as defined by
200
+ * <cite>The Java Virtual Machine Specification</cite>.
201
+ * The behaviour on a
202
+ * {@code null} argument depends on the <a
203
+ * href="../util/Formatter.html#syntax">conversion</a>.
204
+ *
205
+ * @throws IllegalFormatException
206
+ * If a format string contains an illegal syntax, a format
207
+ * specifier that is incompatible with the given arguments,
208
+ * insufficient arguments given the format string, or other
209
+ * illegal conditions. For specification of all possible
210
+ * formatting errors, see the <a
211
+ * href="../util/Formatter.html#detail">Details</a> section of the
212
+ * formatter class specification.
213
+ *
214
+ * @return This console
215
+ */
216
216
public Console printf (String format , Object ... args ) {
217
- return format ( format , args );
217
+ throw newUnsupportedOperationException ( );
218
218
}
219
219
220
- /**
221
- * Provides a formatted prompt, then reads a single line of text from the
222
- * console.
223
- *
224
- * @param fmt
225
- * A format string as described in <a
226
- * href="../util/Formatter.html#syntax">Format string syntax</a>.
227
- *
228
- * @param args
229
- * Arguments referenced by the format specifiers in the format
230
- * string. If there are more arguments than format specifiers, the
231
- * extra arguments are ignored. The maximum number of arguments is
232
- * limited by the maximum dimension of a Java array as defined by
233
- * <cite>The Java Virtual Machine Specification</cite>.
234
- *
235
- * @throws IllegalFormatException
236
- * If a format string contains an illegal syntax, a format
237
- * specifier that is incompatible with the given arguments,
238
- * insufficient arguments given the format string, or other
239
- * illegal conditions. For specification of all possible
240
- * formatting errors, see the <a
241
- * href="../util/Formatter.html#detail">Details</a> section
242
- * of the formatter class specification.
243
- *
244
- * @throws IOError
245
- * If an I/O error occurs.
246
- *
247
- * @return A string containing the line read from the console, not
248
- * including any line-termination characters, or {@code null}
249
- * if an end of stream has been reached.
250
- */
220
+ /**
221
+ * Provides a formatted prompt, then reads a single line of text from the
222
+ * console.
223
+ *
224
+ * @param fmt
225
+ * A format string as described in <a
226
+ * href="../util/Formatter.html#syntax">Format string syntax</a>.
227
+ *
228
+ * @param args
229
+ * Arguments referenced by the format specifiers in the format
230
+ * string. If there are more arguments than format specifiers, the
231
+ * extra arguments are ignored. The maximum number of arguments is
232
+ * limited by the maximum dimension of a Java array as defined by
233
+ * <cite>The Java Virtual Machine Specification</cite>.
234
+ *
235
+ * @throws IllegalFormatException
236
+ * If a format string contains an illegal syntax, a format
237
+ * specifier that is incompatible with the given arguments,
238
+ * insufficient arguments given the format string, or other
239
+ * illegal conditions. For specification of all possible
240
+ * formatting errors, see the <a
241
+ * href="../util/Formatter.html#detail">Details</a> section
242
+ * of the formatter class specification.
243
+ *
244
+ * @throws IOError
245
+ * If an I/O error occurs.
246
+ *
247
+ * @return A string containing the line read from the console, not
248
+ * including any line-termination characters, or {@code null}
249
+ * if an end of stream has been reached.
250
+ */
251
251
public String readLine (String fmt , Object ... args ) {
252
- String line = null ;
253
- synchronized (writeLock ) {
254
- synchronized (readLock ) {
255
- if (!fmt .isEmpty ())
256
- pw .format (fmt , args );
257
- try {
258
- char [] ca = readline (false );
259
- if (ca != null )
260
- line = new String (ca );
261
- } catch (IOException x ) {
262
- throw new IOError (x );
263
- }
264
- }
265
- }
266
- return line ;
252
+ throw newUnsupportedOperationException ();
267
253
}
268
254
269
- /**
270
- * Reads a single line of text from the console.
271
- *
272
- * @throws IOError
273
- * If an I/O error occurs.
274
- *
275
- * @return A string containing the line read from the console, not
276
- * including any line-termination characters, or {@code null}
277
- * if an end of stream has been reached.
278
- */
255
+ /**
256
+ * Reads a single line of text from the console.
257
+ *
258
+ * @throws IOError
259
+ * If an I/O error occurs.
260
+ *
261
+ * @return A string containing the line read from the console, not
262
+ * including any line-termination characters, or {@code null}
263
+ * if an end of stream has been reached.
264
+ */
279
265
public String readLine () {
280
- return readLine ( "" );
266
+ throw newUnsupportedOperationException ( );
281
267
}
282
268
283
- /**
284
- * Provides a formatted prompt, then reads a password or passphrase from
285
- * the console with echoing disabled.
286
- *
287
- * @param fmt
288
- * A format string as described in <a
289
- * href="../util/Formatter.html#syntax">Format string syntax</a>
290
- * for the prompt text.
291
- *
292
- * @param args
293
- * Arguments referenced by the format specifiers in the format
294
- * string. If there are more arguments than format specifiers, the
295
- * extra arguments are ignored. The maximum number of arguments is
296
- * limited by the maximum dimension of a Java array as defined by
297
- * <cite>The Java Virtual Machine Specification</cite>.
298
- *
299
- * @throws IllegalFormatException
300
- * If a format string contains an illegal syntax, a format
301
- * specifier that is incompatible with the given arguments,
302
- * insufficient arguments given the format string, or other
303
- * illegal conditions. For specification of all possible
304
- * formatting errors, see the <a
305
- * href="../util/Formatter.html#detail">Details</a>
306
- * section of the formatter class specification.
307
- *
308
- * @throws IOError
309
- * If an I/O error occurs.
310
- *
311
- * @return A character array containing the password or passphrase read
312
- * from the console, not including any line-termination characters,
313
- * or {@code null} if an end of stream has been reached.
314
- */
269
+ /**
270
+ * Provides a formatted prompt, then reads a password or passphrase from
271
+ * the console with echoing disabled.
272
+ *
273
+ * @param fmt
274
+ * A format string as described in <a
275
+ * href="../util/Formatter.html#syntax">Format string syntax</a>
276
+ * for the prompt text.
277
+ *
278
+ * @param args
279
+ * Arguments referenced by the format specifiers in the format
280
+ * string. If there are more arguments than format specifiers, the
281
+ * extra arguments are ignored. The maximum number of arguments is
282
+ * limited by the maximum dimension of a Java array as defined by
283
+ * <cite>The Java Virtual Machine Specification</cite>.
284
+ *
285
+ * @throws IllegalFormatException
286
+ * If a format string contains an illegal syntax, a format
287
+ * specifier that is incompatible with the given arguments,
288
+ * insufficient arguments given the format string, or other
289
+ * illegal conditions. For specification of all possible
290
+ * formatting errors, see the <a
291
+ * href="../util/Formatter.html#detail">Details</a>
292
+ * section of the formatter class specification.
293
+ *
294
+ * @throws IOError
295
+ * If an I/O error occurs.
296
+ *
297
+ * @return A character array containing the password or passphrase read
298
+ * from the console, not including any line-termination characters,
299
+ * or {@code null} if an end of stream has been reached.
300
+ */
315
301
public char [] readPassword (String fmt , Object ... args ) {
316
- char [] passwd = null ;
317
- synchronized (writeLock ) {
318
- synchronized (readLock ) {
319
- installShutdownHook ();
320
- try {
321
- restoreEcho = echo (false );
322
- } catch (IOException x ) {
323
- throw new IOError (x );
324
- }
325
- IOError ioe = null ;
326
- try {
327
- if (!fmt .isEmpty ())
328
- pw .format (fmt , args );
329
- passwd = readline (true );
330
- } catch (IOException x ) {
331
- ioe = new IOError (x );
332
- } finally {
333
- try {
334
- if (restoreEcho )
335
- restoreEcho = echo (true );
336
- } catch (IOException x ) {
337
- if (ioe == null )
338
- ioe = new IOError (x );
339
- else
340
- ioe .addSuppressed (x );
341
- }
342
- if (ioe != null )
343
- throw ioe ;
344
- }
345
- pw .println ();
346
- }
347
- }
348
- return passwd ;
302
+ throw newUnsupportedOperationException ();
349
303
}
350
304
351
- private void installShutdownHook () {
352
- if (shutdownHookInstalled )
353
- return ;
354
- try {
355
- // Add a shutdown hook to restore console's echo state should
356
- // it be necessary.
357
- SharedSecrets .getJavaLangAccess ()
358
- .registerShutdownHook (0 /* shutdown hook invocation order */ ,
359
- false /* only register if shutdown is not in progress */ ,
360
- new Runnable () {
361
- public void run () {
362
- try {
363
- if (restoreEcho ) {
364
- echo (true );
365
- }
366
- } catch (IOException x ) { }
367
- }
368
- });
369
- } catch (IllegalStateException e ) {
370
- // shutdown is already in progress and readPassword is first used
371
- // by a shutdown hook
372
- }
373
- shutdownHookInstalled = true ;
374
- }
375
-
376
- /**
377
- * Reads a password or passphrase from the console with echoing disabled
378
- *
379
- * @throws IOError
380
- * If an I/O error occurs.
381
- *
382
- * @return A character array containing the password or passphrase read
383
- * from the console, not including any line-termination characters,
384
- * or {@code null} if an end of stream has been reached.
385
- */
305
+ /**
306
+ * Reads a password or passphrase from the console with echoing disabled
307
+ *
308
+ * @throws IOError
309
+ * If an I/O error occurs.
310
+ *
311
+ * @return A character array containing the password or passphrase read
312
+ * from the console, not including any line-termination characters,
313
+ * or {@code null} if an end of stream has been reached.
314
+ */
386
315
public char [] readPassword () {
387
- return readPassword ( "" );
316
+ throw newUnsupportedOperationException ( );
388
317
}
389
318
390
319
/**
391
320
* Flushes the console and forces any buffered output to be written
392
321
* immediately .
393
322
*/
394
323
public void flush () {
395
- pw . flush ();
324
+ throw newUnsupportedOperationException ();
396
325
}
397
326
398
-
399
327
/**
400
328
* Returns the {@link java.nio.charset.Charset Charset} object used for
401
329
* the {@code Console}.
@@ -410,171 +338,16 @@ public void flush() {
410
338
* @since 17
411
339
*/
412
340
public Charset charset () {
413
- assert CHARSET != null : "charset() should not return null" ;
414
- return CHARSET ;
341
+ throw newUnsupportedOperationException ();
415
342
}
416
343
417
- private Object readLock ;
418
- private Object writeLock ;
419
- private Reader reader ;
420
- private Writer out ;
421
- private PrintWriter pw ;
422
- private Formatter formatter ;
423
- private char [] rcb ;
424
- private boolean restoreEcho ;
425
- private boolean shutdownHookInstalled ;
426
- private static native String encoding ();
427
- /*
428
- * Sets the console echo status to {@code on} and returns the previous
429
- * console on/off status.
430
- * @param on the echo status to set to. {@code true} for echo on and
431
- * {@code false} for echo off
432
- * @return true if the previous console echo status is on
433
- */
434
- private static native boolean echo (boolean on ) throws IOException ;
435
-
436
- private char [] readline (boolean zeroOut ) throws IOException {
437
- int len = reader .read (rcb , 0 , rcb .length );
438
- if (len < 0 )
439
- return null ; //EOL
440
- if (rcb [len -1 ] == '\r' )
441
- len --; //remove CR at end;
442
- else if (rcb [len -1 ] == '\n' ) {
443
- len --; //remove LF at end;
444
- if (len > 0 && rcb [len -1 ] == '\r' )
445
- len --; //remove the CR, if there is one
446
- }
447
- char [] b = new char [len ];
448
- if (len > 0 ) {
449
- System .arraycopy (rcb , 0 , b , 0 , len );
450
- if (zeroOut ) {
451
- Arrays .fill (rcb , 0 , len , ' ' );
452
- }
453
- }
454
- return b ;
455
- }
456
-
457
- private char [] grow () {
458
- assert Thread .holdsLock (readLock );
459
- char [] t = new char [rcb .length * 2 ];
460
- System .arraycopy (rcb , 0 , t , 0 , rcb .length );
461
- rcb = t ;
462
- return rcb ;
463
- }
464
-
465
- class LineReader extends Reader {
466
- private Reader in ;
467
- private char [] cb ;
468
- private int nChars , nextChar ;
469
- boolean leftoverLF ;
470
- LineReader (Reader in ) {
471
- this .in = in ;
472
- cb = new char [1024 ];
473
- nextChar = nChars = 0 ;
474
- leftoverLF = false ;
475
- }
476
- public void close () {}
477
- public boolean ready () throws IOException {
478
- //in.ready synchronizes on readLock already
479
- return in .ready ();
480
- }
481
-
482
- public int read (char [] cbuf , int offset , int length )
483
- throws IOException
484
- {
485
- int off = offset ;
486
- int end = offset + length ;
487
- if (offset < 0 || offset > cbuf .length || length < 0 ||
488
- end < 0 || end > cbuf .length ) {
489
- throw new IndexOutOfBoundsException ();
490
- }
491
- synchronized (readLock ) {
492
- boolean eof = false ;
493
- char c = 0 ;
494
- for (;;) {
495
- if (nextChar >= nChars ) { //fill
496
- int n = 0 ;
497
- do {
498
- n = in .read (cb , 0 , cb .length );
499
- } while (n == 0 );
500
- if (n > 0 ) {
501
- nChars = n ;
502
- nextChar = 0 ;
503
- if (n < cb .length &&
504
- cb [n -1 ] != '\n' && cb [n -1 ] != '\r' ) {
505
- /*
506
- * we're in canonical mode so each "fill" should
507
- * come back with an eol. if there no lf or nl at
508
- * the end of returned bytes we reached an eof.
509
- */
510
- eof = true ;
511
- }
512
- } else { /*EOF*/
513
- if (off - offset == 0 )
514
- return -1 ;
515
- return off - offset ;
516
- }
517
- }
518
- if (leftoverLF && cbuf == rcb && cb [nextChar ] == '\n' ) {
519
- /*
520
- * if invoked by our readline, skip the leftover, otherwise
521
- * return the LF.
522
- */
523
- nextChar ++;
524
- }
525
- leftoverLF = false ;
526
- while (nextChar < nChars ) {
527
- c = cbuf [off ++] = cb [nextChar ];
528
- cb [nextChar ++] = 0 ;
529
- if (c == '\n' ) {
530
- return off - offset ;
531
- } else if (c == '\r' ) {
532
- if (off == end ) {
533
- /* no space left even the next is LF, so return
534
- * whatever we have if the invoker is not our
535
- * readLine()
536
- */
537
- if (cbuf == rcb ) {
538
- cbuf = grow ();
539
- end = cbuf .length ;
540
- } else {
541
- leftoverLF = true ;
542
- return off - offset ;
543
- }
544
- }
545
- if (nextChar == nChars && in .ready ()) {
546
- /*
547
- * we have a CR and we reached the end of
548
- * the read in buffer, fill to make sure we
549
- * don't miss a LF, if there is one, it's possible
550
- * that it got cut off during last round reading
551
- * simply because the read in buffer was full.
552
- */
553
- nChars = in .read (cb , 0 , cb .length );
554
- nextChar = 0 ;
555
- }
556
- if (nextChar < nChars && cb [nextChar ] == '\n' ) {
557
- cbuf [off ++] = '\n' ;
558
- nextChar ++;
559
- }
560
- return off - offset ;
561
- } else if (off == end ) {
562
- if (cbuf == rcb ) {
563
- cbuf = grow ();
564
- end = cbuf .length ;
565
- } else {
566
- return off - offset ;
567
- }
568
- }
569
- }
570
- if (eof )
571
- return off - offset ;
572
- }
573
- }
574
- }
344
+ private static UnsupportedOperationException newUnsupportedOperationException () {
345
+ return new UnsupportedOperationException (
346
+ "Console class itself does not provide implementation" );
575
347
}
576
348
577
- private static final Charset CHARSET ;
349
+ private static native String encoding ();
350
+ static final Charset CHARSET ;
578
351
static {
579
352
Charset cs = null ;
580
353
boolean istty = istty ();
@@ -619,31 +392,15 @@ private static Console instantiateConsole(boolean istty) {
619
392
.filter (Objects ::nonNull )
620
393
.findAny ()
621
394
.map (jc -> (Console ) new ProxyingConsole (jc ))
622
- .orElse (istty ? new Console () : null );
395
+ .orElse (istty ? new ConsoleImpl () : null );
623
396
};
624
397
return AccessController .doPrivileged (pa );
625
398
} catch (ServiceConfigurationError ignore ) {
626
399
// default to built-in Console
627
- return istty ? new Console () : null ;
400
+ return istty ? new ConsoleImpl () : null ;
628
401
}
629
402
}
630
403
631
404
private static final Console cons ;
632
405
private static native boolean istty ();
633
-
634
- Console () {
635
- readLock = new Object ();
636
- writeLock = new Object ();
637
- out = StreamEncoder .forOutputStreamWriter (
638
- new FileOutputStream (FileDescriptor .out ),
639
- writeLock ,
640
- CHARSET );
641
- pw = new PrintWriter (out , true ) { public void close () {} };
642
- formatter = new Formatter (out );
643
- reader = new LineReader (StreamDecoder .forInputStreamReader (
644
- new FileInputStream (FileDescriptor .in ),
645
- readLock ,
646
- CHARSET ));
647
- rcb = new char [1024 ];
648
- }
649
406
}
0 commit comments