blob: 2ace70102a70d229dfb4972a3c0cf14cb8b6ece2 [file] [log] [blame]
Shawn O. Pearce68194f42009-04-10 16:48:52 -07001#
2# Copyright (C) 2009 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Shawn O. Pearcef4f04d92010-05-27 16:48:36 -070016import os
Shawn O. Pearce68194f42009-04-10 16:48:52 -070017import sys
Shawn O. Pearce2810cbc2009-04-18 10:09:16 -070018from time import time
Shawn O. Pearce6ed4e282009-04-18 09:59:18 -070019from trace import IsTrace
Shawn O. Pearce68194f42009-04-10 16:48:52 -070020
Shawn O. Pearcef4f04d92010-05-27 16:48:36 -070021_NOT_TTY = not os.isatty(2)
22
Shawn O. Pearce68194f42009-04-10 16:48:52 -070023class Progress(object):
Shawn O. Pearceb1168ff2009-04-16 08:00:42 -070024 def __init__(self, title, total=0):
Shawn O. Pearce68194f42009-04-10 16:48:52 -070025 self._title = title
26 self._total = total
27 self._done = 0
28 self._lastp = -1
Shawn O. Pearce2810cbc2009-04-18 10:09:16 -070029 self._start = time()
30 self._show = False
Shawn O. Pearce68194f42009-04-10 16:48:52 -070031
32 def update(self, inc=1):
33 self._done += inc
Shawn O. Pearce68194f42009-04-10 16:48:52 -070034
Shawn O. Pearcef4f04d92010-05-27 16:48:36 -070035 if _NOT_TTY or IsTrace():
Shawn O. Pearce6ed4e282009-04-18 09:59:18 -070036 return
37
Shawn O. Pearce2810cbc2009-04-18 10:09:16 -070038 if not self._show:
39 if 0.5 <= time() - self._start:
40 self._show = True
41 else:
42 return
43
Shawn O. Pearceb1168ff2009-04-16 08:00:42 -070044 if self._total <= 0:
45 sys.stderr.write('\r%s: %d, ' % (
46 self._title,
47 self._done))
48 sys.stderr.flush()
49 else:
50 p = (100 * self._done) / self._total
51
52 if self._lastp != p:
53 self._lastp = p
54 sys.stderr.write('\r%s: %3d%% (%d/%d) ' % (
55 self._title,
56 p,
57 self._done,
58 self._total))
59 sys.stderr.flush()
60
61 def end(self):
Shawn O. Pearcef4f04d92010-05-27 16:48:36 -070062 if _NOT_TTY or IsTrace() or not self._show:
Shawn O. Pearce6ed4e282009-04-18 09:59:18 -070063 return
64
Shawn O. Pearceb1168ff2009-04-16 08:00:42 -070065 if self._total <= 0:
66 sys.stderr.write('\r%s: %d, done. \n' % (
67 self._title,
68 self._done))
69 sys.stderr.flush()
70 else:
71 p = (100 * self._done) / self._total
72 sys.stderr.write('\r%s: %3d%% (%d/%d), done. \n' % (
Shawn O. Pearce68194f42009-04-10 16:48:52 -070073 self._title,
74 p,
75 self._done,
76 self._total))
77 sys.stderr.flush()