home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / warnings.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2004-02-22  |  10KB  |  301 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.3)
  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 (msg is None or mod.match(module)) and ln == 0 or lineno == ln:
  81.                 break
  82.                 continue
  83.     else:
  84.         action = defaultaction
  85.     if action == 'ignore':
  86.         registry[key] = 1
  87.         return None
  88.     
  89.     if action == 'error':
  90.         raise message
  91.     
  92.     if action == 'once':
  93.         registry[key] = 1
  94.         oncekey = (text, category)
  95.         if onceregistry.get(oncekey):
  96.             return None
  97.         
  98.         onceregistry[oncekey] = 1
  99.     elif action == 'always':
  100.         pass
  101.     elif action == 'module':
  102.         registry[key] = 1
  103.         altkey = (text, category, 0)
  104.         if registry.get(altkey):
  105.             return None
  106.         
  107.         registry[altkey] = 1
  108.     elif action == 'default':
  109.         registry[key] = 1
  110.     else:
  111.         raise RuntimeError('Unrecognized action (%s) in warnings.filters:\n %s' % (`action`, str(item)))
  112.     showwarning(message, category, filename, lineno)
  113.  
  114.  
  115. def showwarning(message, category, filename, lineno, file = None):
  116.     '''Hook to write a warning to a file; replace if you like.'''
  117.     if file is None:
  118.         file = sys.stderr
  119.     
  120.     
  121.     try:
  122.         file.write(formatwarning(message, category, filename, lineno))
  123.     except IOError:
  124.         pass
  125.  
  126.  
  127.  
  128. def formatwarning(message, category, filename, lineno):
  129.     '''Function to format a warning the standard way.'''
  130.     s = '%s:%s: %s: %s\n' % (filename, lineno, category.__name__, message)
  131.     line = linecache.getline(filename, lineno).strip()
  132.     if line:
  133.         s = s + '  ' + line + '\n'
  134.     
  135.     return s
  136.  
  137.  
  138. def filterwarnings(action, message = '', category = Warning, module = '', lineno = 0, append = 0):
  139.     '''Insert an entry into the list of warnings filters (at the front).
  140.  
  141.     Use assertions to check that all arguments have the right type.'''
  142.     import re
  143.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  144.         raise AssertionError, 'invalid action: %s' % `action`
  145.     if not isinstance(message, basestring):
  146.         raise AssertionError, 'message must be a string'
  147.     if not isinstance(category, types.ClassType):
  148.         raise AssertionError, 'category must be a class'
  149.     if not issubclass(category, Warning):
  150.         raise AssertionError, 'category must be a Warning subclass'
  151.     if not isinstance(module, basestring):
  152.         raise AssertionError, 'module must be a string'
  153.     if not isinstance(lineno, int) and lineno >= 0:
  154.         raise AssertionError, 'lineno must be an int >= 0'
  155.     item = (action, re.compile(message, re.I), category, re.compile(module), lineno)
  156.     if append:
  157.         filters.append(item)
  158.     else:
  159.         filters.insert(0, item)
  160.  
  161.  
  162. def simplefilter(action, category = Warning, lineno = 0, append = 0):
  163.     '''Insert a simple entry into the list of warnings filters (at the front).
  164.  
  165.     A simple filter matches all modules and messages.
  166.     '''
  167.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  168.         raise AssertionError, 'invalid action: %s' % `action`
  169.     if not isinstance(lineno, int) and lineno >= 0:
  170.         raise AssertionError, 'lineno must be an int >= 0'
  171.     item = (action, None, category, None, lineno)
  172.     if append:
  173.         filters.append(item)
  174.     else:
  175.         filters.insert(0, item)
  176.  
  177.  
  178. def resetwarnings():
  179.     '''Clear the list of warning filters, so that no filters are active.'''
  180.     filters[:] = []
  181.  
  182.  
  183. class _OptionError(Exception):
  184.     '''Exception used by option processing helpers.'''
  185.     pass
  186.  
  187.  
  188. def _processoptions(args):
  189.     for arg in args:
  190.         
  191.         try:
  192.             _setoption(arg)
  193.         continue
  194.         except _OptionError:
  195.             msg = None
  196.             print >>sys.stderr, 'Invalid -W option ignored:', msg
  197.             continue
  198.         
  199.  
  200.     
  201.  
  202.  
  203. def _setoption(arg):
  204.     import re
  205.     parts = arg.split(':')
  206.     if len(parts) > 5:
  207.         raise _OptionError('too many fields (max 5): %s' % `arg`)
  208.     
  209.     while len(parts) < 5:
  210.         parts.append('')
  211.     (action, message, category, module, lineno) = [ s.strip() for s in parts ]
  212.     action = _getaction(action)
  213.     message = re.escape(message)
  214.     category = _getcategory(category)
  215.     module = re.escape(module)
  216.     if lineno:
  217.         
  218.         try:
  219.             lineno = int(lineno)
  220.             if lineno < 0:
  221.                 raise ValueError
  222.         except (ValueError, OverflowError):
  223.             None if module else []
  224.             None if module else []
  225.             raise _OptionError('invalid lineno %s' % `lineno`)
  226.         except:
  227.             None if module else []<EXCEPTION MATCH>(ValueError, OverflowError)
  228.         
  229.  
  230.     None if module else []
  231.     lineno = 0
  232.     filterwarnings(action, message, category, module, lineno)
  233.  
  234.  
  235. def _getaction(action):
  236.     if not action:
  237.         return 'default'
  238.     
  239.     if action == 'all':
  240.         return 'always'
  241.     
  242.     for a in [
  243.         'default',
  244.         'always',
  245.         'ignore',
  246.         'module',
  247.         'once',
  248.         'error']:
  249.         if a.startswith(action):
  250.             return a
  251.             continue
  252.     
  253.     raise _OptionError('invalid action: %s' % `action`)
  254.  
  255.  
  256. def _getcategory(category):
  257.     import re
  258.     if not category:
  259.         return Warning
  260.     
  261.     if re.match('^[a-zA-Z0-9_]+$', category):
  262.         
  263.         try:
  264.             cat = eval(category)
  265.         except NameError:
  266.             raise _OptionError('unknown warning category: %s' % `category`)
  267.         except:
  268.             None<EXCEPTION MATCH>NameError
  269.         
  270.  
  271.     None<EXCEPTION MATCH>NameError
  272.     i = category.rfind('.')
  273.     module = category[:i]
  274.     klass = category[i + 1:]
  275.     
  276.     try:
  277.         m = __import__(module, None, None, [
  278.             klass])
  279.     except ImportError:
  280.         raise _OptionError('invalid module name: %s' % `module`)
  281.  
  282.     
  283.     try:
  284.         cat = getattr(m, klass)
  285.     except AttributeError:
  286.         raise _OptionError('unknown warning category: %s' % `category`)
  287.  
  288.     if not isinstance(cat, types.ClassType) or not issubclass(cat, Warning):
  289.         raise _OptionError('invalid warning category: %s' % `category`)
  290.     
  291.     return cat
  292.  
  293. if __name__ == '__main__':
  294.     import __main__
  295.     sys.modules['warnings'] = __main__
  296.     _test()
  297. else:
  298.     _processoptions(sys.warnoptions)
  299.     simplefilter('ignore', category = OverflowWarning, append = 1)
  300.     simplefilter('ignore', category = PendingDeprecationWarning, append = 1)
  301.