2009-04-10 23:48:52 +00:00
|
|
|
# Copyright (C) 2009 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2010-05-27 23:48:36 +00:00
|
|
|
import os
|
2009-04-10 23:48:52 +00:00
|
|
|
import sys
|
2009-04-18 17:09:16 +00:00
|
|
|
from time import time
|
2019-08-27 04:26:15 +00:00
|
|
|
from repo_trace import IsTrace
|
2009-04-10 23:48:52 +00:00
|
|
|
|
2010-05-27 23:48:36 +00:00
|
|
|
_NOT_TTY = not os.isatty(2)
|
|
|
|
|
2019-08-26 19:22:36 +00:00
|
|
|
# This will erase all content in the current line (wherever the cursor is).
|
|
|
|
# It does not move the cursor, so this is usually followed by \r to move to
|
|
|
|
# column 0.
|
|
|
|
CSI_ERASE_LINE = '\x1b[2K'
|
|
|
|
|
2020-02-12 06:20:19 +00:00
|
|
|
|
2009-04-10 23:48:52 +00:00
|
|
|
class Progress(object):
|
2017-06-28 16:29:23 +00:00
|
|
|
def __init__(self, title, total=0, units='', print_newline=False,
|
|
|
|
always_print_percentage=False):
|
2009-04-10 23:48:52 +00:00
|
|
|
self._title = title
|
|
|
|
self._total = total
|
|
|
|
self._done = 0
|
|
|
|
self._lastp = -1
|
2009-04-18 17:09:16 +00:00
|
|
|
self._start = time()
|
|
|
|
self._show = False
|
2011-09-19 15:56:47 +00:00
|
|
|
self._units = units
|
2017-06-05 13:01:41 +00:00
|
|
|
self._print_newline = print_newline
|
2017-06-28 16:29:23 +00:00
|
|
|
self._always_print_percentage = always_print_percentage
|
2009-04-10 23:48:52 +00:00
|
|
|
|
2019-08-26 19:32:06 +00:00
|
|
|
def update(self, inc=1, msg=''):
|
2009-04-10 23:48:52 +00:00
|
|
|
self._done += inc
|
|
|
|
|
2010-05-27 23:48:36 +00:00
|
|
|
if _NOT_TTY or IsTrace():
|
2009-04-18 16:59:18 +00:00
|
|
|
return
|
|
|
|
|
2009-04-18 17:09:16 +00:00
|
|
|
if not self._show:
|
|
|
|
if 0.5 <= time() - self._start:
|
|
|
|
self._show = True
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
|
2009-04-16 15:00:42 +00:00
|
|
|
if self._total <= 0:
|
2019-08-26 19:22:36 +00:00
|
|
|
sys.stderr.write('%s\r%s: %d,' % (
|
2020-02-12 05:58:39 +00:00
|
|
|
CSI_ERASE_LINE,
|
|
|
|
self._title,
|
|
|
|
self._done))
|
2009-04-16 15:00:42 +00:00
|
|
|
sys.stderr.flush()
|
|
|
|
else:
|
|
|
|
p = (100 * self._done) / self._total
|
|
|
|
|
2017-06-28 16:29:23 +00:00
|
|
|
if self._lastp != p or self._always_print_percentage:
|
2009-04-16 15:00:42 +00:00
|
|
|
self._lastp = p
|
2019-08-26 19:32:06 +00:00
|
|
|
sys.stderr.write('%s\r%s: %3d%% (%d%s/%d%s)%s%s%s' % (
|
2020-02-12 05:58:39 +00:00
|
|
|
CSI_ERASE_LINE,
|
|
|
|
self._title,
|
|
|
|
p,
|
|
|
|
self._done, self._units,
|
|
|
|
self._total, self._units,
|
|
|
|
' ' if msg else '', msg,
|
|
|
|
"\n" if self._print_newline else ""))
|
2009-04-16 15:00:42 +00:00
|
|
|
sys.stderr.flush()
|
|
|
|
|
|
|
|
def end(self):
|
2010-05-27 23:48:36 +00:00
|
|
|
if _NOT_TTY or IsTrace() or not self._show:
|
2009-04-18 16:59:18 +00:00
|
|
|
return
|
|
|
|
|
2009-04-16 15:00:42 +00:00
|
|
|
if self._total <= 0:
|
2019-08-26 19:22:36 +00:00
|
|
|
sys.stderr.write('%s\r%s: %d, done.\n' % (
|
2020-02-12 05:58:39 +00:00
|
|
|
CSI_ERASE_LINE,
|
|
|
|
self._title,
|
|
|
|
self._done))
|
2009-04-16 15:00:42 +00:00
|
|
|
sys.stderr.flush()
|
|
|
|
else:
|
|
|
|
p = (100 * self._done) / self._total
|
2019-08-26 19:22:36 +00:00
|
|
|
sys.stderr.write('%s\r%s: %3d%% (%d%s/%d%s), done.\n' % (
|
2020-02-12 05:58:39 +00:00
|
|
|
CSI_ERASE_LINE,
|
|
|
|
self._title,
|
|
|
|
p,
|
|
|
|
self._done, self._units,
|
|
|
|
self._total, self._units))
|
2009-04-10 23:48:52 +00:00
|
|
|
sys.stderr.flush()
|