blob: 14623be062f22a77d26f29e1cbcb2ff7cffe4217 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.ide.errorTreeView.actions;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.application.ModalityState;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.wm.ToolWindow;
import com.intellij.openapi.wm.ToolWindowId;
import com.intellij.openapi.wm.ToolWindowManager;
import com.intellij.ui.content.Content;
import com.intellij.ui.content.ContentFactory;
import com.intellij.ui.content.MessageView;
import com.intellij.util.ui.ErrorTreeView;
import com.intellij.util.ui.MessageCategory;
import javax.swing.*;
/**
* @author Eugene Zhuravlev
* Date: Nov 13, 2004
*/
@SuppressWarnings({"HardCodedStringLiteral"})
public abstract class TestErrorViewAction extends AnAction{
private static final int MESSAGE_COUNT = 1000;
private long myMillis = 0L;
private int myMessageCount = 0;
public void actionPerformed(AnActionEvent e) {
Project project = CommonDataKeys.PROJECT.getData(e.getDataContext());
if (project == null) {
return;
}
final ErrorTreeView view = createView(project);
openView(project, view.getComponent());
myMillis = 0L;
myMessageCount = 0;
new Thread() {
public void run() {
for (int idx = 0; idx < MESSAGE_COUNT; idx++) {
addMessage(view, new String[] {"This is a warning test message" + idx + " line1", "This is a warning test message" + idx + " line2"}, MessageCategory.WARNING);
}
while (getMessageCount() < MESSAGE_COUNT) {
try {
Thread.sleep(100);
}
catch (InterruptedException e1) {
e1.printStackTrace();
}
}
String statistics = "Duration = " + myMillis;
addMessage(view, new String[] {statistics}, MessageCategory.STATISTICS);
System.out.println(statistics);
while (getMessageCount() < MESSAGE_COUNT + 1) {
try {
Thread.sleep(100);
}
catch (InterruptedException e1) {
e1.printStackTrace();
}
}
System.out.println("Expected " + (MESSAGE_COUNT + 1) + " messages;");
view.dispose();
}
}.start();
}
public synchronized int getMessageCount() {
return myMessageCount;
}
public synchronized void incMessageCount() {
myMessageCount++;
}
private void addMessage(final ErrorTreeView view, final String[] message, final int type) {
ApplicationManager.getApplication().invokeLater(new Runnable() {
public void run() {
final long start = System.currentTimeMillis();
view.addMessage(type, message, null, -1, -1, null);
final long duration = System.currentTimeMillis() - start;
myMillis += duration;
incMessageCount();
}
}, ModalityState.NON_MODAL);
}
protected abstract ErrorTreeView createView(Project project);
protected abstract String getContentName();
protected void openView(Project project, JComponent component) {
final MessageView messageView = MessageView.SERVICE.getInstance(project);
final Content content = ContentFactory.SERVICE.getInstance().createContent(component, getContentName(), true);
messageView.getContentManager().addContent(content);
messageView.getContentManager().setSelectedContent(content);
ToolWindow toolWindow = ToolWindowManager.getInstance(project).getToolWindow(ToolWindowId.MESSAGES_WINDOW);
if (toolWindow != null) {
toolWindow.activate(null);
}
}
}