1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkDebugLeaks.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkDebugLeaks.h"
#include "vtkDebug.h"
#include "vtkLogger.h"
#include "vtkObjectFactory.h"
#include "vtkWindows.h"
#include <vtksys/Encoding.hxx>
#include <vtksys/SystemInformation.hxx>
#include <vtksys/SystemTools.hxx>
#include <map>
#include <mutex>
#include <set>
#include <string>
#include <unordered_map>
#include <vector>
VTK_ABI_NAMESPACE_BEGIN
static const char* vtkDebugLeaksIgnoreClasses[] = { nullptr };
//------------------------------------------------------------------------------
// return 1 if the class should be ignored
static int vtkDebugLeaksIgnoreClassesCheck(const char* s)
{
int i = 0;
while (vtkDebugLeaksIgnoreClasses[i])
{
if (strcmp(s, vtkDebugLeaksIgnoreClasses[i]) == 0)
{
return 1;
}
i++;
}
return 0;
}
vtkStandardNewMacro(vtkDebugLeaks);
//------------------------------------------------------------------------------
void vtkDebugLeaks::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//------------------------------------------------------------------------------
class vtkDebugLeaksHashTable
{
public:
vtkDebugLeaksHashTable() = default;
~vtkDebugLeaksHashTable() = default;
void IncrementCount(const char* name);
vtkTypeBool DecrementCount(const char* name);
void PrintTable(std::string& os);
bool IsEmpty();
private:
std::unordered_map<const char*, unsigned int> CountMap;
};
//------------------------------------------------------------------------------
void vtkDebugLeaksHashTable::IncrementCount(const char* name)
{
this->CountMap[name]++;
}
//------------------------------------------------------------------------------
bool vtkDebugLeaksHashTable::IsEmpty()
{
return this->CountMap.empty();
}
//------------------------------------------------------------------------------
vtkTypeBool vtkDebugLeaksHashTable::DecrementCount(const char* name)
{
if (this->CountMap.count(name) > 0)
{
this->CountMap[name]--;
if (this->CountMap[name] == 0)
{
this->CountMap.erase(name);
}
return 1;
}
else
{
return 0;
}
}
//------------------------------------------------------------------------------
void vtkDebugLeaksHashTable::PrintTable(std::string& os)
{
auto iter = this->CountMap.begin();
while (iter != this->CountMap.end())
{
if (iter->second > 0 && !vtkDebugLeaksIgnoreClassesCheck(iter->first))
{
char tmp[256];
snprintf(tmp, 256, "\" has %i %s still around.\n", iter->second,
(iter->second == 1) ? "instance" : "instances");
os += "Class \"";
os += iter->first;
os += tmp;
}
++iter;
}
}
//------------------------------------------------------------------------------
class vtkDebugLeaksTraceManager
{
public:
vtkDebugLeaksTraceManager()
{
const char* debugLeaksTraceClasses =
vtksys::SystemTools::GetEnv("VTK_DEBUG_LEAKS_TRACE_CLASSES");
if (debugLeaksTraceClasses)
{
std::vector<std::string> classes;
vtksys::SystemTools::Split(debugLeaksTraceClasses, classes, ',');
this->ClassesToTrace.insert(classes.begin(), classes.end());
}
}
~vtkDebugLeaksTraceManager() = default;
void RegisterObject(vtkObjectBase* obj);
void UnRegisterObject(vtkObjectBase* obj);
void PrintObjects(std::ostream& os);
private:
std::set<std::string> ClassesToTrace;
std::map<vtkObjectBase*, std::string> ObjectTraceMap;
};
//------------------------------------------------------------------------------
#ifdef VTK_DEBUG_LEAKS
void vtkDebugLeaksTraceManager::RegisterObject(vtkObjectBase* obj)
{
// Get the current stack trace
if (this->ClassesToTrace.find(obj->GetClassName()) != this->ClassesToTrace.end())
{
const int firstFrame = 5; // skip debug leaks frames and start at the call to New()
const int wholePath = 1; // produce the whole path to the file if available
std::string trace = vtksys::SystemInformation::GetProgramStack(firstFrame, wholePath);
this->ObjectTraceMap[obj] = trace;
}
}
#else
void vtkDebugLeaksTraceManager::RegisterObject(vtkObjectBase* vtkNotUsed(obj)) {}
#endif
//------------------------------------------------------------------------------
#ifdef VTK_DEBUG_LEAKS
void vtkDebugLeaksTraceManager::UnRegisterObject(vtkObjectBase* obj)
{
this->ObjectTraceMap.erase(obj);
}
#else
void vtkDebugLeaksTraceManager::UnRegisterObject(vtkObjectBase* vtkNotUsed(obj)) {}
#endif
//------------------------------------------------------------------------------
#ifdef VTK_DEBUG_LEAKS
void vtkDebugLeaksTraceManager::PrintObjects(std::ostream& os)
{
// Iterate over any remaining object traces and print them
auto iter = this->ObjectTraceMap.begin();
while (iter != this->ObjectTraceMap.end())
{
os << "Remaining instance of object '" << iter->first->GetClassName();
os << "' was allocated at:\n";
os << iter->second << "\n";
++iter;
}
}
#else
void vtkDebugLeaksTraceManager::PrintObjects(std::ostream& vtkNotUsed(os)) {}
#endif
//------------------------------------------------------------------------------
#ifdef VTK_DEBUG_LEAKS
void vtkDebugLeaks::ConstructClass(vtkObjectBase* object)
{
const std::lock_guard<std::mutex> lock(*vtkDebugLeaks::CriticalSection);
(void)lock; // To avoid compiler warning on unused variables.
vtkDebugLeaks::MemoryTable->IncrementCount(object->GetDebugClassName());
vtkDebugLeaks::TraceManager->RegisterObject(object);
}
#else
void vtkDebugLeaks::ConstructClass(vtkObjectBase* vtkNotUsed(object)) {}
#endif
//------------------------------------------------------------------------------
#ifdef VTK_DEBUG_LEAKS
void vtkDebugLeaks::ConstructClass(const char* className)
{
const std::lock_guard<std::mutex> lock(*vtkDebugLeaks::CriticalSection);
(void)lock; // To avoid compiler warning on unused variables.
vtkDebugLeaks::MemoryTable->IncrementCount(className);
}
#else
void vtkDebugLeaks::ConstructClass(const char* vtkNotUsed(className)) {}
#endif
//------------------------------------------------------------------------------
#ifdef VTK_DEBUG_LEAKS
void vtkDebugLeaks::DestructClass(vtkObjectBase* object)
{
bool need_warning = false;
{
const std::lock_guard<std::mutex> lock(*vtkDebugLeaks::CriticalSection);
(void)lock; // To avoid compiler warning on unused variables.
// Ensure the trace manager has not yet been deleted.
if (vtkDebugLeaks::TraceManager)
{
vtkDebugLeaks::TraceManager->UnRegisterObject(object);
}
// Due to globals being deleted, this table may already have
// been deleted.
// The warning must be deferred until after the critical section because
// creating a new instance of `vtkOutputWindow` ends up deadlocking when it
// calls `vtkDebugLeaks::ConstructClass`.
need_warning = (vtkDebugLeaks::MemoryTable &&
!vtkDebugLeaks::MemoryTable->DecrementCount(object->GetDebugClassName()));
}
if (need_warning)
{
vtkGenericWarningMacro("Deleting unknown object: " << object->GetClassName());
}
}
#else
void vtkDebugLeaks::DestructClass(vtkObjectBase* vtkNotUsed(object)) {}
#endif
//------------------------------------------------------------------------------
#ifdef VTK_DEBUG_LEAKS
void vtkDebugLeaks::DestructClass(const char* className)
{
bool need_warning = false;
{
const std::lock_guard<std::mutex> lock(*vtkDebugLeaks::CriticalSection);
(void)lock; // To avoid compiler warning on unused variables.
// Due to globals being deleted, this table may already have
// been deleted.
// The warning must be deferred until after the critical section because
// creating a new instance of `vtkOutputWindow` ends up deadlocking when it
// calls `vtkDebugLeaks::ConstructClass`.
need_warning =
vtkDebugLeaks::MemoryTable && !vtkDebugLeaks::MemoryTable->DecrementCount(className);
}
if (need_warning)
{
vtkGenericWarningMacro("Deleting unknown object: " << className);
}
}
#else
void vtkDebugLeaks::DestructClass(const char* vtkNotUsed(className)) {}
#endif
//------------------------------------------------------------------------------
void vtkDebugLeaks::SetDebugLeaksObserver(vtkDebugLeaksObserver* observer)
{
vtkDebugLeaks::Observer = observer;
}
//------------------------------------------------------------------------------
vtkDebugLeaksObserver* vtkDebugLeaks::GetDebugLeaksObserver()
{
return vtkDebugLeaks::Observer;
}
//------------------------------------------------------------------------------
void vtkDebugLeaks::ConstructingObject(vtkObjectBase* object)
{
if (vtkDebugLeaks::Observer)
{
vtkDebugLeaks::Observer->ConstructingObject(object);
}
}
//------------------------------------------------------------------------------
void vtkDebugLeaks::DestructingObject(vtkObjectBase* object)
{
if (vtkDebugLeaks::Observer)
{
vtkDebugLeaks::Observer->DestructingObject(object);
}
}
//------------------------------------------------------------------------------
int vtkDebugLeaks::PrintCurrentLeaks()
{
#ifdef VTK_DEBUG_LEAKS
if (vtkDebugLeaks::MemoryTable->IsEmpty())
{
vtkLogF(TRACE, "vtkDebugLeaks has found no leaks.");
return 0;
}
std::string leaks;
std::string msg = "vtkDebugLeaks has detected LEAKS!\n";
vtkDebugLeaks::MemoryTable->PrintTable(leaks);
cerr << msg;
cerr << leaks << endl << std::flush;
vtkDebugLeaks::TraceManager->PrintObjects(std::cerr);
#ifdef _WIN32
if (getenv("DASHBOARD_TEST_FROM_CTEST") || getenv("DART_TEST_FROM_DART"))
{
// Skip dialogs when running on dashboard.
return 1;
}
std::string::size_type myPos = 0;
int cancel = 0;
int count = 0;
while (!cancel && myPos != leaks.npos)
{
std::string::size_type newPos = leaks.find('\n', myPos);
if (newPos != leaks.npos)
{
msg += leaks.substr(myPos, newPos - myPos);
msg += "\n";
myPos = newPos;
myPos++;
}
else
{
myPos = newPos;
}
count++;
if (count == 10)
{
count = 0;
cancel = vtkDebugLeaks::DisplayMessageBox(msg.c_str());
msg = "";
}
}
if (!cancel && count > 0)
{
vtkDebugLeaks::DisplayMessageBox(msg.c_str());
}
#endif
#endif
return 1;
}
//------------------------------------------------------------------------------
#ifdef _WIN32
int vtkDebugLeaks::DisplayMessageBox(const char* msg)
{
std::wstring wmsg = vtksys::Encoding::ToWide(msg);
return MessageBoxW(nullptr, wmsg.c_str(), L"Error", MB_ICONERROR | MB_OKCANCEL) == IDCANCEL;
}
#else
int vtkDebugLeaks::DisplayMessageBox(const char*)
{
return 0;
}
#endif
//------------------------------------------------------------------------------
int vtkDebugLeaks::GetExitError()
{
return vtkDebugLeaks::ExitError;
}
//------------------------------------------------------------------------------
void vtkDebugLeaks::SetExitError(int flag)
{
vtkDebugLeaks::ExitError = flag;
}
//------------------------------------------------------------------------------
void vtkDebugLeaks::ClassInitialize()
{
#ifdef VTK_DEBUG_LEAKS
// Create the hash table.
vtkDebugLeaks::MemoryTable = new vtkDebugLeaksHashTable;
// Create the trace manager.
vtkDebugLeaks::TraceManager = new vtkDebugLeaksTraceManager;
// Create the lock for the critical sections.
vtkDebugLeaks::CriticalSection = new std::mutex;
// Default to error when leaks occur while running tests.
vtkDebugLeaks::ExitError = 1;
vtkDebugLeaks::Observer = nullptr;
#else
vtkDebugLeaks::MemoryTable = nullptr;
vtkDebugLeaks::CriticalSection = nullptr;
vtkDebugLeaks::ExitError = 0;
vtkDebugLeaks::Observer = nullptr;
#endif
}
//------------------------------------------------------------------------------
void vtkDebugLeaks::ClassFinalize()
{
#ifdef VTK_DEBUG_LEAKS
// Report leaks.
int leaked = vtkDebugLeaks::PrintCurrentLeaks();
// Destroy the hash table.
delete vtkDebugLeaks::MemoryTable;
vtkDebugLeaks::MemoryTable = nullptr;
// Destroy the trace manager.
delete vtkDebugLeaks::TraceManager;
vtkDebugLeaks::TraceManager = nullptr;
// Destroy the lock for the critical sections.
delete vtkDebugLeaks::CriticalSection;
vtkDebugLeaks::CriticalSection = nullptr;
// Exit with error if leaks occurred and error mode is on.
if (leaked && vtkDebugLeaks::ExitError)
{
exit(1);
}
#endif
}
//------------------------------------------------------------------------------
// Purposely not initialized. ClassInitialize will handle it.
vtkDebugLeaksHashTable* vtkDebugLeaks::MemoryTable;
vtkDebugLeaksTraceManager* vtkDebugLeaks::TraceManager;
// Purposely not initialized. ClassInitialize will handle it.
std::mutex* vtkDebugLeaks::CriticalSection;
// Purposely not initialized. ClassInitialize will handle it.
int vtkDebugLeaks::ExitError;
// Purposely not initialized. ClassInitialize will handle it.
vtkDebugLeaksObserver* vtkDebugLeaks::Observer;
VTK_ABI_NAMESPACE_END
|