[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Schema style and parser performance


venetian blind schema
Let's see...

Venetian Blind model: Uses named (global) complex types whose child
elements are local - for example:

<xsd:element name="Address" type="AddressType"/>
       
<xsd:complexType name="AddressType">               
    <xsd:sequence>                    
        <xsd:element name="Street" type="xsd:string"/>                   
        <xsd:element name="City" type="xsd:string"/>                   
        <xsd:element name="State" type="xsd:string"/>                   
        etc.        
    </xsd:sequence>                    
</xsd:complexType>

Russian Doll model: Uses anonymous (local) complex types, and each
element is declared inside its parent element in the same way it would
appear in the instance document - for example:

<xsd:element name="Address">
    <xsd:complexType>               
        <xsd:sequence>                    
            <xsd:element name="Street" type="xsd:string"/>               
            <xsd:element name="City" type="xsd:string"/>                 
            <xsd:element name="State" type="xsd:string"/>                
            etc.        
        </xsd:sequence>                    
    </xsd:complexType>
</xsd:element>

So with Venetian Blind, the parser would need to associate the datatype
for the "Address" element by matching on the datatype name
(AddressType). 

I would say that parser performance should not enter into the equation
here, as this is a very straightforward, simple action for a parser to
take. In my opinion, writing a stylesheet to convert formats would not
be worth the effort, and the processing cycles taken up by the execution
of the stylesheet would probably be greater than the time the parser
would have taken to process the Venetian Blind format in the first
place.

Kind Regards,
Joe Chiusano
Booz | Allen | Hamilton

Paul Spencer wrote:
> 
> We have all seen the various styles of WXS schema in use: Russian
> Doll, with everything nested, Venetian Blind, full of global complex
> type definitions, and Salami Slice, with global element definitions
> accessed using "ref" attributes.
> 
> Has anyone considered the effect of these different models on parser
> performance, either from a theoretical or practical view?
> 
> I am considering whether it is worth writing a stylesheet to convert a
> venetian blind design to a russian doll model as application
> performance is critical.
> 
> Regards
> 
> Paul Spencer
> 
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
> 
> The list archives are at http://lists.xml.org/archives/xml-dev/
> 
> To subscribe or unsubscribe from this list use the subscription
> manager: <http://lists.xml.org/ob/adm.pl>
begin:vcard 
n:Chiusano;Joseph
tel;work:(703) 902-6923
x-mozilla-html:FALSE
url:www.bah.com
org:Booz | Allen | Hamilton;IT Digital Strategies Team
adr:;;8283 Greensboro Drive;McLean;VA;22012;
version:2.1
email;internet:chiusano_joseph@b...
title:Senior Consultant
fn:Joseph M. Chiusano
end:vcard

Purchase Stylus Studio Online Today!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.