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

F79659-03

coherence/lang/ObjectCountHeapAnalyzer.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_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 * ObjectCountHeapAnalyzer provides simple heap analysis based solely on the
00023 * count of the number of live objects in the system.
00024 *
00025 * This heap analyzer has low CPU and memory costs. It is well suited for
00026 * performance sensitive production environments.
00027 *
00028 * @see ClassBasedHeapAnalyzer for more detailed heap analysis
00029 *
00030 * @author mf  2008.04.27
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     // ----- constructor ----------------------------------------------------
00040 
00041     protected:
00042         /**
00043         * Create a new ObjectCountHeapAnalyzer.
00044         *
00045         * @return the analyzer
00046         */
00047         ObjectCountHeapAnalyzer();
00048 
00049 
00050     // ----- nested class: Snapshot -----------------------------------------
00051 
00052     public:
00053         /**
00054         * Snapshot containing the object count.
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             // ----- constructors ---------------------------------------
00064 
00065             protected:
00066                 /**
00067                 * Create a new Snapshot.
00068                 *
00069                 * @param cObjects  the object count
00070                 *
00071                 * @return the new snapshot
00072                 */
00073                 Snapshot(int64_t cObjects);
00074 
00075             // ----- Snapshot interface ---------------------------------
00076 
00077             public:
00078                 /**
00079                 * {@inheritDoc}
00080                 */
00081                 virtual int64_t getObjectCount() const;
00082 
00083                 /**
00084                 * {@inheritDoc}
00085                 */
00086                 virtual HeapAnalyzer::Snapshot::View delta(
00087                         HeapAnalyzer::Snapshot::View vThat) const;
00088 
00089             // ----- Object interface: ----------------------------------
00090 
00091             public:
00092                 /**
00093                 * {@inheritDoc}
00094                 */
00095                 virtual TypedHandle<const String> toString() const;
00096 
00097             // ----- data members ---------------------------------------
00098 
00099             protected:
00100                 /**
00101                 * The object count.
00102                 */
00103                 int64_t m_cObjects;
00104             };
00105 
00106 
00107     // ----- HeapAnalyzer interface -----------------------------------------
00108 
00109     public:
00110         /**
00111         * {@inheritDoc}
00112         */
00113         virtual HeapAnalyzer::Snapshot::View capture() const;
00114 
00115         /**
00116         * {@inheritDoc}
00117         */
00118         virtual HeapAnalyzer::Snapshot::View delta(
00119                 HeapAnalyzer::Snapshot::View vSnap) const;
00120 
00121         /**
00122         * {@inheritDoc}
00123         */
00124         virtual int64_t getObjectCount() const;
00125 
00126         /**
00127         * {@inheritDoc}
00128         */
00129         virtual int64_t getImmortalCount() const;
00130 
00131     protected:
00132         /**
00133         * {@inheritDoc}
00134         */
00135         virtual void registerObject(const Object& o);
00136 
00137         /**
00138         * {@inheritDoc}
00139         */
00140         virtual void unregisterObject(const Object& o);
00141 
00142         /**
00143         * {@inheritDoc}
00144         */
00145         virtual void registerImmortal(const Object& o);
00146 
00147 
00148     // ----- Object interface -----------------------------------------------
00149 
00150     public:
00151         /**
00152         * {@inheritDoc}
00153         */
00154         virtual TypedHandle<const String> toString() const;
00155 
00156 
00157     // ----- data members ---------------------------------------------------
00158 
00159     protected:
00160         /**
00161         * The size of the array of counters.
00162         */
00163         static const size_t s_cCount = 257;
00164 
00165         /**
00166         * Array of object counts.
00167         */
00168         NativeAtomic64 m_acObjects[s_cCount];
00169 
00170         /**
00171          * The immortal object count.
00172          */
00173         NativeAtomic64 m_cImmortals;
00174     };
00175 
00176 COH_CLOSE_NAMESPACE2
00177 
00178 #endif // COH_OBJECT_COUNT_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.