Refactor: separate function of WM_OT_batch_rename #119160

Closed
Christoph Lendenfeld wants to merge 2 commits from ChrisLend/blender:refactor_split_rename_function into main

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

No functional changes.

The function _data_from_context of the WM_OT_batch_rename operator
was used to do two completely different things.
It either got data or data_type depending on the flags passed in.
To simplify the code a new function has been created
_data_type_from_context which only ever returns data_type


This PR was split off from #118967: Refactor: WM_OT_batch_rename
The long term goal is to refactor the code so #115185: Fix #115166: Batch Rename Action Clips error can land

No functional changes. The function `_data_from_context` of the `WM_OT_batch_rename` operator was used to do two completely different things. It either got `data` or `data_type` depending on the flags passed in. To simplify the code a new function has been created `_data_type_from_context` which only ever returns `data_type` ------ This PR was split off from [#118967: Refactor: WM_OT_batch_rename](https://projects.blender.org/blender/blender/pulls/118967) The long term goal is to refactor the code so [#115185: Fix #115166: Batch Rename Action Clips error](https://projects.blender.org/blender/blender/pulls/115185) can land
Christoph Lendenfeld added 2 commits 2024-03-07 13:01:35 +01:00
Christoph Lendenfeld requested review from Campbell Barton 2024-03-07 13:12:18 +01:00
Christoph Lendenfeld added the
Module
User Interface
label 2024-03-07 13:12:34 +01:00
Christoph Lendenfeld requested review from Sybren A. Stüvel 2024-03-07 13:12:49 +01:00

The new logic had the down-side it's duplicating code-paths in a way that can diverge in a non-obvious way, in fact I wouldn't know from looking at this if this doesn't cause them to diverge. Debugging this kind of issue is time consuming and makes updating the function less straightforward.

However I can see the motivation for the refactor as the current logic mixes a "poll" with an "exec" function (using operator terminology) for many different contexts/types. I think it would be better to isolate handling of each context so the logic can't diverge.

The new logic had the down-side it's duplicating code-paths in a way that can diverge in a non-obvious way, in fact I wouldn't know from looking at this if this doesn't cause them to diverge. Debugging this kind of issue is time consuming and makes updating the function less straightforward. However I can see the motivation for the refactor as the current logic mixes a "poll" with an "exec" function (using operator terminology) for many different contexts/types. I think it would be better to isolate handling of each context so the logic can't diverge.

The new logic had the down-side it's duplicating code-paths in a way that can diverge in a non-obvious way

That is a good point.

However:

in fact I wouldn't know from looking at this if this doesn't cause them to diverge. Debugging this kind of issue is time consuming and makes updating the function less straightforward.

This I feel reflects as much onto the existing code as it does on the new code. Having a boolean parameter that changes what a function does and what it returns, is intrinsically not straightforward. Understanding this code is already time consuming.

The anonymous tuples also make things harder to follow, as there is no documentation what the individual fields mean, and the deep nesting in places where they are being generated makes things even more complex.

To address Campbell's concern, maybe the code path that currently returns the 'rename info tuple' should just return a class (instance). And that class (instance) can then have functions for returning the 'data type' and the 'rename info tuple', so that those two things are closely tied.

And of course the 'rename info tuple' should (IMO) be replaced by something more self-documenting; at the minimum a NamedTuple, but I think a dataclass would be more appropriate.

> The new logic had the down-side it's duplicating code-paths in a way that can diverge in a non-obvious way That is a good point. However: > in fact I wouldn't know from looking at this if this doesn't cause them to diverge. Debugging this kind of issue is time consuming and makes updating the function less straightforward. This I feel reflects as much onto the existing code as it does on the new code. Having a boolean parameter that changes what a function does and what it returns, is intrinsically not straightforward. Understanding this code is already time consuming. The anonymous tuples also make things harder to follow, as there is no documentation what the individual fields mean, and the deep nesting in places where they are being generated makes things even more complex. To address Campbell's concern, maybe the code path that currently returns the 'rename info tuple' should just return a class (instance). And that class (instance) can then have functions for returning the 'data type' and the 'rename info tuple', so that those two things are closely tied. And of course the 'rename info tuple' should (IMO) be replaced by something more self-documenting; at the minimum a `NamedTuple`, but I think a `dataclass` would be more appropriate.
Author
Member

Based on the feedback I am closing this PR
It was meant as a simple first step to refactoring that code, but that's not the way forward. Rather we need a general overhaul that changes more things at once

Based on the feedback I am closing this PR It was meant as a simple first step to refactoring that code, but that's not the way forward. Rather we need a general overhaul that changes more things at once

Pull request closed

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 project
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#119160
No description provided.