~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Aaron Bentley
  • Date: 2005-08-26 14:39:43 UTC
  • mfrom: (974.2.7) (974.2.6)
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: abentley@panoramicfeedback.com-20050826143943-c677569cfb887d35
Merged changes from the merge4 branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env python
2
 
# -*- coding: UTF-8 -*-
3
 
 
4
1
# This program is free software; you can redistribute it and/or modify
5
2
# it under the terms of the GNU General Public License as published by
6
3
# the Free Software Foundation; either version 2 of the License, or
16
13
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
14
 
18
15
 
 
16
 
 
17
# TODO: Could probably replace this with something based on Python logging
 
18
# module.
 
19
 
 
20
 
 
21
 
 
22
 
19
23
__copyright__ = "Copyright (C) 2005 Canonical Ltd."
20
24
__author__ = "Martin Pool <mbp@canonical.com>"
21
25
 
22
26
 
23
 
import sys, os, time, socket, stat, codecs
24
 
import bzrlib
 
27
"""Messages and logging for bazaar-ng
 
28
 
 
29
Nothing is actually logged unless you call bzrlib.open_tracefile().
 
30
"""
 
31
 
 
32
 
 
33
import sys, os
25
34
 
26
35
######################################################################
27
36
# messages and logging
28
37
 
29
 
## TODO: If --verbose is given then write to both stderr and
30
 
## _tracefile; perhaps replace _tracefile with a tee thing.
31
 
 
32
38
global _tracefile, _starttime
33
39
_tracefile = None
34
40
 
40
46
silent = False
41
47
 
42
48
 
43
 
# TODO: Somehow tie this to the --verbose option?
44
 
verbose = False
45
 
 
46
 
 
47
49
# fix this if we ever fork within python
48
50
_mypid = os.getpid()
49
51
_logprefix = '[%d] ' % _mypid
50
52
 
51
53
 
52
54
def _write_trace(msg):
53
 
    _tracefile.write(_logprefix + msg + '\n')
 
55
    if 0:
 
56
        if _tracefile:
 
57
            _tracefile.write(_logprefix + msg + '\n')
54
58
 
55
59
 
56
60
def warning(msg):
73
77
    _write_trace(msg)
74
78
 
75
79
 
76
 
# TODO: Something to log exceptions in here.
77
 
 
78
 
 
79
 
 
80
80
def _rollover_trace_maybe(trace_fname):
 
81
    import stat
81
82
    try:
82
83
        size = os.stat(trace_fname)[stat.ST_SIZE]
83
 
        if size <= 1 << 20:
 
84
        if size <= 4 << 20:
84
85
            return
85
86
        old_fname = trace_fname + '.old'
86
87
 
100
101
 
101
102
 
102
103
 
103
 
def create_tracefile(argv):
104
 
    # TODO: Also show contents of /etc/lsb-release, if it can be parsed.
105
 
    #       Perhaps that should eventually go into the platform library?
106
 
    # TODO: If the file doesn't exist, add a note describing it.
107
 
 
 
104
def open_tracefile(argv=[], tracefilename='~/.bzr.log'):
108
105
    # Messages are always written to here, so that we have some
109
106
    # information if something goes wrong.  In a future version this
110
107
    # file will be removed on successful completion.
111
108
    global _starttime, _tracefile
 
109
    import stat, codecs
112
110
 
113
111
    _starttime = os.times()[4]
114
112
 
115
 
    trace_fname = os.path.join(os.path.expanduser('~/.bzr.log'))
 
113
    trace_fname = os.path.join(os.path.expanduser(tracefilename))
116
114
    _rollover_trace_maybe(trace_fname)
117
115
 
118
116
    # buffering=1 means line buffered
119
 
    _tracefile = codecs.open(trace_fname, 'at', 'utf8', buffering=1)
120
 
    t = _tracefile
121
 
 
122
 
    if os.fstat(t.fileno())[stat.ST_SIZE] == 0:
123
 
        t.write("\nthis is a debug log for diagnosing/reporting problems in bzr\n")
124
 
        t.write("you can delete or truncate this file, or include sections in\n")
125
 
        t.write("bug reports to bazaar-ng@lists.canonical.com\n\n")
126
 
 
127
 
    # TODO: If we failed to create the file, perhaps give a warning
128
 
    # but don't abort; send things to /dev/null instead?
129
 
 
130
 
    _write_trace('bzr %s invoked on python %s (%s)'
131
 
                 % (bzrlib.__version__,
132
 
                    '.'.join(map(str, sys.version_info)),
133
 
                    sys.platform))
134
 
 
135
 
    _write_trace('  arguments: %r' % argv)
136
 
    _write_trace('  working dir: ' + os.getcwdu())
137
 
 
 
117
    try:
 
118
        _tracefile = codecs.open(trace_fname, 'at', 'utf8', buffering=1)
 
119
        t = _tracefile
 
120
 
 
121
        if os.fstat(t.fileno())[stat.ST_SIZE] == 0:
 
122
            t.write("\nthis is a debug log for diagnosing/reporting problems in bzr\n")
 
123
            t.write("you can delete or truncate this file, or include sections in\n")
 
124
            t.write("bug reports to bazaar-ng@lists.canonical.com\n\n")
 
125
 
 
126
        import bzrlib
 
127
        _write_trace('bzr %s invoked on python %s (%s)'
 
128
                     % (bzrlib.__version__,
 
129
                        '.'.join(map(str, sys.version_info)),
 
130
                        sys.platform))
 
131
 
 
132
        _write_trace('  arguments: %r' % argv)
 
133
        _write_trace('  working dir: ' + os.getcwdu())
 
134
    except IOError, e:
 
135
        warning("failed to open trace file: %s" % (e))
138
136
 
139
137
def close_trace():
140
138
    times = os.times()
143
141
 
144
142
 
145
143
 
146
 
def log_exception(e):
147
 
    import traceback, cStringIO
148
 
    s = cStringIO.StringIO()
149
 
    traceback.print_exc(None, s)
150
 
    for l in s.getvalue().split('\n'):
 
144
def log_exception():
 
145
    """Log the last exception into the trace file."""
 
146
    import cgitb
 
147
    s = cgitb.text(sys.exc_info())
 
148
    for l in s.split('\n'):
151
149
        _write_trace(l)
152
150
        
153
151