root/trunk/src/java/org/jcoderz/commons/statistics/TimedCounter.java

Revision 1011, 3.8 kB (checked in by amandel, 4 years ago)

Aligned svn keyword settings.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1/*
2 * $Id$
3 *
4 * Copyright 2006, The jCoderZ.org Project. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 *    * Redistributions of source code must retain the above copyright
11 *      notice, this list of conditions and the following disclaimer.
12 *    * Redistributions in binary form must reproduce the above
13 *      copyright notice, this list of conditions and the following
14 *      disclaimer in the documentation and/or other materials
15 *      provided with the distribution.
16 *    * Neither the name of the jCoderZ.org Project nor the names of
17 *      its contributors may be used to endorse or promote products
18 *      derived from this software without specific prior written
19 *      permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33package org.jcoderz.commons.statistics;
34
35import java.text.DecimalFormat;
36
37import org.jcoderz.commons.types.Date;
38
39
40
41/**
42 * TODO Write javadoc!
43 *
44 * @author Albrecht Messner
45 */
46public class TimedCounter
47      extends Counter
48{
49   private long mStartTime;
50   private long mStopTime;
51
52   /**
53    * Constructor.
54    * @param name the name of this counter
55    */
56   public TimedCounter (String name)
57   {
58      super(name);
59      mStartTime = 0;
60      mStopTime = 0;
61   }
62
63   /**
64    * Start this counter's timer.
65    */
66   public synchronized void start ()
67   {
68      mStartTime = System.currentTimeMillis();
69   }
70
71   /**
72    * Stop this counter's timer.
73    */
74   public synchronized void stop ()
75   {
76      mStopTime = System.currentTimeMillis();
77   }
78
79   /** {@inheritDoc} */
80   public synchronized void reset ()
81   {
82      super.reset();
83      mStopTime = 0;
84      start();
85   }
86
87   /**
88    * Returns the amount of time this Counter was running.
89    * @return the amount of time this Counter was running
90    */
91   public synchronized long getDuration ()
92   {
93      final long duration;
94      if (mStopTime != 0)
95      {
96         duration = mStopTime - mStartTime;
97      }
98      else
99      {
100         duration = System.currentTimeMillis() - mStartTime;
101      }
102      return duration;
103   }
104
105   /**
106    * Returns the frequency of this counter, i.e. getCount() / duration.
107    * @return the frequency of this counter, i.e. getCount() / duration.
108    */
109   public synchronized double getFrequency ()
110   {
111      final long duration = getDuration();
112      double result = 0;
113      final double durationInSec = duration / (double) Date.MILLIS_PER_SECOND;
114
115      if (durationInSec > 0)
116      {
117         result = getCount() / durationInSec;
118      }
119      return result;
120   }
121
122   /** {@inheritDoc} */
123   public String toString ()
124   {
125      final DecimalFormat df = new DecimalFormat("0.000");
126
127      final StringBuffer sbuf = new StringBuffer();
128      sbuf.append("[TimedCounter name=").append(getName());
129      sbuf.append(", duration=").append(getDuration());
130      sbuf.append(", count=").append(getCount());
131      sbuf.append(", freq=").append(df.format(getFrequency()));
132      sbuf.append(']');
133      return sbuf.toString();
134   }
135}
Note: See TracBrowser for help on using the browser.