00001
00002
00003
00004
00005
00006
00007 #ifndef COH_OBJECT_COUNT_HEAP_ANALYZER_HPP
00008 #define COH_OBJECT_COUNT_HEAP_ANALYZER_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/HeapAnalyzer.hpp"
00013 #include "coherence/native/NativeAtomic64.hpp"
00014
00015
00016
00017 COH_OPEN_NAMESPACE2(coherence,lang)
00018
00019 using coherence::native::NativeAtomic64;
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 class COH_EXPORT ObjectCountHeapAnalyzer
00033 : public class_spec<ObjectCountHeapAnalyzer,
00034 extends<Object>,
00035 implements<HeapAnalyzer> >
00036 {
00037 friend class factory<ObjectCountHeapAnalyzer>;
00038
00039
00040
00041 protected:
00042
00043
00044
00045
00046
00047 ObjectCountHeapAnalyzer();
00048
00049
00050
00051
00052 public:
00053
00054
00055
00056 class COH_EXPORT Snapshot
00057 : public class_spec<Snapshot,
00058 extends<Object>,
00059 implements<HeapAnalyzer::Snapshot> >
00060 {
00061 friend class factory<Snapshot>;
00062
00063
00064
00065 protected:
00066
00067
00068
00069
00070
00071
00072
00073 Snapshot(int64_t cObjects);
00074
00075
00076
00077 public:
00078
00079
00080
00081 virtual int64_t getObjectCount() const;
00082
00083
00084
00085
00086 virtual HeapAnalyzer::Snapshot::View delta(
00087 HeapAnalyzer::Snapshot::View vThat) const;
00088
00089
00090
00091 public:
00092
00093
00094
00095 virtual TypedHandle<const String> toString() const;
00096
00097
00098
00099 protected:
00100
00101
00102
00103 int64_t m_cObjects;
00104 };
00105
00106
00107
00108
00109 public:
00110
00111
00112
00113 virtual HeapAnalyzer::Snapshot::View capture() const;
00114
00115
00116
00117
00118 virtual HeapAnalyzer::Snapshot::View delta(
00119 HeapAnalyzer::Snapshot::View vSnap) const;
00120
00121
00122
00123
00124 virtual int64_t getObjectCount() const;
00125
00126
00127
00128
00129 virtual int64_t getImmortalCount() const;
00130
00131 protected:
00132
00133
00134
00135 virtual void registerObject(const Object& o);
00136
00137
00138
00139
00140 virtual void unregisterObject(const Object& o);
00141
00142
00143
00144
00145 virtual void registerImmortal(const Object& o);
00146
00147
00148
00149
00150 public:
00151
00152
00153
00154 virtual TypedHandle<const String> toString() const;
00155
00156
00157
00158
00159 protected:
00160
00161
00162
00163 static const size_t s_cCount = 257;
00164
00165
00166
00167
00168 NativeAtomic64 m_acObjects[s_cCount];
00169
00170
00171
00172
00173 NativeAtomic64 m_cImmortals;
00174 };
00175
00176 COH_CLOSE_NAMESPACE2
00177
00178 #endif // COH_OBJECT_COUNT_HEAP_ANALYZER_HPP