~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/shelf_ui.py

  • Committer: Vincent Ladeuil
  • Date: 2011-09-27 11:48:50 UTC
  • mto: This revision was merged to the branch mainline in revision 6173.
  • Revision ID: v.ladeuil+lp@free.fr-20110927114850-338r2mns0138klv0
Global options respect their hidden attribute

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
 
18
18
from cStringIO import StringIO
19
 
import os
20
19
import shutil
21
20
import sys
22
21
import tempfile
252
251
        diff_file.seek(0)
253
252
        return patches.parse_patch(diff_file)
254
253
 
255
 
    def prompt(self, message, choices, default):
256
 
        return ui.ui_factory.choose(message, choices, default=default)
257
 
 
258
 
    def prompt_bool(self, question, allow_editor=False):
 
254
    def prompt(self, message):
 
255
        """Prompt the user for a character.
 
256
 
 
257
        :param message: The message to prompt a user with.
 
258
        :return: A character.
 
259
        """
 
260
        if not sys.stdin.isatty():
 
261
            # Since there is no controlling terminal we will hang when trying
 
262
            # to prompt the user, better abort now.  See
 
263
            # https://code.launchpad.net/~bialix/bzr/shelve-no-tty/+merge/14905
 
264
            # for more context.
 
265
            raise errors.BzrError(gettext("You need a controlling terminal."))
 
266
        sys.stdout.write(message)
 
267
        char = osutils.getchar()
 
268
        sys.stdout.write("\r" + ' ' * len(message) + '\r')
 
269
        sys.stdout.flush()
 
270
        return char
 
271
 
 
272
    def prompt_bool(self, question, long=False, allow_editor=False):
259
273
        """Prompt the user with a yes/no question.
260
274
 
261
275
        This may be overridden by self.auto.  It may also *set* self.auto.  It
265
279
        """
266
280
        if self.auto:
267
281
            return True
268
 
        alternatives_chars = 'yn'
269
 
        alternatives = '&yes\n&No'
270
 
        if allow_editor:
271
 
            alternatives_chars += 'e'
272
 
            alternatives += '\n&edit manually'
273
 
        alternatives_chars += 'fq'
274
 
        alternatives += '\n&finish\n&quit'
275
 
        choice = self.prompt(question, alternatives, 1)
276
 
        if choice is None:
277
 
            # EOF.
278
 
            char = 'n'
 
282
        editor_string = ''
 
283
        if long:
 
284
            if allow_editor:
 
285
                editor_string = '(E)dit manually, '
 
286
            prompt = ' [(y)es, (N)o, %s(f)inish, or (q)uit]' % editor_string
279
287
        else:
280
 
            char = alternatives_chars[choice]
 
288
            if allow_editor:
 
289
                editor_string = 'e'
 
290
            prompt = ' [yN%sfq?]' % editor_string
 
291
        char = self.prompt(question + prompt)
281
292
        if char == 'y':
282
293
            return True
283
294
        elif char == 'e' and allow_editor:
285
296
        elif char == 'f':
286
297
            self.auto = True
287
298
            return True
 
299
        elif char == '?':
 
300
            return self.prompt_bool(question, long=True)
288
301
        if char == 'q':
289
302
            raise errors.UserAbort()
290
303
        else: