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

com.ibm.jbatch.container.services.impl.JNDIDelegatingThreadPoolServiceImpl Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2013 International Business Machines Corp.
 *
 * See the NOTICE file distributed with this work for additional information
 * regarding copyright ownership. 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.ibm.jbatch.container.services.impl;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;

import com.ibm.jbatch.container.exception.BatchContainerServiceException;
import com.ibm.jbatch.container.util.BatchContainerConstants;
import com.ibm.jbatch.spi.services.IBatchConfig;
import com.ibm.jbatch.spi.services.IBatchThreadPoolService;
import com.ibm.jbatch.spi.services.ParallelTaskResult;

public class JNDIDelegatingThreadPoolServiceImpl implements IBatchThreadPoolService, BatchContainerConstants  {

	private final static String sourceClass = JNDIDelegatingThreadPoolServiceImpl.class.getName();
	private final static Logger logger = Logger.getLogger(sourceClass);

	public final String DEFAULT_JNDI_LOCATION = "java:comp/DefaultManagedExecutorService";
	private String jndiLocation = null;

	public JNDIDelegatingThreadPoolServiceImpl() {
		// TODO Auto-generated constructor stub
	}

	@Override
	public void init(IBatchConfig batchConfig) {
		// Don't want to get/cache the actual threadpool here since we want to do a JNDI lookup each time.
		jndiLocation = batchConfig.getConfigProperties().getProperty(THREADPOOL_JNDI_LOCATION, DEFAULT_JNDI_LOCATION);
	}

	public void shutdown() throws BatchContainerServiceException {
		String method = "shutdown";
		if(logger.isLoggable(Level.FINER)) { logger.entering(sourceClass, method);	}

		// We don't want to be responsible for cleaning up.

		if(logger.isLoggable(Level.FINER)) { logger.exiting(sourceClass, method);	}
	}

	public void executeTask(Runnable work, Object config) {
		String method = "executeTask";
		if(logger.isLoggable(Level.FINER)) { logger.entering(sourceClass, method);	}

		try {
			Context ctx = new InitialContext();
			ExecutorService delegateService = (ExecutorService)ctx.lookup(jndiLocation);
			delegateService.execute(work);
		} catch (NamingException e) {
			logger.severe("Lookup failed for JNDI name: " + jndiLocation);
			throw new BatchContainerServiceException(e);
		}

		if(logger.isLoggable(Level.FINER)) { logger.exiting(sourceClass, method);	}
	}

	public ParallelTaskResult executeParallelTask(Runnable work, Object config) {
		String method = "executeParallelTask";
		ParallelTaskResult taskResult = null;
		if(logger.isLoggable(Level.FINER)) { logger.entering(sourceClass, method);  }

		try {
			Context ctx = new InitialContext();
			ExecutorService delegateService = (ExecutorService)ctx.lookup(jndiLocation);
			Future result = delegateService.submit(work);
			taskResult = new JSEResultAdapter(result);
		} catch (NamingException e) { 
			logger.severe("Lookup failed for JNDI name: " + jndiLocation);
			throw new BatchContainerServiceException(e);
		}

		if(logger.isLoggable(Level.FINER)) { logger.exiting(sourceClass, method);   }

		return taskResult;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy