JDK-8158072 : Need a test for JDK-7172749
  • Type: Bug
  • Component: client-libs
  • Sub-Component: 2d
  • Affected Version: 9
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2016-05-27
  • Updated: 2016-10-13
  • Resolved: 2016-05-30
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 8 JDK 9
8u112Fixed 9 b124Fixed
Related Reports
Relates :  
Description
After some investigation of the problem I was able to create a test for the JDK-7172749.

To reproduce the bug the next sequence is necessary:
Thread A
 - create the surface
 - SG2D is created for the surface
 - SG2D.drawLine is called
 - XRRenderer(Pipe).drawLine is called
 - ========= STOP "THREAD A" for a nanoseconds=========

Thread B
 - SG2D is created for the surface create in Thread A
 - SG2D.drawLine is called or any other draw operations.
 - The surface is flushed.

Thread A
 -  ========= RUN "THREAD A" again=========
 - (we still inside XRRenderer(Pipe).drawLine)
 - SG2D.getCompClip() is called, and this caused revalidation of SG2D, because it was already flushed. This means that the surface/pipes etc are changed, but note we still in the old XRRenderer(PixelDrawPipe) which actually should be disposed as well
 - we try to use the new surface and got ClassCastException.
 - After the fix we will start to draw the line again from "SG2D.drawLine" above, using new surface and the new PixelDrawPipe.

The interesting thing is how we will work if revalidation will replace the surface to the same type(so ClassCastException will not occurred) but the pipe will be changed to the new? I cannot prove it but it seems that we will draw something to the new surface using the old PixelDrawPipe. (But this is only for the record if someone will work on this/or similar issues).

And the test which reproduce the bug.

Bug: https://bugs.openjdk.java.net/browse/JDK-8158072
Webrev can be found at: http://cr.openjdk.java.net/~serb/8158072/webrev.00