XSLT uses a template-driven approach to transformations: you write a template that shows what happens to any given input element. For example, if you were formatting a letter to produce HTML for the Web, you might have a template to match an underlined passage and make it come out in italics:. It is of course still used to produce XSL-FO documents for printing, but it is also used to integrate back-end software for Web sites. You will find XSLT version 1 inside most modern Web browsers, so that XML can be transformed on the fly without the user even noticing; you will find XSLT on the desktop, in servers, in network appliances, and forming a basic and dependable part of computer infrastructure almost everywhere you look.
If you make a purchase on eBay, or buy a book at Amazon, chances are that pretty much everything you see on every Web page has been processed with XSLT. At a minimum, because there are no standardized requests for data projection other than XML and text, you need to distinguish how to request non-XML and non-text content be offered using XDM.
Beyond that, however, you can choose to stick to the available standardized behaviours or step beyond product independence by invoking vendor-specific behaviours. The shared XDM data model of looking at input and output information to and from the transformation process infers that the processing models be similar and this is, in fact, the case. A number of vendors offer an underlying engine implementing a processing model that effects the transformation on nodes, regardless of the expression language used to express the transformation.
Thus the product equally supports either XSLT stylesheets or XQuery expressions, as either one of these is interpreted as yet another tree, that being a tree of operation XDM nodes. It also shows both the data projection available to create the source XDM nodes and the many possible serialized results and interpretations of the result XDM nodes. Note the convention in the diagram of using the prime symbol to associate in the output tree from which input tree a given node is copied.
The diagram illustrates how the processing model establishes the independence of the transformation logic from the syntax of the input and output files. The transformation acts solely on operation nodes and source nodes to produce result nodes. The processor worries about the syntax, not the programmer. Again, this is very different from what your programmers are used to dealing with. XSLT and XQuery are assembling the result based on the operations performed on the input under the programmer's control.
The programmer is not writing out syntax. The programmer doesn't have to think of the vagaries of what can be in the XML documents.
There is no input buffering or line handling to be done as this is all handled by the processor behind the scenes. Your programmers need to focus on how best to express how the assembly of inputs into the results is best accomplished.
The opportunities to leverage into multiple solutions the investment in a given stylesheet are found in the declarative nature of the stylesheet.
This benefit can be overlooked when assessing XSLT compared to traditional imperative programming languages. Choosing to use XSLT is not simply choosing to use the latest and greatest XML-oriented technology, it is choosing a programming environment more flexible and robust than others at creating structured results from structured inputs. The declarative approach of writing an XSLT stylesheet requires the programmer to view the transformation very differently than with the top-down imperative approach.
The programmer must establish a particular granularity of fragments of the output that is to be associated with and matched with the granularity of the input XML. Each of these fragments is then made to be a template of the result associated with the processing of a single node of the input. This association need only be made once for each type and name of input node and the template is copied to the result every time a node of the given type and name is processed.
This is depicted in this diagram where the input source nodes are labeled with numbers and the output result nodes are labeled with letters.
The stylesheet governing the transformation is a collection of templates associated with each input node by that node's type and name. As each input node is encountered, the stylesheet assembles the result as the next portion of the result.
The programmer is always in control over which source nodes are pushed at the at the collection of templates, and the XSLT engine responds to each pushed node by matching the most appropriate template with which to build the result.
Everything is seen as nodes, not as start tags or end tags or empty tags. When assessing long-term maintenance costs of your stylesheets, a valuable property of XSLT that distinguishes it from most other programming languages is that it is "side effect free".
Global variables do not vary in that they are bound with final values when declared. Templates can only see their own variables and global variables, not the variables of other templates. There is nothing one can do in a template that impacts on the processing of all other templates. This makes for very robust transformations during the maintenance phase of a project, as it is impossible to "break" templates that are not touched when touching other templates.
The more granular the templates, that is, the more templates there are, the more isolated are working bits of code.
And the more templates there are, the more opportunities there are to wrap the stylesheet with another stylesheet that overrides the declared handling of your XML document. This offers a kind of polymorphism for associated template definitions. Such an override leverages the overridden stylesheet by providing a different definition of how to build the result.
Creating a result for a new audience can exploit the stylesheet for an existing audience, changing only those behaviours that are needed and preserving those behaviours that don't need to change. Perhaps you need to suppress specific information for the new audience that was exposed for the old audience. A common requirement is to augment an end-user's page with editorial details important to reviewers in order to create the review copy that is never seen by an end user.
But the reviewers can look around the augmentations to see the content as would be otherwise produced. Consider in this diagram how the importing stylesheet provides an alternative handling for the node identified as "2" as the imported stylesheet shown in the earlier diagram. Now when the result is built, a single node is added to the tree for each of the four input nodes to create the prime-labeled nodes "B'", "G'", "U'" and "Y'".
Perhaps the output is targeted to a visually-impaired audience and so the graphical image is suppressed and the text presented differently for an audio reader. Consider in the next diagram how the importing stylesheet augments the existing handling for the node identified as "2" as the imported stylesheet shown in the earlier diagram. Now when the result is built, three nodes are added to the tree for each of the four input nodes, one being new and the other two being the original output.
This illustrates how to augment the output with additional information while not touching the original stylesheet. Perhaps this output is targeted to editorial staff who need to see important information hidden from the main audience but critical to the task of reviewing your XML document content being published. By wrapping the stylesheet for the main audience with two different stylesheets for two other different audiences, the bulk of the work in the main stylesheet does not have to be maintained separately.
The cost of developing the main stylesheet gets leveraged for the new audiences with little relative effort. Compare this approach with what would be required in imperative languages and the different assembly and maintenance of imperative fragments. An interesting opportunity is to implement an 11th-hour production fix to a read-only stylesheet that perhaps is locked in to a source code control system.
The importing stylesheet supplants the undesirable processing with the required processing until the required processing can be migrated into the base stylesheet. Using these techniques a project team can create libraries of debugged and working stylesheets that are to be pulled into and leveraged in multiple solutions.
Fragments can be overridden or augmented, but the side-effect-free nature of the language guarantees the fragments cannot be "broken" by the influence of other templates. This is the essence of the US intelligence document publishing system cited earlier: the imported stylesheets provide the common base behaviours while the importing stylesheets provide the agency-specific appearances and augmentations, all done in a robust fashion enabling quick new deployments and system-wide maintenance.
Moreover, the maintenance experience across multiple XSLT projects has been testament to the ease of adding new functionality without disturbing existing functionality.
While XQuery does not offer the same level of polymorphism of common code fragments, the imperative nature is very attractive to traditional programmers.
One might consider, then, using XQuery in the data flow when assembling content and using XSLT in the data flow when publishing content. This would be depicted as follows. The diagram shows two wrapper XSLT stylesheets importing the same collection of imported stylesheets to produce distinctive results from the one structured input created by the XQuery interpretation of projected data.
The opposite, however, of trying to deploy XQuery for the leveraged common code polymorphism available in XSLT would be a programming and maintenance challenge. The basic choices are running the transformation directly in the user agent, or running the transformation on the server, either statically in advance of to the connection from the browser or dynamically in response to browser interaction.
It is important to realize, however, that there are two ways in which XSLT can be run in the browser user agent. Computer Organization. Discrete Mathematics. Ethical Hacking. Computer Graphics. Software Engineering. Web Technology. Cyber Security. C Programming. Control System.
Data Mining. Data Warehouse. Javatpoint Services JavaTpoint offers too many high quality services. So it is more convenient way to traverse an XML document rather than a traditional way, by using scripting language.
0コメント