org.apache.jackrabbit.oak.spi.state.NodeStateUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* 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.jackrabbit.oak.spi.state;
import static java.util.Objects.requireNonNull;
import org.apache.jackrabbit.JcrConstants;
import org.apache.jackrabbit.oak.api.PropertyState;
import org.apache.jackrabbit.oak.api.Type;
import org.apache.jackrabbit.oak.commons.PathUtils;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Utility method for code that deals with node states.
*/
public final class NodeStateUtils {
private NodeStateUtils() {
}
/**
* Check whether the node or property with the given name is hidden, that
* is, if the node name starts with a ":".
*
* @param name the node or property name
* @return true if the item is hidden
*/
public static boolean isHidden(@NotNull String name) {
return !name.isEmpty() && name.charAt(0) == ':';
}
/**
* Check whether the given path contains a hidden node.
*
* @param path the path
* @return true if one of the nodes is hidden
*/
public static boolean isHiddenPath(@NotNull String path) {
return (!path.isEmpty() && path.charAt(0) == ':') || path.contains("/:");
}
@Nullable
public static String getPrimaryTypeName(NodeState nodeState) {
PropertyState ps = nodeState.getProperty(JcrConstants.JCR_PRIMARYTYPE);
return (ps == null) ? null : ps.getValue(Type.NAME);
}
/**
* Get a possibly non existing child node of a node.
* @param node node whose child node to get
* @param path path of the child node
* @return child node of {@code node} at {@code path}.
*/
@NotNull
public static NodeState getNode(@NotNull NodeState node, @NotNull String path) {
for (String name : PathUtils.elements(requireNonNull(path))) {
node = node.getChildNode(requireNonNull(name));
}
return node;
}
/**
* Provides a string representation of the given node state
*
* @param node
* node state
* @return a string representation of {@code node}.
*/
public static String toString(NodeState node) {
if (node == null) {
return "[null]";
}
return toString(node, 1, " ", "/");
}
private static String toString(NodeState ns, int level, String prepend,
String name) {
StringBuilder node = new StringBuilder();
node.append(prepend.repeat(level)).append(name);
StringBuilder props = new StringBuilder();
boolean first = true;
for (PropertyState ps : ns.getProperties()) {
if (!first) {
props.append(", ");
} else {
first = false;
}
props.append(ps);
}
if (props.length() > 0) {
node.append("{");
node.append(props);
node.append("}");
}
for (ChildNodeEntry c : ns.getChildNodeEntries()) {
node.append(System.lineSeparator());
node.append(toString(c.getNodeState(), level + 1, prepend,
c.getName()));
}
return node.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy