提交 7f067e51 编写于 作者: M Mark Hymers

Simple summary stats class

This is needed to get rid of this info from the Upload "class" so that
it can actually become, well, a class, not a badly and confusingly used
global variable with some attributes
Signed-off-by: NMark Hymers <mhy@debian.org>
上级 8ddcf2fc
......@@ -54,12 +54,14 @@ import contextlib
import pwd
import apt_pkg, apt_inst
import examine_package
from daklib import database
from daklib import daklog
from daklib import queue
from daklib import utils
from daklib.regexes import re_no_epoch, re_default_answer, re_isanum
from daklib.dak_exceptions import CantOpenError, AlreadyLockedError, CantGetLockError
from daklib.summarystats import SummaryStats
# Globals
Cnf = None #: Configuration, apt_pkg.Configuration
......@@ -1021,8 +1023,8 @@ def do_pkg(changes_file):
################################################################################
def end():
accept_count = Upload.accept_count
accept_bytes = Upload.accept_bytes
accept_count = SummaryStats().accept_count
accept_bytes = SummaryStats().accept_bytes
if accept_count:
sets = "set"
......
......@@ -58,6 +58,7 @@ from daklib.regexes import re_valid_version, re_valid_pkg_name, re_changelog_ver
re_strip_revision, re_strip_srcver, re_spacestrip, \
re_isanum, re_no_epoch, re_no_revision, re_taint_free, \
re_isadeb, re_extract_src_version, re_issource, re_default_answer
from daklib.summarystats import SummaryStats
from types import *
......@@ -1604,8 +1605,8 @@ def main():
if not Options["No-Action"]:
clean_holding()
accept_count = Upload.accept_count
accept_bytes = Upload.accept_bytes
accept_count = SummaryStats().accept_count
accept_bytes = SummaryStats().accept_bytes
if accept_count:
sets = "set"
if accept_count > 1:
......
#!/usr/bin/env python
# vim:set et sw=4:
"""
Simple summary class for dak
@contact: Debian FTP Master <ftpmaster@debian.org>
@copyright: 2001 - 2006 James Troup <james@nocrew.org>
@copyright: 2009 Joerg Jaspert <joerg@debian.org>
@license: GNU General Public License version 2 or later
"""
# 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
###############################################################################
from singleton import Singleton
###############################################################################
class SummaryStats(Singleton)
def __init__(self, *args, **kwargs):
super(SummaryStats, self).__init__(*args, **kwargs)
def _startup(self):
self.reset_accept()
def reset_accept(self):
self.accept_count = 0
self.accept_bytes = 0
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册