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

org.modeshape.jcr.value.basic.BasicPropertyFactory Maven / Gradle / Ivy

There is a newer version: 5.4.1.Final
Show newest version
/*
 * ModeShape (http://www.modeshape.org)
 *
 * Licensed 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.modeshape.jcr.value.basic;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import org.modeshape.common.annotation.Immutable;
import org.modeshape.common.util.CheckArg;
import org.modeshape.jcr.value.Name;
import org.modeshape.jcr.value.Path;
import org.modeshape.jcr.value.Property;
import org.modeshape.jcr.value.PropertyFactory;
import org.modeshape.jcr.value.PropertyType;
import org.modeshape.jcr.value.ValueFactories;
import org.modeshape.jcr.value.ValueFactory;

/**
 * A basic {@link PropertyFactory} implementation.
 */
@Immutable
public class BasicPropertyFactory implements PropertyFactory {

    private final ValueFactories factories;

    /**
     * @param valueFactories the value factories
     * @throws IllegalArgumentException if the reference to the value factories is null
     */
    public BasicPropertyFactory( ValueFactories valueFactories ) {
        CheckArg.isNotNull(valueFactories, "value factories");
        this.factories = valueFactories;
    }

    @Override
    public Property create( Name name,
                            Path value ) {
        return new BasicSingleValueProperty(name, value);
    }

    @Override
    public Property create( Name name,
                            Iterable values ) {
        return create(name, PropertyType.OBJECT, values);
    }

    @Override
    public Property create( Name name,
                            Iterator values ) {
        return create(name, PropertyType.OBJECT, values);
    }

    @Override
    public Property create( Name name ) {
        return new BasicEmptyProperty(name);
    }

    @Override
    public Property create( Name name,
                            Object value ) {
        return create(name, PropertyType.OBJECT, value);
    }

    @Override
    public Property create( Name name,
                            Object[] values ) {
        return create(name, PropertyType.OBJECT, values);
    }

    @Override
    public Property create( Name name,
                            PropertyType desiredType,
                            Object firstValue ) {
        CheckArg.isNotNull(name, "name");
        if (desiredType == null) desiredType = PropertyType.OBJECT;
        final ValueFactory factory = factories.getValueFactory(desiredType);
        Object value = firstValue;
        // Check whether the sole value was a collection ...
        if (value instanceof Path) {
            value = factory.create(value);
            return new BasicSingleValueProperty(name, value);
        }
        if (value instanceof Collection) {
            // The single value is a collection, so create property with the collection's contents ...
            return create(name, desiredType, (Iterable)value);
        }
        if (value instanceof Iterator) {
            // The single value is an iterator over a collection, so create property with the iterator's contents ...
            return create(name, desiredType, (Iterator)value);
        }
        if (value instanceof Object[]) {
            // The single value is an object array, so create the property with the array as the value(s)...
            return create(name, desiredType, (Object[])value);
        }
        value = factory.create(value);
        return new BasicSingleValueProperty(name, value);
    }

    @Override
    public Property create( Name name,
                            PropertyType desiredType,
                            Object[] values ) {
        CheckArg.isNotNull(name, "name");
        if (values == null) {
            return new BasicEmptyProperty(name);
        }
        final int len = values.length;
        if (len == 0) {
            return new BasicEmptyProperty(name);
        }
        if (desiredType == null) desiredType = PropertyType.OBJECT;
        final ValueFactory factory = factories.getValueFactory(desiredType);
        List valueList = new ArrayList(len);
        for (int i = 0; i != len; ++i) {
            Object value = factory.create(values[i]);
            if (value != null) {
                valueList.add(value);
            }
        }
        return new BasicMultiValueProperty(name, valueList);
    }

    @Override
    @SuppressWarnings( "unchecked" )
    public Property create( Name name,
                            PropertyType desiredType,
                            Iterable values ) {
        CheckArg.isNotNull(name, "name");
        List valueList = null;
        if (values instanceof Collection) {
            Collection originalValues = (Collection)values;
            if (originalValues.isEmpty()) {
                return new BasicEmptyProperty(name);
            }
            valueList = new ArrayList(originalValues.size());
        } else {
            // We don't know the size
            valueList = new ArrayList();
        }
        // Copy the values, ensuring that the values are the correct type ...
        if (desiredType == null) desiredType = PropertyType.OBJECT;
        final ValueFactory factory = factories.getValueFactory(desiredType);
        for (Object value : values) {
            Object newValue = factory.create(value);
            if (newValue != null) {
                valueList.add(newValue);
            }
        }
        if (valueList.isEmpty()) { // may not have been a collection earlier
            return new BasicEmptyProperty(name);
        }
        return new BasicMultiValueProperty(name, valueList);
    }

    @Override
    public Property create( Name name,
                            PropertyType desiredType,
                            Iterator values ) {
        CheckArg.isNotNull(name, "name");
        final List valueList = new ArrayList();
        if (desiredType == null) desiredType = PropertyType.OBJECT;
        final ValueFactory factory = factories.getValueFactory(desiredType);
        while (values.hasNext()) {
            Object value = values.next();
            value = factory.create(value);
            if (value != null) {
                valueList.add(value);
            }
        }
        if (valueList.isEmpty()) {
            return new BasicEmptyProperty(name);
        }
        return new BasicMultiValueProperty(name, valueList);
    }

}