-
Notifications
You must be signed in to change notification settings - Fork 598
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TIFF: subtle bug -- re-opening forgot about rawcolor hint. #2285
Conversation
@@ -1428,7 +1428,8 @@ TIFFInput::read_native_scanline(int subimage, int miplevel, int y, int z, | |||
ImageSpec dummyspec; | |||
int old_subimage = current_subimage(); | |||
int old_miplevel = current_miplevel(); | |||
if (!close() || !open(m_filename, dummyspec) | |||
close_tif(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given how tricky this was to track down -- at least leave a comment about why you call close_tif
vs. close()
here?
And surely this deserves a unit test? 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, will do...
When scanlines are accessed out of order, to emulate true random access, sometimes we close the file and re-open. But in this one spot, instead of calling close_tif() we called close(), and the difference is that close() also calls init() which resets the options that might have been set by configuration hints -- such as "oiio:RawColor" and "oiio:UnassociatedAlpha". In this case, we may want to close/open the TIFF file itself, but we don't want to "forget" about any configuration hints from the original open call. The circumstances that led to this being symptomatic are obscure and amusing: - Scanline TIFF file with CMYK color space, and opened with a configuration hint "oiio:RawColor" which causes the CMYK values (4 chans) to be preserved rather than it all get auto-converted to RGB and appear to the app as if it were a 3 channel file. - The image was held in an ImageCache-backed ImageBuf. And the IC has the "autotile" feature turned on (so it will try to break it up into tiles in the cache, instead of storing the whole scanline image as a single tile). - An IBA function was running parallelized over multiple threads, and it happened that a thread needing a lower part of the image (high scanline number) made the request for its tile before another thread that needed a tile with lower scanline numbers. This caused the actual reads of the scanlines to not be in proper order, therefore necessitating a close and re-open of the file. - Upon the re-open, it had forgotten that "oiio:RawColor" was set, so even though the app had asked for the pixels to be written into a 2k x 4 chan CMYK buffer, the confused TIFF reader thought it was in the mode where it was emulating a 3 channel RGB file. So it would not only convert to RGB when it should have left it as cmyk, but since the RGB is only 3 channels, the 2048 pixels only filled in the left-most 1536 (that is, 3/4!) of the value slots in each scanline of the app's buffer. - When running valgrind on the app that was reading the image (for unrelated reasons), it was complaining about reading uninitialized memory when it would get to pixel 1536, mystifying everybody. ... And I'm so glad today I work on monster movies and cartoons, and not nuclear power plant control software or life support systems.
If you open an ImageCache-backed ImageBuf, close, then have another ImageBuf opened later with a different set of "config" hints... you may not get expected behaviors. Instead, be sure to invalidate it and add it to the cache in "replace" mode.
Updated with comments, unit test, and a couple more related enhancements I found while constructing the test. (It changed test output, may take me a couple rounds of CI to make sure all the output is updated properly.) |
LGTM! |
…ftwareFoundation#2285) When scanlines are accessed out of order, to emulate true random access, sometimes we close the file and re-open. But in this one spot, instead of calling close_tif() we called close(), and the difference is that close() also calls init() which resets the options that might have been set by configuration hints -- such as "oiio:RawColor" and "oiio:UnassociatedAlpha". In this case, we may want to close/open the TIFF file itself, but we don't want to "forget" about any configuration hints from the original open call. The circumstances that led to this being symptomatic are obscure and amusing: - Scanline TIFF file with CMYK color space, and opened with a configuration hint "oiio:RawColor" which causes the CMYK values (4 chans) to be preserved rather than it all get auto-converted to RGB and appear to the app as if it were a 3 channel file. - The image was held in an ImageCache-backed ImageBuf. And the IC has the "autotile" feature turned on (so it will try to break it up into tiles in the cache, instead of storing the whole scanline image as a single tile). - An IBA function was running parallelized over multiple threads, and it happened that a thread needing a lower part of the image (high scanline number) made the request for its tile before another thread that needed a tile with lower scanline numbers. This caused the actual reads of the scanlines to not be in proper order, therefore necessitating a close and re-open of the file. - Upon the re-open, it had forgotten that "oiio:RawColor" was set, so even though the app had asked for the pixels to be written into a 2k x 4 chan CMYK buffer, the confused TIFF reader thought it was in the mode where it was emulating a 3 channel RGB file. So it would not only convert to RGB when it should have left it as cmyk, but since the RGB is only 3 channels, the 2048 pixels only filled in the left-most 1536 (that is, 3/4!) of the value slots in each scanline of the app's buffer. - When running valgrind on the app that was reading the image (for unrelated reasons), it was complaining about reading uninitialized memory when it would get to pixel 1536, mystifying everybody. ... And I'm so glad today I work on monster movies and cartoons, and not nuclear power plant control software or life support systems. Additional fixes included: * And add a test case * Python ImageBuf: add constructor that takes a configuration hint spec * ImageBuf: when adding file to cache, careful with configuration. If you open an ImageCache-backed ImageBuf, close, then have another ImageBuf opened later with a different set of "config" hints... you may not get expected behaviors. Instead, be sure to invalidate it and add it to the cache in "replace" mode.
…ftwareFoundation#2285) When scanlines are accessed out of order, to emulate true random access, sometimes we close the file and re-open. But in this one spot, instead of calling close_tif() we called close(), and the difference is that close() also calls init() which resets the options that might have been set by configuration hints -- such as "oiio:RawColor" and "oiio:UnassociatedAlpha". In this case, we may want to close/open the TIFF file itself, but we don't want to "forget" about any configuration hints from the original open call. The circumstances that led to this being symptomatic are obscure and amusing: - Scanline TIFF file with CMYK color space, and opened with a configuration hint "oiio:RawColor" which causes the CMYK values (4 chans) to be preserved rather than it all get auto-converted to RGB and appear to the app as if it were a 3 channel file. - The image was held in an ImageCache-backed ImageBuf. And the IC has the "autotile" feature turned on (so it will try to break it up into tiles in the cache, instead of storing the whole scanline image as a single tile). - An IBA function was running parallelized over multiple threads, and it happened that a thread needing a lower part of the image (high scanline number) made the request for its tile before another thread that needed a tile with lower scanline numbers. This caused the actual reads of the scanlines to not be in proper order, therefore necessitating a close and re-open of the file. - Upon the re-open, it had forgotten that "oiio:RawColor" was set, so even though the app had asked for the pixels to be written into a 2k x 4 chan CMYK buffer, the confused TIFF reader thought it was in the mode where it was emulating a 3 channel RGB file. So it would not only convert to RGB when it should have left it as cmyk, but since the RGB is only 3 channels, the 2048 pixels only filled in the left-most 1536 (that is, 3/4!) of the value slots in each scanline of the app's buffer. - When running valgrind on the app that was reading the image (for unrelated reasons), it was complaining about reading uninitialized memory when it would get to pixel 1536, mystifying everybody. ... And I'm so glad today I work on monster movies and cartoons, and not nuclear power plant control software or life support systems. Additional fixes included: * And add a test case * Python ImageBuf: add constructor that takes a configuration hint spec * ImageBuf: when adding file to cache, careful with configuration. If you open an ImageCache-backed ImageBuf, close, then have another ImageBuf opened later with a different set of "config" hints... you may not get expected behaviors. Instead, be sure to invalidate it and add it to the cache in "replace" mode.
…ftwareFoundation#2285) When scanlines are accessed out of order, to emulate true random access, sometimes we close the file and re-open. But in this one spot, instead of calling close_tif() we called close(), and the difference is that close() also calls init() which resets the options that might have been set by configuration hints -- such as "oiio:RawColor" and "oiio:UnassociatedAlpha". In this case, we may want to close/open the TIFF file itself, but we don't want to "forget" about any configuration hints from the original open call. The circumstances that led to this being symptomatic are obscure and amusing: - Scanline TIFF file with CMYK color space, and opened with a configuration hint "oiio:RawColor" which causes the CMYK values (4 chans) to be preserved rather than it all get auto-converted to RGB and appear to the app as if it were a 3 channel file. - The image was held in an ImageCache-backed ImageBuf. And the IC has the "autotile" feature turned on (so it will try to break it up into tiles in the cache, instead of storing the whole scanline image as a single tile). - An IBA function was running parallelized over multiple threads, and it happened that a thread needing a lower part of the image (high scanline number) made the request for its tile before another thread that needed a tile with lower scanline numbers. This caused the actual reads of the scanlines to not be in proper order, therefore necessitating a close and re-open of the file. - Upon the re-open, it had forgotten that "oiio:RawColor" was set, so even though the app had asked for the pixels to be written into a 2k x 4 chan CMYK buffer, the confused TIFF reader thought it was in the mode where it was emulating a 3 channel RGB file. So it would not only convert to RGB when it should have left it as cmyk, but since the RGB is only 3 channels, the 2048 pixels only filled in the left-most 1536 (that is, 3/4!) of the value slots in each scanline of the app's buffer. - When running valgrind on the app that was reading the image (for unrelated reasons), it was complaining about reading uninitialized memory when it would get to pixel 1536, mystifying everybody. ... And I'm so glad today I work on monster movies and cartoons, and not nuclear power plant control software or life support systems. Additional fixes included: * And add a test case * Python ImageBuf: add constructor that takes a configuration hint spec * ImageBuf: when adding file to cache, careful with configuration. If you open an ImageCache-backed ImageBuf, close, then have another ImageBuf opened later with a different set of "config" hints... you may not get expected behaviors. Instead, be sure to invalidate it and add it to the cache in "replace" mode.
When scanlines are accessed out of order, to emulate true random access,
sometimes we close the file and re-open. But in this one spot, instead
of calling close_tif() we called close(), and the difference is that close()
also calls init() which resets the options that might have been set by
configuration hints -- such as "oiio:RawColor" and "oiio:UnassociatedAlpha".
In this case, we may want to close/open the TIFF file itself, but we don't
want to "forget" about any configuration hints from the original open call.
The circumstances that led to this being symptomatic are obscure and amusing:
Scanline TIFF file with CMYK color space, and opened with a
configuration hint "oiio:RawColor" which causes the CMYK values (4
chans) to be preserved rather than it all get auto-converted to RGB
and appear to the app as if it were a 3 channel file.
The image was held in an ImageCache-backed ImageBuf. And the IC has
the "autotile" feature turned on (so it will try to break it up into
tiles in the cache, instead of storing the whole scanline image as a
single tile).
An IBA function was running parallelized over multiple threads, and
it happened that a thread needing a lower part of the image (high
scanline number) made the request for its tile before another thread
that needed a tile with lower scanline numbers. This caused the actual
reads of the scanlines to not be in proper order, therefore necessitating
a close and re-open of the file.
Upon the re-open, it had forgotten that "oiio:RawColor" was set, so
even though the app had asked for the pixels to be written into a 2k
x 4 chan CMYK buffer, the confused TIFF reader thought it was in the
mode where it was emulating a 3 channel RGB file. So it would not
only convert to RGB when it should have left it as cmyk, but since the
RGB is only 3 channels, the 2048 pixels only filled in the left-most
1536 (that is, 3/4!) of the value slots in each scanline of the app's
buffer.
When running valgrind on the app that was reading the image (for
unrelated reasons), it was complaining about reading uninitialized
memory when it would get to pixel 1536, mystifying everybody.
... And I'm so glad today I work on monster movies and cartoons, and not
nuclear power plant control software or life support systems.