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

com.googlecode.mycontainer.kernel.naming.MyContainerContextFactory Maven / Gradle / Ivy

/*
 * Copyright 2008 Whohoo 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.googlecode.mycontainer.kernel.naming;

import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;

import javax.naming.Context;
import javax.naming.NamingException;
import javax.naming.spi.InitialContextFactory;

import com.googlecode.mycontainer.kernel.Kernel;


public class MyContainerContextFactory implements InitialContextFactory {

	public static final String CONTAINER_PARTITION = "com.mycontainer.kernel.naming.partition";

	private static final Map containers = new HashMap();

	private static final Object MUTEX = new Object();

	@SuppressWarnings("unchecked")
	public Context getInitialContext(Hashtable env)
			throws NamingException {
		String partition = (String) env.get(CONTAINER_PARTITION);
		if (partition == null) {
			partition = "default";
		}

		synchronized (MUTEX) {
			Kernel container = containers.get(partition);
			if (container == null) {
				container = new Kernel(partition);
				container.boot((Map) env);
				containers.put(partition, container);
			}
			MyContainerContext context = container.getContext();
			return context;
		}
	}

	public static void removeContainer(String name) {
		synchronized (MUTEX) {
			containers.remove(name);
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy