TectoMT::Node
This class represents a TectoMT node. TectoMT trees (contained in bundles) are formed by nodes and edges. Attributes can be attached only to nodes. Edge's attributes must be stored as the lower node's attributes. Tree's attributes must be stored as attributes of the root node.
Creates a new node as well as its underlying FSNode representation.
Creates a new node and associates it with an already existing FSNode object.
Creates a new node and fills some of its attributes.
Associates the given node with a FSNode object which will be used as its underlying represenatation.
Returns the associated FSNode object used as the node's underlying represenatation.
Returns the TectoMT::Bundle object in which the node's tree is contained.
Returns the TectoMT::Document object in which the node's tree is contained.
Returns the value of the node attribute of the given name.
Sets the given attribute of the node with the given value. If the attribute name is 'id', then the document's indexing table is updated. If value of the type List is to be filled, then $value must be a reference to the array of values.
If value of the given attribute is reference (or list of references), it returns the appropriate node (or a reference to the list of nodes).
Sets the given attribute with ID (list of IDs) of the given node (list of nodes).
If the given attribute is list, the given value is appended to it.
Get more attributes at once.
If the last argument is {undefs=>$value}
, all undefs are substituted
by a $value
(typically the value is an empty string).
Returns the parent node, or undef if there is none (if $node itself is the root)
Makes $node a child of $parent_node.
Disconnecting a node (or a subtree rooted by the given node) from its parent. Underlying fs-node representation is disconnected too. Node identifier is removed from the document indexing table. The disconnected node cannot be futher used.
Returns the root of the node's tree.
Returns true if the node has no parent.
Next three methods (for access to children / descendants / siblings)
have an optional argument $arg_ref
for specifying switches.
By adding some switches, you can modify the behavior of these methods.
See Switches for examples.
Returns an array of child nodes.
Returns an array of descendant nodes ('transitive children').
Returns an array of nodes sharing the parent with the current node.
Actually there are 6 switches:
Names of variables in the examples suppose a language with left-to-right script.
my @ordered_descendants = $node->get_descendants({ordered=>1}); my @self_and_left_children = $node->get_children({preceding_only=>1, add_self=>1}); my @ordered_self_and_children = $node->get_children({ordered=>1, add_self=>1}); my $leftmost_child = $node->get_children({first_only=>1}); my @ordered_siblings = $node->get_siblings({ordered=>1}); my $left_neighbor = $node->get_siblings({preceding_only=>1, last_only=>1}); my $right_neighbor = $node->get_siblings({following_only=>1, first_only=>1}); my $leftmost_sibling_or_self = $node->get_siblings({add_self=>1, first_only=>1});
first_only and last_only switches makes the method return just one item - a scalar, even if combined with the add_self switch.
Specifying (first|last|preceding|following)_only implies ordered, so explicit addition of ordered gives a warning.
Specifying both preceding_only and following_only gives an error (same for combining first_only and last_only).
There are shortcuts for comfort of those who use left-to-right scripts:
Returns the rightmost node from the set of left siblings (the nearest left sibling).
Actually, this is shortcut for $node->get_siblings({preceding_only=>1, last_only=>1})
.
Returns the leftmost node from the set of right siblings (the nearest right sibling).
Actually, this is shortcut for $node->get_siblings({following_only=>1, first_only=>1})
.
Returns the name of the ordering attribute ('ord' by default). This method is supposed to be redefined in derived classes (to return e.g. 'deepord' for tectogrammatical layer nodes). All methods following in this section make use of this method.
Returns the ordering value of the given node. (In this class, i.e. the value of 'ord' attribute.)
The values of the ordering attribute of all nodes in the tree (possibly containing negative or fractional numbers) are normalized. The node ordering is preserved, but only integer values are used now (starting from 0 for the root, with increment 1). This method can be called only on tree roots (nodes without parent), otherwise fatal error is invoked. BEWARE: This method is only needed when there are some fractional values of the ordering atttribute in a tree. If possible, use methods from the next section (Reordering nodes) instead of do-it-yourself reordering that involves fractional ords.
Does this node precedes $another_node
?
Return the closest following node (according to the ordering attribute)
or undef
if $node
is the last one in the tree.
Return the closest preceding node (according to the ordering attribute)
or undef
if $node
is the first one in the tree.
Next four methods for changing the order of nodes
(typically the word order defined by the attribute ord
)
have an optional argument $arg_ref
for specifying switches.
Actually there is only one switch - without_children
which is by default set to 0.
It means that the default behavior is to shift the node
with all its descendants.
Only if you want to leave the position of the descendants unchanged
and shift just the node, use e.g.
$node->shift_after_node($reference_node, {without_children=>1});
Shifting involves only changing the ordering attribute of nodes. There is no rehanging (changing parents). The node which is going to be shifted must be already added to the tree and the reference node must be in the same tree.
For languages with left-to-right script: after means ``to the right of'' and before means ``to the left of''.
Shifts (changes the ord of) the node just behind the reference node.
Shifts (changes the ord of) the node behind the subtree of the reference node.
Shifts (changes the ord of) the node just in front of the reference node.
Shifts (changes the ord of) the node in front of the subtree of the reference node.
Generate new (=so far unindexed) identifier (to be used when creating new nodes). The new identifier is derived from the identifier of the root ($node->root), by adding suffix x1 (or x2, if ...x1 has already been indexed, etc.) to the root's id.
Return the node address, i.e. file name and node's position within the file, similarly
to TrEd's FPosition()
(but the value is only returned, not printed).
Return the depth of the node. The root has depth = 0, its children have depth = 1 etc.
Instead of $node->geta_xy()
, use $node->get_attr('xy')
(the shortcut notation did not come into the use of TectoMT programmers).
Instead of methods with ordered, left, right in names, use appropriate switches (for access to children / descendants / siblings) or shifting methods (for shifting / reordering).
Generic set of faster-to-write attribute-getter methods, such as $node->geta_functor()
equivalent to $node->get_attr('functor'), or $node->geta_gram__number()
equivalent to
$node->get_attr('gram/number'). In the case of structured attributes, '/' in the attribute name
is to be substituted with '__' (double underscore).
Generic set of faster-to-write attribute-setter methods, such as $node->seta_functor('ACT')
equivalent to $node->set_attr('functor','ACT'), or $node->seta_gram__number('pl')
equivalent to
$node->get_attr('gram/number','pl'). In the case of structured attributes, '/' in the attribute name
is to be substituted with '__' (double underscore).
Returns array of descendants sorted using the get_ordering_value method.
Returns array of sorted descendants with the ordering value smaller than that of the given node.
Returns array of sorted descendants with the ordering value bigger than that of the given node.
Returns the child node with the smallest ordering value.
Returns the child node with the biggest ordering value.
Returns an array of sibling nodes (nodes sharing their parent with the current node), ordered according to get_ordering_value.
Returns an array (ordered according to get_ordering_value) of sibling nodes with ordering values smaller than that of the current node.
Returns an array (ordered according to get_ordering_value) of sibling nodes with ordering values bigger than that of the current node.
Node and its subtree is moved among its siblings. Projective tree is assumed.
Node and its subtree is moved among its siblings. Projective tree is assumed.
Copyright 2006-2009 Zdenek Zabokrtsky, Martin Popel. This file is distributed under the GNU General Public License v2. See $TMT_ROOT/README