[
Lists Home |
Date Index |
Thread Index
]
If you buy the Random vs Sequential (Access Model)
distinction, you could "fix" DOM to provide both
Random and Sequential access via three modifications:
a) Give each node an "access" property. This property
can have one of three values:
RANDOM The node's content can be viewed as
many times as desired.
SEQUENTIAL The node's content can only be viewed
once.
NOACCESS The node's content has already been viewed.
b) Allow content accessors to throw a new "NoAccess"
exception. These accessors may only throw this exception
if the access property of the node is NOACCESS.
c) When a content accessor is invoked, the node's access
may change from SEQUENTIAL to RANDOM or NOACCESS.
A node that has RANDOM access must forever stay with
RANDOM access.
Best,
Clark
On Fri, Jan 25, 2002 at 12:31:37PM -0500, Clark C . Evans wrote:
| On Sun, Nov 25, 2001 at 11:43:49AM -0800, Dare Obasanjo wrote:
| | No. The pull model has *nothing* to do with an in-memory
| | representation of the document.
|
| Yes. Random vs. sequential access is an othogonal issue.
|
|
| Sequential Random
| +----------------------------------------------------------
| |
| Push | SAX (recursive visitor)
| |
| Pull | Pull Parser DOM
| |
| +-------------------------------------------------------
|
| The confusion arises since SAX and DOM are different
| in two regards: (a) processing model (push vs pull)
| and (b) access model (random vs sequential).
|
| The XML Pull Parser is an example which is SAX-like
| in that it is sequential access, but DOM-like in that
| it has a pull interface. The other permutation
| is a recurisive visitor interface. You can scan
| the SML-DEV archives if you'd like more information
| on this... it doesn't seem to be as useful as the
| other three permutations.
|
| Best,
|
| Clark
|
| --
| Clark C. Evans Axista, Inc.
| http://www.axista.com 800.926.5525
| XCOLLA Collaborative Project Management Software
|
| -----------------------------------------------------------------
| 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>
|
--
Clark C. Evans Axista, Inc.
http://www.axista.com 800.926.5525
XCOLLA Collaborative Project Management Software
|