Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/CVSOutputConsole.java56
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/ConsoleDocument.java10
2 files changed, 38 insertions, 28 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/CVSOutputConsole.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/CVSOutputConsole.java
index 41b9f1d9b..925c7fbac 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/CVSOutputConsole.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/CVSOutputConsole.java
@@ -49,6 +49,9 @@ public class CVSOutputConsole extends MessageConsole implements IConsoleListener
// format for timings printed to console
private static final DateFormat TIME_FORMAT = new SimpleDateFormat(Policy.bind("Console.resultTimeFormat")); //$NON-NLS-1$
+ // Indicates whether the console is visible in the Console view
+ private boolean visible = false;
+ // Indicates whether the console's streams have been initialized
private boolean initialized = false;
/**
@@ -91,25 +94,6 @@ public class CVSOutputConsole extends MessageConsole implements IConsoleListener
showConsole();
}
- /*
- * Initialize thre streams of the console. Must be
- * called from the UI thread.
- */
- private void initializeStreams() {
- commandStream = newMessageStream();
- errorStream = newMessageStream();
- messageStream = newMessageStream();
- // install colors
- commandColor = createColor(CVSUIPlugin.getStandardDisplay(), ICVSUIConstants.PREF_CONSOLE_COMMAND_COLOR);
- commandStream.setColor(commandColor);
- messageColor = createColor(CVSUIPlugin.getStandardDisplay(), ICVSUIConstants.PREF_CONSOLE_MESSAGE_COLOR);
- messageStream.setColor(messageColor);
- errorColor = createColor(CVSUIPlugin.getStandardDisplay(), ICVSUIConstants.PREF_CONSOLE_ERROR_COLOR);
- errorStream.setColor(errorColor);
- // install font
- setFont(JFaceResources.getFontRegistry().get(ICVSUIConstants.PREF_CONSOLE_FONT));
- }
-
/* (non-Javadoc)
* @see org.eclipse.ui.console.AbstractConsole#init()
*/
@@ -126,9 +110,33 @@ public class CVSOutputConsole extends MessageConsole implements IConsoleListener
});
}
+ /*
+ * Initialize thre streams of the console. Must be
+ * called from the UI thread.
+ */
+ private void initializeStreams() {
+ synchronized(document) {
+ if (!initialized) {
+ commandStream = newMessageStream();
+ errorStream = newMessageStream();
+ messageStream = newMessageStream();
+ // install colors
+ commandColor = createColor(CVSUIPlugin.getStandardDisplay(), ICVSUIConstants.PREF_CONSOLE_COMMAND_COLOR);
+ commandStream.setColor(commandColor);
+ messageColor = createColor(CVSUIPlugin.getStandardDisplay(), ICVSUIConstants.PREF_CONSOLE_MESSAGE_COLOR);
+ messageStream.setColor(messageColor);
+ errorColor = createColor(CVSUIPlugin.getStandardDisplay(), ICVSUIConstants.PREF_CONSOLE_ERROR_COLOR);
+ errorStream.setColor(errorColor);
+ // install font
+ setFont(JFaceResources.getFontRegistry().get(ICVSUIConstants.PREF_CONSOLE_FONT));
+ initialized = true;
+ }
+ }
+ }
+
private void dump() {
synchronized(document) {
- initialized = true;
+ visible = true;
ConsoleDocument.ConsoleLine[] lines = document.getLines();
for (int i = 0; i < lines.length; i++) {
ConsoleDocument.ConsoleLine line = lines[i];
@@ -140,7 +148,7 @@ public class CVSOutputConsole extends MessageConsole implements IConsoleListener
private void appendLine(int type, String line) {
synchronized(document) {
- if(initialized) {
+ if(visible) {
switch(type) {
case ConsoleDocument.COMMAND:
commandStream.println(line);
@@ -161,7 +169,7 @@ public class CVSOutputConsole extends MessageConsole implements IConsoleListener
private void showConsole() {
if(showOnMessage) {
IConsoleManager manager = ConsolePlugin.getDefault().getConsoleManager();
- if(! initialized) {
+ if(! visible) {
manager.addConsoles(new IConsole[] {this});
}
manager.showConsoleView(this);
@@ -178,7 +186,7 @@ public class CVSOutputConsole extends MessageConsole implements IConsoleListener
// Called when console is removed from the console view
synchronized (document) {
- initialized = false;
+ visible = false;
JFaceResources.getFontRegistry().removeListener(this);
}
}
@@ -272,7 +280,7 @@ public class CVSOutputConsole extends MessageConsole implements IConsoleListener
public void propertyChange(PropertyChangeEvent event) {
String property = event.getProperty();
// colors
- if (initialized) {
+ if (visible) {
if (property.equals(ICVSUIConstants.PREF_CONSOLE_COMMAND_COLOR)) {
Color newColor = createColor(CVSUIPlugin.getStandardDisplay(), ICVSUIConstants.PREF_CONSOLE_COMMAND_COLOR);
commandStream.setColor(newColor);
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/ConsoleDocument.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/ConsoleDocument.java
index 8757a30c7..df421d26b 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/ConsoleDocument.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/console/ConsoleDocument.java
@@ -77,10 +77,12 @@ public class ConsoleDocument {
public ConsoleLine[] getLines() {
if(isEmpty()) return new ConsoleLine[0];
ConsoleLine[] docLines = new ConsoleLine[readIndex > writeIndex ? BUFFER_SIZE : writeIndex];
- for (int i = readIndex; i < writeIndex; ) {
- docLines[i] = new ConsoleLine(lines[i], lineTypes[i]);
- if(++i >= BUFFER_SIZE)
- i = 0;
+ int index = readIndex;
+ for (int i = 0; i < docLines.length; i++) {
+ docLines[i] = new ConsoleLine(lines[index], lineTypes[index]);
+ if (++index >= BUFFER_SIZE) {
+ index = 0;
+ }
}
return docLines;
}

Back to the top