~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to lib/trapcall.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

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
"""Execute a callback and trap exceptions.
 
30
"""
 
31
 
 
32
from miro.clock import clock
 
33
import logging
 
34
from miro import signals
 
35
 
 
36
def trap_call(when, function, *args, **kwargs):
 
37
    """Make a call to a function, but trap any exceptions and convert
 
38
    them into error signals.  Return True if the function successfully
 
39
    completed, False if it threw an exception
 
40
    """
 
41
    try:
 
42
        function(*args, **kwargs)
 
43
        return True
 
44
    except (SystemExit, KeyboardInterrupt):
 
45
        raise
 
46
    except:
 
47
        logging.debug("trap_call exception: %s %s %s", function, args, kwargs)
 
48
        signals.system.failed_exn(when)
 
49
        return False
 
50
 
 
51
# Turn the next flag on to track the cumulative time for each when argument to
 
52
# time_trap_call().  Don't do this for production builds though!  Since we never
 
53
# clean up the entries in the cumulative dict, turning this on amounts to a
 
54
# memory leak.
 
55
TRACK_CUMULATIVE = False 
 
56
cumulative = {}
 
57
cancel = False
 
58
 
 
59
def time_trap_call(when, function, *args, **kwargs):
 
60
    global cancel
 
61
    cancel = False
 
62
    start = clock()
 
63
    retval = trap_call(when, function, *args, **kwargs)
 
64
    end = clock()
 
65
    if cancel:
 
66
        return retval
 
67
    if end-start > 1.0:
 
68
        logging.timing("WARNING: %s too slow (%.3f secs)", when, end-start)
 
69
    if TRACK_CUMULATIVE:
 
70
        try:
 
71
            total = cumulative[when]
 
72
        except KeyError:
 
73
            total = 0
 
74
        total += end - start
 
75
        cumulative[when] = total
 
76
        if total > 5.0:
 
77
            logging.timing("%s cumulative is too slow (%.3f secs)", when, total)
 
78
            cumulative[when] = 0
 
79
        return retval
 
80
    cancel = True
 
81
    return retval