org.apache.sling.jcr.resource.JcrResourceUtil Maven / Gradle / Ivy
Show all versions of org.apache.sling.jcr.resource Show documentation
/* * 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.sling.jcr.resource; import java.io.InputStream; import java.lang.reflect.Array; import java.math.BigDecimal; import java.util.Calendar; import java.util.StringTokenizer; import javax.jcr.Node; import javax.jcr.Property; import javax.jcr.PropertyType; import javax.jcr.RepositoryException; import javax.jcr.Session; import javax.jcr.Value; import javax.jcr.ValueFactory; import javax.jcr.query.Query; import javax.jcr.query.QueryManager; import javax.jcr.query.QueryResult; import org.apache.sling.api.resource.Resource; import org.apache.sling.api.resource.ResourceResolver; import org.apache.sling.api.resource.ResourceUtil; import org.apache.sling.jcr.resource.internal.helper.LazyInputStream; /** * The
addressed by theJcrResourceUtil
class provides helper methods used * throughout this bundle. */ public class JcrResourceUtil { /** Helper method to execute a JCR query */ public static QueryResult query(Session session, String query, String language) throws RepositoryException { QueryManager qManager = session.getWorkspace().getQueryManager(); Query q = qManager.createQuery(query, language); return q.execute(); } /** Converts a JCR Value to a corresponding Java Object */ public static Object toJavaObject(Value value) throws RepositoryException { switch (value.getType()) { case PropertyType.DECIMAL: return value.getDecimal(); case PropertyType.BINARY: return new LazyInputStream(value); case PropertyType.BOOLEAN: return value.getBoolean(); case PropertyType.DATE: return value.getDate(); case PropertyType.DOUBLE: return value.getDouble(); case PropertyType.LONG: return value.getLong(); case PropertyType.NAME: // fall through case PropertyType.PATH: // fall through case PropertyType.REFERENCE: // fall through case PropertyType.STRING: // fall through case PropertyType.UNDEFINED: // not actually expected default: // not actually expected return value.getString(); } } /** * Converts the value(s) of a JCR Property to a corresponding Java Object. * If the property has multiple values the result is an array of Java * Objects representing the converted values of the property. */ public static Object toJavaObject(Property property) throws RepositoryException { // multi-value property: return an array of values if (property.isMultiple()) { Value[] values = property.getValues(); final Object firstValue = values.length > 0 ? toJavaObject(values[0]) : null; final Object[] result; if ( firstValue instanceof Boolean ) { result = new Boolean[values.length]; } else if ( firstValue instanceof Calendar ) { result = new Calendar[values.length]; } else if ( firstValue instanceof Double ) { result = new Double[values.length]; } else if ( firstValue instanceof Long ) { result = new Long[values.length]; } else if ( firstValue instanceof BigDecimal) { result = new BigDecimal[values.length]; } else if ( firstValue instanceof InputStream) { result = new Object[values.length]; } else { result = new String[values.length]; } for (int i = 0; i < values.length; i++) { Value value = values[i]; if (value != null) { result[i] = toJavaObject(value); } } return result; } // single value property return toJavaObject(property.getValue()); } /** * Creates a {@link javax.jcr.Value JCR Value} for the given object with * the given Session. * Selects the the {@link javax.jcr.PropertyType PropertyType} according * the instance of the object's Class * * @param value object * @param session to create value for * @return the value or null if not convertible to a valid PropertyType * @throws RepositoryException in case of error, accessing the Repository */ public static Value createValue(final Object value, final Session session) throws RepositoryException { Value val; ValueFactory fac = session.getValueFactory(); if(value instanceof Calendar) { val = fac.createValue((Calendar)value); } else if (value instanceof InputStream) { val = fac.createValue(fac.createBinary((InputStream)value)); } else if (value instanceof Node) { val = fac.createValue((Node)value); } else if (value instanceof BigDecimal) { val = fac.createValue((BigDecimal)value); } else if (value instanceof Long) { val = fac.createValue((Long)value); } else if (value instanceof Short) { val = fac.createValue((Short)value); } else if (value instanceof Integer) { val = fac.createValue((Integer)value); } else if (value instanceof Number) { val = fac.createValue(((Number)value).doubleValue()); } else if (value instanceof Boolean) { val = fac.createValue((Boolean) value); } else if ( value instanceof String ) { val = fac.createValue((String)value); } else { val = null; } return val; } /** * Sets the value of the property. * Selects the {@link javax.jcr.PropertyType PropertyType} according * to the instance of the object's class. * @param node The node where the property will be set on. * @param propertyName The name of the property. * @param propertyValue The value for the property. */ public static void setProperty(final Node node, final String propertyName, final Object propertyValue) throws RepositoryException { if ( propertyValue == null ) { node.setProperty(propertyName, (String)null); } else if ( propertyValue.getClass().isArray() ) { final int length = Array.getLength(propertyValue); final Value[] setValues = new Value[length]; for(int i=0; iResource resourceType
to a * string. If no such child resource exists or if the resource does not * adapt to a string, this method returnsnull
. * * @param resourceResolver TheResourceResolver
used to * access the resource whose path (relative or absolute) is given * by theresourceType
parameter. * @param resourceType The resource type whose super type is to be returned. * This type is turned into a path by calling the * {@link #resourceTypeToPath(String)} method before trying to * get the resource through theresourceResolver
. * @return the super type of theresourceType
or *null
if the resource type does not have a child * resource * {@link JcrResourceConstants#SLING_RESOURCE_SUPER_TYPE_PROPERTY} * adapting to a string. * @deprecated Use {@link ResourceUtil#getResourceSuperType(ResourceResolver, String)} */ @Deprecated public static String getResourceSuperType( ResourceResolver resourceResolver, String resourceType) { return ResourceUtil.getResourceSuperType(resourceResolver, resourceType); } /** * Returns the resource super type of the given resource. This is either the * child resource * {@link JcrResourceConstants#SLING_RESOURCE_SUPER_TYPE_PROPERTY} if the * givenresource
adapted to a string or the result of * calling the {@link #getResourceSuperType(ResourceResolver, String)} * method on the resource type of theresource
. ** This mechanism allows to specifically set the resource super type on a * per-resource level overwriting any resource super type hierarchy * pre-defined by the actual resource type of the resource. * * @param resource The
Resource
whose resource super type is * requested. * @return The resource super type ornull
if the algorithm * described above does not yield a resource super type. * @deprecated Call {@link ResourceUtil#findResourceSuperType(Resource)} */ @Deprecated public static String getResourceSuperType(Resource resource) { String resourceSuperType = resource.getResourceSuperType(); if ( resourceSuperType == null ) { final ResourceResolver resolver = resource.getResourceResolver(); // try explicit resourceSuperType resource final String resourceType = resource.getResourceType(); resourceSuperType = ResourceUtil.getResourceSuperType(resolver, resourceType); } return resourceSuperType; } /** * Creates or gets the {@link javax.jcr.Node Node} at the given Path. * In case it has to create the Node all non-existent intermediate path-elements * will be create with the given intermediate node type and the returned node * will be created with the given nodeType * * @param path to create * @param intermediateNodeType to use for creation of intermediate nodes (or null) * @param nodeType to use for creation of the final node (or null) * @param session to use * @param autoSave Should save be called when a new node is created? * @return the Node at path * @throws RepositoryException in case of exception accessing the Repository */ public static Node createPath(String path, String intermediateNodeType, String nodeType, Session session, boolean autoSave) throws RepositoryException { if (path == null || path.length() == 0 || "/".equals(path)) { return session.getRootNode(); } // sanitize path if it ends with a slash if ( path.endsWith("/") ) { path = path.substring(0, path.length() - 1); } if (!session.itemExists(path)) { String existingPath = findExistingPath(path, session); String relativePath = null; Node parentNode = null; if (existingPath != null) { parentNode = session.getNode(existingPath); relativePath = path.substring(existingPath.length() + 1); } else { relativePath = path.substring(1); parentNode = session.getRootNode(); } return createPath(parentNode, relativePath, intermediateNodeType, nodeType, autoSave); } else { return session.getNode(path); } } /** * Creates or gets the {@link javax.jcr.Node Node} at the given Path. * In case it has to create the Node all non-existent intermediate path-elements * will be create with the given intermediate node type and the returned node * will be created with the given nodeType * * @param parentNode starting node * @param relativePath to create * @param intermediateNodeType to use for creation of intermediate nodes (or null) * @param nodeType to use for creation of the final node (or null) * @param autoSave Should save be called when a new node is created? * @return the Node at path * @throws RepositoryException in case of exception accessing the Repository */ public static Node createPath(Node parentNode, String relativePath, String intermediateNodeType, String nodeType, boolean autoSave) throws RepositoryException { if (relativePath == null || relativePath.length() == 0 || "/".equals(relativePath)) { return parentNode; } // sanitize path if it ends with a slash if ( relativePath.endsWith("/") ) { relativePath = relativePath.substring(0, relativePath.length() - 1); } if (!parentNode.hasNode(relativePath)) { Session session = parentNode.getSession(); String path = parentNode.getPath() + "/" + relativePath; String existingPath = findExistingPath(path, session); if (existingPath != null) { parentNode = session.getNode(existingPath); relativePath = path.substring(existingPath.length() + 1); } Node node = parentNode; int pos = relativePath.lastIndexOf('/'); if ( pos != -1 ) { final StringTokenizer st = new StringTokenizer(relativePath.substring(0, pos), "/"); while ( st.hasMoreTokens() ) { final String token = st.nextToken(); if ( !node.hasNode(token) ) { try { if ( intermediateNodeType != null ) { node.addNode(token, intermediateNodeType); } else { node.addNode(token); } if ( autoSave ) node.getSession().save(); } catch (RepositoryException re) { // we ignore this as this folder might be created from a different task node.refresh(false); } } node = node.getNode(token); } relativePath = relativePath.substring(pos + 1); } if ( !node.hasNode(relativePath) ) { if ( nodeType != null ) { node.addNode(relativePath, nodeType); } else { node.addNode(relativePath); } if ( autoSave ) node.getSession().save(); } return node.getNode(relativePath); } else { return parentNode.getNode(relativePath); } } private static String findExistingPath(String path, Session session) throws RepositoryException { //find the parent that exists // we can start from the youngest child in tree int currentIndex = path.lastIndexOf('/'); String temp = path; String existingPath = null; while (currentIndex > 0) { temp = temp.substring(0, currentIndex); //break when first existing parent is found if (session.itemExists(temp)) { existingPath = temp; break; } currentIndex = temp.lastIndexOf("/"); } return existingPath; } }