org.apache.camel.impl.engine.MDCUnitOfWork Maven / Gradle / Ivy
/*
* 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.camel.impl.engine;
import java.util.HashMap;
import java.util.Map;
import org.apache.camel.AsyncCallback;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.spi.RouteContext;
import org.apache.camel.spi.UnitOfWork;
import org.apache.camel.support.PatternHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MDC;
/**
* This unit of work supports MDC.
*/
public class MDCUnitOfWork extends DefaultUnitOfWork {
private static final Logger LOG = LoggerFactory.getLogger(MDCUnitOfWork.class);
private final String pattern;
private final String originalBreadcrumbId;
private final String originalExchangeId;
private final String originalMessageId;
private final String originalCorrelationId;
private final String originalRouteId;
private final String originalStepId;
private final String originalCamelContextId;
private final String originalTransactionKey;
public MDCUnitOfWork(Exchange exchange, String pattern) {
super(exchange, LOG);
this.pattern = pattern;
// remember existing values
this.originalExchangeId = MDC.get(MDC_EXCHANGE_ID);
this.originalMessageId = MDC.get(MDC_MESSAGE_ID);
this.originalBreadcrumbId = MDC.get(MDC_BREADCRUMB_ID);
this.originalCorrelationId = MDC.get(MDC_CORRELATION_ID);
this.originalRouteId = MDC.get(MDC_ROUTE_ID);
this.originalStepId = MDC.get(MDC_STEP_ID);
this.originalCamelContextId = MDC.get(MDC_CAMEL_CONTEXT_ID);
this.originalTransactionKey = MDC.get(MDC_TRANSACTION_KEY);
// must add exchange and message id in constructor
MDC.put(MDC_EXCHANGE_ID, exchange.getExchangeId());
String msgId = exchange.getMessage().getMessageId();
MDC.put(MDC_MESSAGE_ID, msgId);
// the camel context id is from exchange
MDC.put(MDC_CAMEL_CONTEXT_ID, exchange.getContext().getName());
// and add optional correlation id
String corrId = exchange.getProperty(Exchange.CORRELATION_ID, String.class);
if (corrId != null) {
MDC.put(MDC_CORRELATION_ID, corrId);
}
// and add optional breadcrumb id
String breadcrumbId = exchange.getIn().getHeader(Exchange.BREADCRUMB_ID, String.class);
if (breadcrumbId != null) {
MDC.put(MDC_BREADCRUMB_ID, breadcrumbId);
}
}
@Override
public UnitOfWork newInstance(Exchange exchange) {
return new MDCUnitOfWork(exchange, pattern);
}
@Override
public void stop() {
super.stop();
// and remove when stopping
clear();
}
@Override
public void pushRouteContext(RouteContext routeContext) {
super.pushRouteContext(routeContext);
MDC.put(MDC_ROUTE_ID, routeContext.getRouteId());
}
@Override
public RouteContext popRouteContext() {
RouteContext answer = super.popRouteContext();
// restore old route id back again after we have popped
RouteContext previous = getRouteContext();
if (previous != null) {
// restore old route id back again
MDC.put(MDC_ROUTE_ID, previous.getRouteId());
} else {
// not running in route, so clear (should ideally not happen)
MDC.remove(MDC_ROUTE_ID);
}
return answer;
}
@Override
public void beginTransactedBy(Object key) {
MDC.put(MDC_TRANSACTION_KEY, key.toString());
super.beginTransactedBy(key);
}
@Override
public void endTransactedBy(Object key) {
MDC.remove(MDC_TRANSACTION_KEY);
super.endTransactedBy(key);
}
@Override
public AsyncCallback beforeProcess(Processor processor, Exchange exchange, AsyncCallback callback) {
// add optional step id
String stepId = exchange.getProperty(Exchange.STEP_ID, String.class);
if (stepId != null) {
MDC.put(MDC_STEP_ID, stepId);
}
return new MDCCallback(callback, pattern);
}
@Override
public void afterProcess(Processor processor, Exchange exchange, AsyncCallback callback, boolean doneSync) {
// if we are no longer under step then remove it
String stepId = exchange.getProperty(Exchange.STEP_ID, String.class);
if (stepId == null) {
MDC.remove(MDC_STEP_ID);
}
}
/**
* Clears information put on the MDC by this {@link MDCUnitOfWork}
*/
public void clear() {
if (this.originalBreadcrumbId != null) {
MDC.put(MDC_BREADCRUMB_ID, originalBreadcrumbId);
} else {
MDC.remove(MDC_BREADCRUMB_ID);
}
if (this.originalExchangeId != null) {
MDC.put(MDC_EXCHANGE_ID, originalExchangeId);
} else {
MDC.remove(MDC_EXCHANGE_ID);
}
if (this.originalMessageId != null) {
MDC.put(MDC_MESSAGE_ID, originalMessageId);
} else {
MDC.remove(MDC_MESSAGE_ID);
}
if (this.originalCorrelationId != null) {
MDC.put(MDC_CORRELATION_ID, originalCorrelationId);
} else {
MDC.remove(MDC_CORRELATION_ID);
}
if (this.originalRouteId != null) {
MDC.put(MDC_ROUTE_ID, originalRouteId);
} else {
MDC.remove(MDC_ROUTE_ID);
}
if (this.originalStepId != null) {
MDC.put(MDC_STEP_ID, originalStepId);
} else {
MDC.remove(MDC_STEP_ID);
}
if (this.originalCamelContextId != null) {
MDC.put(MDC_CAMEL_CONTEXT_ID, originalCamelContextId);
} else {
MDC.remove(MDC_CAMEL_CONTEXT_ID);
}
if (this.originalTransactionKey != null) {
MDC.put(MDC_TRANSACTION_KEY, originalTransactionKey);
} else {
MDC.remove(MDC_TRANSACTION_KEY);
}
}
@Override
public String toString() {
return "MDCUnitOfWork";
}
private static boolean matchPatterns(String value, String[] patterns) {
for (String pattern : patterns) {
if (PatternHelper.matchPattern(value, pattern)) {
return true;
}
}
return false;
}
/**
* {@link AsyncCallback} which preserves {@link org.slf4j.MDC} when
* the asynchronous routing engine is being used.
*/
private static final class MDCCallback implements AsyncCallback {
private final AsyncCallback delegate;
private final String breadcrumbId;
private final String exchangeId;
private final String messageId;
private final String correlationId;
private final String routeId;
private final String camelContextId;
private final Map custom;
private MDCCallback(AsyncCallback delegate, String pattern) {
this.delegate = delegate;
this.exchangeId = MDC.get(MDC_EXCHANGE_ID);
this.messageId = MDC.get(MDC_MESSAGE_ID);
this.breadcrumbId = MDC.get(MDC_BREADCRUMB_ID);
this.correlationId = MDC.get(MDC_CORRELATION_ID);
this.camelContextId = MDC.get(MDC_CAMEL_CONTEXT_ID);
this.routeId = MDC.get(MDC_ROUTE_ID);
if (pattern != null) {
custom = new HashMap<>();
Map mdc = MDC.getCopyOfContextMap();
if (mdc != null) {
if ("*".equals(pattern)) {
custom.putAll(mdc);
} else {
final String[] patterns = pattern.split(",");
mdc.forEach((k, v) -> {
if (matchPatterns(k, patterns)) {
custom.put(k, v);
}
});
}
}
} else {
custom = null;
}
}
@Override
public void done(boolean doneSync) {
try {
if (!doneSync) {
// when done asynchronously then restore information from previous thread
if (breadcrumbId != null) {
MDC.put(MDC_BREADCRUMB_ID, breadcrumbId);
}
if (exchangeId != null) {
MDC.put(MDC_EXCHANGE_ID, exchangeId);
}
if (messageId != null) {
MDC.put(MDC_MESSAGE_ID, messageId);
}
if (correlationId != null) {
MDC.put(MDC_CORRELATION_ID, correlationId);
}
if (camelContextId != null) {
MDC.put(MDC_CAMEL_CONTEXT_ID, camelContextId);
}
if (custom != null) {
custom.forEach(MDC::put);
}
}
// need to setup the routeId finally
if (routeId != null) {
MDC.put(MDC_ROUTE_ID, routeId);
}
} finally {
// muse ensure delegate is invoked
delegate.done(doneSync);
}
}
@Override
public String toString() {
return delegate.toString();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy