xmlcomp.py :  » XML » 4Suite » 4Suite-XML-1.0.2 » Ft » Xml » ThirdParty » Xvif » 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 » XML » 4Suite 
4Suite » 4Suite XML 1.0.2 » Ft » Xml » ThirdParty » Xvif » xmlcomp.py
# $Header: /var/local/cvsroot/4Suite/Ft/Xml/ThirdParty/Xvif/xmlcomp.py,v 1.3 2004/10/12 22:59:14 uogbuji Exp $

from xml.dom import XMLNS_NAMESPACE
import xml.dom
from string import *

"""
The contents of this file are subject to the Mozilla Public License  Version 1.1 (the "License"); you may not use this file except in  compliance with the License. 
You may obtain a copy of the License at http://www.mozilla.org/MPL/ 
Software distributed under the License is distributed on an "AS IS"  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the  License for the specific language governing rights and limitations under  the License. 

The Original Code is available at http://downloads.xmlschemata.org/python/xvif/

The Initial Developer of the Original Code is Eric van der Vlist. Portions  created by Eric van der Vlist are Copyright (C) 2002. All Rights Reserved. 

Contributor(s): 
"""

def normalize_space(s):
    st=1 
    r = ""
    for c in s:
        if c in (" ", "\n", "\t", "\r"):
            if st==2:
                st=3
        else:
            if st==3:
                r += " "
            r+=c
            st=2
    return r
                

