blob: 24601fb1bd672a95cefd77064ed89ebe1ad4406f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.jdi.tests;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
/**
* A null console reader that continuously reads from the VM input stream
* so that the VM doesn't block when the program writes to the stout.
*/
public class NullConsoleReader extends AbstractReader {
private InputStream fInput;
/**
* Constructor
* @param name
* @param input
*/
public NullConsoleReader(String name, InputStream input) {
super(name);
fInput = input;
}
/**
* Continuously reads events that are coming from the event queue.
*/
@Override
protected void readerLoop() {
java.io.BufferedReader input =
new BufferedReader(new InputStreamReader(fInput));
try {
int read = 0;
while (!fIsStopping && read != -1) {
read = input.read();
}
} catch (IOException e) {
}
}
}