mirror of
https://github.com/fergalmoran/picard.git
synced 2026-03-13 16:55:15 +00:00
81 lines
2.7 KiB
Python
81 lines
2.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Picard, the next-generation MusicBrainz tagger
|
|
# Copyright (C) 2007 Lukáš Lalinský
|
|
#
|
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
import sys
|
|
import os
|
|
from PyQt4 import QtCore
|
|
import picard
|
|
from picard.util import thread
|
|
|
|
|
|
def _stderr_receiver(prefix, msg):
|
|
sys.stderr.write("%s %s %s %s%s" % (prefix, str(QtCore.QThread.currentThreadId()), str(QtCore.QTime.currentTime().toString()), msg, os.linesep))
|
|
|
|
|
|
class Log(object):
|
|
|
|
def __init__(self):
|
|
self.entries = []
|
|
self.receivers = [_stderr_receiver]
|
|
picard.log.log = self
|
|
picard.log.debug = self.debug
|
|
picard.log.info = self.info
|
|
picard.log.warning = self.warning
|
|
picard.log.error = self.error
|
|
|
|
def _message(self, prefix, message, args, kwargs):
|
|
if not (isinstance(message, str) or isinstance(message, unicode)):
|
|
message = repr(message)
|
|
if args:
|
|
message = message % args
|
|
prefix = "%s" % (prefix,)
|
|
message = "%s" % (message,)
|
|
if isinstance(prefix, unicode):
|
|
prefix = prefix.encode("utf-8", "replace")
|
|
if isinstance(message, unicode):
|
|
message = message.encode("utf-8", "replace")
|
|
self.entries.append((prefix, message))
|
|
for func in self.receivers:
|
|
try:
|
|
func(prefix, message)
|
|
except Exception, e:
|
|
import traceback
|
|
traceback.print_exc()
|
|
|
|
def add_receiver(self, receiver):
|
|
self.receivers.append(receiver)
|
|
|
|
def debug(self, message, *args, **kwargs):
|
|
pass
|
|
|
|
def info(self, message, *args, **kwargs):
|
|
thread.proxy_to_main(self._message, "I:", message, args, kwargs)
|
|
|
|
def warning(self, message, *args, **kwargs):
|
|
thread.proxy_to_main(self._message, "W:", message, args, kwargs)
|
|
|
|
def error(self, message, *args, **kwargs):
|
|
thread.proxy_to_main(self._message, "E:", message, args, kwargs)
|
|
|
|
|
|
class DebugLog(Log):
|
|
|
|
def debug(self, message, *args, **kwargs):
|
|
thread.proxy_to_main(self._message, "D:", message, args, kwargs)
|