~ubuntu-branches/ubuntu/trusty/miro/trusty

« back to all changes in this revision

Viewing changes to platform/windows-xul/plat/prelogger.py

  • Committer: Daniel Hahler
  • Date: 2010-04-13 18:51:35 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: ubuntu-launchpad@thequod.de-20100413185135-xi24v1diqg8w406x
Merging shared upstream rev into target branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Miro - an RSS based video player application
 
2
# Copyright (C) 2005-2010 Participatory Culture Foundation
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
#
 
18
# In addition, as a special exception, the copyright holders give
 
19
# permission to link the code of portions of this program with the OpenSSL
 
20
# library.
 
21
#
 
22
# You must obey the GNU General Public License in all respects for all of
 
23
# the code used other than OpenSSL. If you modify file(s) with this
 
24
# exception, you may extend this exception to your version of the file(s),
 
25
# but you are not obligated to do so. If you do not wish to do so, delete
 
26
# this exception statement from your version. If you delete this exception
 
27
# statement from all source files in the program, then also delete it here.
 
28
 
 
29
"""
 
30
Handle logging before we are ready to write it out to disk.
 
31
 
 
32
This module defines the PreLogger class, which simply remembers logging
 
33
records instead of outputing them somewhere.  In plat.util.setup_logging(), we
 
34
retrieve records and write them out to disk after logging is setup.
 
35
"""
 
36
 
 
37
import logging
 
38
 
 
39
class PreLogger(logging.Handler):
 
40
    def __init__(self):
 
41
        logging.Handler.__init__(self)
 
42
        self.records = []
 
43
 
 
44
    def emit(self, record):
 
45
        self.records.append(record)
 
46
 
 
47
_handler = None
 
48
 
 
49
def install():
 
50
    """Install a logger to remember records before we have logging setup.
 
51
    """
 
52
    global _handler
 
53
    if _handler is not None:
 
54
        raise ValueError("Prelogger already installed")
 
55
    _handler = PreLogger()
 
56
    logger = logging.getLogger('')
 
57
    logger.addHandler(_handler)
 
58
    logger.setLevel(logging.DEBUG)
 
59
 
 
60
def remove():
 
61
    """Remove the pre logger.  Return a list of records that it logged. """
 
62
    global _handler
 
63
    if _handler is None:
 
64
        raise ValueError("Prelogger not installed")
 
65
    logging.getLogger('').removeHandler(_handler)
 
66
    records = _handler.records
 
67
    _handler = None
 
68
    return records