view light8/updatefreq.py @ 120:b75bfbcf5979

new modules: dmxclient provides a very convenient way for clients to talk to the new modules: dmxclient provides a very convenient way for clients to talk to the dmxserver; updatefreq stores event times and computes a report about how frequently they occur
author drewp
date Fri, 13 Jun 2003 14:00:36 +0000
parents 45b12307c695
children 57809e0ef359
line wrap: on
line source

"""calculates your updates-per-second"""

import time

class Updatefreq:
    """make one of these, call update() on it as much as you want,
    and then float() or str() the object to learn the updates per second.

    the samples param to __init__ specifies how many past updates will
    be stored.  """
    
    def __init__(self,samples=40):
        self.times=[0]
        self.samples=samples

    def update(self):

        """call this every time you do an update"""
        self.times=self.times[-self.samples:]
        self.times.append(time.time())

    def __float__(self):
        
        """a cheap algorithm, for now, which looks at the first and
        last times only"""

        hz=len(self.times)/(self.times[-1]-self.times[0])
        return hz
    def __str__(self):
        return "%.1fHz"%float(self)