Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #4593

Re: Synchronization when collecting data from the EDT?

From Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid>
Newsgroups comp.lang.java.gui
Subject Re: Synchronization when collecting data from the EDT?
Date 2011-06-10 01:17 +0200
Organization A noiseless patient Spider
Message-ID <isrk9n$f4l$1@dont-email.me> (permalink)
References (5 earlier) <nospam-7A4754.23033306062011@news.aioe.org> <islktt$kt1$1@dont-email.me> <nospam-1E20CE.13382907062011@news.aioe.org> <ism7lg$ku1$1@dont-email.me> <nospam-7E1CB5.23515607062011@news.aioe.org>

Show all headers | View raw


On 08/06/2011 05:51, John B. Matthews allegedly wrote:
> Yes, I'm arguing that invokeAndWait() alone is sufficient, but I'd 
> welcome an alternative using java.util.concurrent.

John, markspace, thanks for shedding some light. One remark though,
John, the JLS section you quoted pertains to final fields. In your
example, the LinkedList wasn't a field.

I believe the following section of the java.util.concurrent package doc
you referred to, to wit "Memory Consistency Properties", encompasses the
point you've been arguing around:
 "An unlock (synchronized block or method exit) of a monitor
happens-before every subsequent lock (synchronized block or method
entry) of that same monitor. And because the happens-before relation is
transitive, all actions of a thread prior to unlocking happen-before all
actions subsequent to any thread locking that monitor."

I believe this means that the grabbing, off the EDT, of data produced in
a Runnable passed to #invokeAndWait() will work if, and only if, after
the Runnable is executed, the EDT locks on the same monitor that the
thread calling #invokeAndWait() is waiting on. And I suppose the problem
is that while the code does it this way, the API doesn't specify it (or
does it?). At the same time, I'm having a hard time trying to imagine
how that could possibly *not* be the case. Anyone willing to give it a go?

-.-

As for an alternative, I would humbly submit the following:

static <V> V invokeAndWait( final Callable<V> callable )
    throws InterruptedException
{
    final Exchanger<V> x = new Exchanger<V>();
    EventQueue.invokeLater(
        new Runnable(){ @Override public void run() {
            try {
                x.exchange( callable.call() );
            }
            catch (InterruptedException iex ){
                Thread.currentThread().interrupt();
            }
            catch ( Exception e ){
                //exception in the callable. Blow shit up.
                throw new RuntimeException(e);
            }
        }}
    );

    return x.exchange( null );
}

static void invokeAndWait( final Runnable ron, long timeout, TimeUnit unit )
    throws InterruptedException
{
    final CountDownLatch l = new CountDownLatch(1);
    EventQueue.invokeLater(
        new Runnable(){ @Override public void run() {
            ron.run();
            l.countDown();
        }}
    );

    l.await( timeout, unit );
}

Back to comp.lang.java.gui | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-04 17:38 -0700
  Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-04 17:50 -0700
  Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-05 17:52 +0200
    Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-05 10:47 -0700
      Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-05 23:47 -0400
        Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-05 22:11 -0700
          Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-06 14:31 +0200
          Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-06 23:03 -0400
            Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-07 18:51 +0200
              Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-07 13:38 -0400
                Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-08 00:10 +0200
                Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-07 23:51 -0400
                Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-10 01:17 +0200
                Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-10 01:25 +0200
                Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-09 22:34 -0400
                Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-10 05:22 +0200
                Re: Synchronization when collecting data from the EDT? markspace <-@.> - 2011-06-10 08:04 -0700
                Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-10 21:13 -0400
                Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-12 12:51 -0700
                Re: Synchronization when collecting data from the EDT? markspace <-@.> - 2011-06-07 23:31 -0700
                Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-08 23:07 -0700
                Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-09 18:35 -0400
                Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-12 12:45 -0700
            Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-08 23:05 -0700
              Re: Synchronization when collecting data from the EDT? "John B. Matthews" <nospam@nospam.invalid> - 2011-06-09 14:35 -0400
  Re: Synchronization when collecting data from the EDT? Roedy Green <see_website@mindprod.com.invalid> - 2011-06-05 13:39 -0700
    Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-05 22:17 -0700
      Re: Synchronization when collecting data from the EDT? markspace <-@.> - 2011-06-07 14:51 -0700
  Re: Synchronization when collecting data from the EDT? markspace <-@.> - 2011-06-05 17:46 -0700
    Re: Synchronization when collecting data from the EDT? Knute Johnson <nospam@knutejohnson.com> - 2011-06-05 22:41 -0700
      Re: Synchronization when collecting data from the EDT? Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-06 14:35 +0200

csiph-web