author | vasya |
Mon, 14 Dec 2015 20:18:19 +0100 | |
changeset 34752 | 9c262a013456 |
parent 33362 | 65ec6de1d6b4 |
child 38909 | 80e42e2d475b |
permissions | -rw-r--r-- |
33362 | 1 |
/* |
2 |
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
34752
9c262a013456
8145342: Some copyright notices are inconsistently and ill formatted
vasya
parents:
33362
diff
changeset
|
25 |
|
33362 | 26 |
package jdk.internal.jshell.tool; |
27 |
||
28 |
import java.io.IOException; |
|
29 |
import java.io.InputStream; |
|
30 |
import java.util.function.Consumer; |
|
31 |
||
32 |
public final class StopDetectingInputStream extends InputStream { |
|
33 |
public static final int INITIAL_SIZE = 128; |
|
34 |
||
35 |
private final Runnable stop; |
|
36 |
private final Consumer<Exception> errorHandler; |
|
37 |
||
38 |
private boolean initialized; |
|
39 |
private int[] buffer = new int[INITIAL_SIZE]; |
|
40 |
private int start; |
|
41 |
private int end; |
|
42 |
private State state = State.WAIT; |
|
43 |
||
44 |
public StopDetectingInputStream(Runnable stop, Consumer<Exception> errorHandler) { |
|
45 |
this.stop = stop; |
|
46 |
this.errorHandler = errorHandler; |
|
47 |
} |
|
48 |
||
49 |
public synchronized InputStream setInputStream(InputStream input) { |
|
50 |
if (initialized) |
|
51 |
throw new IllegalStateException("Already initialized."); |
|
52 |
initialized = true; |
|
53 |
||
54 |
Thread reader = new Thread() { |
|
55 |
@Override |
|
56 |
public void run() { |
|
57 |
try { |
|
58 |
int read; |
|
59 |
while (true) { |
|
60 |
//to support external terminal editors, the "cmdin.read" must not run when |
|
61 |
//an external editor is running. At the same time, it needs to run while the |
|
62 |
//user's code is running (so Ctrl-C is detected). Hence waiting here until |
|
63 |
//there is a confirmed need for input. |
|
64 |
waitInputNeeded(); |
|
65 |
if ((read = input.read()) == (-1)) { |
|
66 |
break; |
|
67 |
} |
|
68 |
if (read == 3 && state == StopDetectingInputStream.State.BUFFER) { |
|
69 |
stop.run(); |
|
70 |
} else { |
|
71 |
write(read); |
|
72 |
} |
|
73 |
} |
|
74 |
} catch (IOException ex) { |
|
75 |
errorHandler.accept(ex); |
|
76 |
} finally { |
|
77 |
state = StopDetectingInputStream.State.CLOSED; |
|
78 |
} |
|
79 |
} |
|
80 |
}; |
|
81 |
reader.setDaemon(true); |
|
82 |
reader.start(); |
|
83 |
||
84 |
return this; |
|
85 |
} |
|
86 |
||
87 |
@Override |
|
88 |
public synchronized int read() { |
|
89 |
while (start == end) { |
|
90 |
if (state == State.CLOSED) { |
|
91 |
return -1; |
|
92 |
} |
|
93 |
if (state == State.WAIT) { |
|
94 |
state = State.READ; |
|
95 |
} |
|
96 |
notifyAll(); |
|
97 |
try { |
|
98 |
wait(); |
|
99 |
} catch (InterruptedException ex) { |
|
100 |
//ignore |
|
101 |
} |
|
102 |
} |
|
103 |
try { |
|
104 |
return buffer[start]; |
|
105 |
} finally { |
|
106 |
start = (start + 1) % buffer.length; |
|
107 |
} |
|
108 |
} |
|
109 |
||
110 |
public synchronized void write(int b) { |
|
111 |
if (state != State.BUFFER) { |
|
112 |
state = State.WAIT; |
|
113 |
} |
|
114 |
int newEnd = (end + 1) % buffer.length; |
|
115 |
if (newEnd == start) { |
|
116 |
//overflow: |
|
117 |
int[] newBuffer = new int[buffer.length * 2]; |
|
118 |
int rightPart = (end > start ? end : buffer.length) - start; |
|
119 |
int leftPart = end > start ? 0 : start - 1; |
|
120 |
System.arraycopy(buffer, start, newBuffer, 0, rightPart); |
|
121 |
System.arraycopy(buffer, 0, newBuffer, rightPart, leftPart); |
|
122 |
buffer = newBuffer; |
|
123 |
start = 0; |
|
124 |
end = rightPart + leftPart; |
|
125 |
newEnd = end + 1; |
|
126 |
} |
|
127 |
buffer[end] = b; |
|
128 |
end = newEnd; |
|
129 |
notifyAll(); |
|
130 |
} |
|
131 |
||
132 |
public synchronized void setState(State state) { |
|
133 |
this.state = state; |
|
134 |
notifyAll(); |
|
135 |
} |
|
136 |
||
137 |
private synchronized void waitInputNeeded() { |
|
138 |
while (state == State.WAIT) { |
|
139 |
try { |
|
140 |
wait(); |
|
141 |
} catch (InterruptedException ex) { |
|
142 |
//ignore |
|
143 |
} |
|
144 |
} |
|
145 |
} |
|
146 |
||
147 |
public enum State { |
|
148 |
/* No reading from the input should happen. This is the default state. The StopDetectingInput |
|
149 |
* must be in this state when an external editor is being run, so that the external editor |
|
150 |
* can read from the input. |
|
151 |
*/ |
|
152 |
WAIT, |
|
153 |
/* A single input character should be read. Reading from the StopDetectingInput will move it |
|
154 |
* into this state, and the state will be automatically changed back to WAIT when a single |
|
155 |
* input character is obtained. This state is typically used while the user is editing the |
|
156 |
* input line. |
|
157 |
*/ |
|
158 |
READ, |
|
159 |
/* Continuously read from the input. Forward Ctrl-C ((int) 3) to the "stop" Runnable, buffer |
|
160 |
* all other input. This state is typically used while the user's code is running, to provide |
|
161 |
* the ability to detect Ctrl-C in order to stop the execution. |
|
162 |
*/ |
|
163 |
BUFFER, |
|
164 |
/* The input is closed. |
|
165 |
*/ |
|
166 |
CLOSED |
|
167 |
} |
|
168 |
||
169 |
} |