class XmlComp:

    """A "checkType" can be a DOM nodeType, ie "An integer representing the 
    node type. Symbolic constants for the types are on the Node object: 
    ELEMENT_NODE, ATTRIBUTE_NODE, TEXT_NODE, CDATA_SECTION_NODE(**), ENTITY_NODE(*), 
    PROCESSING_INSTRUCTION_NODE(*), COMMENT_NODE(*), DOCUMENT_NODE(*), 
    DOCUMENT_TYPE_NODE(*), NOTATION_NODE(*)" or the extra values: 
    "NAMESPACE_PREFIX,WHITESPACES, NAMESPACE_DECLARATION".

    (*): not supported (yet)
    (**): use TEXT_NODE instead.

    """

    NAMESPACE_PREFIX = 1j
    NAMESPACE_DECLARATION = 2j
    WHITESPACES = 3j
    EMPTY_TEXT = 4j

    _default_checks = [xml.dom.Node.ELEMENT_NODE, 
        xml.dom.Node.ATTRIBUTE_NODE,
        xml.dom.Node.TEXT_NODE,
        NAMESPACE_PREFIX,
        NAMESPACE_DECLARATION,
        WHITESPACES]
    

    def __init__(self, d1=None, d2=None, checks=_default_checks):
        if d1 != None:
            self.setDocument1(d1)
        if d2 != None:
            self.setDocument2(d2)
        self.checks = checks

    def setDocument1(self, d1):
        self.d1=d1
        
    def setDocument2(self, d2):
        self.d2=d2
        
    def addCheck(self, check):
        if not check in self.checks:
            self.checks.append(check)

    def removeCheck(self, check):
        i=0
        for c in self.checks:
            if c==check:
                del self.checks[i]
                break
            i += 1

    def compare(self, d1=None, d2=None):
        if d1 != None:
            self.setDocument1(d1)
        if d2 != None:
            self.setDocument2(d2)
        return self.compareNodes(d1.childNodes, d2.childNodes)
    
    def compareNodes(self, nodes1, nodes2):
        n1 = self.removeJunk(nodes1)
        n2 = self.removeJunk(nodes2)
        i = 0
        for node in n1:
            if len(n2) == i:
                return "node %s from document 1 has no match in document 2." % node
            test = self.compareNode(node, n2[i])
            if test:
                return test
            i += 1
        if len(n2) > i:
            return "node %s from document 2 has no match in document 1." % n2[i]
        return None
    
    def removeJunk(self, nodes):
        res = []
        for node in nodes:
            if node.nodeType in self.checks or \
                (node.nodeType == xml.dom.Node.CDATA_SECTION_NODE\
                and xml.dom.Node.TEXT_NODE in self.checks):
                if node.nodeType in (xml.dom.Node.TEXT_NODE, xml.dom.Node.CDATA_SECTION_NODE):
                    t = normalize_space(node.nodeValue)
                    if not XmlComp.EMPTY_TEXT in self.checks and t == "":
                        continue
                    if not XmlComp.WHITESPACES in self.checks:
                        node = node.ownerDocument.createTextNode(t)
                    else:
                        node = node.ownerDocument.createTextNode(node.nodeValue)
                res.append(node)
        return res
    
    def removeJunkFromNamedNodeMap(self, nodes):
        res = {}
        for (ns, name) in nodes.keys():
            node = nodes[(ns, name)]
            if node.nodeType == xml.dom.Node.ATTRIBUTE_NODE and ns==xml.dom.XMLNS_NAMESPACE:
                if XmlComp.NAMESPACE_DECLARATION in self.checks:
                    res[(ns, name)] = node
            elif node.nodeType in self.checks:
                res[(ns, name)] = node
        return res
    
    def compareNode(self, n1, n2):
        if n1.nodeType==n2.nodeType:
            return self.compareFunctions[n1.nodeType](self, n1, n2)
        else:
            return "Node types do not match (%s vs %s)" % (n1, n2)
    
    def compareElements(self, n1, n2):
        if n1.localName != n2.localName:
            return "Element names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if n1.namespaceURI != n2.namespaceURI:
            return "Element names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if self.NAMESPACE_PREFIX in self.checks and n1.prefix != n2.prefix:
            return "Element prefixes names do not match ({%s|%s:}%s vs {%s|%s:}%s)" % (n1.namespaceURI, n1.prefix, n1.localName, n2.namespaceURI, n2.prefix, n2.localName)
        attCmp = self.compareNamedNodeMaps(n1.attributes, n2.attributes)
        if attCmp:
            return attCmp
        return self.compareNodes(n1.childNodes, n2.childNodes)
    

    def compareAttributes(self, n1, n2):
        if n1.localName != n2.localName:
            return "Attribute names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if n1.namespaceURI != n2.namespaceURI:
            return "Attribute names do not match ({%s}%s vs {%s}%s)" % (n1.namespaceURI, n1.localName, n2.namespaceURI, n2.localName)
        if self.NAMESPACE_PREFIX in self.checks and n1.prefix != n2.prefix:
            return "Attribute prefixes names do not match ({%s|%s:}%s vs {%s|%s:}%s)" % (n1.namespaceURI, n1.prefix, n1.localName, n2.namespaceURI, n2.prefix, n2.localName)
        if n1.nodeValue != n2.nodeValue:
            return "Attribute values do not match ({%s|%s:}%s='%s' vs {%s|%s:}%s='%s')" % (n1.namespaceURI, n1.prefix, n1.localName, n1.nodeValue, n2.namespaceURI, n2.prefix, n2.localName, n2.nodeValue)
        return None

    def compareText(self, n1, n2):
        if n1.nodeValue != n2.nodeValue:
            return "Text values do not match (%s vs %s)" % (n1.nodeValue, n2.nodeValue)
        return None

    
    def compareNamedNodeMaps(self, nodes1, nodes2):
        n1 = self.removeJunkFromNamedNodeMap(nodes1)
        n2 = self.removeJunkFromNamedNodeMap(nodes2)
        i = 0
        for (ns, name) in n1.keys():
            if n2.has_key((ns, name)):
                test = self.compareNode(n1[(ns, name)], n2[(ns, name)])
                if test:
                    return test
                del(n2[(ns, name)])
            else:
                return "node %s from document 1 has no match in document 2." % n1[(ns, name)]
        if len(n2) > 0:
            for key in n2.keys():
                return "node {%s}%s from document 2 has no match in document 1." % key
        return None
    

    compareFunctions = {xml.dom.Node.ELEMENT_NODE: compareElements,
        xml.dom.Node.TEXT_NODE: compareText,
        xml.dom.Node.ATTRIBUTE_NODE: compareAttributes}
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.