All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.oak.plugins.document.bundlor.DocumentBundlor Maven / Gradle / Ivy

There is a newer version: 1.62.0
Show 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.apache.jackrabbit.oak.plugins.document.bundlor;

import java.util.ArrayList;
import java.util.List;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import org.apache.jackrabbit.oak.api.PropertyState;
import org.apache.jackrabbit.oak.api.Type;
import org.apache.jackrabbit.oak.commons.PathUtils;
import org.apache.jackrabbit.oak.spi.state.NodeState;

import static com.google.common.base.Preconditions.checkArgument;
import static org.apache.jackrabbit.oak.api.Type.STRINGS;
import static org.apache.jackrabbit.oak.plugins.memory.PropertyStates.createProperty;

public class DocumentBundlor {
    /**
     * Prefix used for various meta properties used for bundling
     */
    public static final String BUNDLOR_META_PROP_PREFIX = ":doc-";
    /**
     * Hidden property to store the pattern as part of NodeState
     * TODO - Also store the NodeType
     */
    public static final String META_PROP_PATTERN = ":doc-pattern";

    /**
     * Hidden property name used as suffix for relative node path
     * to indicate presence of that node. So for a relative node 'jcr:content'
     * the parent node must have a property 'jcr:content/:doc-self-path.
     *
     * 

Its value is the depth of the bundled child node */ public static final String META_PROP_BUNDLING_PATH = ":doc-self-path"; public static final String HAS_CHILD_PROP_PREFIX = ":doc-has-child-"; /** * Hidden property name having boolean value indicating that * current node has children which are bundled */ public static final String META_PROP_BUNDLED_CHILD = HAS_CHILD_PROP_PREFIX + "bundled"; /** * Hidden property name having boolean value indicating that * current node has children which are not bundled */ public static final String META_PROP_NON_BUNDLED_CHILD = HAS_CHILD_PROP_PREFIX + "non-bundled"; /** * Boolean property. If set to true then that bundlor config would be considered as disabled * and would not be used */ public static final String PROP_DISABLED = "disabled"; public static final String PROP_PATTERN = "pattern"; private final List includes; public static DocumentBundlor from(NodeState nodeState){ checkArgument(nodeState.hasProperty(PROP_PATTERN), "NodeState [%s] does not have required " + "property [%s]", nodeState, PROP_PATTERN); return DocumentBundlor.from(nodeState.getStrings(PROP_PATTERN)); } public static DocumentBundlor from(Iterable includeStrings){ List includes = Lists.newArrayList(); for (String i : includeStrings){ includes.add(new Include(i)); } return new DocumentBundlor(includes); } public static DocumentBundlor from(PropertyState prop){ checkArgument(META_PROP_PATTERN.equals(prop.getName())); return from(prop.getValue(Type.STRINGS)); } private DocumentBundlor(List includes) { checkArgument(!includes.isEmpty(), "Include list cannot be empty"); this.includes = ImmutableList.copyOf(includes); } public boolean isBundled(String relativePath) { Matcher m = createMatcher(); for (String e : PathUtils.elements(relativePath)){ m = m.next(e); } return m.isMatch(); } public PropertyState asPropertyState(){ List includePatterns = new ArrayList<>(includes.size()); for (Include i : includes){ includePatterns.add(i.getPattern()); } return createProperty(META_PROP_PATTERN, includePatterns, STRINGS); } public Matcher createMatcher(){ List matchers = Lists.newArrayListWithCapacity(includes.size()); for(Include include : includes){ matchers.add(include.createMatcher()); } return CompositeMatcher.compose(matchers); } @Override public String toString() { return includes.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy