~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/text.py

Introduce new bzr progress bar api. ui_factory.nested_progress_bar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import sys
24
24
 
25
25
import bzrlib.progress
 
26
from bzrlib.symbol_versioning import *
26
27
from bzrlib.ui import UIFactory
27
28
 
28
29
 
29
30
class TextUIFactory(UIFactory):
 
31
 
 
32
    def __init__(self):
 
33
        super(TextUIFactory, self).__init__()
 
34
        self._progress_bar_stack = None
 
35
 
 
36
    deprecated_method(zero_eight)
30
37
    def progress_bar(self):
31
 
 
 
38
        """See UIFactory.nested_progress_bar()."""
32
39
        # this in turn is abstract, and creates either a tty or dots
33
40
        # bar depending on what we think of the terminal
34
41
        return bzrlib.progress.ProgressBar()
50
57
        except KeyboardInterrupt:
51
58
            return None
52
59
 
 
60
    def nested_progress_bar(self):
 
61
        """Return a nested progress bar.
 
62
        
 
63
        The actual bar type returned depends on the progress module which
 
64
        may return a tty or dots bar depending on the terminal.
 
65
        """
 
66
        if self._progress_bar_stack is None:
 
67
            self._progress_bar_stack = bzrlib.progress.ProgressBarStack()
 
68
        return self._progress_bar_stack.get_nested()