The present invention relates to generating a parser and to parsing a marked up document.
Extensible Markup Language (XML) is a simple, extremely flexible markup language. XML was designed originally to meet the needs of large-scale electronic publishing, and is increasingly being used in a wide variety of exchanges of data on the Web and elsewhere. However, the result of this flexibility is that the cost of parsing, that is extracting the data from its enclosing tags, becomes more and more expensive.
Currently there are three main technologies that are used to parse an XML document. First, Document Object Model (DOM) may be used to parse a complete document into a tree and provides an API to traverse the tree and extract the data. Second, a simple API for XML(SAX) may be used parse a document and provide events, optionally with data, to a user application. Third, pull-parsing is a derivative of SAX where the user application is in charge of the looping mechanism that scans the document.
According to a first aspect of the present invention, a method of generating a parser for parsing a marked up document comprises scanning a sample marked up document, extracting a template of the sample marked up document, wherein the template comprises elements of the structural markup of the sample document with the data contents of the elements removed, and generating a parser for parsing a marked up document, wherein the parser is generated in the form of code based on the extracted template in such a manner that the parser is adapted to extract any elements and associated data content of the marked up document to be parsed corresponding to the elements of the extracted template.
According to another aspect of the present invention, a method of parsing a marked up document comprises parsing the marked up document by finding locations in the marked up document corresponding to locations of data content in a sample marked up document and extracting any data contents at these locations in the marked up document.
According to yet another aspect of the present invention, a computer program product for generating a parser for parsing a marked up document comprises a computer usable medium having computer useable program code embodied therewith. The computer useable program code comprises computer usable program code configured to scan a sample marked up document, computer usable program code configured to extract a template of the sample marked up document, wherein the template comprises elements of the structural markup of the sample document with the data contents of the elements removed, and computer usable program code configured to generate a parser for parsing a marked up document, wherein the parser is generated in the form of code based on the extracted template in such a manner that the parser is adapted to extract any elements and associated data content of the marked up document to be parsed corresponding to the elements of the extracted template.
Other aspects and features of the present invention will become apparent to those ordinarily skilled in the art or science to which it pertains upon review of the following description in conjunction with the accompanying figures.
As will be appreciated by one of skill in the art, the present invention may be embodied as a method, system, or computer program product. Accordingly, the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment (including firmware, resident software, micro-code, etc.) or an embodiment combining software and hardware aspects all generally referred to herein as a “circuit” or “module.” Furthermore, the present invention may take the form of a computer program product on a computer-usable storage medium having computer-usable program code embodied in the medium.
Any suitable computer readable medium may be utilized. The computer-usable or computer-readable medium may be, for example but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, device, or propagation medium. More specific examples (a nonexhaustive list) of the computer-usable or computer-readable medium would include the following: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a transmission media such as those supporting the Internet or an intranet, or a magnetic storage device. Note that the computer-usable or computer-readable medium could even be paper or another suitable medium upon which the program is printed, as the program can be electronically captured, via, for instance, optical scanning of the paper or other medium, then compiled, interpreted, or otherwise processed in a suitable manner, if necessary, and then stored in a computer memory. In the context of this document, a computer-usable or computer-readable medium may be any medium that can contain, store, communicate, propagate, or transport the program for use by or in connection with the instruction execution system, apparatus, or device.
Computer program code for carrying out operations of the present invention may be written in an object oriented programming language such as Java7, Smalltalk or C++. However, the computer program code for carrying out operations of the present invention may also be written in conventional procedural programming languages, such as the “C” programming language. The program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer. In the latter scenario, the remote computer may be connected to the user's computer through a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
The present invention is described below with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems) and computer program products according to embodiments of the invention. It will be understood that each block of the flowchart illustrations and/or block diagrams, and combinations of blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function/act specified in the flowchart and/or block diagram block or blocks.
The computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
Turning now to
The method 10 of generating an XML parser starts at step 12, where any-necessary parameters are initialized. The method 10 then inputs 14 a sample XML document, which sample document is chosen by a user as typical of the XML documents that the parser is required to parse. The method 10 then scans this sample XML document and extracts 16 a boiler plate or template of the sample XML document. After this template has been extracted, the method 10 proceeds to generate 18 a parser in the form of software code using this extracted template, after which the method 10 terminates 19. The manner in which this parser is generated will be described below in more detail.
The present method 10 is based on the recognition that XML documents are often generated by software and as a result the format and contents of: the XML documents are uniform. The present method 10 examines a sample XML document of a particular format and from this identifies the locations of the specific data contents in the XML document, generating a template for the sample XML document. Once these locations have been identified, a specific XML parser is generated to extract the data contents of the XML documents specified in the same particular format. In this sense the generated parser is dynamically adaptive depending upon the sample XML document that is input and undertakes a structural (via format) and data content analysis for speed as well as complexity in the parse.
Turning now to
In this way, the present methods use the knowledge that computer generated XML documents are generally uniform in format to reduce the cost of extracting the data from the document. Furthermore, dependent upon the computer architecture involved, those with aggregate instructions, for example an IBM z-Series machine, the use of Compare Logical Characters (CLCj) and Compare Logical Characters Long (CLCL) and Translate and Test (TRT) can dramatically add to the reduction of the number of cycles compared with a C language character look-up loop or the invocation of a memcmp function.
For a more detailed understanding of the operation of the method 10, reference is made to FIGS. 3 to 6.
The method 10 takes as input one sample XML document chosen by a user, which in this example is the XML document shown in
Because the tags will not vary across marked up documents but the data content between the tags does vary, it is important to separate the two types of content (tag and data) as a first step to parsing.
The present method 20 uses the parser initialized on the basis of the extracted template (e.g.
The generated parser is built to include the tags of the extracted template in the form of constants so that they may be subsequently compared with the structure of the XML documents to be parsed. The generated parser may also comprise a counter for maintaining a running count of the size of the data content of the XML document to be parsed. The indices or pointers, shown as #, are associated with each tag appropriately such that when an actual XML document is to be parsed, the data content may be retrieved relatively immediately. The two different elements, tag and data content, are therefore used as initialization parameters to a simple parser. The parser locates the dynamic data content within an XML document to be parsed using the indices or pointers together with a running count of the size of data content, and interprets it according to the corresponding constant tags extracted. The current size of the data content is determined by maintaining a running count of the data content commencing at the current pointer address and continuing until the next associated end tag (</) or associated closing attribute delimiter (”) is found. The data content of the next tag is then found by addressing the memory location referenced by the next pointer but offset by the running count.
Such parsing is relatively simple, and as a by-product provided the original template is well formed then the checking of the input can be dispensed with thus saving more processing cycles. These templates may be built into a tree (in software terms) or switching on the tags. So if a list is allowed then when each leaf is reached a check is made to see if there is another branch which is a repeat of the last one, or if the end of the list has been reached the code would climb another level in the tree and continue.
Turning now to
XML header is at level zero of the tree, the <SANDWICH> tag is at level one on the tree, the <BREAD>, <MEAT>, <FILLING> AND <LISTPRICE> tags are at level two of the tree. The difference here is that additional information is provided to go with the tags themselves. The approach, however, is the same: the tags are used to initialize the parser, identifying which data elements can be expected in the XML documents to be parsed, but this time providing information such as depth which can be used to optimize the parser since, for example, as any particular start tag is encountered, it is readily apparent whether or not it is nested within a preceding one or of equal weight. Furthermore, the pointers are dispensed with and the lengths of the constant tags are used to determine the indices to the opening tags of the template.
So having scanned the input and extracted a template 16 such as that described with reference to Pig. 7, software code such as that that follows is generated 18. For the purposes of explanation, all white space processing has been omitted to make the program flow clearer. The following code extract shows an example of an actual parser based on the document in Pig 3. Each of the initial declarations, ConstXMLVersion, ConstSandwich and so forth, are generated to correspond to each of the tags found in the template. (Note: the names of these parameters is, of course; arbitrary.) In addition, a simple function is generated corresponding to each of these declarations, as shown. These function calls are effectively the same in each case, since the job done by the parser is to establish which tag has been encountered and where the associated data content may be found. Although the processing is essentially the same for each tag, we have shown here separate functions per tag. This illustrates that the parser is flexible enough to handle tags in different ways, as shown with the processing of the <BREAD CHAR> from this example.
A first pass of the table results in the generation of the following software code:
The same code written or generated in System/390 Assembler is dramatically shorter, and is listed below:
This code works for items less than 256 bytes in length . . . a trivial extension would allow for longer.
Turning now to
The template of
Described below are further details of a parsing process according to one embodiment of the invention. Upon receipt of an XML document, the parser must attempt to generate a parse template and establish whether a new template is required for this document. In the latter case, the document type would not have been seen in advance. This is effected as described in the following steps (1) to (3) of the parsing process.
During the first step, the document is scanned to establish (a) the position—in terms of memory offset from the reference memory location of the start of the document—of each opening tag. (b) The identity and order of each tag. Identifying the tag involves stepping past the opening < to the corresponding closing bracket >, and retaining the contents between those two brackets, (c) The depth of the tag, that is whether or not it is nested within another tag, is also established by matching opening and closing tags. Retaining tag depth can be used advantageously to extract subsections of the XML document for separate processing. (d) Since the memory locations as offsets with reference to the starting location will vary in accordance with the length of the associated data and/or any attributes, an internal array is generated which retains the memory offsets of the opening tags in order and by type. For a given document, therefore, there is a fixed representation of any document which does not vary by data content.
During the second step (2) the identity and order of the tags is queried by the parser from the internal array to indicate the type of XML document that has been presented. If the same tags occur in the same order as one previously viewed then there is no for further processing of the document further, since a template is already available. The template is simply retrieved within the parsing program itself, and applied to the current document. If the same tags do not occur or are not encountered in the same order, then a new template must be generated, as described in the next step (3).
The simplest implementation of the next step (3) involves the retention of memory location of the start of the opening tag along with that of the corresponding data at the end of the tag: for instance, the two memory locations of <LISTPRICE> and the actual amount $4.99. An exception to this is found when the tag contains an attribute. Because this will be known from the process in 1.a above—for instance by establishing if the tag contains an equals sign ‘=’ as in the case of <BREAD CHAR=“BAKERS BEST”/> where there is no corresponding closing </BREAD> tag—then the data location will be contained within the tag itself.
A more sophisticated, and efficient, implementation of this step (3) involves retaining both the memory offset for the tags and associated data and/or attributes, but also the size of the data elements. Depending on the nature of the tag, this can be done simply by searching character by character forward until the next < or more precisely the sequence </ is encountered. The size of the data element is therefore the offset of this < minus that of the closing > for the opening bracket. Storing the data size as well as offsets, and order of tag offsets, would allow rapid memory actions to retrieve the data elements themselves when XML documents of the same type, identified by the type and order of the tags stored in the internal array, are presented, rather than having to walk from the opening tag to the end of the data contents during the actual parsing itself which would involve both a byte-by-byte compare and copy action.
This initial process therefore retains information from a rapid review of the XML document as it is presented to the parser. The purpose of this is to establish whether a template (the two dimensional array described under step 1.d above) is available or whether a new one must be generated. The difference between retaining just the ordered memory offsets and augmenting these data with additional information at this stage are illustrated in FIGS. 6 to 8.
Current parsers such as DOM and SAX parsers adopt slightly different approaches, with varying effects on processor and memory requirements. A DOM parser generates a full tree representation of the document, requiring significant processing, but very accurate. A SAX parser, by contrast, is event driven: as and when a tag is encountered, it initiates a specific event or action. In consequence, processor requirements are minimized, but elapsed time is increased since this is more closely akin to interpreting the document at runtime. By simplifying upfront template generation, but retaining information on depth and data location as well as size, this implementation provides the benefits of both approaches without requiring additional processor capacity or lengthy interpretation.
The processing device as shown in Pig. 9 is a computer system 1000 of a type that executes under a suitable operating system installed on the computer system 1000, and may be thought of as comprising various software code means for achieving the particular steps of the aforementioned methods of generating an XML parser, and parsing an XML document.
The components of the computer system 1000 include a computer 1200, a keyboard 1100 and mouse 1150, and a video display 1900. The computer 1200 includes a processor 1400, a memory 1500, input/output (I/O) interfaces 1600, 1650, a video interface 1450, and a storage device 1550.
The processor 1400 is a central processing unit (CPU) that executes the operating system and the computer software executing under the operating system. The memory 1500 includes random access memory (RAM) and read-only memory (ROM), and is used under direction of the processor 1400.
The video interface 1450 is connected to video display 1900 and provides video signals for display on the video display 1900. User input to operate the computer 1200 is provided from the keyboard 1100 and mouse 1150. The storage device 1550 can include a disk drive or any other suitable storage medium. Each of the components of the computer 1200 is connected to an internal bus 1300 that includes data, address, and control buses, to allow components of the computer 1200 to communicate with each other via the bus 1300. The computer system 1000 can be connected to one or more other similar computers via a input/output (I/O) interface 1650 using a communication channel 1850 to a network, represented as the Internet 1800.
The computer software may be recorded on a portable storage medium, in which case, the computer software program is accessed by the computer system 1000 from the storage device 1550. Alternatively, the computer software can be accessed directly from the Internet 1800 by the computer 1200. In either case, a user can interact with the computer system 1000 using the keyboard 1100 and mouse 1150 to operate the programmed computer software executing on the computer 1200.
The flowchart and block diagrams in the Figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems that perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
The terminology used herein is for the purpose of describing particular embodiments only and is not intended to be limiting of the invention. As used herein, the singular forms “a”, “an” and “the” are intended to include the plural forms as well, unless the context clearly indicates otherwise. It will be further understood that the terms “comprises” and/or “comprising,” when used in this specification, specify the presence of stated features, integers, steps, operations, elements, and/or components, but do not preclude the presence or addition of one or more other features, integers, steps, operations, elements, components, and/or groups thereof.
The corresponding structures, materials, acts, and equivalents of all means or step plus function elements in the claims below are intended to include any structure, material, or act for performing the function in combination with other claimed elements as specifically claimed. The description of the present invention has been presented for purposes of illustration and description, but is not intended to be exhaustive or limited to the invention in the form disclosed. Many modifications and variations will be apparent to those of ordinary skill in the art without departing from the scope and spirit of the invention. The embodiment was chosen and described in order to best explain the principles of the invention and the practical application, and to enable others of ordinary skill in the art to understand the invention for various embodiments with various modifications as are suited to the particular use contemplated.
Number | Date | Country | Kind |
---|---|---|---|
0428365.1 | Dec 2004 | GB | national |