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

org.apache.jackrabbit.oak.plugins.memory.MultiPropertyState Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
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.memory;

import static org.apache.jackrabbit.guava.common.base.Preconditions.checkArgument;
import static org.apache.jackrabbit.guava.common.base.Preconditions.checkState;

import java.util.List;

import javax.jcr.PropertyType;

import org.apache.jackrabbit.guava.common.collect.Iterables;
import org.apache.jackrabbit.guava.common.collect.Lists;
import org.apache.jackrabbit.oak.api.Type;
import org.apache.jackrabbit.oak.plugins.value.Conversions.Converter;
import org.jetbrains.annotations.NotNull;

/**
 * Abstract base class for multi valued {@code PropertyState} implementations.
 */
abstract class MultiPropertyState extends EmptyPropertyState {
    protected final List values;

    /**
     * Create a new property state with the given {@code name}
     * and {@code values}
     * @param name  The name of the property state.
     * @param values  The values of the property state.
     */
    protected MultiPropertyState(String name, Iterable values) {
        super(name);
        this.values = Lists.newArrayList(values);
    }

    /**
     * Create a converter for converting a value to other types.
     * @param  value  The value to convert
     * @return  A converter for the value of this property
     */
    public abstract Converter getConverter(T value);

    @SuppressWarnings("unchecked")
    private  S  convertTo(Type type) {
        switch (type.tag()) {
            case PropertyType.STRING:
                return (S) Iterables.transform(values, value -> getConverter(value).toString());
            case PropertyType.BINARY:
                return (S) Iterables.transform(values, value -> getConverter(value).toBinary());
            case PropertyType.LONG:
                return (S) Iterables.transform(values, value -> getConverter(value).toLong());
            case PropertyType.DOUBLE:
                return (S) Iterables.transform(values, value -> getConverter(value).toDouble());
            case PropertyType.DATE:
                return (S) Iterables.transform(values, value -> getConverter(value).toDate());
            case PropertyType.BOOLEAN:
                return (S) Iterables.transform(values, value -> getConverter(value).toBoolean());
            case PropertyType.NAME:
                return (S) Iterables.transform(values, value -> getConverter(value).toString());
            case PropertyType.PATH:
                return (S) Iterables.transform(values, value -> getConverter(value).toString());
            case PropertyType.REFERENCE:
                return (S) Iterables.transform(values, value -> getConverter(value).toString());
            case PropertyType.WEAKREFERENCE:
                return (S) Iterables.transform(values, value -> getConverter(value).toString());
            case PropertyType.URI:
                return (S) Iterables.transform(values, value -> getConverter(value).toString());
            case PropertyType.DECIMAL:
                return (S) Iterables.transform(values, value -> getConverter(value).toDecimal());
            default: throw new IllegalArgumentException("Unknown type:" + type);
        }
    }

    /**
     * @throws IllegalStateException if {@code type.isArray()} is {@code false}.
     * @throws IllegalArgumentException if {@code type} is not one of the
     * values defined in {@link Type}
     */
    @SuppressWarnings("unchecked")
    @NotNull
    @Override
    public  S getValue(Type type) {
        checkState(type.isArray(), "Type must be an array type");
        if (getType() == type) {
            return (S) values;
        }
        else {
            return convertTo(type);
        }
    }

    @SuppressWarnings("unchecked")
    private  S  convertTo(Type type, int index) {
        switch (type.tag()) {
            case PropertyType.STRING: return (S) getConverter(values.get(index)).toString();
            case PropertyType.BINARY: return (S) getConverter(values.get(index)).toBinary();
            case PropertyType.LONG: return (S) (Long) getConverter(values.get(index)).toLong();
            case PropertyType.DOUBLE: return (S) (Double) getConverter(values.get(index)).toDouble();
            case PropertyType.DATE: return (S) getConverter(values.get(index)).toString();
            case PropertyType.BOOLEAN: return (S) (Boolean) getConverter(values.get(index)).toBoolean();
            case PropertyType.NAME: return (S) getConverter(values.get(index)).toString();
            case PropertyType.PATH: return (S) getConverter(values.get(index)).toString();
            case PropertyType.REFERENCE: return (S) getConverter(values.get(index)).toString();
            case PropertyType.WEAKREFERENCE: return (S) getConverter(values.get(index)).toString();
            case PropertyType.URI: return (S) getConverter(values.get(index)).toString();
            case PropertyType.DECIMAL: return (S) getConverter(values.get(index)).toDecimal();
            default: throw new IllegalArgumentException("Unknown type:" + type);
        }
    }

    /**
     * @throws IllegalArgumentException if {@code type} is not one of the
     * values defined in {@link Type} or if {@code type.isArray()} is {@code true}
     * @throws IndexOutOfBoundsException if {@code index >= count()}.
     */
    @SuppressWarnings("unchecked")
    @NotNull
    @Override
    public  S getValue(Type type, int index) {
        checkArgument(!type.isArray(), "Type must not be an array type");
        if (getType().getBaseType() == type) {
            return (S) values.get(index);
        }
        else {
            return convertTo(type, index);
        }
    }

    @Override
    public final int count() {
        return values.size();
    }

    @Override
    public long size(int index) {
        return convertTo(Type.STRING, index).length();
    }

}