Cleanup: Remove unnecessary AssetListStorage class #119137

Merged
Hans Goudey merged 4 commits from HooglyBoogly/blender:cleanup-asset-list-class-remove into main 2024-03-07 18:56:33 +01:00
Member

This class was just used to hold some functions which can just as well
be declared static outside of any class. It was never even instantiated.
Removing the class removes some indirection in this file that made
the code less readability, and avoids misleading readers.

This class was just used to hold some functions which can just as well be declared static outside of any class. It was never even instantiated. Removing the class removes some indirection in this file that made the code less readability, and avoids misleading readers.
Hans Goudey added 1 commit 2024-03-06 22:46:26 +01:00
buildbot/vexp-code-patch-lint Build done. Details
buildbot/vexp-code-patch-linux-x86_64 Build done. Details
buildbot/vexp-code-patch-darwin-x86_64 Build done. Details
buildbot/vexp-code-patch-darwin-arm64 Build done. Details
buildbot/vexp-code-patch-windows-amd64 Build done. Details
buildbot/vexp-code-patch-coordinator Build done. Details
19109b5013
Cleanup: Remove unnecessary AssetListStorage class
This class was just used to hold some functions which can just as well
be declared static outside of any class. It was never even instantiated.
Removing the class removes some indirection in this file that made
the code less readability, and avoids misleading readers.
Hans Goudey requested review from Julian Eisel 2024-03-06 22:47:20 +01:00
Hans Goudey added this to the Pipeline, Assets & IO project 2024-03-06 22:47:27 +01:00
Author
Member

@blender-bot build

@blender-bot build
Hans Goudey added 1 commit 2024-03-07 15:41:47 +01:00
Julian Eisel requested changes 2024-03-07 17:41:54 +01:00
Dismissed
Julian Eisel left a comment
Member

For me personally this isn't a big deal and such helper classes help organizing code in my mind. But I can see how this can be confusing for others who are not as familiar with the design/code. There is a bug to be fixed, otherwise I'm fine with this.

Also note that the change from clear() to clear_and_shrink() will have a user observable impact, might be worth committing separately or noting in the commit message.

For me personally this isn't a big deal and such helper classes help organizing code in my mind. But I can see how this can be confusing for others who are not as familiar with the design/code. There is a bug to be fixed, otherwise I'm fine with this. Also note that the change from `clear()` to `clear_and_shrink()` will have a user observable impact, might be worth committing separately or noting in the commit message.
@ -457,3 +425,3 @@
bool is_loaded(const AssetLibraryReference *library_reference)
{
AssetList *list = AssetListStorage::lookup_list(*library_reference);
static AssetList *list = lookup_list(*library_reference);
Member

Why is this static? This makes it so the list is only looked up once, which is a bug. Confirmed in local testing, which doesn't load previews when changing the asset library in the asset shelf, even crashes reliable when loading some asset libraries.

Why is this `static`? This makes it so the list is only looked up once, which is a bug. Confirmed in local testing, which doesn't load previews when changing the asset library in the asset shelf, even crashes reliable when loading some asset libraries.
Author
Member

Oops, that's my bad, I didn't add that on purpose.

Oops, that's my bad, I didn't add that on purpose.
HooglyBoogly marked this conversation as resolved
Hans Goudey requested review from Julian Eisel 2024-03-07 18:02:46 +01:00
Hans Goudey added 2 commits 2024-03-07 18:02:47 +01:00
Julian Eisel approved these changes 2024-03-07 18:04:10 +01:00
Author
Member

such helper classes help organizing code in my mind

I usually find it helpful to separate data from operations on the data. Beyond that though, it's really the extra level of indirection that just makes everything take longer to understand in this area.

>such helper classes help organizing code in my mind I usually find it helpful to separate data from _operations on the data_. Beyond that though, it's really the extra level of indirection that just makes everything take longer to understand in this area.
Hans Goudey merged commit 4e196f916c into main 2024-03-07 18:56:33 +01:00
Hans Goudey deleted branch cleanup-asset-list-class-remove 2024-03-07 18:56:36 +01: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 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#119137
No description provided.