Node.java
/*
***** BEGIN LICENSE BLOCK *****
* Version: EPL 1.0/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Eclipse Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.eclipse.org/legal/epl-v10.html
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* Copyright (C) 2001-2002 Jan Arne Petersen <jpetersen@uni-bonn.de>
* Copyright (C) 2001-2002 Benoit Cerrina <b.cerrina@wanadoo.fr>
* Copyright (C) 2002-2004 Anders Bengtsson <ndrsbngtssn@yahoo.se>
* Copyright (C) 2004 Thomas E Enebo <enebo@acm.org>
* Copyright (C) 2004 Stefan Matthias Aust <sma@3plus4.de>
* Copyright (C) 2006 Thomas Corbat <tcorbat@hsr.ch>
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the EPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the EPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****/
package org.jruby.ast;
import java.util.ArrayList;
import java.util.List;
import org.jruby.ParseResult;
import org.jruby.ast.types.INameNode;
import org.jruby.ast.visitor.AbstractNodeVisitor;
import org.jruby.ast.visitor.NodeVisitor;
import org.jruby.lexer.yacc.ISourcePosition;
import org.jruby.lexer.yacc.ISourcePositionHolder;
/**
* Base class for all Nodes in the AST
*/
public abstract class Node implements ISourcePositionHolder, ParseResult {
// We define an actual list to get around bug in java integration (1387115)
static final List<Node> EMPTY_LIST = new ArrayList<Node>();
private ISourcePosition position;
public Node(ISourcePosition position) {
this.position = position;
}
/**
* Location of this node within the source
*/
public ISourcePosition getPosition() {
return position;
}
public void setPosition(ISourcePosition position) {
this.position = position;
}
public abstract <T> T accept(NodeVisitor<T> visitor);
public abstract List<Node> childNodes();
protected static List<Node> createList(Node node) {
ArrayList<Node> list = new ArrayList<Node>(1);
list.add(node);
return list;
}
protected static List<Node> createList(Node node1, Node node2) {
ArrayList<Node> list = new ArrayList<Node>(2);
list.add(node1);
list.add(node2);
return list;
}
protected static List<Node> createList(Node node1, Node node2, Node node3) {
ArrayList<Node> list = new ArrayList<Node>(3);
list.add(node1);
list.add(node2);
list.add(node3);
return list;
}
protected static List<Node> createList(Node... nodes) {
ArrayList<Node> list = new ArrayList<Node>(nodes.length);
for (Node node: nodes) {
if (node != null) list.add(node);
}
return list;
}
@Override
public String toString() {
return toString(false, 0);
}
public String toString(boolean indent, int indentation) {
if (this instanceof InvisibleNode) return "";
StringBuilder builder = new StringBuilder(60);
if (indent) {
indent(indentation, builder);
}
builder.append("(").append(getNodeName());
if (this instanceof INameNode) {
builder.append(":").append(((INameNode) this).getName());
}
builder.append(" ").append(getPosition().getLine());
if (!childNodes().isEmpty() && indent) {
builder.append("\n");
}
for (Node child : childNodes()) {
if (!indent) {
builder.append(", ");
}
if (child == null) {
if (indent) {
indent(indentation + 1, builder);
}
builder.append("null");
} else {
if (indent && child instanceof NilImplicitNode) {
if (indent) {
indent(indentation + 1, builder);
}
builder.append(child.getClass().getSimpleName());
} else {
builder.append(child.toString(indent, indentation + 1));
}
}
if (indent) {
builder.append("\n");
}
}
if (!childNodes().isEmpty() && indent) {
indent(indentation, builder);
}
builder.append(")");
return builder.toString();
}
private static void indent(int indentation, StringBuilder builder) {
for (int n = 0; n < indentation; n++) {
builder.append(" ");
}
}
protected String getNodeName() {
String name = getClass().getName();
int i = name.lastIndexOf('.');
String nodeType = name.substring(i + 1);
return nodeType;
}
public <T extends org.jruby.ast.Node> T findFirstChild(final Class<T> nodeClass) {
return accept(new AbstractNodeVisitor<T>() {
@Override
protected T defaultVisit(Node node) {
if (nodeClass.isAssignableFrom(node.getClass())) {
return (T) node;
} else {
return visitFirstChild(node);
}
}
});
}
/**
* @return the nodeId
*/
public abstract NodeType getNodeType();
/**
* Whether the node evaluates to nil and has no side effects.
*
* @return true if nil, false otherwise
*/
public boolean isNil() {
return false;
}
/**
* Check whether the given node is considered always "defined" or whether it
* has some form of definition check.
*
* @return Whether the type of node represents a possibly undefined construct
*/
public boolean needsDefinitionCheck() {
return true;
}
}