Fix #117422: Move undefined type removal behind after-linking-versioning #117441

Merged
Lukas Tönne merged 3 commits from LukasTonne/blender:fix-node-versioning into main 2024-01-23 15:15:17 +01:00
Member

There are still node versioning bits running after linking, for example
version_geometry_nodes_replace_transfer_attribute_node. This code
relies on node types being untouched at that point.

Move the unknown node type replacement from ntreeSetTypes into the
ntreeUpdateAllNew function. This is called after late versioning.

There are still node versioning bits running after linking, for example `version_geometry_nodes_replace_transfer_attribute_node`. This code relies on node types being untouched at that point. Move the unknown node type replacement from `ntreeSetTypes` into the `ntreeUpdateAllNew` function. This is called _after_ late versioning.
Lukas Tönne added 1 commit 2024-01-23 11:45:04 +01:00
buildbot/vexp-code-patch-lint Build done. Details
buildbot/vexp-code-patch-darwin-arm64 Build done. Details
buildbot/vexp-code-patch-darwin-x86_64 Build done. Details
buildbot/vexp-code-patch-linux-x86_64 Build done. Details
buildbot/vexp-code-patch-windows-amd64 Build done. Details
buildbot/vexp-code-patch-coordinator Build done. Details
a402a68bc8
Nodes: Move undefined type removal behind after-linking-versioning.
There are still node versioning bits running after linking, for example
`version_geometry_nodes_replace_transfer_attribute_node`. This code
relies on node types being untouched at that point.

Move the unknown node type replacement from `ntreeSetTypes` into the
`ntreeUpdateAllNew` function. This is called _after_ late versioning.
Author
Member

@blender-bot build

@blender-bot build
Lukas Tönne requested review from Brecht Van Lommel 2024-01-23 11:45:32 +01:00
Lukas Tönne requested review from Bastien Montagne 2024-01-23 11:45:33 +01:00
Lukas Tönne added this to the Nodes & Physics project 2024-01-23 11:45:39 +01:00
Lukas Tönne changed title from Nodes: Move undefined type removal behind after-linking-versioning to Fix #117422: Move undefined type removal behind after-linking-versioning 2024-01-23 11:47:43 +01:00
Bastien Montagne requested changes 2024-01-23 12:55:56 +01:00
Bastien Montagne left a comment
Owner

I think comments could use a bit of update here, otherwise patch LGTM.

I think comments could use a bit of update here, otherwise patch LGTM.
@ -4097,0 +4083,4 @@
static void node_replace_undefined_types(bNode *node)
{
/* If the integer type is unknown then this is a node from a newer Blender version.

Since there are issues with versioning of old files, I'd assume this can also happen with older files, and mot only newer ones?

Maybe actually this comment would be better placed in the calling function (ntreeUpdateAllNew), since there, at this stage of the blendfile reading process, it can be assumed that unknown types only come from future versions of Blender?

Since there are issues with versioning of old files, I'd assume this can also happen with older files, and mot only newer ones? Maybe actually this comment would be better placed in the calling function (`ntreeUpdateAllNew`), since there, at this stage of the blendfile reading process, it can be assumed that unknown types only come from future versions of Blender?
Author
Member

True, although to my knowledge there's never been a case where a node type was deliberately removed (other than replaced by a newer version as in #117422 ). In that case there should already be code for removing such nodes, otherwise backward compatibility would be broken.

The case with newer nodes is a little more subtle: Blender would still try to read such nodes but can't write them again properly, they have to be removed to prevent bad blend file state.

True, although to my knowledge there's never been a case where a node type was deliberately removed (other than replaced by a newer version as in #117422 ). In that case there should already be code for removing such nodes, otherwise backward compatibility would be broken. The case with _newer_ nodes is a little more subtle: Blender would still try to read such nodes but can't write them again properly, they have to be removed to prevent bad blend file state.
LukasTonne marked this conversation as resolved
@ -4097,2 +4099,4 @@
void ntreeUpdateAllNew(Main *main)
{
/* Replace all nodes with unknown types after versioning. */

Would be worth explaining why this has to happen so late in the readfile process.

Would be worth explaining why this has to happen so late in the readfile process.
LukasTonne marked this conversation as resolved

@blender-bot build

@blender-bot build
Lukas Tönne added 1 commit 2024-01-23 14:10:38 +01:00
Lukas Tönne added 1 commit 2024-01-23 14:12:25 +01:00
Brecht Van Lommel approved these changes 2024-01-23 15:04:28 +01:00
Lukas Tönne merged commit f72dbc1ef8 into main 2024-01-23 15:15:17 +01:00
Lukas Tönne deleted branch fix-node-versioning 2024-01-23 15:15:19 +01:00
Sign in to join this conversation.
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 Assignees
3 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#117441
No description provided.