/**
* 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 camelinaction;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit;
import camelinaction.inventory.UpdateInventoryInput;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.ShutdownRunningTask;
import org.apache.camel.builder.RouteBuilder;
/**
* A maintenance route which must be started manually to force updating
* the inventory when a file is dropped into a special folder.
* <p/>
* You should start the route using JConsole and stop it again after use.
*
* @version $Revision: 333 $
*/
public class ManualRouteWithStop extends RouteBuilder {
@Override
public void configure() throws Exception {
// ensure we only pickup one file at any given time
from("file://target/inventory/manual?maxMessagesPerPoll=1")
// use noAutoStartup to indicate this route should
// NOT be started when Camel starts
.routeId("manual").noAutoStartup()
.log("Doing manual update with file ${file:name}")
.split(body().tokenize("\n"))
.convertBodyTo(UpdateInventoryInput.class)
.to("direct:update")
.end()
// use end() to denote the end of the splitter sub-route
.process(new Processor() {
public void process(Exchange exchange) throws Exception {
// stop the route when we are done as we should only
// pickup one file at the time. And if you need to
// pickup more files then you have to start the route
// manually again.
// IMPORTANT: This is no longer possible from Camel 2.8.3 onwards
// as stopping the route should be done from a separate thread
// force stopping this route while we are routing an Exchange
// requires two steps:
// 1) unregister from the inflight registry
// 2) stop the route using a separate thread which is required
// from Camel 2.8.3 onwards.
getContext().getInflightRepository().remove(exchange);
// spawn a thread to stop the route
ExecutorService executor = getContext().getExecutorServiceStrategy().newSingleThreadExecutor(this, "StopRouteManually");
executor.submit(new Callable<Object>() {
@Override
public Object call() throws Exception {
log.info("Stopping route manually");
getContext().stopRoute("manual");
return null;
}
});
}
});
}
}