]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/summarystats.py
Simple summary stats class
[dak.git] / daklib / summarystats.py
diff --git a/daklib/summarystats.py b/daklib/summarystats.py
new file mode 100755 (executable)
index 0000000..2fe2dc3
--- /dev/null
@@ -0,0 +1,43 @@
+#!/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
+