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 / domreg.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2003-12-30  |  4KB  |  103 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.3)
  3.  
  4. '''Registration facilities for DOM. This module should not be used
  5. directly. Instead, the functions getDOMImplementation and
  6. registerDOMImplementation should be imported from xml.dom.'''
  7. from xml.dom.minicompat import *
  8. well_known_implementations = {
  9.     'minidom': 'xml.dom.minidom',
  10.     '4DOM': 'xml.dom.DOMImplementation' }
  11. registered = { }
  12.  
  13. def registerDOMImplementation(name, factory):
  14.     '''registerDOMImplementation(name, factory)
  15.  
  16.     Register the factory function with the name. The factory function
  17.     should return an object which implements the DOMImplementation
  18.     interface. The factory function can either return the same object,
  19.     or a new one (e.g. if that implementation supports some
  20.     customization).'''
  21.     registered[name] = factory
  22.  
  23.  
  24. def _good_enough(dom, features):
  25.     '''_good_enough(dom, features) -> Return 1 if the dom offers the features'''
  26.     for f, v in features:
  27.         if not dom.hasFeature(f, v):
  28.             return 0
  29.             continue
  30.     
  31.     return 1
  32.  
  33.  
  34. def getDOMImplementation(name = None, features = ()):
  35.     '''getDOMImplementation(name = None, features = ()) -> DOM implementation.
  36.  
  37.     Return a suitable DOM implementation. The name is either
  38.     well-known, the module name of a DOM implementation, or None. If
  39.     it is not None, imports the corresponding module and returns
  40.     DOMImplementation object if the import succeeds.
  41.  
  42.     If name is not given, consider the available implementations to
  43.     find one with the required feature set. If no implementation can
  44.     be found, raise an ImportError. The features list must be a sequence
  45.     of (feature, version) pairs which are passed to hasFeature.'''
  46.     import os
  47.     creator = None
  48.     mod = well_known_implementations.get(name)
  49.     if mod:
  50.         mod = __import__(mod, { }, { }, [
  51.             'getDOMImplementation'])
  52.         return mod.getDOMImplementation()
  53.     elif name:
  54.         return registered[name]()
  55.     elif os.environ.has_key('PYTHON_DOM'):
  56.         return getDOMImplementation(name = os.environ['PYTHON_DOM'])
  57.     
  58.     if isinstance(features, StringTypes):
  59.         features = _parse_feature_string(features)
  60.     
  61.     for creator in registered.values():
  62.         dom = creator()
  63.         if _good_enough(dom, features):
  64.             return dom
  65.             continue
  66.     
  67.     for creator in well_known_implementations.keys():
  68.         
  69.         try:
  70.             dom = getDOMImplementation(name = creator)
  71.         except StandardError:
  72.             continue
  73.  
  74.         if _good_enough(dom, features):
  75.             return dom
  76.             continue
  77.     
  78.     raise ImportError, 'no suitable DOM implementation found'
  79.  
  80.  
  81. def _parse_feature_string(s):
  82.     features = []
  83.     parts = s.split()
  84.     i = 0
  85.     length = len(parts)
  86.     while i < length:
  87.         feature = parts[i]
  88.         if feature[0] in '0123456789':
  89.             raise ValueError, 'bad feature name: ' + `feature`
  90.         
  91.         i = i + 1
  92.         version = None
  93.         if i < length:
  94.             v = parts[i]
  95.             if v[0] in '0123456789':
  96.                 i = i + 1
  97.                 version = v
  98.             
  99.         
  100.         features.append((feature, version))
  101.     return tuple(features)
  102.  
  103.