org.netbeans.modules.i18n.regexp.TreeNode Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.i18n.regexp;
import java.util.ArrayList;
import java.util.List;
/**
* Node of a regular expression syntax tree.
* This node and its subnodes represent a subexpression of a regular expression.
*
* @author Marian Petras
*/
class TreeNode {
static final int REGEXP = 0;
static final int MULTI_REGEXP = 1;
static final int SIMPLE_REGEXP = 2;
static final int Q_REGEXP = 3;
static final int QUANTIFIER = 4;
static final int NUMBER = 5;
static final int METACHAR = 6;
static final int UNICODE_CHAR = 7;
static final int CHAR = 8;
static final int SUBEXPR = 9;
static final int POSIX_SET = 10;
static final int SET = 11;
static final int RANGE = 12;
static final int TOKEN = 13;
/**
* index of the first character of a subexpression represented by this node
*/
int start;
/**
* index of the last character of a subexpression represented by this node
*/
int end;
/** type of a subexpression this node represents */
private int tokenType;
/** attributes of this node */
private Object attribs;
/** this node's parent node */
private TreeNode parent;
/** direct subnodes of this node */
private List children;
/**
* Creates a new node representing a given part of a regular expression.
*
* @param tokenType type of a subexpression this node represents
* @param start index of the first character of a subexpression
* represented by this node
* @param end index of the last character of a subexpression
* represented by this node
*/
TreeNode(int tokenType, int start, int end) {
this.tokenType = tokenType;
this.start = start;
this.end = end;
}
/**
* Creates a new node representing a given part of a regular expression.
*
* @param tokenType type of a subexpression this node represents
* @param start index of the first character of a subexpression
* represented by this node
* @param end index of the last character of a subexpression
* represented by this node
* @param attribs attributes of this node
*/
TreeNode(int tokenType, int start, int end, Object attribs) {
this(tokenType, start, end);
this.attribs = attribs;
}
/**
* Adds a subnode to this node.
*
* @param child subnode to be added
*/
void add(TreeNode child) {
if (child == null) {
throw new IllegalArgumentException("null"); //NOI18N
}
child.parent = this;
if (children == null) {
children = new ArrayList(4);
}
children.add(child);
}
/**
* Returns a regular expression represented by the root node of the whole
* tree.
*
* @return regular expression represented by the whole tree this node
* is part of
*/
String getRegexp() {
TreeNode candidate = this;
TreeNode candidParent;
/* Find the root: */
while ((candidParent = candidate.parent) != null) {
candidate = candidParent;
}
assert candidate instanceof TreeNodeRoot;
return candidate.getRegexp();
}
/**
* Returns the type of regular expression represented by this node.
*
* @return type of regular expression represented by this node's subtree
*/
int getTokenType() {
return tokenType;
}
/**
* Returns this node's attributes.
*
* @return attributes of this node
* @see #TreeNode(int, int, int, Object)
*/
Object getAttribs() {
return attribs;
}
/**
* Returns this node's children.
*
* @return list of this node's direct subnodes;
* or null
if this node has no subnodes
*/
List getChildren() {
return children != null ? new ArrayList(children)
: null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy