[PATCH 5 of 6] blackbox: adds a 'blackbox' command for viewing recent logs

Brodie Rao brodie at sf.io
Sun Feb 10 06:13:38 CST 2013


On Sun, Feb 10, 2013 at 11:07 AM, Durham Goode <durham at fb.com> wrote:
> # HG changeset patch
> # User Durham Goode <durham at fb.com>
> # Date 1360429786 28800
> # Node ID 4192cc153d6f8d529723c9df20255693b73e723a
> # Parent  ee0ffe8ee86585a9842c841f7c389b037f118282
> blackbox: adds a 'blackbox' command for viewing recent logs
>
> Adds a 'hg blackbox' command for viewing the latest entries in the blackbox log.
> By default it shows the last 10 entries, but -l allows the user to specify.
>
> diff --git a/hgext/blackbox.py b/hgext/blackbox.py
> --- a/hgext/blackbox.py
> +++ b/hgext/blackbox.py
> @@ -66,3 +66,31 @@
>          return
>
>      ui.setrepo(repo)
> +
> + at command('^blackbox|bb',

I don't think this command warrants a short alias like bb. Will it be
run that often?

> +    [('l', 'limit', 10, _('the number of events to show')),
> +    ],
> +    _('hg blackbox [OPTION]...'))
> +def blackbox(ui, repo, *revs, **opts):
> +    '''view the recent repository events
> +    '''
> +
> +    if not os.path.exists(repo.join('blackbox.log')):
> +        return
> +
> +    limit = opts.get('limit')
> +    blackbox = repo.opener('blackbox.log', 'r')
> +    lines = blackbox.read().split('\n')
> +
> +    count = 0
> +    output = []
> +    for line in reversed(lines):
> +        if count >= limit:
> +            break
> +
> +        # count the commands by matching lines like: 2013/01/23 19:13:36 root>
> +        if re.match('^\d{4}/\d{2}/\d{2} \d{2}:\d{2}:\d{2} .*> .*', line):
> +            count = count + 1

This should be "count += 1".

> +        output.append(line)
> +
> +    ui.status('\n'.join(reversed(output)))
> _______________________________________________
> Mercurial-devel mailing list
> Mercurial-devel at selenic.com
> http://selenic.com/mailman/listinfo/mercurial-devel


More information about the Mercurial-devel mailing list