AWTEvent和EventQueue

时间:2012-10-01 20:17:08

标签: java swing awt eventqueue

我有一个外部设备,一次向我发送1个字符的数据。我正在将它写入JTextPane上的StyledDocument。这个数据是在一个不是AWT线程的线程上发送给我的,因此我需要创建AWTEvents并将它们推送到EventQueue,以便AWT处理写入,这样我就不会得到异常。

我现在有一个有趣的问题......

我的文字向后打印到文档。

这显然是因为我在收到它们时一次将字符推送到事件队列1。首先突然显示最后一次推送队列。我想尝试一种方法,我可以在添加新的或类似的东西之前触发事件,以便我可以按顺序触发事件。

http://www.kauss.org/Stephan/swing/index.html是我用来创建事件的例子。

private class RUMAddTextEvent extends AWTEvent {

    public static final int EVENT_ID = AWTEvent.RESERVED_ID_MAX + 1;
    private int index;
    private String str;
    private AttributeSet as;

    public RUMAddTextEvent(Component target, int index, String str, AttributeSet as) {
        super(target, EVENT_ID);
        this.index = index;
        this.str = str;
        this.as = as;
    }

    public int getIndex() {
        return index;
    }

    public String getStr() {
        return str;
    }

    public AttributeSet getAs() {
        return as;
    }
}

private class RUMRemoveTextEvent extends AWTEvent {

    public static final int EVENT_ID = AWTEvent.RESERVED_ID_MAX + 1;
    int index;
    int size;

    RUMRemoveTextEvent(Component target, int index, int size) {
        super(target, EVENT_ID);
        this.index = index;
        this.size = size;
    }

    public int getIndex() {
        return index;
    }

    public int getSize() {
        return size;
    }
}

/**
 * Prints a character at a time to the RUMComm window.
 *
 * @param c
 */
public void simpleOut(Character c) {
    cursor.x++;
    if (lines.isEmpty()) {
        this.lines.add(c.toString());
    } else {
        this.lines.add(cursor.y, this.lines.get(cursor.y).concat(c.toString()));
        this.lines.remove(cursor.y + 1);

    }

    try {
        //doc.insertString(doc.getLength(), c.toString(), as);

        eventQueue = Toolkit.getDefaultToolkit().getSystemEventQueue();
        eventQueue.postEvent(new RUMAddTextEvent(this, doc.getLength(), c.toString(), as));
        getCaret().setDot(doc.getLength());
    } catch (Exception ex) {
        //Exceptions.printStackTrace(ex);
    }
}

/**
 * Creates a new line
 */
public void newLine() {
    cursor.y++;
    cursor.x = 0;
    this.lines.add("");

    //doc.insertString(doc.getLength(), "\n", null);
    eventQueue = Toolkit.getDefaultToolkit().getSystemEventQueue();
    eventQueue.postEvent(new RUMAddTextEvent(this, doc.getLength(), "\n", null));
    getCaret().setDot(doc.getLength());

}

/**
 * Backspace implementation.
 *
 */
public void deleteLast() {
    int endPos = doc.getLength();
    //doc.remove(endPos - 1, 1);
    eventQueue = Toolkit.getDefaultToolkit().getSystemEventQueue();
    eventQueue.postEvent(new RUMRemoveTextEvent(this, endPos - 1, 1));
    cursor.x--;

}

 @Override
protected void processEvent(AWTEvent awte) {
    //super.processEvent(awte);
    if (awte instanceof RUMAddTextEvent) {
        RUMAddTextEvent ev = (RUMAddTextEvent) awte;
        try {
            doc.insertString(ev.getIndex(), ev.getStr(), ev.getAs());
        } catch (BadLocationException ex) {
            Exceptions.printStackTrace(ex);
        }
    } else if (awte instanceof RUMRemoveTextEvent) {
        RUMRemoveTextEvent ev = (RUMRemoveTextEvent) awte;
        try {
            doc.remove(ev.getIndex(), ev.getSize());
        } catch (BadLocationException ex) {
            Exceptions.printStackTrace(ex);
        }

    } else {
        super.processEvent(awte);
    }
}

4 个答案:

答案 0 :(得分:2)

我只能鼓励那些试图处理Swing线程规则的人。但是,尽管您努力创建事件并将其推送到EventQueue,您仍然可以访问后台Thread上的Swing组件,并调用文档的长度和更改插入位置。 / p>

