/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* A NameNode represents a node in the DNS namespace. Each node
* has a label, which is its name relative to its parent (so the
* node at Sun.COM has label "Sun"). Each node has a hashtable of
* children indexed by their labels converted to lower-case.
*
* <p> A node may be addressed from another by giving a DnsName
* consisting of the sequence of labels from one node to the other.
*
* <p> Each node also has an <tt>isZoneCut</tt> flag, used to indicate
* if the node is a zone cut. A zone cut is a node with an NS record
* that is contained in one zone, but that actually belongs to a child zone.
*
* <p> All access is unsynchronized.
*
* @author Scott Seligman
*/
class NameNode {
// parent, or null for root of a tree
}
/*
* Returns a newly-allocated NameNode. Used to allocate new nodes
* in a tree. Should be overridden in a subclass to return an object
* of the subclass's type.
*/
}
/*
* Returns the name of this node relative to its parent, or null for
* the root of a tree.
*/
return label;
}
/*
* Returns the depth of this node in the tree. The depth of the root
* is 0.
*/
int depth() {
return depth;
}
boolean isZoneCut() {
return isZoneCut;
}
}
/*
* Returns the children of this node, or null if there are none.
* The caller must not modify the Hashtable returned.
*/
return children;
}
/*
* Returns the child node given the hash key (the down-cased label)
* for its name relative to this node, or null if there is no such
* child.
*/
: null;
}
/*
* Returns the node at the end of a path, or null if the
* node does not exist.
* The path is specified by the labels of <tt>name</tt>, beginning
* at index idx.
*/
}
return node;
}
/*
* Returns the node at the end of a path, creating it and any
* intermediate nodes as needed.
* The path is specified by the labels of <tt>name</tt>, beginning
* at index idx.
*/
} else {
}
}
}
return node;
}
}