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)
 * See the COPYRIGHT.txt file distributed with this work for information
 * regarding copyright ownership.  Some portions may be licensed
 * to Red Hat, Inc. under one or more contributor license agreements.
 * See the AUTHORS.txt file in the distribution for a full listing of 
 * individual contributors. 
 *
 * ModeShape is free software. Unless otherwise indicated, all code in ModeShape
 * is licensed to you under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * ModeShape is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
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);
    }

}