From 71728e39ef660d6a14e3b4051866aa51b86729b2 Mon Sep 17 00:00:00 2001 From: Matthieu Gonnet <matthieu.gonnet@smartjog.com> Date: Mon, 23 May 2011 18:44:41 +0200 Subject: [PATCH] Add time command --- cccli/commands/time.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 cccli/commands/time.py diff --git a/cccli/commands/time.py b/cccli/commands/time.py new file mode 100644 index 0000000..a1a927a --- /dev/null +++ b/cccli/commands/time.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python +#coding=utf8 + +''' +CloudControl time command +''' + +import time as systime +import datetime + +from cccli.exception import * +from sjrpc.core.exceptions import * +from cccli.printer import Printer, color +from cccli.command import Command + + +class Command_time(Command): + '''Show execution time''' + + def __init__(self, cli, argv0): + Command.__init__(self, cli, argv0) + + def __call__(self, argv): + if len(argv) > 1: + # Substitute aliases + self.args = self.cli.aliases.substitute(argv[1:]) + # Init time + t0 = systime.time() + # Execute command + self.cli.commands(self.args) + t1 = systime.time() + # Get elapsed time + dt = int(t1 - t0) + print "Execution time: %s" % datetime.timedelta(seconds=dt) -- GitLab