VTK  9.6.20260314
vtkGarbageCollector.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
62
63#ifndef vtkGarbageCollector_h
64#define vtkGarbageCollector_h
65
66#include "vtkCommonCoreModule.h" // For export macro
67#include "vtkGarbageCollectorManager.h" // Needed for singleton initialization.
68#include "vtkObject.h"
69
70#include <mutex> // For `std::mutex` (cannot be forward-declared)
71
72// This function is a friend of the collector so that it can call the
73// internal report method.
74VTK_ABI_NAMESPACE_BEGIN
75void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReportInternal(
76 vtkGarbageCollector*, vtkObjectBase*, void*, const char*);
77
78// This forward ref allows us to define methods with vtkNew.
79template <class T>
80class vtkNew;
81
82// This allows vtkObjectBase to get at the methods it needs.
83class vtkObjectBaseToGarbageCollectorFriendship;
84
85class VTKCOMMONCORE_EXPORT vtkGarbageCollector : public vtkObject
86{
87public:
89 void PrintSelf(ostream& os, vtkIndent indent) override;
91
104 static void Collect();
105
117 static void Collect(vtkObjectBase* root);
118
120
129
131
135 static void SetGlobalDebugFlag(bool flag);
136 static bool GetGlobalDebugFlag();
138
139protected:
142
143private:
154 static vtkTypeBool GiveReference(vtkObjectBase* obj);
155
164 static vtkTypeBool TakeReference(vtkObjectBase* obj);
165
166 // Singleton management functions.
167 static void ClassInitialize();
168 static void ClassFinalize();
169
172
173 static std::mutex* WeakPtrMutex();
174
175 // Internal report callback and friend function that calls it.
176 virtual void Report(vtkObjectBase* obj, void* ptr, const char* desc);
177 friend void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReportInternal(
178 vtkGarbageCollector*, vtkObjectBase*, void*, const char*);
179
181 void operator=(const vtkGarbageCollector&) = delete;
182};
183
185
189void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReport(
190 vtkGarbageCollector* collector, vtkSmartPointerBase& ptr, const char* desc);
191
195template <class T>
196void vtkGarbageCollectorReport(vtkGarbageCollector* collector, vtkNew<T>& ptr, const char* desc)
197{
199 collector, ptr.Object, reinterpret_cast<void*>(&ptr.Object), desc);
200}
201
205template <class T>
206void vtkGarbageCollectorReport(vtkGarbageCollector* collector, T*& ptr, const char* desc)
207{
208 vtkGarbageCollectorReportInternal(collector, ptr, reinterpret_cast<void*>(&ptr), desc);
209}
210
211VTK_ABI_NAMESPACE_END
212#endif
Detect and break reference loops.
static vtkGarbageCollector * New()
friend class vtkGarbageCollectorManager
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static void DeferredCollectionPop()
Push/Pop whether to do deferred collection.
static void DeferredCollectionPush()
Push/Pop whether to do deferred collection.
static void Collect(vtkObjectBase *root)
Collect immediately using the given object as the root for a reference graph walk.
static void SetGlobalDebugFlag(bool flag)
Set/Get global garbage collection debugging flag.
~vtkGarbageCollector() override
static void Collect()
Collect immediately using any objects whose collection was previously deferred as a root for the refe...
friend class vtkObjectBaseToGarbageCollectorFriendship
static bool GetGlobalDebugFlag()
Set/Get global garbage collection debugging flag.
friend void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReportInternal(vtkGarbageCollector *, vtkObjectBase *, void *, const char *)
a simple class to control print indentation
Definition vtkIndent.h:108
Allocate and hold a VTK object.
Definition vtkNew.h:167
friend class vtkNew
Definition vtkNew.h:170
abstract base class for most VTK objects
friend class vtkGarbageCollector
Some classes need to clear the reference counts manually due to the way they work.
Non-templated superclass for vtkSmartPointer.
int vtkTypeBool
Definition vtkABI.h:64
void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReport(vtkGarbageCollector *collector, vtkSmartPointerBase &ptr, const char *desc)
Function to report a reference held by a smart pointer to a collector.
void VTKCOMMONCORE_EXPORT vtkGarbageCollectorReportInternal(vtkGarbageCollector *, vtkObjectBase *, void *, const char *)