Skip to main content

time manipulation utilities for python

Project description

https://travis-ci.org/alisaifee/hiro.png?branch=master https://coveralls.io/repos/alisaifee/hiro/badge.png?branch=master

Hiro context managers

Timeline context

The hiro.Timeline context manager hijacks a few commonly used time functions to allow time manipulation within its context. Specifically time.sleep, time.time, datetime.now and datetime.today behave according the configuration of the context.

The context provides the following manipulation options:

  • rewind: accepts seconds as an integer or a timedelta object.

  • forward: accepts seconds as an integer or a timedelta object.

  • freeze: accepts a floating point time since epoch or datetime or date object to freeze the time at.

  • unfreeze: resumes time from the point it was frozen at.

  • scale: accepts a floating point to accelerate/decelerate time by. > 1 = acceleration, < 1 = deceleration

  • reset: resets all time alterations.

import hiro
from datetime import timedelta, datetime
import time

datetime.now().isoformat()
# OUT: '2013-11-30T10:45:09.583797'
with hiro.Timeline() as timeline:

    # forward by an hour
    timeline.forward(60*60)
    datetime.now().isoformat()
    # OUT: '2013-11-30T11:45:09.585100'

    # jump forward by 10 minutes
    timeline.forward(timedelta(minutes=10))
    datetime.now().isoformat()
    # OUT: '2013-11-30T11:55:09.585115'

    # jump to yesterday and freeze forward/reverse
    timeline.freeze(datetime.now() - timedelta(days=-1))
    datetime.now().isoformat()
    # OUT: '2013-12-01T13:05:09'

    timeline.scale(5) # scale time by 5x
    time.sleep(5) # this will effectively only sleep for 1 second

    datetime.now().isoformat()
    # OUT: '2013-12-01T13:05:09'

    timeline.reverse(timedelta(year=1))

    print datetime.now().isoformat()
    # OUT: '2013-12-01T13:05:09'

Scaled Timeline Context

The ScaledTimeline context behaves identically to the Timeline context with the one exception that it can be initialized with a default scale factor

import hiro
from datetime import timedelta, datetime, date
import time

# all time operations will occur at 50000x
with hiro.ScaledTimeline(factor=50000):
    datetime.now().isoformat()
    # OUT: '2013-11-30T12:37:56.051953'

    # sleep for an hour
    time.sleep(60*60) # effectively 72 ms

    datetime.now().isoformat()
    # OUT: '2013-11-30T13:38:32.447884'

    # sleep for a day
    time.sleep(60*60*24) # effectively 1.7 seconds

    date.today().isoformat()
    # OUT: '2013-12-01'

Hiro executors

In order to execute certain callables within a ScaledTimeline context, two shortcut functions are provided.

  • run_sync(factor=1, callable, *args, **kwargs)

  • run_async(factor=1, callable, *args, **kwargs)

Both functions return a ScaledRunner object which provides the following methods

  • get_execution_time: The actual execution time of the callable

  • get_response (will either return the actual return value of callable or raise the exception that was thrown)

run_async returns a derived class of ScaledRunner that additionally provides the following methods

  • is_running: True/False depending on whether the callable has completed execution

  • join: blocks until the callable completes execution

Example

import hiro
import time

def _slow_function(n):
    time.sleep(n)
    if n > 10:
        raise RuntimeError()
    return n

runner = hiro.run_sync(10, _slow_function, 10)
runner.get_response()
# OUT: 10

# due to the scale factor 10 it only took 1s to execute
runner.get_execution_time()
# OUT: 1.1052658557891846

runner = hiro.run_async(10, _slow_function, 11)
runner.is_running()
# OUT: True
runner.join()
runner.get_execution_time()
# OUT: 1.1052658557891846
runner.get_response()
# OUT: Traceback (most recent call last):
# ....
# OUT:   File "<input>", line 4, in _slow_function
# OUT: RuntimeError
Hiro Nakamura

Yatta!

– Hiro Nakamura

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hiro-0.0.1.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

hiro-0.0.1-py2.7.egg (17.7 kB view details)

Uploaded Source

File details

Details for the file hiro-0.0.1.tar.gz.

File metadata

  • Download URL: hiro-0.0.1.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for hiro-0.0.1.tar.gz
Algorithm Hash digest
SHA256 b667f1c5a3219bb12e118485c01337b1cf133209d406768c1be26c8373496af3
MD5 971143947098f52b7863997e477b6ee4
BLAKE2b-256 32ae0bfae18cb7096401d3da07f419ca0485faa1d507b62d9406a53738e7da2a

See more details on using hashes here.

File details

Details for the file hiro-0.0.1-py2.7.egg.

File metadata

  • Download URL: hiro-0.0.1-py2.7.egg
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for hiro-0.0.1-py2.7.egg
Algorithm Hash digest
SHA256 ba0766b6a77ea2d1aa1b480f6c6d084ac8260c1bfc4a5dff8e860a707ab7c203
MD5 39d9bdcef164c787ec4580dbbafee334
BLAKE2b-256 d99dd97fe55dd59cf488ad90f36dd1ffff4c23a5c0be9fc17de676219e586752

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page