[rfc] [icedtea-web] Fix EDT hanging on OpenJDK 11

Mario Torre neugens at redhat.com
Mon Oct 1 13:18:12 UTC 2018


On Mon, Oct 1, 2018 at 11:17 AM Jiri Vanek <jvanek at redhat.com> wrote:
>
> ...
> >
> >      >     3. It seems that methods that use "observable" are synchronized.
> >      >     However, the EDT will use "observable" and it's not synchronized. Is
> >      >     this safe?
> >      >
> >      >
> >      > Ok, fixed:
> >      >                 synchronized(observable) {
> >      >                     if (observable.hasChanged() ||
> >      > (Boolean.TRUE.equals(force))) {
> >      >                         observable.notifyObservers(force);
> >      >                     }
> >      >                 }
> >
> >     Right, but I don't think this addresses the issue, one is synchronized
> >     on the observable, the other methods are on the JavaConsole, so we
> >     should probably pick one.
> >
> >
> > Sorry, I did not catch the problem.
> > My fix is very minimal and this patch does not fix synchronization issues already present in ITW.
> > I tested javaws with the console opened and did not notice any problem.
> >
> >
> >     By going through the code though, it seems like we could just ensure
> >     that updateModel() always run in the EDT and remove all other
> >     synchronised keywords from the methods, the only user of this method
> >     which can execute outside the EDT is addMessage, but otherwise all other
> >     consumers are executing in the EDT.
> >
> >
> > Could we postpone this point later as I did not want to rewrite too much the JavaConsole ?
> > You propose to remove all 'synchronized' keywords in JavaConsole, I am pretty sure the
>
> I would strongly advice against removing the synchronizations. The logging bottleneck is lazily
> initiated singleton, and there were many troubles without it. Maybe with plugin gone, the troubles
> will decrease a lot, But i doubt.

Is it? It seems to me that only one method uses this class outside the
EDT, that's why I suggested to wrap it around and forget about it.

Anyway, this is clearly code that needs to be improved later.

Cheers,
Mario
-- 
Mario Torre
Associate Manager, Software Engineering
Red Hat GmbH <https://www.redhat.com>
9704 A60C B4BE A8B8 0F30  9205 5D7E 4952 3F65 7898


More information about the distro-pkg-dev mailing list