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

org.modeshape.schematic.internal.document.IndexSequence Maven / Gradle / Ivy

The 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.schematic.internal.document;

import java.util.Collection;
import java.util.Iterator;
import java.util.Set;

/**
 * An {@link IndexSequence} is a lightweight ordered sequence of string representing array indexes. It is lightweight because it
 * shares and reuses the strings for indexes less than the {@link #MAXIMUM_KEY_COUNT maximum key count}.
 * 
 * @author Randall Hauch  (C) 2011 Red Hat Inc.
 */
public class IndexSequence implements Set {
    protected static final String[] EMPTY_ARRAY = new String[0];
    protected static final String[] INDEX_VALUES;
    protected static final int MAXIMUM_KEY_COUNT = 250;
    static {
        String[] values = new String[MAXIMUM_KEY_COUNT];
        for (int i = 0; i != MAXIMUM_KEY_COUNT; ++i) {
            values[i] = Integer.toString(i);
        }
        INDEX_VALUES = values;
    }

    /**
     * Obtain an iterator for the indexes up to the specified size.
     * 
     * @param size the number of indexes
     * @return the iterator of string indexes; never null
     */
    public static Iterator indexesTo( int size ) {
        return new IndexSequence(size).iterator();
    }

    /**
     * Obtain an iterator for the indexes up the {@link Integer#MAX_VALUE largest} integer. This is efficient, because it only
     * builds strings as needed.
     * 
     * @return the iterator of string indexes; never null
     */
    public static Iterator infiniteSequence() {
        return new IndexSequence(Integer.MAX_VALUE).iterator();
    }

    protected final int size;

    public IndexSequence( int size ) {
        this.size = size;
    }

    @Override
    public boolean add( String e ) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean addAll( Collection c ) {
        throw new UnsupportedOperationException();
    }

    @Override
    public void clear() {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean contains( Object o ) {
        int index = Integer.parseInt(String.valueOf(o));
        return index >= 0 && index < size;
    }

    @Override
    public boolean containsAll( Collection c ) {
        for (Object value : c) {
            if (!contains(value)) return false;
        }
        return true;
    }

    @Override
    public boolean isEmpty() {
        return size == 0;
    }

    @Override
    public Iterator iterator() {
        return new Iterator() {
            private int index = 0;

            @Override
            public boolean hasNext() {
                return index < size;
            }

            @Override
            public String next() {
                return index < MAXIMUM_KEY_COUNT ? INDEX_VALUES[index++] : String.valueOf(index++);
            }

            @Override
            public void remove() {
                throw new UnsupportedOperationException();
            }
        };
    }

    @Override
    public boolean remove( Object o ) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean removeAll( Collection c ) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean retainAll( Collection c ) {
        throw new UnsupportedOperationException();
    }

    @Override
    public int size() {
        return size;
    }

    @Override
    public Object[] toArray() {
        if (size == 0) return EMPTY_ARRAY;
        String[] copy = new String[size];
        System.arraycopy(INDEX_VALUES, 0, copy, 0, size);
        return copy;
    }

    @Override
    public  T[] toArray( T[] a ) {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy