C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/lang/ClassBasedHeapAnalyzer.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_CLASS_BASED_HEAP_ANALYZER_HPP
00008 #define COH_CLASS_BASED_HEAP_ANALYZER_HPP
00009 
00010 #include "coherence/lang/compatibility.hpp"
00011 
00012 #include "coherence/lang/AbstractHeapAnalyzer.hpp"
00013 #include "coherence/lang/Comparable.hpp"
00014 #include "coherence/lang/FinalView.hpp"
00015 
00016 #include "coherence/native/NativeAtomic64.hpp"
00017 
00018 
00019 
00020 COH_OPEN_NAMESPACE2(coherence,util)
00021 class Map;
00022 COH_CLOSE_NAMESPACE2
00023 
00024 COH_OPEN_NAMESPACE2(coherence,lang)
00025 
00026 using coherence::util::Map;
00027 using coherence::native::NativeAtomic64;
00028 
00029 /**
00030 * ClassBasedHeapAnalyzer provides heap analysis at the class level, that is
00031 * it tracks the number of live instances of each class.
00032 *
00033 * The memory consumption of this heap analyzer is relative to the number of
00034 * classes used within the process. The CPU consumption is also very low, each
00035 * registration consists of roughly four compare-and-set operations. It is well
00036 * suited for development as well as many production environments.
00037 *
00038 * @see ObjectCountHeapAnalyzer for a lower overhead analyzer
00039 *
00040 * @author mf  2008.04.27
00041 */
00042 class COH_EXPORT ClassBasedHeapAnalyzer
00043     : public class_spec<ClassBasedHeapAnalyzer,
00044         extends<AbstractHeapAnalyzer> >
00045     {
00046     friend class factory<ClassBasedHeapAnalyzer>;
00047 
00048     // ----- constructor ----------------------------------------------------
00049 
00050     protected:
00051         /**
00052         * Create a new ClassBasedHeapAnalyzer.
00053         *
00054         * @param fShowAllocations  true if allocations should also be shown
00055         */
00056         ClassBasedHeapAnalyzer(bool fShowAllocations = false);
00057 
00058 
00059     // ----- nested class: ClassStats ---------------------------------------
00060 
00061     public:
00062         /**
00063         * Statistics relating to a class.
00064         */
00065         class COH_EXPORT ClassStats
00066             : public class_spec<ClassStats,
00067                 extends<Object>,
00068                 implements<Comparable> >
00069             {
00070             friend class factory<ClassStats>;
00071 
00072             protected:
00073                 /**
00074                 * Create a new ClassStats.
00075                 *
00076                 * @param cObjs   the instance count
00077                 * @param cBytes  the byte count
00078                 * @param cAlloc  the allocation count
00079                 * @return the new ClassStats
00080                 */
00081                 ClassStats(int64_t cObjs, int64_t cBytes, int64_t cAlloc);
00082 
00083             // ----- ClassStats interface ---------------------------------
00084 
00085             public:
00086                 /**
00087                 * Return the instance count for the class.
00088                 */
00089                 virtual int64_t getObjectCount() const;
00090 
00091                 /**
00092                 * Return the byte count for the class.
00093                 */
00094                 virtual int64_t getByteCount() const;
00095 
00096                 /**
00097                 * Return the allocation count for the class.
00098                 */
00099                 virtual int64_t getAllocationCount() const;
00100 
00101             // ----- Comparable interface ---------------------------------
00102 
00103             public:
00104                 /**
00105                 * {@inheritDoc}
00106                 */
00107                 int32_t compareTo(Object::View v) const;
00108 
00109             // ----- Object interface -------------------------------------
00110 
00111             public:
00112                 /**
00113                 * {@inheritDoc}
00114                 */
00115                 virtual TypedHandle<const String> toString() const;
00116 
00117             // ----- data members -----------------------------------------
00118 
00119             protected:
00120                 /**
00121                 * The number of instances of the class.
00122                 */
00123                 int64_t m_cInstanceCount;
00124 
00125                 /**
00126                 * The byte size of all the instances.
00127                 */
00128                 int64_t m_cByteCount;
00129 
00130                 /**
00131                 * The total number of allocations of the class.
00132                 */
00133                 int64_t m_cAllocationCount;
00134             };
00135 
00136     // ----- nested class: Snapshot -----------------------------------------
00137 
00138     public:
00139         /**
00140         * Snapshot containing the object count.
00141         */
00142         class COH_EXPORT Snapshot
00143             : public class_spec<Snapshot,
00144                 extends<Object>,
00145                 implements<HeapAnalyzer::Snapshot> >
00146             {
00147             friend class factory<Snapshot>;
00148 
00149             // ----- constructors ---------------------------------------
00150 
00151             protected:
00152                 /**
00153                 * Create a new Snapshot.
00154                 */
00155                 Snapshot(TypedHandle<const Map> vMap, bool fShowAllocations);
00156 
00157             // ----- Snapshot interface ---------------------------------
00158 
00159             public:
00160                 /**
00161                 * Return the Snapshots map of class names to ClassStats.
00162                 *
00163                 * The keys are class names, the values are ClassStats.
00164                 *
00165                 * @return the snapshots map.
00166                 */
00167                 virtual TypedHandle<const Map> getStatsMap() const;
00168 
00169                 /**
00170                 * {@inheritDoc}
00171                 */
00172                 virtual int64_t getObjectCount() const;
00173 
00174                 /**
00175                 * {@inheritDoc}
00176                 */
00177                 virtual HeapAnalyzer::Snapshot::View delta(
00178                         HeapAnalyzer::Snapshot::View vThat) const;
00179 
00180             // ----- Object interface: ----------------------------------
00181 
00182             public:
00183                 /**
00184                 * {@inheritDoc}
00185                 */
00186                 virtual TypedHandle<const String> toString() const;
00187 
00188             // ----- data members ---------------------------------------
00189 
00190             protected:
00191                 /**
00192                 * The map of class names to ClassStats.
00193                 */
00194                 FinalView<Object> f_vMapStats;
00195 
00196                 /**
00197                 * True if allocations are to be shown.
00198                 */
00199                 bool m_fShowAllocations;
00200             };
00201 
00202 
00203     // ----- AbstractHeapAnalyzer interface ---------------------------------
00204 
00205     protected:
00206         /**
00207         * {@inheritDoc}
00208         */
00209         virtual void safeRegisterObject(const Object& o);
00210 
00211         /**
00212         * {@inheritDoc}
00213         */
00214         virtual void safeUnregisterObject(const Object& o);
00215 
00216 
00217     // ----- HeapAnalyzer interface -----------------------------------------
00218 
00219     public:
00220         /**
00221         * {@inheritDoc}
00222         */
00223         virtual HeapAnalyzer::Snapshot::View capture() const;
00224 
00225         /**
00226         * {@inheritDoc}
00227         */
00228         virtual HeapAnalyzer::Snapshot::View delta(
00229                 HeapAnalyzer::Snapshot::View vSnap) const;
00230 
00231         /**
00232         * {@inheritDoc}
00233         */
00234         virtual int64_t getObjectCount() const;
00235 
00236         /**
00237         * {@inheritDoc}
00238         */
00239         virtual int64_t getImmortalCount() const;
00240 
00241     protected:
00242         /**
00243         * {@inheritDoc}
00244         */
00245         virtual void registerObject(const Object& o);
00246 
00247         /**
00248         * {@inheritDoc}
00249         */
00250         virtual void unregisterObject(const Object& o);
00251 
00252         /**
00253         * {@inheritDoc}
00254         */
00255         virtual void registerImmortal(const Object& o);
00256 
00257 
00258     // ----- data members ---------------------------------------------------
00259 
00260     protected:
00261         /**
00262         * True if allocations should be printed as part of analysis.
00263         */
00264         bool m_fShowAllocations;
00265 
00266         /**
00267          * The number of immortal objects.
00268          */
00269         NativeAtomic64 m_cImmortals;
00270 
00271 
00272     // ----- friends --------------------------------------------------------
00273 
00274     friend class Snapshot;
00275     };
00276 
00277 COH_CLOSE_NAMESPACE2
00278 
00279 #endif // COH_CLASS_BASED_HEAP_ANALYZER_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.