|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xpath.NodeSet
public class NodeSet
The NodeSet class can act as either a NodeVector, NodeList, or NodeIterator. However, in order for it to act as a NodeVector or NodeList, it's required that setShouldCacheNodes(true) be called before the first nextNode() is called, in order that nodes can be added as they are fetched. Derived classes that implement iterators must override runTo(int index), in order that they may run the iteration to the given index.
Note that we directly implement the DOM's NodeIterator interface. We do not emulate all the behavior of the standard NodeIterator. In particular, we do not guarantee to present a "live view" of the document ... but in XSLT, the source document should never be mutated, so this should never be an issue.
Thought: Should NodeSet really implement NodeList and NodeIterator, or should there be specific subclasses of it which do so? The advantage of doing it all here is that all NodeSets will respond to the same calls; the disadvantage is that some of them may return less-than-enlightening results when you do so.
Field Summary | |
---|---|
private int |
m_blocksize
Size of blocks to allocate. |
protected boolean |
m_cacheNodes
True if this list is cached. |
protected int |
m_firstFree
Number of nodes in this NodeVector. |
private int |
m_last
|
(package private) org.w3c.dom.Node[] |
m_map
Array of nodes this points to. |
private int |
m_mapSize
Size of the array this points to. |
protected boolean |
m_mutable
True if this list can be mutated. |
protected int |
m_next
If this node is being used as an iterator, the next index that nextNode() will return. |
Constructor Summary | |
---|---|
NodeSet()
Create an empty nodelist. |
|
NodeSet(int blocksize)
Create an empty, using the given block size. |
|
NodeSet(org.w3c.dom.Node node)
Create a NodeSet which contains the given Node. |
|
NodeSet(org.w3c.dom.traversal.NodeIterator ni)
Create a NodeSet, and copy the members of the given NodeIterator into it. |
|
NodeSet(org.w3c.dom.NodeList nodelist)
Create a NodeSet, and copy the members of the given nodelist into it. |
|
NodeSet(NodeSet nodelist)
Create a NodeSet, and copy the members of the given NodeSet into it. |
Method Summary | |
---|---|
void |
addElement(org.w3c.dom.Node value)
Append a Node onto the vector. |
void |
addNode(org.w3c.dom.Node n)
Add a node to the NodeSet. |
int |
addNodeInDocOrder(org.w3c.dom.Node node,
boolean test,
XPathContext support)
Add the node into a vector of nodes where it should occur in document order. |
int |
addNodeInDocOrder(org.w3c.dom.Node node,
XPathContext support)
Add the node into a vector of nodes where it should occur in document order. |
void |
addNodes(org.w3c.dom.traversal.NodeIterator iterator)
Copy NodeList members into this nodelist, adding in document order. |
void |
addNodes(org.w3c.dom.NodeList nodelist)
Copy NodeList members into this nodelist, adding in document order. |
void |
addNodes(NodeSet ns)
Copy NodeList members into this nodelist, adding in document order. |
private boolean |
addNodesInDocOrder(int start,
int end,
int testIndex,
org.w3c.dom.NodeList nodelist,
XPathContext support)
Add the node list to this node set in document order. |
void |
addNodesInDocOrder(org.w3c.dom.traversal.NodeIterator iterator,
XPathContext support)
Copy NodeList members into this nodelist, adding in document order. |
void |
addNodesInDocOrder(org.w3c.dom.NodeList nodelist,
XPathContext support)
Copy NodeList members into this nodelist, adding in document order. |
void |
appendNodes(NodeSet nodes)
Append the nodes to the list. |
java.lang.Object |
clone()
Get a cloned LocPathIterator. |
org.w3c.dom.traversal.NodeIterator |
cloneWithReset()
Get a cloned Iterator, and reset its state to the beginning of the iteration. |
boolean |
contains(org.w3c.dom.Node s)
Tell if the table contains the given node. |
void |
detach()
Detaches the iterator from the set which it iterated over, releasing any computational resources and placing the iterator in the INVALID state. |
org.w3c.dom.Node |
elementAt(int i)
Get the nth element. |
org.w3c.dom.Node |
getCurrentNode()
Return the last fetched node. |
int |
getCurrentPos()
Get the current position, which is one less than the next nextNode() call will retrieve. |
boolean |
getExpandEntityReferences()
The value of this flag determines whether the children of entity reference nodes are visible to the iterator. |
org.w3c.dom.traversal.NodeFilter |
getFilter()
The filter object used to screen nodes. |
int |
getLast()
Get the index of the last node in this list. |
int |
getLength()
The number of nodes in the list. |
org.w3c.dom.Node |
getRoot()
|
boolean |
getShouldCacheNodes()
Get whether or not this is a cached node set. |
int |
getWhatToShow()
This attribute determines which node types are presented via the iterator. |
int |
indexOf(org.w3c.dom.Node elem)
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
int |
indexOf(org.w3c.dom.Node elem,
int index)
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
void |
insertElementAt(org.w3c.dom.Node value,
int at)
Inserts the specified node in this vector at the specified index. |
void |
insertNode(org.w3c.dom.Node n,
int pos)
Insert a node at a given position. |
boolean |
isFresh()
Tells if this NodeSet is "fresh", in other words, if the first nextNode() that is called will return the first node in the set. |
org.w3c.dom.Node |
item(int index)
Returns the index th item in the collection. |
org.w3c.dom.Node |
nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
org.w3c.dom.Node |
peepOrNull()
Return the node at the top of the stack without popping the stack. |
org.w3c.dom.Node |
peepTail()
Return the node at the tail of the vector without popping Special purpose method for TransformerImpl, pushElemTemplateElement. |
org.w3c.dom.Node |
peepTailSub1()
Return the node one position from the tail without popping. |
org.w3c.dom.Node |
pop()
Pop a node from the tail of the vector and return the result. |
org.w3c.dom.Node |
popAndTop()
Pop a node from the tail of the vector and return the top of the stack after the pop. |
void |
popPair()
Pop a pair of nodes from the tail of the stack. |
void |
popQuick()
Pop a node from the tail of the vector. |
org.w3c.dom.Node |
previousNode()
Returns the previous node in the set and moves the position of the iterator backwards in the set. |
void |
push(org.w3c.dom.Node value)
Append a Node onto the vector. |
void |
pushPair(org.w3c.dom.Node v1,
org.w3c.dom.Node v2)
Push a pair of nodes into the stack. |
void |
removeAllElements()
Inserts the specified node in this vector at the specified index. |
boolean |
removeElement(org.w3c.dom.Node s)
Removes the first occurrence of the argument from this vector. |
void |
removeElementAt(int i)
Deletes the component at the specified index. |
void |
removeNode(org.w3c.dom.Node n)
Remove a node. |
void |
reset()
Reset the iterator. |
void |
runTo(int index)
If an index is requested, NodeSet will call this method to run the iterator to the index. |
void |
setCurrentPos(int i)
Set the current position in the node set. |
void |
setElementAt(org.w3c.dom.Node node,
int index)
Sets the component at the specified index of this vector to be the specified object. |
void |
setLast(int last)
Set the index of the last node in this list. |
void |
setShouldCacheNodes(boolean b)
If setShouldCacheNodes(true) is called, then nodes will be cached. |
void |
setTail(org.w3c.dom.Node n)
Set the tail of the stack to the given node. |
void |
setTailSub1(org.w3c.dom.Node n)
Set the given node one position from the tail. |
int |
size()
Get the length of the list. |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected transient int m_next
protected transient boolean m_mutable
protected transient boolean m_cacheNodes
private transient int m_last
private int m_blocksize
org.w3c.dom.Node[] m_map
protected int m_firstFree
private int m_mapSize
Constructor Detail |
---|
public NodeSet()
public NodeSet(int blocksize)
blocksize
- Size of blocks to allocatepublic NodeSet(org.w3c.dom.NodeList nodelist)
nodelist
- List of Nodes to be made members of the new set.public NodeSet(NodeSet nodelist)
nodelist
- Set of Nodes to be made members of the new set.public NodeSet(org.w3c.dom.traversal.NodeIterator ni)
ni
- Iterator which yields Nodes to be made members of the new set.public NodeSet(org.w3c.dom.Node node)
node
- Single node to be added to the new set.Method Detail |
---|
public org.w3c.dom.Node getRoot()
getRoot
in interface org.w3c.dom.traversal.NodeIterator
public org.w3c.dom.traversal.NodeIterator cloneWithReset() throws java.lang.CloneNotSupportedException
cloneWithReset
in interface ContextNodeList
java.lang.CloneNotSupportedException
- if this subclass of NodeSet
does not support the clone() operation.public void reset()
reset
in interface ContextNodeList
public int getWhatToShow()
NodeFilter
interface. For NodeSets, the mask has been
hardcoded to show all nodes except EntityReference nodes, which have
no equivalent in the XPath data model.
getWhatToShow
in interface org.w3c.dom.traversal.NodeIterator
SHOW_ALL & ~SHOW_ENTITY_REFERENCE
, meaning that
only entity references are suppressed.public org.w3c.dom.traversal.NodeFilter getFilter()
getFilter
in interface org.w3c.dom.traversal.NodeIterator
public boolean getExpandEntityReferences()
getExpandEntityReferences
in interface org.w3c.dom.traversal.NodeIterator
public org.w3c.dom.Node nextNode() throws org.w3c.dom.DOMException
nextNode
in interface org.w3c.dom.traversal.NodeIterator
Node
in the set being iterated over, or
null
if there are no more members in that set.
org.w3c.dom.DOMException
- INVALID_STATE_ERR: Raised if this method is called after the
detach
method was invoked.public org.w3c.dom.Node previousNode() throws org.w3c.dom.DOMException
previousNode
in interface org.w3c.dom.traversal.NodeIterator
Node
in the set being iterated over,
ornull
if there are no more members in that set.
org.w3c.dom.DOMException
- INVALID_STATE_ERR: Raised if this method is called after the
detach
method was invoked.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a cached type, and hence doesn't know what the previous node was.public void detach()
detach
has been invoked, calls to
nextNode
orpreviousNode
will raise the
exception INVALID_STATE_ERR.
This operation is a no-op in NodeSet, and will not cause INVALID_STATE_ERR to be raised by later operations.
detach
in interface org.w3c.dom.traversal.NodeIterator
public boolean isFresh()
isFresh
in interface ContextNodeList
public void runTo(int index)
runTo
in interface ContextNodeList
index
- Position to advance (or retreat) to, with
0 requesting the reset ("fresh") position and -1 (or indeed
any out-of-bounds value) requesting the final position.
java.lang.RuntimeException
- thrown if this NodeSet is not
one of the types which supports indexing/counting.public org.w3c.dom.Node item(int index)
index
th item in the collection. If
index
is greater than or equal to the number of nodes in
the list, this returns null
.
TODO: What happens if index is out of range?
item
in interface org.w3c.dom.NodeList
index
- Index into the collection.
index
th position in the
NodeList
, or null
if that is not a valid
index.public int getLength()
length-1
inclusive. Note that this operation requires
finding all the matching nodes, which may defeat attempts to defer
that work.
getLength
in interface org.w3c.dom.NodeList
public void addNode(org.w3c.dom.Node n)
n
- Node to be added
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public void insertNode(org.w3c.dom.Node n, int pos)
n
- Node to be addedpos
- Offset at which the node is to be inserted,
with 0 being the first position.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public void removeNode(org.w3c.dom.Node n)
n
- Node to be added
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public void addNodes(org.w3c.dom.NodeList nodelist)
nodelist
- List of nodes which should now be referenced by
this NodeSet.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public void addNodes(NodeSet ns)
Copy NodeList members into this nodelist, adding in document order. Only genuine node references will be copied; nulls appearing in the source NodeSet will not be added to this one.
In case you're wondering why this function is needed: NodeSet implements both NodeIterator and NodeList. If this method isn't provided, Java can't decide which of those to use when addNodes() is invoked. Providing the more-explicit match avoids that ambiguity.)
ns
- NodeSet whose members should be merged into this NodeSet.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public void addNodes(org.w3c.dom.traversal.NodeIterator iterator)
iterator
- NodeIterator which yields the nodes to be added.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public void addNodesInDocOrder(org.w3c.dom.NodeList nodelist, XPathContext support)
nodelist
- List of nodes to be addedsupport
- The XPath runtime context.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public void addNodesInDocOrder(org.w3c.dom.traversal.NodeIterator iterator, XPathContext support)
iterator
- NodeIterator which yields the nodes to be added.support
- The XPath runtime context.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.private boolean addNodesInDocOrder(int start, int end, int testIndex, org.w3c.dom.NodeList nodelist, XPathContext support)
start
- index.end
- index.testIndex
- index.nodelist
- The nodelist to add.support
- The XPath runtime context.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public int addNodeInDocOrder(org.w3c.dom.Node node, boolean test, XPathContext support)
node
- The node to be added.test
- true if we should test for doc ordersupport
- The XPath runtime context.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public int addNodeInDocOrder(org.w3c.dom.Node node, XPathContext support)
node
- The node to be added.support
- The XPath runtime context.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a mutable type.public int getCurrentPos()
getCurrentPos
in interface ContextNodeList
public void setCurrentPos(int i)
setCurrentPos
in interface ContextNodeList
i
- Must be a valid index.
java.lang.RuntimeException
- thrown if this NodeSet is not of
a cached type, and thus doesn't permit indexed access.public org.w3c.dom.Node getCurrentNode()
getCurrentNode
in interface ContextNodeList
java.lang.RuntimeException
- thrown if this NodeSet is not of
a cached type, and thus doesn't permit indexed access.public boolean getShouldCacheNodes()
public void setShouldCacheNodes(boolean b)
setShouldCacheNodes
in interface ContextNodeList
b
- true if this node set should be cached.
java.lang.RuntimeException
- thrown if an attempt is made to
request caching after we've already begun stepping through the
nodes in this set.public int getLast()
ContextNodeList
getLast
in interface ContextNodeList
public void setLast(int last)
ContextNodeList
setLast
in interface ContextNodeList
last
- the index of the last node in this list.public java.lang.Object clone() throws java.lang.CloneNotSupportedException
clone
in interface ContextNodeList
clone
in class java.lang.Object
java.lang.CloneNotSupportedException
public int size()
size
in interface ContextNodeList
public void addElement(org.w3c.dom.Node value)
value
- Node to add to the vectorpublic final void push(org.w3c.dom.Node value)
value
- Node to add to the vectorpublic final org.w3c.dom.Node pop()
public final org.w3c.dom.Node popAndTop()
public final void popQuick()
public final org.w3c.dom.Node peepOrNull()
public final void pushPair(org.w3c.dom.Node v1, org.w3c.dom.Node v2)
v1
- First node to add to vectorv2
- Second node to add to vectorpublic final void popPair()
public final void setTail(org.w3c.dom.Node n)
n
- Node to set at the tail of vectorpublic final void setTailSub1(org.w3c.dom.Node n)
n
- Node to setpublic final org.w3c.dom.Node peepTail()
public final org.w3c.dom.Node peepTailSub1()
public void insertElementAt(org.w3c.dom.Node value, int at)
value
- Node to insertat
- Position where to insertpublic void appendNodes(NodeSet nodes)
nodes
- NodeVector to append to this listpublic void removeAllElements()
public boolean removeElement(org.w3c.dom.Node s)
s
- Node to remove from the list
public void removeElementAt(int i)
i
- Index of node to removepublic void setElementAt(org.w3c.dom.Node node, int index)
node
- Node to setindex
- Index of where to set the nodepublic org.w3c.dom.Node elementAt(int i)
i
- Index of node to get
public boolean contains(org.w3c.dom.Node s)
s
- Node to look for
public int indexOf(org.w3c.dom.Node elem, int index)
elem
- Node to look forindex
- Index of where to start the search
public int indexOf(org.w3c.dom.Node elem)
elem
- Node to look for
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |