Initial JGit contribution to eclipse.org
[jgit/MarioXXX.git] / org.eclipse.jgit / src / org / eclipse / jgit / lib / TreeIterator.java
blob937baf6cc5d5c723f669792eeec6eb2cda4c0a82
1 /*
2 * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
3 * Copyright (C) 2006, Shawn O. Pearce <spearce@spearce.org>
4 * and other copyright owners as documented in the project's IP log.
6 * This program and the accompanying materials are made available
7 * under the terms of the Eclipse Distribution License v1.0 which
8 * accompanies this distribution, is reproduced below, and is
9 * available at http://www.eclipse.org/org/documents/edl-v10.php
11 * All rights reserved.
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
15 * conditions are met:
17 * - Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials provided
23 * with the distribution.
25 * - Neither the name of the Eclipse Foundation, Inc. nor the
26 * names of its contributors may be used to endorse or promote
27 * products derived from this software without specific prior
28 * written permission.
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 package org.eclipse.jgit.lib;
47 import java.io.IOException;
48 import java.util.Iterator;
50 /**
51 * A tree iterator iterates over a tree and all its members recursing into
52 * subtrees according to order.
54 * Default is to only visit leafs. An {@link Order} value can be supplied to
55 * make the iteration include Tree nodes as well either before or after the
56 * child nodes have been visited.
58 public class TreeIterator implements Iterator<TreeEntry> {
60 private Tree tree;
62 private int index;
64 private TreeIterator sub;
66 private Order order;
68 private boolean visitTreeNodes;
70 private boolean hasVisitedTree;
72 /**
73 * Traversal order
75 public enum Order {
76 /**
77 * Visit node first, then leaves
79 PREORDER,
81 /**
82 * Visit leaves first, then node
84 POSTORDER
87 /**
88 * Construct a {@link TreeIterator} for visiting all non-tree nodes.
90 * @param start
92 public TreeIterator(Tree start) {
93 this(start, Order.PREORDER, false);
96 /**
97 * Construct a {@link TreeIterator} visiting all nodes in a tree in a given
98 * order.
100 * @param start Root node
101 * @param order {@link Order}
103 public TreeIterator(Tree start, Order order) {
104 this(start, order, true);
108 * Construct a {@link TreeIterator}
110 * @param start First node to visit
111 * @param order Visitation {@link Order}
112 * @param visitTreeNode True to include tree node
114 private TreeIterator(Tree start, Order order, boolean visitTreeNode) {
115 this.tree = start;
116 this.visitTreeNodes = visitTreeNode;
117 this.index = -1;
118 this.order = order;
119 if (!visitTreeNodes)
120 this.hasVisitedTree = true;
121 try {
122 step();
123 } catch (IOException e) {
124 throw new Error(e);
128 public TreeEntry next() {
129 try {
130 TreeEntry ret = nextTreeEntry();
131 step();
132 return ret;
133 } catch (IOException e) {
134 throw new Error(e);
138 private TreeEntry nextTreeEntry() throws IOException {
139 TreeEntry ret;
140 if (sub != null)
141 ret = sub.nextTreeEntry();
142 else {
143 if (index < 0 && order == Order.PREORDER) {
144 return tree;
146 if (order == Order.POSTORDER && index == tree.memberCount()) {
147 return tree;
149 ret = tree.members()[index];
151 return ret;
154 public boolean hasNext() {
155 try {
156 return hasNextTreeEntry();
157 } catch (IOException e) {
158 throw new Error(e);
162 private boolean hasNextTreeEntry() throws IOException {
163 if (tree == null)
164 return false;
165 return sub != null
166 || index < tree.memberCount()
167 || order == Order.POSTORDER && index == tree.memberCount();
170 private boolean step() throws IOException {
171 if (tree == null)
172 return false;
174 if (sub != null) {
175 if (sub.step())
176 return true;
177 sub = null;
180 if (index < 0 && !hasVisitedTree && order == Order.PREORDER) {
181 hasVisitedTree = true;
182 return true;
185 while (++index < tree.memberCount()) {
186 TreeEntry e = tree.members()[index];
187 if (e instanceof Tree) {
188 sub = new TreeIterator((Tree) e, order, visitTreeNodes);
189 if (sub.hasNextTreeEntry())
190 return true;
191 sub = null;
192 continue;
194 return true;
197 if (index == tree.memberCount() && !hasVisitedTree
198 && order == Order.POSTORDER) {
199 hasVisitedTree = true;
200 return true;
202 return false;
205 public void remove() {
206 throw new IllegalStateException(
207 "TreeIterator does not support remove()");