xmlutils.py :  » Web-Server » SkunkWEB » skunkweb-3.4.4 » pylibs » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Server » SkunkWEB 
SkunkWEB » skunkweb 3.4.4 » pylibs » xmlutils.py
# $Id$
# Time-stamp: <04/03/10 18:47:35 smulloni>

######################################################################## 
#  Copyright (C) 2001-2002 Jacob Smullyan <smulloni@smullyan.org>
#  
#      You may distribute under the terms of either the GNU General
#      Public License or the SkunkWeb License, as specified in the
#      README file.
########################################################################

"""
a pleasantly minimal XML-to-Python object translator.
XMLElement can also be used to build XML documents.
The parser requires expat, but XMLElement does not.
Based on the Java xml parser (org.skunk.minixml)
used for SkunkDAV (http://skunkdav.sf.net/).
"""

import types

try:
    import xml.parsers.expat as expat

    class ExpatParser:
        """
        takes an input xml string and produces a corresponding
        XMLElement (deposited in the 'document' attribute).  Currently
        ignores comments, CDATA, processing instructions, etc.
        """
        def __init__(self, elementClassRegistry={}):
            self.__parser=expat.ParserCreate()
            self.__parser.StartElementHandler=self.start
            self.__parser.EndElementHandler=self.end
            self.__parser.CharacterDataHandler=self.data
            self.__stack=[]
            self.document=None
            self.elementClassRegistry=elementClassRegistry
            
        def start(self, tag, attrs):
            elem=makeElement(tag, self.elementClassRegistry)
            elem.OPEN=1
            if not self.document:
                self.document=elem
            for k, v in attrs.items():
                elem.setAttribute(k, v)
            self.__stack.append(elem)
            
        def data(self, data):
            self.__stack.append(data)
            
        def end(self, tag):
            # find matching tag
            i=-1
            stackLen=len(self.__stack)
            while stackLen+i >= 0:
                p=self.__stack[i]
                if isinstance(p, XMLElement) and hasattr(p, 'OPEN'):
                    # found element
                    postind=stackLen+i+1
                    popped=self.__stack[postind:]
                    map (lambda x, y=p: y.addChild(x), popped)
                    delattr(p, 'OPEN')
                    self.__stack=self.__stack[:postind]
                    break
                else:
                    i-=1
                
        def parse(self, data):
            self.__parser.Parse(data, 0)

    def parse(xmlstring):
        p=ExpatParser()
        p.parse(xmlstring)
        return p.document
    
except ImportError:
    pass
            
XMLNS_ATTR='xmlns'

def makeElement(fullElementName, elementClassRegistry={}):
    classFactory=elementClassRegistry.get(fullElementName, XMLElement)
    colonIndex=fullElementName.find(':')
    if colonIndex==-1:
        return classFactory(fullElementName)
    else:
        
        return classFactory(fullElementName[colonIndex+1:],
                            fullElementName[:colonIndex])

