home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / System / warnings.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2005-11-09  |  7.7 KB  |  297 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Python part of the warnings subsystem.'''
  5. import sys
  6. import types
  7. import linecache
  8. __all__ = [
  9.     'warn',
  10.     'showwarning',
  11.     'formatwarning',
  12.     'filterwarnings',
  13.     'resetwarnings']
  14. filters = []
  15. defaultaction = 'default'
  16. onceregistry = { }
  17.  
  18. def warn(message, category = None, stacklevel = 1):
  19.     '''Issue a warning, or maybe ignore it or raise an exception.'''
  20.     if isinstance(message, Warning):
  21.         category = message.__class__
  22.     
  23.     if category is None:
  24.         category = UserWarning
  25.     
  26.     if not issubclass(category, Warning):
  27.         raise AssertionError
  28.     
  29.     try:
  30.         caller = sys._getframe(stacklevel)
  31.     except ValueError:
  32.         globals = sys.__dict__
  33.         lineno = 1
  34.  
  35.     globals = caller.f_globals
  36.     lineno = caller.f_lineno
  37.     if '__name__' in globals:
  38.         module = globals['__name__']
  39.     else:
  40.         module = '<string>'
  41.     filename = globals.get('__file__')
  42.     if filename:
  43.         fnl = filename.lower()
  44.         if fnl.endswith('.pyc') or fnl.endswith('.pyo'):
  45.             filename = filename[:-1]
  46.         
  47.     elif module == '__main__':
  48.         filename = sys.argv[0]
  49.     
  50.     if not filename:
  51.         filename = module
  52.     
  53.     registry = globals.setdefault('__warningregistry__', { })
  54.     warn_explicit(message, category, filename, lineno, module, registry)
  55.  
  56.  
  57. def warn_explicit(message, category, filename, lineno, module = None, registry = None):
  58.     if module is None:
  59.         module = filename
  60.         if module[-3:].lower() == '.py':
  61.             module = module[:-3]
  62.         
  63.     
  64.     if registry is None:
  65.         registry = { }
  66.     
  67.     if isinstance(message, Warning):
  68.         text = str(message)
  69.         category = message.__class__
  70.     else:
  71.         text = message
  72.         message = category(message)
  73.     key = (text, category, lineno)
  74.     if registry.get(key):
  75.         return None
  76.     
  77.     for item in filters:
  78.         (action, msg, cat, mod, ln) = item
  79.         if (msg is None or msg.match(text)) and issubclass(category, cat):
  80.             if mod is None or mod.match(module):
  81.                 if ln == 0 or lineno == ln:
  82.                     break
  83.                     continue
  84.     else:
  85.         action = defaultaction
  86.     if action == 'ignore':
  87.         registry[key] = 1
  88.         return None
  89.     
  90.     if action == 'error':
  91.         raise message
  92.     
  93.     if action == 'once':
  94.         registry[key] = 1
  95.         oncekey = (text, category)
  96.         if onceregistry.get(oncekey):
  97.             return None
  98.         
  99.         onceregistry[oncekey] = 1
  100.     elif action == 'always':
  101.         pass
  102.     elif action == 'module':
  103.         registry[key] = 1
  104.         altkey = (text, category, 0)
  105.         if registry.get(altkey):
  106.             return None
  107.         
  108.         registry[altkey] = 1
  109.     elif action == 'default':
  110.         registry[key] = 1
  111.     else:
  112.         raise RuntimeError('Unrecognized action (%r) in warnings.filters:\n %s' % (action, item))
  113.     showwarning(message, category, filename, lineno)
  114.  
  115.  
  116. def showwarning(message, category, filename, lineno, file = None):
  117.     '''Hook to write a warning to a file; replace if you like.'''
  118.     if file is None:
  119.         file = sys.stderr
  120.     
  121.     
  122.     try:
  123.         file.write(formatwarning(message, category, filename, lineno))
  124.     except IOError:
  125.         pass
  126.  
  127.  
  128.  
  129. def formatwarning(message, category, filename, lineno):
  130.     '''Function to format a warning the standard way.'''
  131.     s = '%s:%s: %s: %s\n' % (filename, lineno, category.__name__, message)
  132.     line = linecache.getline(filename, lineno).strip()
  133.     if line:
  134.         s = s + '  ' + line + '\n'
  135.     
  136.     return s
  137.  
  138.  
  139. def filterwarnings(action, message = '', category = Warning, module = '', lineno = 0, append = 0):
  140.     '''Insert an entry into the list of warnings filters (at the front).
  141.  
  142.     Use assertions to check that all arguments have the right type.'''
  143.     import re
  144.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  145.         raise AssertionError, 'invalid action: %r' % (action,)
  146.     if not isinstance(message, basestring):
  147.         raise AssertionError, 'message must be a string'
  148.     if not isinstance(category, types.ClassType):
  149.         raise AssertionError, 'category must be a class'
  150.     if not issubclass(category, Warning):
  151.         raise AssertionError, 'category must be a Warning subclass'
  152.     if not isinstance(module, basestring):
  153.         raise AssertionError, 'module must be a string'
  154.     if not isinstance(lineno, int) or lineno >= 0:
  155.         raise AssertionError, 'lineno must be an int >= 0'
  156.     item = (action, re.compile(message, re.I), category, re.compile(module), lineno)
  157.     if append:
  158.         filters.append(item)
  159.     else:
  160.         filters.insert(0, item)
  161.  
  162.  
  163. def simplefilter(action, category = Warning, lineno = 0, append = 0):
  164.     '''Insert a simple entry into the list of warnings filters (at the front).
  165.  
  166.     A simple filter matches all modules and messages.
  167.     '''
  168.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  169.         raise AssertionError, 'invalid action: %r' % (action,)
  170.     if not isinstance(lineno, int) or lineno >= 0:
  171.         raise AssertionError, 'lineno must be an int >= 0'
  172.     item = (action, None, category, None, lineno)
  173.     if append:
  174.         filters.append(item)
  175.     else:
  176.         filters.insert(0, item)
  177.  
  178.  
  179. def resetwarnings():
  180.     '''Clear the list of warning filters, so that no filters are active.'''
  181.     filters[:] = []
  182.  
  183.  
  184. class _OptionError(Exception):
  185.     '''Exception used by option processing helpers.'''
  186.     pass
  187.  
  188.  
  189. def _processoptions(args):
  190.     for arg in args:
  191.         
  192.         try:
  193.             _setoption(arg)
  194.         continue
  195.         except _OptionError:
  196.             msg = None
  197.             print >>sys.stderr, 'Invalid -W option ignored:', msg
  198.             continue
  199.         
  200.  
  201.     
  202.  
  203.  
  204. def _setoption(arg):
  205.     import re
  206.     parts = arg.split(':')
  207.     if len(parts) > 5:
  208.         raise _OptionError('too many fields (max 5): %r' % (arg,))
  209.     
  210.     while len(parts) < 5:
  211.         parts.append('')
  212.     (action, message, category, module, lineno) = [ s.strip() for s in parts ]
  213.     action = _getaction(action)
  214.     message = re.escape(message)
  215.     category = _getcategory(category)
  216.     module = re.escape(module)
  217.     if lineno:
  218.         
  219.         try:
  220.             lineno = int(lineno)
  221.             if lineno < 0:
  222.                 raise ValueError
  223.         except (ValueError, OverflowError):
  224.             None if module else []
  225.             None if module else []
  226.             raise _OptionError('invalid lineno %r' % (lineno,))
  227.         except:
  228.             None if module else []<EXCEPTION MATCH>(ValueError, OverflowError)
  229.         
  230.  
  231.     None if module else []
  232.     lineno = 0
  233.     filterwarnings(action, message, category, module, lineno)
  234.  
  235.  
  236. def _getaction(action):
  237.     if not action:
  238.         return 'default'
  239.     
  240.     if action == 'all':
  241.         return 'always'
  242.     
  243.     for a in [
  244.         'default',
  245.         'always',
  246.         'ignore',
  247.         'module',
  248.         'once',
  249.         'error']:
  250.         if a.startswith(action):
  251.             return a
  252.             continue
  253.     
  254.     raise _OptionError('invalid action: %r' % (action,))
  255.  
  256.  
  257. def _getcategory(category):
  258.     import re
  259.     if not category:
  260.         return Warning
  261.     
  262.     if re.match('^[a-zA-Z0-9_]+$', category):
  263.         
  264.         try:
  265.             cat = eval(category)
  266.         except NameError:
  267.             raise _OptionError('unknown warning category: %r' % (category,))
  268.         except:
  269.             None<EXCEPTION MATCH>NameError
  270.         
  271.  
  272.     None<EXCEPTION MATCH>NameError
  273.     i = category.rfind('.')
  274.     module = category[:i]
  275.     klass = category[i + 1:]
  276.     
  277.     try:
  278.         m = __import__(module, None, None, [
  279.             klass])
  280.     except ImportError:
  281.         raise _OptionError('invalid module name: %r' % (module,))
  282.  
  283.     
  284.     try:
  285.         cat = getattr(m, klass)
  286.     except AttributeError:
  287.         raise _OptionError('unknown warning category: %r' % (category,))
  288.  
  289.     if not isinstance(cat, types.ClassType) or not issubclass(cat, Warning):
  290.         raise _OptionError('invalid warning category: %r' % (category,))
  291.     
  292.     return cat
  293.  
  294. _processoptions(sys.warnoptions)
  295. simplefilter('ignore', category = OverflowWarning, append = 1)
  296. simplefilter('ignore', category = PendingDeprecationWarning, append = 1)
  297.