mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-21 16:30:28 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1636 e7d03fd6-7b0d-0410-9947-9c21f3af8025
108 lines
4.6 KiB
Python
108 lines
4.6 KiB
Python
# -*- coding: iso-8859-1 -*-
|
|
"""a csv logger"""
|
|
# Copyright (C) 2000-2004 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
|
|
import csv
|
|
import os
|
|
|
|
import linkcheck.logger
|
|
import linkcheck.configuration
|
|
|
|
from linkcheck.i18n import _
|
|
|
|
|
|
class CSVLogger (linkcheck.logger.Logger):
|
|
""" CSV output. CSV consists of one line per entry. Entries are
|
|
separated by a semicolon.
|
|
"""
|
|
def __init__ (self, **args):
|
|
"""store default separator and (os dependent) line terminator"""
|
|
super(CSVLogger, self).__init__(**args)
|
|
self.init_fileoutput(args)
|
|
self.separator = args['separator']
|
|
self.lineterminator = os.linesep
|
|
|
|
def start_output (self):
|
|
"""print checking start info as csv comment"""
|
|
super(CSVLogger, self).start_output()
|
|
if self.fd is None:
|
|
return
|
|
self.starttime = time.time()
|
|
if self.has_field("intro"):
|
|
self.fd.write("# "+(_("created by %s at %s") % \
|
|
(linkcheck.configuration.AppName,
|
|
linkcheck.strformat.strtime(self.starttime))))
|
|
self.fd.write(self.lineterminator)
|
|
self.fd.write("# "+(_("Get the newest version at %(url)s") % \
|
|
{'url': linkcheck.configuration.Url}))
|
|
self.fd.write(self.lineterminator)
|
|
self.fd.write("# "+(_("Write comments and bugs to %(email)s") % \
|
|
{'email': linkcheck.configuration.Email}))
|
|
self.fd.write(self.lineterminator)
|
|
self.fd.write(_("# Format of the entries:")+self.lineterminator+
|
|
"# urlname;"+self.lineterminator+
|
|
"# recursionlevel;"+self.lineterminator+
|
|
"# parentname;"+self.lineterminator+
|
|
"# baseref;"+self.lineterminator+
|
|
"# result;"+self.lineterminator+
|
|
"# warningstring;"+self.lineterminator+
|
|
"# infostring;"+self.lineterminator+
|
|
"# valid;"+self.lineterminator+
|
|
"# url;"+self.lineterminator+
|
|
"# line;"+self.lineterminator+
|
|
"# column;"+self.lineterminator+
|
|
"# name;"+self.lineterminator+
|
|
"# dltime;"+self.lineterminator+
|
|
"# dlsize;"+self.lineterminator+
|
|
"# checktime;"+self.lineterminator+
|
|
"# cached;"+self.lineterminator)
|
|
self.flush()
|
|
self.writer = csv.writer(self.fd, dialect='excel',
|
|
delimiter=self.separator, lineterminator=self.lineterminator)
|
|
|
|
def new_url (self, url_data):
|
|
"""print csv formatted url check info"""
|
|
if self.fd is None:
|
|
return
|
|
row = [url_data.base_url, url_data.recursion_level,
|
|
url_data.parent_url or "", url_data.base_ref or "",
|
|
url_data.result,
|
|
os.linesep.join(url_data.warning),
|
|
os.linesep.join(url_data.info),
|
|
url_data.valid, url_data.url or "",
|
|
url_data.line, url_data.column,
|
|
url_data.name, url_data.dltime,
|
|
url_data.dlsize, url_data.checktime,
|
|
url_data.cached]
|
|
self.writer.writerow(row)
|
|
self.flush()
|
|
|
|
def end_output (self, linknumber=-1):
|
|
"""print end of checking info as csv comment"""
|
|
if self.fd is None:
|
|
return
|
|
self.stoptime = time.time()
|
|
if self.has_field("outro"):
|
|
duration = self.stoptime - self.starttime
|
|
self.fd.write("# "+_("Stopped checking at %s (%s)%s")%\
|
|
(linkcheck.strformat.strtime(self.stoptime),
|
|
linkcheck.strformat.strduration(duration),
|
|
self.lineterminator))
|
|
self.flush()
|
|
self.fd.close()
|
|
self.fd = None
|