Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 1 | # |
| 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 | |
| 16 | import sys |
Shawn O. Pearce | 2810cbc | 2009-04-18 10:09:16 -0700 | [diff] [blame^] | 17 | from time import time |
Shawn O. Pearce | 6ed4e28 | 2009-04-18 09:59:18 -0700 | [diff] [blame] | 18 | from trace import IsTrace |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 19 | |
| 20 | class Progress(object): |
Shawn O. Pearce | b1168ff | 2009-04-16 08:00:42 -0700 | [diff] [blame] | 21 | def __init__(self, title, total=0): |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 22 | self._title = title |
| 23 | self._total = total |
| 24 | self._done = 0 |
| 25 | self._lastp = -1 |
Shawn O. Pearce | 2810cbc | 2009-04-18 10:09:16 -0700 | [diff] [blame^] | 26 | self._start = time() |
| 27 | self._show = False |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 28 | |
| 29 | def update(self, inc=1): |
| 30 | self._done += inc |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 31 | |
Shawn O. Pearce | 6ed4e28 | 2009-04-18 09:59:18 -0700 | [diff] [blame] | 32 | if IsTrace(): |
| 33 | return |
| 34 | |
Shawn O. Pearce | 2810cbc | 2009-04-18 10:09:16 -0700 | [diff] [blame^] | 35 | if not self._show: |
| 36 | if 0.5 <= time() - self._start: |
| 37 | self._show = True |
| 38 | else: |
| 39 | return |
| 40 | |
Shawn O. Pearce | b1168ff | 2009-04-16 08:00:42 -0700 | [diff] [blame] | 41 | if self._total <= 0: |
| 42 | sys.stderr.write('\r%s: %d, ' % ( |
| 43 | self._title, |
| 44 | self._done)) |
| 45 | sys.stderr.flush() |
| 46 | else: |
| 47 | p = (100 * self._done) / self._total |
| 48 | |
| 49 | if self._lastp != p: |
| 50 | self._lastp = p |
| 51 | sys.stderr.write('\r%s: %3d%% (%d/%d) ' % ( |
| 52 | self._title, |
| 53 | p, |
| 54 | self._done, |
| 55 | self._total)) |
| 56 | sys.stderr.flush() |
| 57 | |
| 58 | def end(self): |
Shawn O. Pearce | 2810cbc | 2009-04-18 10:09:16 -0700 | [diff] [blame^] | 59 | if IsTrace() or not self._show: |
Shawn O. Pearce | 6ed4e28 | 2009-04-18 09:59:18 -0700 | [diff] [blame] | 60 | return |
| 61 | |
Shawn O. Pearce | b1168ff | 2009-04-16 08:00:42 -0700 | [diff] [blame] | 62 | if self._total <= 0: |
| 63 | sys.stderr.write('\r%s: %d, done. \n' % ( |
| 64 | self._title, |
| 65 | self._done)) |
| 66 | sys.stderr.flush() |
| 67 | else: |
| 68 | p = (100 * self._done) / self._total |
| 69 | sys.stderr.write('\r%s: %3d%% (%d/%d), done. \n' % ( |
Shawn O. Pearce | 68194f4 | 2009-04-10 16:48:52 -0700 | [diff] [blame] | 70 | self._title, |
| 71 | p, |
| 72 | self._done, |
| 73 | self._total)) |
| 74 | sys.stderr.flush() |