扩展文本组件以便在其上设置文本对我来说看起来有点过分,当然也不是解决此问题的最佳方法。我个人会让背景Thread填充一个缓冲区并偶尔将该缓冲区刷新到文本文档中(例如,在每个新行,每秒两次使用Timer,每次我达到1000个字符,... )。对于更新,我只需使用SwingUtilities.invokeLater

一些示例代码来说明这一点,从我的旧项目中检索。它不会编译,但它说明了我的观点。该类将String附加到应在EDT上访问的ISwingLogger。请注意使用javax.swing.Timer在EDT上定期更新。

import javax.swing.Timer;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

public class SwingOutputStream extends ByteArrayOutputStream{
  private final ISwingLogger fSwingLogger;

  private Timer fTimer;
  private final StringBuilder fBuffer = new StringBuilder( 1000 );

  public SwingOutputStream( ISwingLogger aSwingLogger ) {
    fSwingLogger = aSwingLogger;

    fTimer = new Timer( 200, new ActionListener() {
      public void actionPerformed( ActionEvent aActionEvent ) {
        flushBuffer();
      }
    } );
    fTimer.setRepeats( false );
  }

  @Override
  public void flush() throws IOException {
    synchronized( fBuffer ){
      fBuffer.append( toString( "UTF-8") );
    }
    if ( fTimer.isRunning() ){
      fTimer.restart();
    } else {
      fTimer.start();
    }

    super.flush();
    reset();
  }

  private void flushBuffer(){
    synchronized ( fBuffer ){
      final String output = fBuffer.toString();
      fSwingLogger.appendString( output );
      fBuffer.setLength( 0 );
    }
  }
}

答案 1 :(得分:1)

您的实际问题不在于事件是按顺序处理的,而是您正在创建具有即将过期信息的事件:

new RUMAddTextEvent(this, doc.getLength(), ...

提交事件时,文档的长度可能为0,但在处理事件时可能不是这样。您可以通过使用AppendTextEvent而不是指定索引来解决这个问题,但是如果您也有基于位置的插入,那么您将不得不考虑这些。

整批的另一种选择是使用无效模型:​​

// in data thread
void receiveData(String newData) {
    updateModelText(newData);
    invalidateUI();
    invokeLater(validateUI);
}

// called in UI thread
void validateUI() {
    if (!valid) {
        ui.text = model.text;
    }
    valid = true;
}

答案 2 :(得分:1)

恕我直言,你已经采取了本来应该很简单的事情,并使它变得更加复杂然后需要(顺便说一句,我是这方面的真正主人;)

在不知道确切问题的情况下,很难达到100%,但这个小例子演示了如何使用SwingUtilities.invokeLater/invokeAndWait

解决同样的问题
public class EventTest {

    public static void main(String[] args) {

        JFrame frame = new JFrame();
        frame.setLayout(new BorderLayout());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        JTextArea area = new JTextArea();
        frame.add(new JScrollPane(area));
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);

        Thread thread = new Thread(new Dispatcher(area));
        thread.setDaemon(true);
        thread.start();

    }

    public static class Dispatcher implements Runnable {

        private String message = "Hello from the other side\n\nCan you read this\n\nAll done now";
        private JTextArea area;

        public Dispatcher(JTextArea area) {
            this.area = area;
        }

        @Override
        public void run() {

            int index = 0;
            while (index < message.length()) {

                try {
                    Thread.sleep(250);
                } catch (InterruptedException ex) {
                }

                send(message.charAt(index));
                index++;

            }

        }

        public void send(final char text) {

            System.out.println("Hello from out side the EDT - " + EventQueue.isDispatchThread());

            try {
                SwingUtilities.invokeAndWait(new Runnable() {
                    @Override
                    public void run() {
                        System.out.println("Hello from the EDT - " + EventQueue.isDispatchThread());
                        area.append(new String(new char[]{text}));
                    }
                });
            } catch (Exception exp) {
                exp.printStackTrace();
            }

        }

    }

}

在你的情况下,我可能会创建一系列能够处理你想要进行的更新的runnable。

例如,我可以创建一个InsertRunnableDeleteRunnable(来自您的示例代码),可以在当前位置插入字符串或从当前插入符号位置删除字符串/字符。< / p>

对于这些,我会传递所需的信息,让他们照顾其余的信息。

答案 3 :(得分:0)

  

......因为我收到了他们。显然,队列显然最后一次被弹出。我试图......

这里有一些概念上的错误。队列是 FIFO ,意味着首先推出的是第一个被推入的队列。一个堆栈,将 LIFO ,意味着最后一次推入就会弹出。我相信这是你的问题所在。