| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/python2.6/site-packages/packagekit/ |
Upload File : |
# Licensed under the GNU General Public License Version 2
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# Copyright (C) 2008
# Richard Hughes <richard@hughsie.com>
class PackagekitProgress:
'''
Progress class there controls the total progress of a transaction
the transaction is divided in n milestones. the class contains a subpercentage
of the current step (milestone n -> n+1) and the percentage of the whole transaction
Usage:
from packagekit import PackagekitProgress
steps = [10, 30, 50, 70] # Milestones in %
progress = PackagekitProgress()
progress.set_steps(steps)
for milestone in range(len(steps)):
# do the action is this step
for i in range(100):
# do some action
progress.set_subpercent(i+1)
print "progress : %s " % progress.percent
progress.step() # step to next milestone
'''
#TODO: Add support for elapsed/remaining time
def __init__(self):
self.percent = 0
self.steps = []
self.current_step = 0
self.subpercent = 0
def set_steps(self, steps):
'''
Set the steps for the whole transaction
@param steps: list of int representing the percentage of each step in the transaction
'''
self.reset()
self.steps = steps
self.current_step = 0
def reset(self):
self.percent = 0
self.steps = []
self.current_step = 0
self.subpercent = 0
def step(self):
'''
Step to the next step in the transaction
'''
if self.current_step < len(self.steps)-1:
self.current_step += 1
self.percent = self.steps[self.current_step]
self.subpercent = 0
else:
self.percent = 100
self.subpercent = 0
def set_subpercent(self, pct):
'''
Set subpercentage and update percentage
'''
self.subpercent = pct
self._update_percent()
def _update_percent(self):
'''
Increment percentage based on current step and subpercentage
'''
if self.current_step == 0:
startpct = 0
else:
startpct = self.steps[self.current_step-1]
if self.current_step < len(self.steps)-1:
endpct = self.steps[self.current_step+1]
else:
endpct = 100
deltapct = endpct -startpct
f = float(self.subpercent)/100.0
incr = int(f*deltapct)
self.percent = startpct + incr