~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Martin Pool
  • Date: 2005-05-06 03:20:15 UTC
  • Revision ID: mbp@sourcefrog.net-20050506032014-decf4918803147d2
- split out notes on storing annotations in revfiles

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
20
17
__author__ = "Martin Pool <mbp@canonical.com>"
21
18
 
22
19
 
23
 
import sys, os, time, socket, stat
 
20
"""Messages and logging for bazaar-ng
 
21
 
 
22
Nothing is actually logged unless you call bzrlib.open_tracefile().
 
23
"""
 
24
 
 
25
 
 
26
import sys, os
24
27
import bzrlib
25
28
 
26
29
######################################################################
27
30
# messages and logging
28
31
 
29
 
## TODO: If --verbose is given then write to both stderr and
30
 
## _tracefile; perhaps replace _tracefile with a tee thing.
31
 
 
32
32
global _tracefile, _starttime
 
33
_tracefile = None
33
34
 
34
35
# used to have % (os.environ['USER'], time.time(), os.getpid()), 'w')
35
 
 
 
36
_starttime = None
36
37
 
37
38
# If false, notes also go to stdout; should replace this with --silent
38
39
# at some point.
39
40
silent = False
40
41
 
41
 
verbose = False
 
42
 
 
43
# fix this if we ever fork within python
 
44
_mypid = os.getpid()
 
45
_logprefix = '[%d] ' % _mypid
 
46
 
 
47
 
 
48
def _write_trace(msg):
 
49
    if _tracefile:
 
50
        _tracefile.write(_logprefix + msg + '\n')
42
51
 
43
52
 
44
53
def warning(msg):
45
 
    b = 'bzr: warning: ' + msg + '\n'
46
 
    sys.stderr.write(b)
47
 
    _tracefile.write(b)
48
 
    _tracefile.flush()
49
 
 
50
 
def mutter(msg):
51
 
    _tracefile.write(msg)
52
 
    _tracefile.write('\n')
53
 
    _tracefile.flush()
54
 
    if verbose:
55
 
        sys.stderr.write('- ' + msg + '\n')
 
54
    sys.stderr.write('bzr: warning: ' + msg + '\n')
 
55
    _write_trace('warning: ' + msg)
 
56
 
 
57
 
 
58
mutter = _write_trace
56
59
 
57
60
 
58
61
def note(msg):
59
62
    b = '* ' + str(msg) + '\n'
60
63
    if not silent:
61
64
        sys.stderr.write(b)
62
 
    _tracefile.write(b)
63
 
    _tracefile.flush()
 
65
    _write_trace('note: ' + msg)
64
66
 
65
67
 
66
68
def log_error(msg):
67
 
    sys.stderr.write(msg)
68
 
    _tracefile.write(msg)
69
 
    _tracefile.flush()
70
 
 
71
 
 
72
 
 
73
 
def create_tracefile(argv):
74
 
    # TODO: Also show contents of /etc/lsb-release, if it can be parsed.
75
 
    #       Perhaps that should eventually go into the platform library?
76
 
    # TODO: If the file doesn't exist, add a note describing it.
77
 
 
 
69
    sys.stderr.write(msg + '\n')
 
70
    _write_trace(msg)
 
71
 
 
72
 
 
73
def _rollover_trace_maybe(trace_fname):
 
74
    import stat
 
75
    try:
 
76
        size = os.stat(trace_fname)[stat.ST_SIZE]
 
77
        if size <= 4 << 20:
 
78
            return
 
79
        old_fname = trace_fname + '.old'
 
80
 
 
81
        try:
 
82
            # must remove before rename on windows
 
83
            os.remove(old_fname)
 
84
        except OSError:
 
85
            pass
 
86
 
 
87
        try:
 
88
            # might fail if in use on windows
 
89
            os.rename(trace_fname, old_fname)
 
90
        except OSError:
 
91
            pass
 
92
    except OSError:
 
93
        return
 
94
 
 
95
 
 
96
 
 
97
def open_tracefile(argv):
78
98
    # Messages are always written to here, so that we have some
79
99
    # information if something goes wrong.  In a future version this
80
100
    # file will be removed on successful completion.
81
101
    global _starttime, _tracefile
 
102
    import stat, codecs
82
103
 
83
104
    _starttime = os.times()[4]
84
105
 
85
 
    _tracefile = file('.bzr.log', 'at')
 
106
    trace_fname = os.path.join(os.path.expanduser('~/.bzr.log'))
 
107
    _rollover_trace_maybe(trace_fname)
 
108
 
 
109
    # buffering=1 means line buffered
 
110
    _tracefile = codecs.open(trace_fname, 'at', 'utf8', buffering=1)
86
111
    t = _tracefile
87
112
 
88
113
    if os.fstat(t.fileno())[stat.ST_SIZE] == 0:
93
118
    # TODO: If we failed to create the file, perhaps give a warning
94
119
    # but don't abort; send things to /dev/null instead?
95
120
 
96
 
    
97
 
    t.write('-' * 60 + '\n')
98
 
    t.write('bzr invoked at %s\n' % bzrlib.osutils.format_date(time.time()))
99
 
    t.write('  by %s on %s\n' % (bzrlib.osutils.username(), socket.getfqdn()))
100
 
    t.write('  arguments: %r\n' % argv)
101
 
 
102
 
    import platform
103
 
    t.write('  platform: %s\n' % platform.platform())
104
 
    t.write('  python: %s\n' % platform.python_version())
105
 
 
106
 
    import atexit
107
 
    atexit.register(_close_trace)
108
 
 
109
 
 
110
 
def _close_trace():
 
121
    _write_trace('bzr %s invoked on python %s (%s)'
 
122
                 % (bzrlib.__version__,
 
123
                    '.'.join(map(str, sys.version_info)),
 
124
                    sys.platform))
 
125
 
 
126
    _write_trace('  arguments: %r' % argv)
 
127
    _write_trace('  working dir: ' + os.getcwdu())
 
128
 
 
129
 
 
130
def close_trace():
111
131
    times = os.times()
112
132
    mutter("finished, %.3fu/%.3fs cpu, %.3fu/%.3fs cum, %.3f elapsed"
113
133
           % (times[:4] + ((times[4] - _starttime),)))
114
134
 
115
135
 
116
136
 
 
137
def log_exception():
 
138
    """Log the last exception into the trace file."""
 
139
    import cgitb
 
140
    s = cgitb.text(sys.exc_info())
 
141
    for l in s.split('\n'):
 
142
        _write_trace(l)
 
143
        
 
144