Click here to Skip to main content
Licence 
First Posted 3 Feb 2003
Views 52,368
Bookmarked 15 times

Tracing Utility in C++

By | 3 Feb 2003 | Article
This article explains inserts and deletion of queues

Introduction

Writing our own trace utility is much important for a complicated and complex applications. This is useful since C++ does not have the concept of GC (garbage collector) unlike C# or java which automatically takes care of those issues. A good trace file can help a lot if you are trying find bugs or hard to find memory leaks that often raise during the production of the application.

So what we need is an easy utility that detects the memory leaks in place when the application is run. That also finds out where exactly the memory leak are and how many bytes of memory are not freed.

Using the code

Mainly we wanted to rewrite the new function so that when ever new is called it adds the trace and of course for delete we have to remove the trace. Both the methods should be in synchronous with each other failing to call delete will trigger memory leak.

#define DEBUG_NEW new(__FILE__, __LINE__)

  inline void * __cdecl operator new(size_t size,
        const char *fileName, int lineNumber)
  {
    void *ptr = (void *)malloc(size);
    addTrace((DWORD)ptr, size, fileName, lineNumber);
    return(ptr);
  };

For Delete this is supposed to be called:

void __cdecl operator delete(void *p)
{
  removeTrace((DWORD)p);
  free(p);
};

For checking the results we need a helper method that walks us through the memory leaks:

void Dump()
{
  AllocatedList::iterator i;
  DWORD totalSize = 0;
  char buf[1024];

  if(!allocatedList)
    return;

  for(i=allocatedList->begin(); i!=allocatedList->end(); i++) 
  {
    sprintf(buf, 
      "%-50s:\t\tLINE %d,\t\tADDRESS %d\t%d NOTFREED\n",
      (*i)->fileName, 
      (*i)->lineNumber, 
      (*i)->address, 
      (*i)->size);
    printf("%s",buf);
    totalSize += (*i)->size;
  }

  sprintf(buf, "\n---------------------------------\n");
  printf("%s",buf);
  if(!totalSize) 
  {
    sprintf(buf,"There are no MEMORY LEAKS\n");
    printf("%s",buf);
  }
    else
  {
    sprintf(buf, 
      "Total UNFREED MEMORY: %d bytes\n", 
      totalSize);
    printf("%s",buf);
  }
};      

I have used a List to iterate walk the elements.

main()
{
  char *str = "This is a Testing Program";
  int len = strlen(str);
  char *ptr;
  ptr = DEBUG_NEW char[len+1];
  strcpy(ptr,str);
  delete ptr;
  Dump();
}

Take a look at the main function: instead of calling new char[len+1]; I am calling DEBUG_NEW. This will add the trace and delete will remove the trace.

I still can't find out if there was a way to call new instead of DEBUG_NEW directly.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

A.Samar



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralHelp TVITEM PinmemberAJAYP20:38 5 Feb '03  
GeneralRe: Help TVITEM PinmemberNader Nashaat21:32 15 Feb '03  
GeneralOpps.. There is already one i have written PinmemberA. Samar9:36 5 Feb '03  
GeneralBetter solution PinmemberZoltan Csizmadia10:51 4 Feb '03  
GeneralRe: Better solution PinmemberWREY0:21 6 Feb '03  
QuestionA re-submit? PinmemberRickard Andersson5:25 4 Feb '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 4 Feb 2003
Article Copyright 2003 by A.Samar
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid