Scroll to navigation

Blt_Tree(3) Blt Library Procedures Blt_Tree(3)


NAME

Blt_Tree - Tree data object.

SYNOPSIS

#include <bltTree.h>

struct Blt_Tree {
Tcl_Alloc(size)

Tcl_Free(ptr)

char *
Tcl_Realloc(ptr, size)

ARGUMENTS

int size (in)
Size in bytes of the memory block to allocate.
char *ptr (in)
Pointer to memory block to free or realloc.
    

DESCRIPTION

These procedures provide a platform and compiler independent interface for memory allocation. Programs that need to transfer ownership of memory blocks between Tcl and other modules should use these routines rather than the native malloc() and free() routines provided by the C run-time library.

Tcl_Alloc returns a pointer to a block of at least size bytes suitably aligned for any use.

Tcl_Free makes the space referred to by ptr available for further allocation.

Tcl_Realloc changes the size of the block pointed to by ptr to size bytes and returns a pointer to the new block. The contents will be unchanged up to the lesser of the new and old sizes. The returned location may be different from ptr.

TREE OBJECT ROUTINES

The following library routines allow you to create and destroy tree objects. Each tree object has a name that uniquely identifies it. Tree objects can also be shared. For example, the tree and hiertable commands may access the same tree data object. Each client grabs a token associated with the tree. When all tokens are released the tree data object is automatically destroyed.

Create a tree data object and optionally obtains a token associated with it.
Indicates if a tree by a given name exists.
Obtains a token for an existing tree data object.
Releases a token for a tree data object. The tree object is deleted when all outstanding tokens have been released.
Returns the name of the tree object.
Specifies a node as the new root to a tree.

TREENODE ROUTINES

Tree objects initially contain only a root node. You can add or delete nodes with the following routines.

Creates a new child node for a given parent in the tree.
Deletes a node and its children.
Returns the unique node identifier for a node.
Gets a node based upon its identifier.
Searches for a child node given by its label in a parent node.
Returns the current label for a node.
Resets a node's label.
Returns the fullpath to a node.
Returns the depth of the node.
Returns the number of children for a node.
Indicates if a node has no children.
Indicates if a node is before another node in depth-first search order.
Indicates if a node is an ancestor or another.
Sorts the children of a node.
Returns the number of nodes in a node and its descendants.

NODE NAVIGATION

Each node can have zero or more children nodes. These routines let you navigate the tree hierarchy.

Returns the parent node.
Returns the first child of a parent node.
Returns the last child of a parent node.
Returns the next sibling node in the parent's list of children.
Returns the previous sibling node in the parent's list of children.
Returns the root node of the tree.
Returns the next node in depth-first order.
Returns the previous node in depth-first order.
Returns the last node in the tree as determined by depth-first order.
Walks through a node and all it descendants, applying a given callback procedure.
Walks through a node and all it descendants in depth-first search order, applying a given callback procedure.
Walks through a node and all it descendants in breadth-first search order, applying a given callback procedure.

NODE DATA VALUES

Data values can be stored at any node. Values have by both a string key and a Tcl_Obj value. Data value keys do not have to be homogenous across all nodes (i.e. nodes do not have to contain the same keys). There is also a special node array data type.

Gets the node data value given by a key.
Indicates if a node data value given by a key exists.
Sets a node's value of a key.
Remove the node data value and key.
Gets the node data array value given by a key and an array index.
Sets the node data array value given by a key and an array index.
Remove the node data array value.
Determines if an array element by a given index exists.
Returns the key of the first value in the node.
Returns the key of the next value in the node.
Lock the value to current client, making it private.
Unlock the value so that all clients can access it.

NODE TRACES

Sets up a trace callback to be invoked when the node value is read, set, or unset.
Deletes an existing trace.

NODE EVENTS

Sets up a callback to be invoked when events (create, delete, relabel, etc) take place on a node.
Deletes an existing node callback.

KEYWORDS

alloc, allocation, free, malloc, memory, realloc

2.5 BLT