Package org.apache.onami.spi.core

Source Code of org.apache.onami.spi.core.AbstractServiceClassIterator

package org.apache.onami.spi.core;

/*
* 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.
*/

import static java.lang.String.format;

import java.util.Iterator;
import java.util.NoSuchElementException;

import com.google.inject.ProvisionException;

/**
* Lazy-loading iterator over the discovered classes.
*
* @param <S> The service type being loaded.
*/
abstract class AbstractServiceClassIterator<S>
    implements Iterator<Class<? extends S>>
{

    /**
     * The class or interface representing the service being loaded.
     */
    private final Class<S> service;

    /**
     * The class loader used to locate, load, and instantiate providers.
     */
    private final ClassLoader classLoader;

    /**
     * The pending providers Class names.
     */
    private Iterator<String> pending = null;

    /**
     * The reference to the next provider Class name.
     */
    private String nextName = null;

    /**
     * Creates a new Provider classes Iterator.
     *
     * @param service The Service being loaded.
     * @param classLoader The ClassLoader used to load Provider classes.
     */
    public AbstractServiceClassIterator( Class<S> service, ClassLoader classLoader )
    {
        this.service = service;
        this.classLoader = classLoader;
    }

    /**
     * {@inheritDoc}
     */
    public final boolean hasNext()
    {
        if ( nextName != null )
        {
            return true;
        }

        while ( ( pending == null ) || !pending.hasNext() )
        {
            if ( !hasMorePendingNames() )
            {
                return false;
            }
            pending = getPendingNames();
        }

        nextName = pending.next();
        return true;
    }

    /**
     * Checks if there are still providers names to be loaded.
     *
     * @return true if there are still providers names to be loaded, false otherwise.
     */
    protected abstract boolean hasMorePendingNames();

    /**
     * Returns the iterator over next pending Providers names.
     *
     * @return the iterator over next pending Providers names.
     */
    protected abstract Iterator<String> getPendingNames();

    /**
     * {@inheritDoc}
     */
    public final Class<? extends S> next()
    {
        if ( !hasNext() )
        {
            throw new NoSuchElementException();
        }
        String className = nextName;
        nextName = null;
        try
        {
            Class<?> clazz = classLoader.loadClass( className );
            if ( !service.isAssignableFrom( clazz ) )
            {
                throw new ProvisionException( format( "Provider '%s' is not assignable to Service '%s'",
                                                      className, service.getName() ) );
            }
            return clazz.asSubclass( service );
        }
        catch ( ClassNotFoundException e )
        {
            throw new ProvisionException( format( "Provider '%s' not found: %s", className, e.getMessage() ) );
        }
        catch ( ClassCastException e )
        {
            throw new ProvisionException( format( "Provider '%s' is not assignable to Service '%s'",
                                                  className, service.getName() ) );
        }
    }

    /**
     * {@inheritDoc}
     */
    public final void remove()
    {
        throw new UnsupportedOperationException();
    }

}
TOP

Related Classes of org.apache.onami.spi.core.AbstractServiceClassIterator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.