/** * 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.jooby.internal.camel; import java.util.Set; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import javax.inject.Inject; import javax.inject.Named; import org.apache.camel.ConsumerTemplate; import org.apache.camel.ProducerTemplate; import org.apache.camel.RoutesBuilder; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.impl.DefaultCamelContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class CamelFinalizer { /** The logging system. */ private final Logger log = LoggerFactory.getLogger(getClass()); private DefaultCamelContext ctx; private ProducerTemplate producer; private ConsumerTemplate consumer; @Inject public CamelFinalizer(final GuiceInjector injector, final DefaultCamelContext ctx, final @Named("camel.routes") Set<Object> routes, final RouteBuilder rb, final ProducerTemplate producer, final ConsumerTemplate consumer) throws Exception { this.ctx = ctx; this.producer = producer; this.consumer = consumer; this.ctx.setInjector(injector); for (Object route : routes) { if (route instanceof RoutesBuilder) { this.ctx.addRoutes((RoutesBuilder) route); } } this.ctx.addRoutes(rb); } @PostConstruct public void start() throws Exception { this.ctx.start(); this.producer.start(); this.consumer.start(); } @PreDestroy public void stop() throws Exception { try { this.consumer.stop(); } catch (Exception ex) { log.error("Can't stop consumer template", ex); } try { this.producer.stop(); } catch (Exception ex) { log.error("Can't stop producer template", ex); } try { this.ctx.stop(); } catch (Exception ex) { log.error("Can't stop camel context template", ex); } } }