| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  | """Cache lines from files.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This is intended to read lines from modules imported -- hence if a filename | 
					
						
							|  |  |  | is not found, it will look down the module search path for a file by | 
					
						
							|  |  |  | that name. | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-03-27 15:12:43 +00:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2009-03-24 22:30:15 +00:00
										 |  |  | import tokenize | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-29 16:59:43 +00:00
										 |  |  | __all__ = ["getline", "clearcache", "checkcache"] | 
					
						
							| 
									
										
										
										
											2001-01-24 06:27:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | def getline(filename, lineno, module_globals=None): | 
					
						
							|  |  |  |     lines = getlines(filename, module_globals) | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     if 1 <= lineno <= len(lines): | 
					
						
							|  |  |  |         return lines[lineno-1] | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return '' | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The cache | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | cache = {} # The cache | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def clearcache(): | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     """Clear the cache entirely.""" | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     global cache | 
					
						
							|  |  |  |     cache = {} | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | def getlines(filename, module_globals=None): | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     """Get the lines for a file from the cache.
 | 
					
						
							|  |  |  |     Update the cache if it doesn't contain an entry for this file already.""" | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |     if filename in cache: | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |         return cache[filename][2] | 
					
						
							|  |  |  |     else: | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  |         return updatecache(filename, module_globals) | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-26 09:16:42 +00:00
										 |  |  | def checkcache(filename=None): | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     """Discard cache entries that are out of date.
 | 
					
						
							|  |  |  |     (This is not checked upon each call!)"""
 | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-26 09:16:42 +00:00
										 |  |  |     if filename is None: | 
					
						
							| 
									
										
										
										
											2007-02-26 22:21:25 +00:00
										 |  |  |         filenames = list(cache.keys()) | 
					
						
							| 
									
										
										
										
											2004-10-26 09:16:42 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         if filename in cache: | 
					
						
							|  |  |  |             filenames = [filename] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for filename in filenames: | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |         size, mtime, lines, fullname = cache[filename] | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  |         if mtime is None: | 
					
						
							|  |  |  |             continue   # no-op for files loaded via a __loader__ | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             stat = os.stat(fullname) | 
					
						
							|  |  |  |         except os.error: | 
					
						
							|  |  |  |             del cache[filename] | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2002-06-01 19:51:15 +00:00
										 |  |  |         if size != stat.st_size or mtime != stat.st_mtime: | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |             del cache[filename] | 
					
						
							| 
									
										
										
										
											1992-01-10 14:54:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | def updatecache(filename, module_globals=None): | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     """Update a cache entry and return its list of lines.
 | 
					
						
							|  |  |  |     If something's wrong, print a message, discard the cache entry, | 
					
						
							|  |  |  |     and return an empty list."""
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |     if filename in cache: | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |         del cache[filename] | 
					
						
							| 
									
										
										
										
											2010-05-21 21:45:06 +00:00
										 |  |  |     if not filename or (filename.startswith('<') and filename.endswith('>')): | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |         return [] | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     fullname = filename | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         stat = os.stat(fullname) | 
					
						
							| 
									
										
										
										
											2010-05-21 21:45:06 +00:00
										 |  |  |     except OSError: | 
					
						
							| 
									
										
										
										
											2009-05-05 08:31:54 +00:00
										 |  |  |         basename = filename | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Try for a __loader__, if available | 
					
						
							|  |  |  |         if module_globals and '__loader__' in module_globals: | 
					
						
							|  |  |  |             name = module_globals.get('__name__') | 
					
						
							|  |  |  |             loader = module_globals['__loader__'] | 
					
						
							|  |  |  |             get_source = getattr(loader, 'get_source', None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if name and get_source: | 
					
						
							| 
									
										
										
										
											2008-12-14 11:50:48 +00:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     data = get_source(name) | 
					
						
							|  |  |  |                 except (ImportError, IOError): | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     if data is None: | 
					
						
							|  |  |  |                         # No luck, the PEP302 loader cannot find the source | 
					
						
							|  |  |  |                         # for this module. | 
					
						
							|  |  |  |                         return [] | 
					
						
							|  |  |  |                     cache[filename] = ( | 
					
						
							|  |  |  |                         len(data), None, | 
					
						
							|  |  |  |                         [line+'\n' for line in data.splitlines()], fullname | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                     return cache[filename][2] | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 08:31:54 +00:00
										 |  |  |         # Try looking through the module search path, which is only useful | 
					
						
							|  |  |  |         # when handling a relative filename. | 
					
						
							|  |  |  |         if os.path.isabs(filename): | 
					
						
							|  |  |  |             return [] | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |         for dirname in sys.path: | 
					
						
							|  |  |  |             try: | 
					
						
							| 
									
										
										
										
											2001-05-29 04:27:01 +00:00
										 |  |  |                 fullname = os.path.join(dirname, basename) | 
					
						
							|  |  |  |             except (TypeError, AttributeError): | 
					
						
							|  |  |  |                 # Not sufficiently string-like to do anything useful with. | 
					
						
							| 
									
										
										
										
											2010-05-21 21:45:06 +00:00
										 |  |  |                 continue | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 stat = os.stat(fullname) | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |             except os.error: | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |                 pass | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return [] | 
					
						
							| 
									
										
										
										
											2010-05-21 21:45:06 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2010-11-09 01:08:59 +00:00
										 |  |  |         with tokenize.open(fullname) as fp: | 
					
						
							| 
									
										
										
										
											2010-05-21 21:45:06 +00:00
										 |  |  |             lines = fp.readlines() | 
					
						
							|  |  |  |     except IOError: | 
					
						
							| 
									
										
										
										
											2010-09-29 01:30:45 +00:00
										 |  |  |         return [] | 
					
						
							| 
									
										
										
										
											2010-05-21 21:45:06 +00:00
										 |  |  |     if lines and not lines[-1].endswith('\n'): | 
					
						
							|  |  |  |         lines[-1] += '\n' | 
					
						
							| 
									
										
										
										
											2002-06-01 19:51:15 +00:00
										 |  |  |     size, mtime = stat.st_size, stat.st_mtime | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  |     cache[filename] = size, mtime, lines, fullname | 
					
						
							|  |  |  |     return lines |