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

org.directwebremoting.guice.util.AbstractMapContextScope Maven / Gradle / Ivy

Go to download

DWR is easy Ajax for Java. It makes it simple to call Java code directly from Javascript. It gets rid of almost all the boiler plate code between the web browser and your Java code.

The newest version!
/*
 * Copyright 2008 Tim Peierls
 *
 * 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.directwebremoting.guice.util;

import com.google.inject.Key;

import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

/**
 * A specialization of {@link AbstractContextScope} using a concurrent map
 * to hold registered instance providers. Concrete implementations must
 * define {@code get()} to return the current context, and they must call
 * {@code super(C.class)} in constructors.
 * @author Tim Peierls [tim at peierls dot net]
 */
public abstract class AbstractMapContextScope extends AbstractContextScope>
{
    protected AbstractMapContextScope(Class type, String scopeName)
    {
        super(type, scopeName);
    }

    @Override
    public abstract C get();

    //
    // ContextRegistry methods
    //

    /* (non-Javadoc)
     * @see org.directwebremoting.guice.ContextRegistry#registryFor(java.lang.Object)
     */
    public InstanceMap registryFor(C context)
    {
        InstanceMap instanceMap = map.get(context);

        if (instanceMap == null)
        {
            InstanceMap emptyMap = new InstanceMapImpl();
            instanceMap = map.putIfAbsent(context, emptyMap);
            if (instanceMap == null)
            {
                instanceMap = emptyMap;
            }
        }

        return instanceMap;
    }

    public  InstanceProvider get(InstanceMap registry, Key key, String keyString)
    {
        return castToT(registry, key).get(key);
    }

    public  InstanceProvider putIfAbsent(InstanceMap registry, Key key, String keyString, InstanceProvider creator)
    {
        return castToT(registry, key).putIfAbsent(key, creator);
    }

    public  boolean remove(InstanceMap registry, Key key, String keyString, InstanceProvider creator)
    {
        return castToT(registry, key).remove(key, creator);
    }

    @SuppressWarnings("unused")
    private  InstanceMap castToT(InstanceMap instanceMap, Key key)
    {
        @SuppressWarnings("unchecked")
        InstanceMap result = (InstanceMap) instanceMap;
        return result;
    }

    private final ConcurrentMap> map = new ConcurrentHashMap>();
}