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

F79659-03

coherence/net/cache/SimpleCacheStatistics.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_SIMPLE_CACHE_STATISTICS_HPP
00008 #define COH_SIMPLE_CACHE_STATISTICS_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/net/cache/CacheStatistics.hpp"
00013 
00014 
00015 
00016 COH_OPEN_NAMESPACE3(coherence,net,cache)
00017 
00018 
00019 /**
00020 * Implementation of the CacheStatistics class intended for use by a cache
00021 * to maintain its statistics.
00022 *
00023 * @author tb  2008.06.12
00024 */
00025 class COH_EXPORT SimpleCacheStatistics
00026     : public class_spec<SimpleCacheStatistics,
00027         extends<Object>,
00028         implements<CacheStatistics> >
00029     {
00030     friend class factory<SimpleCacheStatistics>;
00031 
00032     // ----- constructors ---------------------------------------------------
00033 
00034     protected:
00035         /**
00036         * Create a SimpleCacheStatistics object.
00037         */
00038         SimpleCacheStatistics();
00039 
00040 
00041     // ----- CacheStatistics interface --------------------------------------
00042 
00043     public:
00044         /**
00045         * {@inheritDoc}
00046         */
00047         virtual int64_t getTotalGets() const;
00048 
00049         /**
00050         * {@inheritDoc}
00051         */
00052         virtual int64_t getTotalGetsMillis() const;
00053 
00054         /**
00055         * {@inheritDoc}
00056         */
00057         virtual float64_t getAverageGetMillis() const;
00058 
00059         /**
00060         * {@inheritDoc}
00061         */
00062         virtual int64_t getTotalPuts() const;
00063 
00064         /**
00065         * {@inheritDoc}
00066         */
00067         virtual int64_t getTotalPutsMillis() const;
00068 
00069         /**
00070         * {@inheritDoc}
00071         */
00072         virtual float64_t getAveragePutMillis() const;
00073 
00074         /**
00075         * {@inheritDoc}
00076         */
00077         virtual int64_t getCacheHits() const;
00078 
00079         /**
00080         * {@inheritDoc}
00081         */
00082         virtual int64_t getCacheHitsMillis() const;
00083 
00084         /**
00085         * {@inheritDoc}
00086         */
00087         virtual float64_t getAverageHitMillis() const;
00088 
00089         /**
00090         * {@inheritDoc}
00091         */
00092         virtual int64_t getCacheMisses() const;
00093 
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual int64_t getCacheMissesMillis() const;
00098 
00099         /**
00100         * {@inheritDoc}
00101         */
00102         virtual float64_t getAverageMissMillis() const;
00103 
00104         /**
00105         * {@inheritDoc}
00106         */
00107         virtual float64_t getHitProbability() const;
00108 
00109         /**
00110         * {@inheritDoc}
00111         */
00112         virtual int64_t getCachePrunes() const;
00113 
00114         /**
00115         * {@inheritDoc}
00116         */
00117         virtual int64_t getCachePrunesMillis() const;
00118 
00119         /**
00120         * {@inheritDoc}
00121         */
00122         virtual float64_t getAveragePruneMillis() const;
00123 
00124         /**
00125         * {@inheritDoc}
00126         */
00127         virtual void resetHitStatistics();
00128 
00129 
00130     // ----- accessors, mutators and helpers --------------------------------
00131 
00132     public:
00133         /**
00134         * Register a cache hit (no timing information).
00135         */
00136         virtual void registerHit();
00137 
00138         /**
00139         * Register a cache hit.
00140         *
00141         * @param lStartMillis  the time when the get operation started
00142         */
00143         virtual void registerHit(int64_t lStartMillis);
00144 
00145         /**
00146         * Register a multiple cache hit.
00147         *
00148         * @param cHits         the number of hits
00149         * @param lStartMillis  the time when the get operation started
00150         */
00151         virtual void registerHits(int32_t cHits, int64_t lStartMillis);
00152 
00153         /**
00154         * Register a cache miss (no timing information).
00155         */
00156         virtual void registerMiss();
00157 
00158         /**
00159         * Register a cache miss.
00160         *
00161         * @param lStartMillis  the time when the get operation started
00162         */
00163         virtual void registerMiss(int64_t lStartMillis);
00164 
00165         /**
00166         * Register a multiple cache miss.
00167         *
00168         * @param cMisses       the number of misses
00169         * @param lStartMillis  the time when the get operation started
00170         */
00171         virtual void registerMisses(int32_t cMisses, int64_t lStartMillis);
00172 
00173         /**
00174         * Register a cache put.
00175         *
00176         * @param lStartMillis  the time when the put operation started
00177         */
00178         virtual void registerPut(int64_t lStartMillis);
00179 
00180         /**
00181         * Register a multiple cache put.
00182         *
00183         * @param cPuts         the number of puts
00184         * @param lStartMillis  the time when the put operation started
00185         */
00186         virtual void registerPuts(int32_t cPuts, int64_t lStartMillis);
00187 
00188         /**
00189         * Register a cache prune.
00190         *
00191         * @param lStartMillis  the time when the prune operation started
00192         */
00193         virtual void registerCachePrune(int64_t lStartMillis);
00194 
00195 
00196     // ----- Object interface -----------------------------------------------
00197 
00198     public:
00199         /**
00200         * {@inheritDoc}
00201         */
00202         TypedHandle<const String> toString() const;
00203 
00204 
00205     // ----- data members ---------------------------------------------------
00206 
00207     protected:
00208         /**
00209         * The rough (ie unsynchronized) number of calls that could be
00210         * answered from the front or the back and were answered by data in
00211         * the front map.
00212         */
00213         /*volatile stat*/ int64_t m_cCacheHits;
00214 
00215         /**
00216         * The rough (ie unsynchronized) number of calls that could be
00217         * answered from the front or the back and were answered by data in
00218         * the back map.
00219         */
00220         /*volatile stat*/ int64_t m_cCacheMisses;
00221 
00222         /**
00223         * Total number of milliseconds used for get operations that were hits
00224         * since the last statistics reset.
00225         */
00226         /*volatile stat*/ int64_t m_cHitsMillis;
00227 
00228         /**
00229         * Total number of milliseconds used for get operations that were
00230         * misses since the last statistics reset.
00231         */
00232         /*volatile stat*/ int64_t m_cMissesMillis;
00233 
00234         /**
00235         * Total number of put operations since the last statistics reset.
00236         */
00237         /*volatile stat*/ int64_t m_cCachePuts;
00238 
00239         /**
00240         * Total number of milliseconds used for put operations since the last
00241         * statistics reset.
00242         */
00243         /*volatile stat*/ int64_t m_cPutsMillis;
00244 
00245         /**
00246         * Total number of evictions triggered based on the size of the cache
00247         * since the last statistics reset.
00248         */
00249         /*volatile stat*/ int64_t m_cCachePrunes;
00250 
00251         /**
00252         * Total number of milliseconds used for prune operations since the
00253         * last statistics reset.
00254         */
00255         /*volatile stat*/ int64_t m_cCachePrunesMillis;
00256 
00257     };
00258 
00259 COH_CLOSE_NAMESPACE3
00260 
00261 #endif // COH_SIMPLE_CACHE_STATISTICS_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.