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

com.gwtplatform.dispatch.rpc.server.guice.GuiceBeanProvider Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2011 ArcBees Inc.
 *
 * 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 com.gwtplatform.dispatch.rpc.server.guice;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import com.google.inject.Binding;
import com.google.inject.Injector;
import com.google.inject.TypeLiteral;
import com.gwtplatform.dispatch.rpc.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper.BeanProvider;
import com.gwtplatform.dispatch.rpc.server.actionhandlervalidator.ActionHandlerValidatorLinkerHelper
        .CommonBindingDescriptor;

public class GuiceBeanProvider implements BeanProvider {

    /**
     * Adapter for tranforming Guice Binding into BeanProvider implementation.
     */
    public static class GuiceBindingDescriptorAdapter extends CommonBindingDescriptor {

        public GuiceBindingDescriptorAdapter(Binding binding) {
            super(binding.getProvider().get(), binding.getKey().toString());
        }
    }

    private final Injector injector;

    public GuiceBeanProvider(Injector injector) {
        this.injector = injector;
    }

    @Override
    public  B getInstance(Class clazz) {
        return injector.getInstance(clazz);
    }

    @Override
    public  Iterator> getBindings(Class clazz) {

        List> result = new ArrayList>();

        for (Binding binding : injector.findBindingsByType(TypeLiteral.get(clazz))) {
            result.add(new GuiceBindingDescriptorAdapter(binding));
        }

        return result.iterator();
    }
}