hkReportStatisticsCollector.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef HK_REPORT_STATISTICS_COLLECTOR_H
  9. #define HK_REPORT_STATISTICS_COLLECTOR_H
  10. #include <Common/Base/DebugUtil/StatisticsCollector/hkStatisticsCollector.h>
  11. #include <Common/Base/Monitor/MonitorStreamAnalyzer/hkMonitorStreamAnalyzer.h>
  12. #include <Common/Base/Container/PointerMap/hkPointerMap.h>
  13. class hkStatisticClassCount
  14. {
  15.     public:
  16. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE, hkStatisticClassCount);
  17. typedef hkStatisticsCollector::MemoryType MemoryType;
  18. /// Ctor
  19.         hkStatisticClassCount(const hkClass* cls = HK_NULL);
  20. /// Add a usage
  21. void addAllocation(MemoryType type, int used, int allocated);
  22.             /// Add cumulative allocation
  23.         void addCumulativeAllocation(int used, int allocated) { m_cumulativeAllocatedBytes += allocated; m_cumulativeUsedBytes += used; m_numCumulativeAllocations++; }
  24. /// Dump the details
  25. void dump(hkOstream& out);
  26. /// Resets the count
  27. void reset();
  28. int getTotalAllocated() const { return _calcTotal(m_totalAllocatedBytes); }
  29. int getTotalUsed() const { return _calcTotal(m_totalUsedBytes); }
  30. int getTotalAllocations() const { return _calcTotal(m_numAllocations); }
  31. protected:
  32. static int HK_CALL _calcTotal(const int* in);
  33. public:
  34.         // Class -> can be HK_NULL
  35.         const hkClass* m_class;
  36. // Number of allocations of this type of object
  37. int m_numObjects;
  38. // The number of allocations of that type
  39. int m_numAllocations[hkStatisticsCollector::MEM_LAST];
  40. // The total allocated for the memory type
  41.         int m_totalAllocatedBytes[hkStatisticsCollector::MEM_LAST];
  42. // The total number of bytes used for a type
  43.         int m_totalUsedBytes[hkStatisticsCollector::MEM_LAST];
  44.         int m_cumulativeAllocatedBytes;             
  45.         int m_cumulativeUsedBytes;                  
  46. int m_numCumulativeAllocations;
  47. };
  48. class hkReportStatisticsCollector: public hkStatisticsCollector
  49. {
  50. public:
  51.             /// Ctor
  52.         hkReportStatisticsCollector(hkVtableClassRegistry* vtblReg, hkOstream& stream);
  53.             /// Dtor
  54.         ~hkReportStatisticsCollector() { _clear(); }
  55.             /// Called before any reporting
  56.         void start();
  57.             /// Called at the end of reporting - will give a summary
  58.         void end();
  59.         // hkStatisticsCollector interface
  60.         virtual void addReferencedObject(const char* fieldName, const hkReferencedObject* obj, int flags = 0) ;
  61.         // hkStatisticsCollector interface
  62.         virtual void addObject( const hkClass& cls, const char* fieldName, const void* obj, int flags = 0);
  63.         // hkStatisticsCollector interface
  64.         virtual void addChunk(MemoryType type, const char* name, const void* chunkAddress, int usedSize, int allocatedSize = 0) ;
  65.         // hkStatisticsCollector interface
  66.         virtual void pushDir( const char* dirName );
  67.         // hkStatisticsCollector interface
  68.         virtual void popDir();
  69. const hkPointerMap<const hkClass*,hkStatisticClassCount*>& getTypeCount() { return m_typeCount; }
  70. protected:
  71. static HK_FORCE_INLINE hkBool _orderCounts(hkStatisticClassCount* a, hkStatisticClassCount* b)
  72. {
  73.             return a->m_cumulativeUsedBytes > b->m_cumulativeUsedBytes;
  74. }
  75.         hkBool _isKnown(const void* obj);
  76.         void _addKnown(const void* obj);
  77. void _startObject( const hkClass* cls, const char* fieldName, const void* obj);
  78. void _endObject();
  79.         hkStatisticClassCount* _ensureCount(const hkClass* cls);
  80. void _dumpClassCount();
  81.         void _tab();
  82.         void _addCumulative(int usedSize, int allocatedSize);
  83.             /// Stream to write out to
  84.         hkOstream& m_stream;
  85.             /// The current recursion depth
  86.         int m_depth;
  87.         hkBool m_started;
  88.         void _clear();
  89.             /// Known objects
  90.         hkPointerMap<const void*, int> m_knownObjects;
  91.             /// Amount of times a type is hit
  92.         hkPointerMap<const hkClass*,hkStatisticClassCount*> m_typeCount;
  93.         hkStatisticClassCount m_totalMemory;
  94.         // Stack of of the statistics
  95.         hkArray<hkStatisticClassCount*> m_countStack;
  96. };
  97. #endif // HK_REPORT_STATISTICS_COLLECTOR_H
  98. /*
  99. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  100. * Confidential Information of Havok.  (C) Copyright 1999-2009
  101. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  102. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  103. * rights, and intellectual property rights in the Havok software remain in
  104. * Havok and/or its suppliers.
  105. * Use of this software for evaluation purposes is subject to and indicates
  106. * acceptance of the End User licence Agreement for this product. A copy of
  107. * the license is included with this software and is also available at www.havok.com/tryhavok.
  108. */