~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/text.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-08-02 23:49:34 UTC
  • mfrom: (5362.1.1 merge-2.2-into-trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20100802234934-d963xmqwx5gzevr0
(Andrew Bennetts) Merge 2.2 branch back into trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
300
300
        # correspond reliably to overall command progress
301
301
        self.enable_bar = False
302
302
 
 
303
    def _avail_width(self):
 
304
        # we need one extra space for terminals that wrap on last char
 
305
        w = osutils.terminal_width() 
 
306
        if w is None:
 
307
            return w
 
308
        else:
 
309
            return w - 1
 
310
 
303
311
    def _show_line(self, s):
304
 
        # sys.stderr.write("progress %r\n" % s)
305
 
        width = osutils.terminal_width()
306
 
        if width is not None:
307
 
            # we need one extra space for terminals that wrap on last char
308
 
            width = width - 1
309
 
            s = '%-*.*s' % (width, width, s)
310
312
        self._term_file.write('\r' + s + '\r')
311
313
 
312
314
    def clear(self):
348
350
            return ''
349
351
 
350
352
    def _format_task(self, task):
 
353
        """Format task-specific parts of progress bar.
 
354
 
 
355
        :returns: (text_part, counter_part) both unicode strings.
 
356
        """
351
357
        if not task.show_count:
352
358
            s = ''
353
359
        elif task.current_cnt is not None and task.total_cnt is not None:
363
369
            t = t._parent_task
364
370
            if t.msg:
365
371
                m = t.msg + ':' + m
366
 
        return m + s
 
372
        return m, s
367
373
 
368
374
    def _render_line(self):
369
375
        bar_string = self._render_bar()
370
376
        if self._last_task:
371
 
            task_msg = self._format_task(self._last_task)
 
377
            task_part, counter_part = self._format_task(self._last_task)
372
378
        else:
373
 
            task_msg = ''
 
379
            task_part = counter_part = ''
374
380
        if self._last_task and not self._last_task.show_transport_activity:
375
381
            trans = ''
376
382
        else:
377
383
            trans = self._last_transport_msg
378
 
            if trans:
379
 
                trans += ' | '
380
 
        return (bar_string + trans + task_msg)
 
384
        # the bar separates the transport activity from the message, so even
 
385
        # if there's no bar or spinner, we must show something if both those
 
386
        # fields are present
 
387
        if (task_part or trans) and not bar_string:
 
388
            bar_string = '| '
 
389
        # preferentially truncate the task message if we don't have enough
 
390
        # space
 
391
        avail_width = self._avail_width()
 
392
        if avail_width is not None:
 
393
            # if terminal avail_width is unknown, don't truncate
 
394
            current_len = len(bar_string) + len(trans) + len(task_part) + len(counter_part)
 
395
            gap = current_len - avail_width
 
396
            if gap > 0:
 
397
                task_part = task_part[:-gap-2] + '..'
 
398
        s = trans + bar_string + task_part + counter_part
 
399
        if avail_width is not None:
 
400
            if len(s) < avail_width:
 
401
                s = s.ljust(avail_width)
 
402
            elif len(s) > avail_width:
 
403
                s = s[:avail_width]
 
404
        return s
381
405
 
382
406
    def _repaint(self):
383
407
        s = self._render_line()
439
463
            rate = (self._bytes_since_update
440
464
                    / (now - self._transport_update_time))
441
465
            # using base-10 units (see HACKING.txt).
442
 
            msg = ("%6dkB %5dkB/s" %
 
466
            msg = ("%6dkB %5dkB/s " %
443
467
                    (self._total_byte_count / 1000, int(rate) / 1000,))
444
468
            self._transport_update_time = now
445
469
            self._last_repaint = now