blob: b6df68ec39ae2cad2f575616282a3d1d30a524e8 [file] [log] [blame]
/*
* 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.apache.commons.configuration2.tree;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;
/**
* <p>
* An abstract base class for a {@link NodeHandler} implementation for
* {@link ImmutableNode} objects.
* </p>
* <p>
* This class already implements all methods which need no other information
* than the passed in node object. Functionality which requires additional state
* (e.g. querying the root node or a parent node) has to be added by concrete
* sub classes.
* </p>
*
* @version $Id$
* @since 2.0
*/
abstract class AbstractImmutableNodeHandler implements
NodeHandler<ImmutableNode>
{
@Override
public String nodeName(ImmutableNode node)
{
return node.getNodeName();
}
@Override
public Object getValue(ImmutableNode node)
{
return node.getValue();
}
@Override
public List<ImmutableNode> getChildren(ImmutableNode node)
{
return node.getChildren();
}
@Override
public <C> int getMatchingChildrenCount(ImmutableNode node,
NodeMatcher<C> matcher, C criterion)
{
return getMatchingChildren(node, matcher, criterion).size();
}
/**
* {@inheritDoc} This implementation returns an immutable list with all
* child nodes accepted by the specified matcher.
*/
@Override
public <C> List<ImmutableNode> getMatchingChildren(ImmutableNode node,
NodeMatcher<C> matcher, C criterion)
{
List<ImmutableNode> result =
new ArrayList<ImmutableNode>(node.getChildren().size());
for (ImmutableNode c : node.getChildren())
{
if (matcher.matches(c, this, criterion))
{
result.add(c);
}
}
return Collections.unmodifiableList(result);
}
/**
* {@inheritDoc} This implementation returns an immutable list with all
* child nodes that have the specified name.
*/
@Override
public List<ImmutableNode> getChildren(ImmutableNode node, String name)
{
return getMatchingChildren(node, NodeNameMatchers.EQUALS, name);
}
@Override
public ImmutableNode getChild(ImmutableNode node, int index)
{
return node.getChildren().get(index);
}
@Override
public int indexOfChild(ImmutableNode parent, ImmutableNode child)
{
return parent.getChildren().indexOf(child);
}
@Override
public int getChildrenCount(ImmutableNode node, String name)
{
if (name == null)
{
return node.getChildren().size();
}
else
{
return getMatchingChildrenCount(node, NodeNameMatchers.EQUALS, name);
}
}
@Override
public Set<String> getAttributes(ImmutableNode node)
{
return node.getAttributes().keySet();
}
@Override
public boolean hasAttributes(ImmutableNode node)
{
return !node.getAttributes().isEmpty();
}
@Override
public Object getAttributeValue(ImmutableNode node, String name)
{
return node.getAttributes().get(name);
}
/**
* {@inheritDoc} This implementation assumes that a node is defined if it
* has a value or has children or has attributes.
*/
@Override
public boolean isDefined(ImmutableNode node)
{
return AbstractImmutableNodeHandler.checkIfNodeDefined(node);
}
/**
* Checks if the passed in node is defined. Result is <b>true</b> if the
* node contains any data.
*
* @param node the node in question
* @return <b>true</b> if the node is defined, <b>false</b> otherwise
*/
static boolean checkIfNodeDefined(ImmutableNode node)
{
return node.getValue() != null || !node.getChildren().isEmpty()
|| !node.getAttributes().isEmpty();
}
}