__init__.py 2.45 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
"""High-perfomance logging profiler, mostly written in C."""

import _hotshot

from _hotshot import ProfilerError


class Profile:
    def __init__(self, logfn, lineevents=0, linetimings=1):
        self.lineevents = lineevents and 1 or 0
        self.linetimings = (linetimings and lineevents) and 1 or 0
        self._prof = p = _hotshot.profiler(
            logfn, self.lineevents, self.linetimings)

15 16 17 18 19 20 21 22 23
        # Attempt to avoid confusing results caused by the presence of
        # Python wrappers around these functions, but only if we can
        # be sure the methods have not been overridden or extended.
        if self.__class__ is Profile:
            self.close = p.close
            self.start = p.start
            self.stop = p.stop
            self.addinfo = p.addinfo

24
    def close(self):
25
        """Close the logfile and terminate the profiler."""
26 27
        self._prof.close()

28 29 30 31
    def fileno(self):
        """Return the file descriptor of the profiler's log file."""
        return self._prof.fileno()

32
    def start(self):
33
        """Start the profiler."""
34 35 36
        self._prof.start()

    def stop(self):
37
        """Stop the profiler."""
38 39
        self._prof.stop()

40
    def addinfo(self, key, value):
41
        """Add an arbitrary labelled value to the profile log."""
42 43
        self._prof.addinfo(key, value)

44 45 46 47
    # These methods offer the same interface as the profile.Profile class,
    # but delegate most of the work to the C implementation underneath.

    def run(self, cmd):
48 49 50 51 52 53
        """Profile an exec-compatible string in the script
        environment.

        The globals from the __main__ module are used as both the
        globals and locals for the script.
        """
54 55 56 57 58
        import __main__
        dict = __main__.__dict__
        return self.runctx(cmd, dict, dict)

    def runctx(self, cmd, globals, locals):
59 60 61 62 63
        """Evaluate an exec-compatible string in a specific
        environment.

        The string is compiled before profiling begins.
        """
64 65 66 67 68
        code = compile(cmd, "<string>", "exec")
        self._prof.runcode(code, globals, locals)
        return self

    def runcall(self, func, *args, **kw):
69 70 71 72 73 74 75
        """Profile a single call of a callable.

        Additional positional and keyword arguments may be passed
        along; the result of the call is returned, and exceptions are
        allowed to propogate cleanly, while ensuring that profiling is
        disabled on the way out.
        """
76
        return self._prof.runcall(func, args, kw)