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

The beauty and power of declarative syntaxes and declarativeprogramming

  • From: "Costello, Roger L." <costello@m...>
  • To: "'xml-dev@l...'" <xml-dev@l...>
  • Date: Mon, 2 Feb 2009 08:26:47 -0500

The beauty and power of declarative syntaxes and declarativeprogramming

Hi Folks,

While reading a paper [1] by Dimitre Novatchev I gained a deeper insight and appreciation of the beauty and power of declarative syntaxes and declarative programming languages.

Consider this XML:

    <?xml version="1.0"?>
    <aircraft>
        <altitude units="feet">
            12000
        </altitude>
    </aircraft>

It is a declaration of an aircraft's altitude in feet.

It is just a declaration. There are no moving parts, no "state" changes. It just declares what is.

This is really nice. It's easy to understand and verify at a glance.

XML is a declarative syntax.


Imagine a parallel universe where altitudes are expressed in meters, not feet.

We can declaratively express the relationship between the two universes:

    $alt = the value of altitude in feet
    <aircraft>
        <altitude units="meters">
            $alt * 0.3048
        </altitude>
    </aircraft>

This is a declaration of how an aircraft's altitude in feet relates to an altitude in meters.

Observe that there are no moving parts. It just declares the relationship.

At a glance you can determine whether the relationship is correct.

This is declarative programming. You simply declare the relationships.

Contrast with non-declarative programming, where you write code to convert feet to meters. "Convert" implies moving parts and changes. Whenever there's movement, things become much more complex and difficult to understand and verify. 


XSLT is a declarative programming language.

Rather than using my fictitious syntax, we can express the relationship using a standard XSLT syntax:

    <xsl:variable name="alt" select="/aircraft/altitude" />
    <aircraft>
        <altitude units="meters">
            <xsl:value-of select="$alt * 0.3048" />
        </altitude>
    </aircraft>


Breaking away from the non-declarative style of programming is difficult, as that's the way we're taught in school. I can hear my professor: "A program is like a recipe, first do step 1, then step 2, and so forth." Declarative programming isn't like that at all. Declarative programming simply involves declaring relationships. This is beautiful and powerful!

/Roger

[1] Higher-Order Functional Programming with XSLT 2.0 and FXSL by Dimitre Novatchev
http://www.idealliance.org/papers/extreme/proceedings/xslfo-pdf/2006/Novatchev01/EML2006Novatchev01.pdf


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


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-2013 All Rights Reserved.