~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/recordcounter.py

  • Committer: Parth Malwankar
  • Date: 2010-05-12 15:27:29 UTC
  • mto: This revision was merged to the branch mainline in revision 5241.
  • Revision ID: parth.malwankar@gmail.com-20100512152729-n279zca61l6nf33z
remote push now shows estimated work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006-2010 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Record counting support for showing progress of revision fetch"""
 
18
 
 
19
def _gen_printer(stream):
 
20
    count = 0
 
21
    for s in stream:
 
22
        count = count + 1
 
23
        yield s
 
24
    print "count is:", count, "###########"
 
25
 
 
26
class RecordCounter(object):
 
27
    def __init__(self):
 
28
        self.initialized = False
 
29
        self.current = 0
 
30
        self.key_count = 0
 
31
        self.max = 0
 
32
        self.step = 51
 
33
        self.stream_type = None
 
34
 
 
35
    def is_initialized(self):
 
36
        return self.initialized
 
37
 
 
38
    def setup(self, key_count, current, stream_type):
 
39
        self.current = current
 
40
        self.key_count = key_count
 
41
        self.max = key_count * 10.3
 
42
        self.stream_type = stream_type
 
43
        self.initialized = True
 
44
 
 
45
    def increment(self, count):
 
46
        self.current += count
 
47
        if self.current > self.max:
 
48
            self.max += self.key_count
 
49