diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-15 22:05:32 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-15 22:05:32 (GMT) |
commit | d5d5a0404021300e35492a930854b4cd6bdc176d (patch) | |
tree | 15b76e9b2331f40acd8b6a62a4cfaec55df35fdd /Lib | |
parent | 687ae00460da9cac04eb1ba8f6f5ab4db25fbfc2 (diff) | |
download | cpython-d5d5a0404021300e35492a930854b4cd6bdc176d.zip cpython-d5d5a0404021300e35492a930854b4cd6bdc176d.tar.gz cpython-d5d5a0404021300e35492a930854b4cd6bdc176d.tar.bz2 |
Avoid deep recursion when reading the header of the log file.
Add support for extracting function names from the log file, keeping the
extract-names-from-sources support as a fallback.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/hotshot/log.py | 67 |
1 files changed, 39 insertions, 28 deletions
diff --git a/Lib/hotshot/log.py b/Lib/hotshot/log.py index 39c4534..df07ddd 100644 --- a/Lib/hotshot/log.py +++ b/Lib/hotshot/log.py @@ -9,6 +9,7 @@ from _hotshot import \ WHAT_EXIT, \ WHAT_LINENO, \ WHAT_DEFINE_FILE, \ + WHAT_DEFINE_FUNC, \ WHAT_ADD_INFO @@ -44,35 +45,40 @@ class LogReader: # avoids using an additional method call which kills the performance. def next(self, index=0): - try: - what, tdelta, fileno, lineno = self._nextitem() - except TypeError: - # logreader().next() returns None at the end - self._reader.close() - raise StopIteration() - if what == WHAT_DEFINE_FILE: - self._filemap[fileno] = tdelta - return self.next() - if what == WHAT_ADD_INFO: - key = tdelta.lower() + while 1: try: - L = self._info[key] - except KeyError: - L = [] - self._info[key] = L - L.append(lineno) - if key == "current-directory": - self.cwd = lineno - return self.next() - if what == WHAT_ENTER: - t = self._decode_location(fileno, lineno) - filename, funcname = t - self._stack.append((filename, funcname, lineno)) - elif what == WHAT_EXIT: - filename, funcname, lineno = self._stack.pop() - else: - filename, funcname, firstlineno = self._stack[-1] - return what, (filename, lineno, funcname), tdelta + what, tdelta, fileno, lineno = self._nextitem() + except TypeError: + # logreader().next() returns None at the end + self._reader.close() + raise StopIteration() + if what == WHAT_DEFINE_FILE: + self._filemap[fileno] = tdelta + continue + if what == WHAT_DEFINE_FUNC: + filename = self._filemap[fileno] + self._funcmap[(fileno, lineno)] = (filename, tdelta) + continue + if what == WHAT_ADD_INFO: + key = tdelta.lower() + try: + L = self._info[key] + except KeyError: + L = [] + self._info[key] = L + L.append(lineno) + if key == "current-directory": + self.cwd = lineno + continue + if what == WHAT_ENTER: + t = self._decode_location(fileno, lineno) + filename, funcname = t + self._stack.append((filename, funcname, lineno)) + elif what == WHAT_EXIT: + filename, funcname, lineno = self._stack.pop() + else: + filename, funcname, firstlineno = self._stack[-1] + return what, (filename, lineno, funcname), tdelta if sys.version < "2.2": # Don't add this for newer Python versions; we only want iteration @@ -90,6 +96,11 @@ class LogReader: try: return self._funcmap[(fileno, lineno)] except KeyError: + # + # This should only be needed when the log file does not + # contain all the DEFINE_FUNC records needed to allow the + # function name to be retrieved from the log file. + # if self._loadfile(fileno): filename = funcname = None try: |