BLI: Destroy non-trivial types after using remove_if #115914

Merged
Jacques Lucke merged 6 commits from guishe/blender:remove-if-free into main 2023-12-12 10:42:14 +01:00
Contributor

blender::Vector::remove_if allows certain elements to be removed based on a predicate,
however std::remove_if only shifts the elements that will not be deleted
at the beginning of the container and then blender::Vector::remove_if only
updates the pointer to the new last element after using std::remove_if.
This works well if blender::Vector is used with trivial types that don't
have a destructor.

Having a blender::Vector<std::unique_ptr> for example,
can generate undefined behavior if the predicate gives true to elements that
are contiguous at the end, if blender::Vector::remove_if only updates the end
pointer in these specific cases, these makes these smart pointers useless because
they will not be freed by themselves.

To prevent that, also destroys the elements being removed.

`blender::Vector::remove_if` allows certain elements to be removed based on a predicate, however `std::remove_if` only shifts the elements that will not be deleted at the beginning of the container and then `blender::Vector::remove_if` only updates the pointer to the new last element after using `std::remove_if`. This works well if `blender::Vector` is used with trivial types that don't have a destructor. Having a `blender::Vector<std::unique_ptr>` for example, can generate undefined behavior if the predicate gives `true` to elements that are contiguous at the end, if `blender::Vector::remove_if` only updates the end pointer in these specific cases, these makes these smart pointers useless because they will not be freed by themselves. To prevent that, also destroys the elements being removed.
Guillermo Venegas added 1 commit 2023-12-07 21:58:54 +01:00
Guillermo Venegas added 1 commit 2023-12-07 22:32:36 +01:00
Guillermo Venegas added 1 commit 2023-12-07 22:36:51 +01:00
Guillermo Venegas added 1 commit 2023-12-08 02:41:50 +01:00
Iliya Katushenock requested review from Jacques Lucke 2023-12-08 08:06:06 +01:00
Iliya Katushenock added this to the Core Libraries project 2023-12-08 08:06:13 +01:00
Member

Thanks for the fix. Not quite sure how I missed that. Can you replace your test with this?

TEST(vector, RemoveIfNonTrivialDestructible)
{
  Vector<Vector<int, 0, GuardedAllocator>> vec;
  for ([[maybe_unused]] const int64_t i : IndexRange(10)) {
    /* This test relies on leak detection to run after tests. */
    vec.append(Vector<int, 0, GuardedAllocator>(100));
  }
  vec.remove_if([&](const auto & /*value*/) { return true; });
  EXPECT_TRUE(vec.is_empty());
}

I prefer this test right now because it has much less boilerplate which can be tricky to get right.
Btw, I also got a compile error because the released_flag parameter shadows a data member with the same name. That probably happens because of the BLI_strict_flags.h include at the top.

Thanks for the fix. Not quite sure how I missed that. Can you replace your test with this? ```cpp TEST(vector, RemoveIfNonTrivialDestructible) { Vector<Vector<int, 0, GuardedAllocator>> vec; for ([[maybe_unused]] const int64_t i : IndexRange(10)) { /* This test relies on leak detection to run after tests. */ vec.append(Vector<int, 0, GuardedAllocator>(100)); } vec.remove_if([&](const auto & /*value*/) { return true; }); EXPECT_TRUE(vec.is_empty()); } ``` I prefer this test right now because it has much less boilerplate which can be tricky to get right. Btw, I also got a compile error because the `released_flag` parameter shadows a data member with the same name. That probably happens because of the `BLI_strict_flags.h` include at the top.
Jacques Lucke requested changes 2023-12-11 12:49:24 +01:00
Jacques Lucke left a comment
Member

See comment above.

See comment above.
Guillermo Venegas added 2 commits 2023-12-11 14:30:32 +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
6d82942795
Merge remote-tracking branch 'origin/main' into remove-if-free
Member

@blender-bot build

@blender-bot build
Jacques Lucke approved these changes 2023-12-11 16:15:00 +01:00
Jacques Lucke merged commit e23b8eeb42 into main 2023-12-12 10:42:14 +01:00
Guillermo Venegas deleted branch remove-if-free 2023-12-12 15:16:03 +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 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#115914
No description provided.