blob: a05099ac9f33e7087dd900e16cf5e94bb3fd0db9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.tests.ui.testplugin;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.debug.ui.console.IConsole;
import org.eclipse.debug.ui.console.IConsoleLineTrackerExtension;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
/**
* Simple console line tracker extension point that collects the lines appended to the console.
*/
public class ConsoleLineTracker implements IConsoleLineTrackerExtension {
private static IConsole console;
private static List<IRegion> lines = new ArrayList<IRegion>();
private static boolean consoleClosed = true;
/**
* @see org.eclipse.debug.ui.console.IConsoleLineTracker#dispose()
*/
@Override
public void dispose() {
// do nothing
}
/**
* @see org.eclipse.debug.ui.console.IConsoleLineTracker#init(org.eclipse.debug.ui.console.IConsole)
*/
@Override
public void init(IConsole c) {
synchronized (lines) {
ConsoleLineTracker.console = c;
lines = new ArrayList<IRegion>();
consoleClosed = false;
}
}
/**
* @see org.eclipse.debug.ui.console.IConsoleLineTracker#lineAppended(org.eclipse.jface.text.IRegion)
*/
@Override
public void lineAppended(IRegion line) {
lines.add(line);
}
public static int getNumberOfMessages() {
return lines.size();
}
public static String getMessage(int index) {
if (index < lines.size()) {
IRegion lineRegion = lines.get(index);
try {
return console.getDocument().get(lineRegion.getOffset(), lineRegion.getLength());
}
catch (BadLocationException e) {
return null;
}
}
return null;
}
public static List<String> getAllMessages() {
List<String> all = new ArrayList<String>(lines.size());
for (int i = 0; i < lines.size(); i++) {
IRegion lineRegion = lines.get(i);
try {
all.add(console.getDocument().get(lineRegion.getOffset(), lineRegion.getLength()));
}
catch (BadLocationException e) {
continue;
}
}
return all;
}
public static IDocument getDocument() {
return console.getDocument();
}
public static void waitForConsole() {
synchronized (lines) {
if (consoleClosed) {
return;
}
try {
lines.wait(20000);
}
catch (InterruptedException ie) {
// do nothing
}
}
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.ui.console.IConsoleLineTrackerExtension#consoleClosed()
*/
@Override
public void consoleClosed() {
synchronized (lines) {
consoleClosed = true;
lines.notifyAll();
}
}
public static boolean isClosed() {
synchronized (lines) {
return consoleClosed;
}
}
}