Fast and Precise Python Repeating Timer

12,687

Yes, the simple waiting is messy and there are better alternatives.

First off, you need a high-precision timer in Python. There are a few alternatives and depending on your OS, you might want to choose the most accurate one.

Second, you must be aware of the basics preemptive multitasking and understand that there is no high-precision sleep function, and that its actual resolution will differ from OS to OS too. For example, if we're talking Windows, the minimal sleep interval might be around 10-13 ms.

And third, remember that it's always possible to wait for a very accurate interval of time (assuming you have a high-resolution timer), but with a trade-off of high CPU load. The technique is called busy waiting:

while(True):
    if time.clock() == something:
         break

So, the actual solution is to create a hybrid timer. It will use the regular sleep function to wait the main bulk of the interval, and then it'll start probing the high-precision timer in the loop, while doing the sleep(0) trick. Sleep(0) will (depending on the platform) wait the least possible amount of time, releasing the rest of the remaining time slice to other processes and switching the CPU context. Here is a relevant discussion.

The idea is thoroughly described in the Ryan Geiss's Timing in Win32 article. It's in C and for Windows API, but the basic principles apply here as well.

Share:
12,687
dwpriest
Author by

dwpriest

Updated on July 25, 2022

Comments

  • dwpriest
    dwpriest almost 2 years

    I need to send repeating messages from a list quickly and precisely. One list needs to send the messages every 100ms, with a +/- 10ms window. I tried using the code below, but the problem is that the timer waits the 100ms, and then all the computation needs to be done, making the timer fall out of the acceptable window.

    Simply decreasing the wait is a messy, and unreliable hack. The there is a Lock around the message loop in the event the list gets edited during the loop.

    Thoughts on how to get python to send messages consistently around 100ms? Thanks

    from threading import Timer
    from threading import Lock
    
    class RepeatingTimer(object):
        def __init__(self,interval, function, *args, **kwargs):
            super(RepeatingTimer, self).__init__()
            self.args = args
            self.kwargs = kwargs
            self.function = function
            self.interval = interval
            self.start()
    
        def start(self):
            self.callback()
    
        def stop(self):
            self.interval = False
    
        def callback(self):
            if self.interval:
                self.function(*self.args, **self.kwargs)
                Timer(self.interval, self.callback, ).start()
    
    def loop(messageList):
        listLock.acquire()
        for m in messageList:
            writeFunction(m)
        listLock.release()
    
    
    MESSAGE_LIST = [] #Imagine this is populated with the messages
    listLock = Lock()
    rt = RepeatingTimer(0.1,loop,MESSAGE_LIST)
    #Do other stuff after this
    

    I do understand that the writeFunction will cause some delay, but not more than the 10ms allowed. I essentially need to call the function every 100ms for each message. The messagelist is small, usually less than elements.

    The next challenge is to have this work with every 10ms, +/-1ms :P

  • vac
    vac over 8 years
    isn't it safer to check time.clock() >= something ? I think that there is a risk that the "time.clock()" will jump over "something" a little bit
  • jjmontes
    jjmontes over 7 years
    Don't get fooled by the fancy 'busy waiting' label ;-). It's a very bad practice and must be avoided whenever possible.