[icedtea-web] RFC: find jars based on Class-Path entry in manifest

Omair Majid omajid at redhat.com
Wed Apr 20 12:09:41 PDT 2011


On 04/20/2011 02:45 PM, Deepak Bhole wrote:
> * Omair Majid<omajid at redhat.com>  [2011-04-15 12:28]:
>> Updated patch attached.
>>
>
> I'll let Andrew reply to his concerns. I have only one concern (below):
>
>> -
>> -                            try {
>> -                                u = tracker.getCacheURL(remoteURL);
>> +                                addNewJar(desc);
>>                               } catch (Exception e) {
>>                                   throw new ClassNotFoundException(name);
>>                               }
>> -
>
> We are catching any exception and re-throwing a CNFE. However exceptions
> could occur due to something like a file mentioned in the jarindex not
> existing on the server. This may not necessarily be fatal to the app
> (the class may exist in the next jar specified in the index). The CNFE
> will however make it fatal..
>

That's what I thought when I was going over this code - but that's how 
the old code was written. You can see that the new section that handles 
classpaths does not throw CNFE - it just logs the exception and continues.

FWIW, addNewJar() and getCacheURL() do not throw any checked exceptions. 
I believe this is more of a safety net than anything else. Do you want 
me to update this code to just log the exception?

On a slightly different note, this code needs to be moved to the 
findResource(s) methods. As it is, searching for anything other than 
classes will not use Class-Path jars or the JarIndexes.

Thanks,
Omair



More information about the distro-pkg-dev mailing list