Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/jdk.compiler/share/classes/com/sun/source/util/DocTreePath.java
41175 views
1
/*
2
* Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package com.sun.source.util;
27
28
import com.sun.source.doctree.DocCommentTree;
29
import com.sun.source.doctree.DocTree;
30
31
import java.util.Iterator;
32
import java.util.NoSuchElementException;
33
import java.util.Objects;
34
35
/**
36
* A path of tree nodes, typically used to represent the sequence of ancestor
37
* nodes of a tree node up to the top-level {@code DocCommentTree} node.
38
*
39
* @since 1.8
40
*/
41
public class DocTreePath implements Iterable<DocTree> {
42
/**
43
* Returns a documentation tree path for a tree node within a compilation unit,
44
* or {@code null} if the node is not found.
45
* @param treePath the path for the node with which the doc comment is associated
46
* @param doc the doc comment associated with the node
47
* @param target a node within the doc comment
48
* @return a path identifying the target within the tree
49
*/
50
public static DocTreePath getPath(TreePath treePath, DocCommentTree doc, DocTree target) {
51
return getPath(new DocTreePath(treePath, doc), target);
52
}
53
54
/**
55
* Returns a documentation tree path for a tree node within a subtree
56
* identified by a {@code DocTreePath} object, or {@code null} if the node is not found.
57
* @param path a path identifying a node within a doc comment tree
58
* @param target a node to be located within the given node
59
* @return a path identifying the target node
60
*/
61
public static DocTreePath getPath(DocTreePath path, DocTree target) {
62
Objects.requireNonNull(path); //null check
63
Objects.requireNonNull(target); //null check
64
65
class Result extends Error {
66
static final long serialVersionUID = -5942088234594905625L;
67
DocTreePath path;
68
Result(DocTreePath path) {
69
this.path = path;
70
}
71
}
72
73
class PathFinder extends DocTreePathScanner<DocTreePath,DocTree> {
74
@Override
75
public DocTreePath scan(DocTree tree, DocTree target) {
76
if (tree == target) {
77
throw new Result(new DocTreePath(getCurrentPath(), target));
78
}
79
return super.scan(tree, target);
80
}
81
}
82
83
if (path.getLeaf() == target) {
84
return path;
85
}
86
87
try {
88
new PathFinder().scan(path, target);
89
} catch (Result result) {
90
return result.path;
91
}
92
return null;
93
}
94
95
/**
96
* Creates a {@code DocTreePath} for a root node.
97
*
98
* @param treePath the {@code TreePath} from which the root node was created
99
* @param t the {@code DocCommentTree} to create the path for
100
*/
101
public DocTreePath(TreePath treePath, DocCommentTree t) {
102
this.treePath = treePath;
103
this.docComment = Objects.requireNonNull(t);
104
this.parent = null;
105
this.leaf = t;
106
}
107
108
/**
109
* Creates a {@code DocTreePath} for a child node.
110
* @param p the parent node
111
* @param t the child node
112
*/
113
public DocTreePath(DocTreePath p, DocTree t) {
114
if (t.getKind() == DocTree.Kind.DOC_COMMENT) {
115
throw new IllegalArgumentException("Use DocTreePath(TreePath, DocCommentTree) to construct DocTreePath for a DocCommentTree.");
116
} else {
117
treePath = p.treePath;
118
docComment = p.docComment;
119
parent = p;
120
}
121
leaf = t;
122
}
123
124
/**
125
* Returns the {@code TreePath} associated with this path.
126
* @return the {@code TreePath} for this {@code DocTreePath}
127
*/
128
public TreePath getTreePath() {
129
return treePath;
130
}
131
132
/**
133
* Returns the {@code DocCommentTree} associated with this path.
134
* @return the {@code DocCommentTree} for this {@code DocTreePath}
135
*/
136
public DocCommentTree getDocComment() {
137
return docComment;
138
}
139
140
/**
141
* Returns the leaf node for this path.
142
* @return the {@code DocTree} for this {@code DocTreePath}
143
*/
144
public DocTree getLeaf() {
145
return leaf;
146
}
147
148
/**
149
* Returns the path for the enclosing node, or {@code null} if there is no enclosing node.
150
* @return {@code DocTreePath} of parent
151
*/
152
public DocTreePath getParentPath() {
153
return parent;
154
}
155
156
@Override
157
public Iterator<DocTree> iterator() {
158
return new Iterator<>() {
159
@Override
160
public boolean hasNext() {
161
return next != null;
162
}
163
164
@Override
165
public DocTree next() {
166
if (next == null) {
167
throw new NoSuchElementException();
168
}
169
DocTree t = next.leaf;
170
next = next.parent;
171
return t;
172
}
173
174
@Override
175
public void remove() {
176
throw new UnsupportedOperationException();
177
}
178
179
private DocTreePath next = DocTreePath.this;
180
};
181
}
182
183
private final TreePath treePath;
184
private final DocCommentTree docComment;
185
private final DocTree leaf;
186
private final DocTreePath parent;
187
}
188
189