Fix #107212: Fix file browser thumbnails for images #107231

Closed
Jesse Yurkovich wants to merge 1 commits from deadpin:fix-thumbnails-isa into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.

Change to using the OIIO .valid_file(filepath) API to implement the
is_a_* checks. The existing code to only try parsing 64-bytes doesn't
work in all cases with the .open API. This unfortunately requires a
new is_a_from_file callback to be defined to feed in the filename
because .valid_file does not have an overload for memory proxies.

The .valid_file call should be more efficient than .open as it will
often just check the headers, like we used to do before, rather than
attempt more work as is sometimes the case.

This was missed during development because Blender will cache thumbnails
into a special .thumbnails directory and the images I was using to test
had already been cached there.


The current is_a check fails for thumbnails because they are fed small 64-byte buffers and the usage of OIIO's .open sometimes requires more than that to succeed. Packing is unaffected since the complete memory buffer is provided. Only in the case of thumbnails do we read just a small portion of the file leading to the issue. Unfortunately increasing this buffer to 4096 doesn't fix all files I've tested. I did not try something even larger.

I plan to work on a PR for OIIO to allow .valid_file to take in a memory proxy. If that is accepted we should be able to remove the need to have the is_a_from_file callback.

Change to using the OIIO `.valid_file(filepath)` API to implement the `is_a_*` checks. The existing code to only try parsing 64-bytes doesn't work in all cases with the `.open` API. This unfortunately requires a new `is_a_from_file` callback to be defined to feed in the filename because `.valid_file` does not have an overload for memory proxies. The `.valid_file` call should be more efficient than `.open` as it will often just check the headers, like we used to do before, rather than attempt more work as is sometimes the case. This was missed during development because Blender will cache thumbnails into a special .thumbnails directory and the images I was using to test had already been cached there. ---- The current `is_a` check fails for thumbnails because they are fed small 64-byte buffers and the usage of OIIO's `.open` sometimes requires more than that to succeed. Packing is unaffected since the complete memory buffer is provided. Only in the case of thumbnails do we read just a small portion of the file leading to the issue. Unfortunately increasing this buffer to 4096 doesn't fix all files I've tested. I did not try something even larger. I plan to work on a PR for OIIO to allow `.valid_file` to take in a memory proxy. If that is accepted we should be able to remove the need to have the `is_a_from_file` callback.
Jesse Yurkovich added 1 commit 2023-04-22 03:05:18 +02:00
buildbot/vexp-code-patch-coordinator Build done. Details
8f3f3d131a
Fix 107212: Fix file browser thumbnails for images
Author
Member

@blender-bot build

@blender-bot build
Jesse Yurkovich changed title from WIP: Fix 107212: Fix file browser thumbnails for images to Fix 107212: Fix file browser thumbnails for images 2023-04-22 04:24:01 +02:00
Jesse Yurkovich added this to the Core project 2023-04-22 04:24:59 +02:00
Jesse Yurkovich changed title from Fix 107212: Fix file browser thumbnails for images to Fix #107212: Fix file browser thumbnails for images 2023-04-26 02:13:19 +02:00
Author
Member

After researching some more, there's another, much less invasive, fix that seems to work for the files I have locally:

  • Change the 64 byte buffer to 2048
  • Recreate the very small manual is_a check for TIFF that was present before OIIO

I'd still work towards getting the memory proxy support added for OIIO regardless.

After researching some more, there's another, much less invasive, fix that seems to work for the files I have locally: - Change the 64 byte buffer to 2048 - Recreate the very small manual is_a check for TIFF that was present before OIIO I'd still work towards getting the memory proxy support added for OIIO regardless.
Author
Member

Will redo this change to be smaller and more isolated

Will redo this change to be smaller and more isolated
Jesse Yurkovich closed this pull request 2023-04-27 07:46:48 +02:00
Bastien Montagne removed this from the Core project 2023-07-03 12:46:28 +02:00
All checks were successful
buildbot/vexp-code-patch-coordinator Build done.

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#107231
No description provided.