org.apache.tomee.catalina.realm.TomEEDataSourceRealm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tomee-catalina Show documentation
Show all versions of tomee-catalina Show documentation
This module contains the classes that will be added to the catalina class loader
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.tomee.catalina.realm;
import org.apache.catalina.realm.DataSourceRealm;
import org.apache.naming.ContextBindings;
import org.apache.openejb.config.AutoConfig;
import org.apache.openejb.config.ConfigurationFactory;
import org.apache.openejb.loader.SystemInstance;
import org.apache.openejb.spi.ContainerSystem;
import javax.naming.Context;
import javax.naming.NamingException;
import javax.sql.DataSource;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Collection;
import java.util.Properties;
public class TomEEDataSourceRealm extends DataSourceRealm {
private static final String OPENEJB_RESOURCE_PREFIX = "java:openejb/Resource/";
private String fullName;
@Override
protected Connection open() {
try { // parent behavior
final Context context;
if (fullName != null) {
return DataSource.class.cast(openejbContext().lookup(fullName)).getConnection();
}
// parent behavior
if (localDataSource) {
context = Context.class.cast(ContextBindings.getClassLoader().lookup("comp/env"));
} else {
context = getServer().getGlobalNamingContext();
}
return DataSource.class.cast(context.lookup(dataSourceName)).getConnection();
} catch (final Exception e) {
try { // try globally
return getConnection(dataSourceName);
} catch (final Exception e2) {
try { // try globally but with custom subspace
return getConnection(OPENEJB_RESOURCE_PREFIX + dataSourceName);
} catch (final Exception e3) {
// try to guess the real name
final Collection ids = new ConfigurationFactory(true).getResourceIds(DataSource.class.getName(), new Properties());
final String id = AutoConfig.findResourceId(ids, dataSourceName);
if (id != null) {
try {
return getConnection(OPENEJB_RESOURCE_PREFIX + id);
} catch (final Exception e4) {
containerLog.error(sm.getString("dataSourceRealm.exception"), e);
}
} else {
containerLog.error(sm.getString("dataSourceRealm.exception"), e);
}
}
}
}
return null;
}
private Connection getConnection(final String name) throws SQLException, NamingException {
final Connection c = DataSource.class.cast(openejbContext().lookup(name)).getConnection();
fullName = name; // if here, the default name needed to be changed to match requested resource so update it for next calls
return c;
}
private static Context openejbContext() {
return SystemInstance.get().getComponent(ContainerSystem.class).getJNDIContext();
}
}