org.wildfly.extension.camel.ee.NamingContextAssociationHandler Maven / Gradle / Ivy
/*
* #%L
* Wildfly Camel :: Subsystem
* %%
* Copyright (C) 2013 - 2014 RedHat
* %%
* 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.
* #L%
*/
package org.wildfly.extension.camel.ee;
import static org.wildfly.extension.camel.CamelLogger.LOGGER;
import java.util.Hashtable;
import javax.naming.Binding;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.Name;
import javax.naming.NameClassPair;
import javax.naming.NameParser;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.OperationNotSupportedException;
import org.apache.camel.CamelContext;
import org.jboss.as.naming.ManagedReferenceFactory;
import org.jboss.as.naming.ManagedReferenceInjector;
import org.jboss.as.naming.ServiceBasedNamingStore;
import org.jboss.as.naming.deployment.ContextNames;
import org.jboss.as.naming.service.BinderService;
import org.jboss.msc.inject.Injector;
import org.jboss.msc.service.ServiceBuilder;
import org.jboss.msc.service.ServiceContainer;
import org.jboss.msc.service.ServiceController;
import org.jboss.msc.service.ServiceController.Mode;
import org.jboss.msc.service.ServiceRegistry;
import org.jboss.msc.service.ServiceTarget;
import org.jboss.msc.service.StartContext;
import org.jboss.msc.service.StartException;
import org.jboss.msc.service.StopContext;
import org.wildfly.extension.camel.ContextCreateHandler;
import org.wildfly.extension.camel.WildFlyCamelContext;
/**
* A {@link ContextCreateHandler} for JNDI context association
*
* @author [email protected]
* @since 13-Mar-2015
*/
public final class NamingContextAssociationHandler implements ContextCreateHandler {
private final ServiceContainer serviceContainer;
private final ServiceTarget serviceTarget;
public NamingContextAssociationHandler(ServiceContainer serviceContainer, ServiceTarget serviceTarget) {
this.serviceContainer = serviceContainer;
this.serviceTarget = serviceTarget;
}
@Override
public void setup(CamelContext camelctx) {
if (camelctx instanceof WildFlyCamelContext) {
WildFlyCamelContext wfctx = (WildFlyCamelContext) camelctx;
try {
wfctx.setNamingContext(new CamelNamingContext(serviceContainer, serviceTarget));
} catch (NamingException ex) {
throw new IllegalStateException("Cannot initialize naming context", ex);
}
}
}
static final class CamelNamingContext implements Context {
private final ServiceRegistry serviceRegistry;
private final ServiceTarget serviceTarget;
private final Context context;
CamelNamingContext(ServiceRegistry serviceRegistry, ServiceTarget serviceTarget) throws NamingException {
this.serviceRegistry = serviceRegistry;
this.serviceTarget = serviceTarget;
this.context = new InitialContext();
}
@Override
public void bind(Name name, Object obj) throws NamingException {
addBinderService(name.toString(), obj);
}
@Override
public void bind(String name, Object obj) throws NamingException {
addBinderService(name, obj);
}
private ServiceController> addBinderService(String name, Object obj) {
final ContextNames.BindInfo bindInfo = ContextNames.bindInfoFor(name);
BinderService binderService = new BinderService(bindInfo.getBindName()) {
@Override
public synchronized void start(StartContext context) throws StartException {
super.start(context);
LOGGER.info("Bound camel naming object: {}", bindInfo.getAbsoluteJndiName());
}
@Override
public synchronized void stop(StopContext context) {
LOGGER.debug("Unbind camel naming object: {}", bindInfo.getAbsoluteJndiName());
super.stop(context);
}
};
Injector injector = binderService.getManagedObjectInjector();
new ManagedReferenceInjector
© 2015 - 2025 Weber Informatics LLC | Privacy Policy