/* * RomRaider Open-Source Tuning, Logging and Reflashing * Copyright (C) 2006-2012 RomRaider.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package com.romraider.util; import javax.swing.JComponent; import javax.swing.RepaintManager; import javax.swing.SwingUtilities; import java.awt.Component; import java.io.ByteArrayOutputStream; import java.io.PrintStream; public class ThreadCheckingRepaintManager extends RepaintManager { private int tabCount = 0; private boolean checkIsShowing = false; public ThreadCheckingRepaintManager() { } public ThreadCheckingRepaintManager(boolean checkIsShowing) { this.checkIsShowing = checkIsShowing; } 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) { return !this.checkIsShowing || c.isShowing(); } 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"); } } }