blob: 7fec5ca4acef047ed81c83177b771a90ef405103 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 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.help.internal.browser;
import java.io.*;
import org.eclipse.help.internal.base.*;
/**
* Used to receive output from processes
*/
public class StreamConsumer extends Thread {
BufferedReader bReader;
private String lastLine;
public StreamConsumer(InputStream inputStream) {
super();
setDaemon(true);
bReader = new BufferedReader(new InputStreamReader(inputStream));
}
@Override
public void run() {
try {
String line;
while (null != (line = bReader.readLine())) {
lastLine = line;
BrowserLog.log(line);
}
bReader.close();
} catch (IOException ioe) {
HelpBasePlugin.logError(
"Exception occurred reading from web browser.", ioe); //$NON-NLS-1$
}
}
/**
* @return last line obtained or null
*/
public String getLastLine() {
return lastLine;
}
}