Fix #105395: Handle quoted paths better in the OBJ importer #105478

Merged
Jesse Yurkovich merged 1 commits from deadpin/blender:fix105395-objquote into blender-v3.5-release 2023-03-06 06:29:51 +01:00

If the texture image path in the MTL is a "quoted" absolute path, the importer will fail to find the
file. It was only attempting to un-quote the path for the relative case. Now we attempt to un-quote
in all cases.


Before

Cannot load image file: 'T:\New folder\"T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg"'
Cannot load image file: '"T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg"'
Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg'
Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement 03 1k.blend/textures/pavement 03 diff 1k.jpg'
Cannot load image file: 'T:\New folder\pavement_03_diff_1k.jpg"'
OBJ import of 'daz cube text 4.obj' took 24.5 ms

After

Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg'
Loaded image from: 'T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg'
OBJ import of 'daz cube text 4.obj' took 3.2 ms

Question:
Linux/Mac technically allows folder/file names containing literal " quotes. The legacy exporter will write out those quotes
but the legacy importer will not import them correctly.

If a Linux/Mac user zips up such quoted files, as would typically happen when packaging the .obj and accompanying files for distribution, when they are unpacked on Windows the literal " is replaced with _... (just learned this today!)

We could maybe attempt that replacement as well, like we do spaces.

Thoughts on how best to proceed here? We can certainly try more combinations but we're firing in the dark really.

If the texture image path in the MTL is a "quoted" absolute path, the importer will fail to find the file. It was only attempting to un-quote the path for the relative case. Now we attempt to un-quote in all cases. ---- Before ``` Cannot load image file: 'T:\New folder\"T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg"' Cannot load image file: '"T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg"' Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg' Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement 03 1k.blend/textures/pavement 03 diff 1k.jpg' Cannot load image file: 'T:\New folder\pavement_03_diff_1k.jpg"' OBJ import of 'daz cube text 4.obj' took 24.5 ms ``` After ``` Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg' Loaded image from: 'T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg' OBJ import of 'daz cube text 4.obj' took 3.2 ms ``` Question: Linux/Mac technically allows folder/file names containing literal `"` quotes. The legacy exporter will write out those quotes but the legacy importer will not import them correctly. If a Linux/Mac user zips up such quoted files, as would typically happen when packaging the .obj and accompanying files for distribution, when they are unpacked on Windows the literal `"` is replaced with `_`... (just learned this today!) We could maybe attempt that replacement as well, like we do spaces. Thoughts on how best to proceed here? We can certainly try more combinations but we're firing in the dark really.
Jesse Yurkovich added 1 commit 2023-03-06 03:01:07 +01:00
2653762f1b WIP: Fix #105395: Handle quoted paths better in the OBJ importer
If the texture image path in the MTL is a "quoted" absolute path, the importer will fail to find the
file. It was only attempting to un-quote the path for the relative case. Now we attempt to un-quote
in both all cases.

----
Before
```
Cannot load image file: 'T:\New folder\"T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg"'
Cannot load image file: '"T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg"'
Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg'
Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement 03 1k.blend/textures/pavement 03 diff 1k.jpg'
Cannot load image file: 'T:\New folder\pavement_03_diff_1k.jpg"'
OBJ import of 'daz cube text 4.obj' took 24.5 ms
```

After
```
Cannot load image file: 'T:\New folder\T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg'
Loaded image from: 'T:/New Folder/Testure 1/texture 2/texture 3/texture 4/pavement_03_1k.blend/textures/pavement_03_diff_1k.jpg'
OBJ import of 'daz cube text 4.obj' took 3.2 ms
```

Question:
Linux/Mac technically allows folder/file names containing literal `"` quotes. The legacy exporter will write out those quotes
but the legacy importer will not import them correctly.

If a Linux/Mac user zips up such quoted files, as would typically happen when packaging the .obj and accompanying files for distribution, when they are unpacked on Windows the literal `"` is replaced with `_`... (just learned this today!)

We could maybe attempt that replacement as well, like we do spaces.

Thoughts on how best to proceed here? We can certainly try more combinations but we're firing in the dark really.
Jesse Yurkovich requested review from Aras Pranckevicius 2023-03-06 03:01:18 +01:00
Jesse Yurkovich added this to the Pipeline, Assets & IO project 2023-03-06 03:01:25 +01:00
Aras Pranckevicius approved these changes 2023-03-06 05:56:14 +01:00
Aras Pranckevicius left a comment
Member

Looks good to me, thanks!

Thoughts on how best to proceed here? We can certainly try more combinations but we're firing in the dark really

I'm not sure if it's worth doing everything possible. Like, technically Linux allows bytes with actual zero value in the filenames, but in practice nothing supports that. Or for example, a filename called "CON" or "PRN" or "AUX" is illegal on Windows. Having quotes around the name is probably fairly common, having super exotic ones maybe we should not try to solve until we run into something that actually uses them.

Looks good to me, thanks! > Thoughts on how best to proceed here? We can certainly try more combinations but we're firing in the dark really I'm not sure if it's worth doing everything possible. Like, technically Linux allows bytes with actual zero value in the filenames, but in practice nothing supports that. Or for example, a filename called "CON" or "PRN" or "AUX" is illegal on Windows. Having quotes around the name is probably fairly common, having super exotic ones maybe we should not try to solve until we run into something that actually uses them.
Jesse Yurkovich changed title from WIP: Fix #105395: Handle quoted paths better in the OBJ importer to Fix #105395: Handle quoted paths better in the OBJ importer 2023-03-06 06:26:06 +01:00
Jesse Yurkovich merged commit 68d5784802 into blender-v3.5-release 2023-03-06 06:29:51 +01:00
Jesse Yurkovich deleted branch fix105395-objquote 2023-03-06 06:29:53 +01:00
Bastien Montagne removed this from the Pipeline, Assets & IO project 2023-07-03 13:01:39 +02:00
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
2 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#105478
No description provided.