[RFC][plugin]: fix concurrency problems in PAV.java
Deepak Bhole
dbhole at redhat.com
Tue Apr 12 10:13:14 PDT 2011
* Andrew Su <asu at redhat.com> [2011-04-12 12:50]:
>
>
> ----- Original Message -----
> > Hi.
> >
> > I found a few problems in PluginAppletViewer.java.
> > We were modifying/reading from two static hash maps
> > concurrently. The hash maps were "applets" and "status".
> > status was only modified in a synchronized method,
> > but we were reading from it outside of that method and
> > that's unsafe.
> >
> > As far as I can tell, there are no group of operations
> > that need to happen atomically, so using ConcurrentHashMaps
> > should be enough.
> >
> > I've also done a bit of refactoring (removing dead code,
> > adding some SuppressWarnings annotations, making members
> > private, etc).
> >
> > Any criticism is appreciated.
> >
>
> Hi Denis,
>
> I think the clean-up should go in its own patch.
>
Doh. Planned to write this at the very end and I forgot :/ ... yes,
please split cleanup and concurrency fixes into separate patches.
Cheers,
Deepak
> Seems like an extra space @
>
> @@ -1645,7 +1587,8 @@
>
> new Thread(new Runnable()
> {
> - public void run()
> + @SuppressWarnings("deprecation")
> + public void run()
> {
> ClassLoader cl = p.applet.getClass().getClassLoader();
>
> Cheers,
> Andrew
>
More information about the distro-pkg-dev
mailing list