rtpdebug.h
上传用户:sztlpcb
上传日期:2007-06-09
资源大小:741k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.   This file is a part of JRTPLIB
  3.   Copyright (c) 1999-2000 Jori Liesenborgs
  4.   Contact: jori@lumumba.luc.ac.be
  5.   This library (JRTPLIB) was partially developed for my thesis at the
  6.   School for Knowledge Technology (Belgium/The Netherlands)
  7.   Permission is hereby granted, free of charge, to any person obtaining a
  8.   copy of this software and associated documentation files (the "Software"),
  9.   to deal in the Software without restriction, including without limitation
  10.   the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.   and/or sell copies of the Software, and to permit persons to whom the
  12.   Software is furnished to do so, subject to the following conditions:
  13.   The above copyright notice and this permission notice shall be included
  14.   in all copies or substantial portions of the Software.
  15.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  16.   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17.   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  18.   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19.   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20.   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21.   IN THE SOFTWARE.
  22. */
  23. #ifndef RTPDEBUG_H
  24. #define RTPDEBUG_H
  25. #include "rtpconfig.h"
  26. #ifdef RTPDEBUG
  27. #define RTPDEBUGBASE : public RTPDebug
  28. #include <stdlib.h>
  29. #include <stdio.h>
  30. #include <string.h>
  31. struct RTPDebugMemoryBlock
  32. {
  33. void *ptr;
  34. int size;
  35. char filename[256];
  36. int linenr;
  37. RTPDebugMemoryBlock *next;
  38. };
  39. class RTPDebug
  40. {
  41. public:
  42. RTPDebug();
  43. RTPDebug(bool log);
  44. ~RTPDebug();
  45. void AddBlock(void *ptr,int size);
  46. void DeleteBlock(void *ptr);
  47. void SetFile(char f[]) { strcpy(fname,f); }
  48. void SetLine(int l) { line = l; }
  49. void *operator new(size_t size);
  50. void *operator new[](size_t size);
  51. void operator delete(void *p);
  52. void operator delete[](void *p);
  53. private:
  54. void DumpLeaks();
  55. static char fname[256];
  56. static int line;
  57. static RTPDebugMemoryBlock *first;
  58. static FILE *dbgfile;
  59. bool log;
  60. };
  61. extern RTPDebug rtpdebug;
  62. #define RTP_NEW(type) (rtpdebug.SetFile(__FILE__),rtpdebug.SetLine(__LINE__),new type)
  63. #define RTP_DELETE(param) (rtpdebug.SetFile(__FILE__),rtpdebug.SetLine(__LINE__),delete param)
  64. #define RTP_DELETE_ARRAY(param) (rtpdebug.SetFile(__FILE__),rtpdebug.SetLine(__LINE__),delete [] param)
  65. #else /* Not debug version */
  66. #define RTPDEBUGBASE
  67. #define RTP_NEW(type) new type
  68. #define RTP_DELETE(param) delete param
  69. #define RTP_DELETE_ARRAY(param) delete [] param
  70. #endif /* RTPDEBUG */
  71. #endif /* RTPDEBUG_H */