class XMLElement:
    def __init__(self,
                 name,
                 namespaceCode=None,
                 namespace=None,
                 empty=None,
                 html_compat=None):
        self.name=name
        self.namespaceCode=namespaceCode
        self.empty=empty
        self.html_compat=html_compat
        self.children=[]
        self.attributes=self.__attributes={}
        self.__namespaces={}
        self.__defaultNamespace=''
        if namespace:
            if namespaceCode:
                self.setAttribute('%s:%s' % (XMLNS_ATTR, namespaceCode), namespace)
            else:
                self.setAttribute(XMLNS_ATTR, namespace)
        self.parent=None

    def __str__(self):
        buff=['<']
        if self.namespaceCode:
            buff.append('%s:' % self.namespaceCode)
        buff.append(self.name)
        for attr, val in self.__attributes.items():
            buff.append(' %s="%s"' % (attr, val))
        if len(self.children):
            buff.append('>')
            buff.extend(map(str, self.children))
            buff.append('</')
            if (self.namespaceCode):
                buff.append('%s:' % self.namespaceCode)
            buff.append(self.name)
            buff.append('>')
        else:
            if self.html_compat:
                if self.empty:
                    buff.append(' />')
                else:
                    buff.append("></%s>" % self.name)
            else:
                buff.append('/>')
        return ''.join(buff)

    def __eq__(self, other):
        try:
            oname=other.name
            onamespace=other.getNamespace()
            ochildren=other.getChildren()
        except AttributeError:
            return False
        else:
            if self.name!=oname or onamespace!=self.getNamespace():
                return False
            if self.children==ochildren:
                return True

    def __ne__(self, other):
        return not self.__eq__(other)

    def hasAttribute(self, name):
        return self.__attributes.has_key(name)
            
    def getAttribute(self, name):
        if self.__attributes.has_key(name):
            return self.__attributes[name]
        raise KeyError, name

    def setAttribute(self, name, value):
        if name.startswith(XMLNS_ATTR):
            colindex=name.find(':')
            if colindex==-1:
                self.__defaultNamespace=value
            else:
                self.setNamespace(value, name[colindex+1:])
        self.__attributes[name]=value
        # for convenience
        return self

    def getChildren(self, suppressWhitespace=1):
        if suppressWhitespace:
            return filter(lambda x: type(x) not in (types.UnicodeType,
                                                    types.StringType) or x.strip(),
                          self.children)
        else:
            return self.children[:]

    def addChild(self, *children):
        for child in children:
            if isinstance(child, XMLElement):
                child.parent=self
            self.children.append(child)
        # for convenience
        return self

    def removeChild(self, child):
        self.children.remove(child)
        if isinstance(child, XMLElement):
            child.parent=None

    def getChildrenByAttribute(self, attr, val, limit=1):
        """
        returns a list of elements with an attribute with the name
        given by attr and a value V where, if val is not callable,
        V = val, or if val is callable, where val(V) is true.  limit
        is the maximum number of elements to return; if limit is < 1,
        all matching elements will be returned.
        """
        if callable(val):
            f=val
        else:
            f=lambda x, v=val: x==v
        result=[]
        self._private_getChildrenByAttribute(attr, f, limit, result)
        return result

    def _private_getChildrenByAttribute(self, attr, valfunc, limit, result):
        if self.hasAttribute(attr) and valfunc(self.getAttribute(attr)):
            result.append(self)
        if 0 < limit and limit <= len(result):
            return
        for child in self.getChildren():
            if isinstance(child, XMLElement):
                child._private_getChildrenByAttribute(attr, valfunc, limit, result)

    # aliases 
    addElement=addChild
    getElements=getChildren
    getElementsByAttribute=getChildrenByAttribute

    def getNamespace(self, namespaceCode=None):
        if not namespaceCode:
            namespaceCode=self.namespaceCode
        if not namespaceCode:
            return self.getDefaultNamespace()
        ns=self.__namespaces.get(namespaceCode)
        if not ns and self.parent!=None:
            ns=self.parent.getNamespace(namespaceCode)
        return ns

    def getDefaultNamespace(self):
        if (not self.__defaultNamespace) and self.parent:
            return self.parent.getDefaultNamespace()
        return self.__defaultNamespace

    def setDefaultNamespace(self, ns):
        self.__defaultNamespace=ns

    def setNamespace(self, namespace, namespaceCode):
        self.__namespaces[namespaceCode]=namespace
        self.namespaceCode=namespaceCode

    def getChild(self, name, namespace=None, index=0):
        i=-1
        for kid in self.children:
            try:
                nm=kid.name
            except AttributeError:
                continue
            if kid.name==name and (namespace==None \
                                   or namespace==kid.getNamespace()):
                i+=1
                if i==index:
                    return kid
        return None

    def getPrimogenitor(self):
        if self.parent==None:
            return self
        return self.parent.getPrimogenitor()

    def walk(self, visitfunc, state=None, filter=None):
        if filter is not None:
            if not filter(self):
                return
        visitfunc(self, state)
        for c in self.getChildren():
            if isinstance(c, XMLElement):
                c.walk(visitfunc, state, filter)
            else:
                visitfunc(c, state)
        
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.