/* * Copyright 2004-2007 the Seasar Foundation and the Others. * * 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.seasar.extension.dbcp.impl; import java.io.PrintWriter; import java.sql.Connection; import java.sql.SQLException; import java.util.Hashtable; import java.util.Map; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; import javax.sql.XAConnection; import javax.sql.XADataSource; import org.seasar.framework.exception.NamingRuntimeException; /** * @author koichik */ public class DataSourceXADataSource implements XADataSource { protected String dataSourceName; protected Hashtable env = new Hashtable(); protected DataSource dataSource; public void setDataSourceName(final String dataSourceName) { this.dataSourceName = dataSourceName; } public void setEnv(final Map env) { this.env.putAll(env); } public PrintWriter getLogWriter() throws SQLException { return null; } public int getLoginTimeout() throws SQLException { return 0; } public XAConnection getXAConnection() throws SQLException { final Connection con = getDataSource().getConnection(); return new XAConnectionImpl(con); } public XAConnection getXAConnection(final String user, final String password) throws SQLException { final Connection con = getDataSource().getConnection(user, password); return new XAConnectionImpl(con); } public void setLogWriter(final PrintWriter out) throws SQLException { } public void setLoginTimeout(final int seconds) throws SQLException { } protected synchronized DataSource getDataSource() { if (dataSource != null) { return dataSource; } try { final InitialContext ctx = new InitialContext(env); dataSource = (DataSource) ctx.lookup(dataSourceName); return dataSource; } catch (final NamingException ex) { throw new NamingRuntimeException(ex); } } }