com.jidesoft.utils.ThreadCheckingRepaintManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)ThreadCheckingRepaintManager.java 4/18/2006
*
* Copyright 2002 - 2006 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.utils;
import javax.swing.*;
import java.awt.*;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
/**
* For usage of this class, please refer to http://weblogs.java.net/blog/alexfromsun/archive/2006/02/debugging_swing.html
*/
public class ThreadCheckingRepaintManager extends RepaintManager {
private int tabCount = 0;
private boolean checkIsShowing = false;
public ThreadCheckingRepaintManager() {
super();
}
public ThreadCheckingRepaintManager(boolean checkIsShowing) {
super();
this.checkIsShowing = checkIsShowing;
}
@Override
public synchronized void addInvalidComponent(JComponent jComponent) {
checkThread(jComponent);
super.addInvalidComponent(jComponent);
}
private void checkThread(JComponent c) {
if (!SwingUtilities.isEventDispatchThread() && checkIsShowing(c)) {
System.out.println("----------Wrong Thread START");
System.out.println(getStracktraceAsString(new Exception()));
dumpComponentTree(c);
System.out.println("----------Wrong Thread END");
}
}
private String getStracktraceAsString(Exception e) {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
PrintStream printStream = new PrintStream(byteArrayOutputStream);
e.printStackTrace(printStream);
printStream.flush();
return byteArrayOutputStream.toString();
}
private boolean checkIsShowing(JComponent c) {
if (this.checkIsShowing == false) {
return true;
}
else {
return c.isShowing();
}
}
@Override
public synchronized void addDirtyRegion(JComponent jComponent, int i, int i1, int i2, int i3) {
checkThread(jComponent);
super.addDirtyRegion(jComponent, i, i1, i2, i3);
}
private void dumpComponentTree(Component c) {
System.out.println("----------Component Tree");
resetTabCount();
for (; c != null; c = c.getParent()) {
printTabIndent();
System.out.println(c);
printTabIndent();
System.out.println("Showing:" + c.isShowing() + " Visible: " + c.isVisible());
incrementTabCount();
}
}
private void resetTabCount() {
this.tabCount = 0;
}
private void incrementTabCount() {
this.tabCount++;
}
private void printTabIndent() {
for (int i = 0; i < this.tabCount; i++) {
System.out.print("\t");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy