linkchecker/linkcheck/log/CSVLogger.py

100 lines
3.8 KiB
Python

# Copyright (C) 2000-2003 Bastian Kleineidam
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
import time
from linkcheck.log import strtime
from StandardLogger import StandardLogger
from Logger import Logger
from linkcheck import Config, i18n
class CSVLogger (StandardLogger):
""" CSV output. CSV consists of one line per entry. Entries are
separated by a semicolon.
"""
def __init__ (self, **args):
StandardLogger.__init__(self, **args)
self.separator = args['separator']
def init (self):
Logger.init(self)
if self.fd is None: return
self.starttime = time.time()
if self.has_field("intro"):
self.fd.write("# "+(i18n._("created by %s at %s\n") % (Config.AppName,
strtime(self.starttime))))
self.fd.write("# "+(i18n._("Get the newest version at %s\n") % Config.Url))
self.fd.write("# "+(i18n._("Write comments and bugs to %s\n\n") % \
Config.Email))
self.fd.write(i18n._("# Format of the entries:\n")+\
"# urlname;\n"
"# recursionlevel;\n"
"# parentname;\n"
"# baseref;\n"
"# errorstring;\n"
"# validstring;\n"
"# warningstring;\n"
"# infostring;\n"
"# valid;\n"
"# url;\n"
"# line;\n"
"# column;\n"
"# name;\n"
"# dltime;\n"
"# dlsize;\n"
"# checktime;\n"
"# cached;\n")
self.fd.flush()
def newUrl (self, urlData):
if self.fd is None: return
self.fd.write(
"%s%s%d%s%s%s%s%s%s%s%s%s%s%s%s%s%d%s%s%s%d%s%d%s%s%s%d%s%d%s%d%s%d\n" % (
urlData.urlName, self.separator,
urlData.recursionLevel, self.separator,
urlData.parentName, self.separator,
urlData.baseRef, self.separator,
urlData.errorString, self.separator,
urlData.validString, self.separator,
urlData.warningString, self.separator,
urlData.infoString, self.separator,
urlData.valid, self.separator,
urlData.url, self.separator,
urlData.line, self.separator,
urlData.column, self.separator,
urlData.name, self.separator,
urlData.dltime, self.separator,
urlData.dlsize, self.separator,
urlData.checktime, self.separator,
urlData.cached))
self.fd.flush()
def endOfOutput (self, linknumber=-1):
if self.fd is None: return
self.stoptime = time.time()
if self.has_field("outro"):
duration = self.stoptime - self.starttime
name = i18n._("seconds")
self.fd.write("# "+i18n._("Stopped checking at %s") % strtime(self.stoptime))
if duration > 60:
duration = duration / 60
name = i18n._("minutes")
if duration > 60:
duration = duration / 60
name = i18n._("hours")
self.fd.write(" (%.3f %s)\n" % (duration, name))
self.fd.flush()
self.fd = None