org.apache.cxf.tracing.AbstractTracingProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-rt-management Show documentation
Show all versions of cxf-rt-management Show documentation
Apache CXF Runtime Management
/**
* 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.cxf.tracing;
import java.io.Serializable;
import java.net.URI;
import java.net.URISyntaxException;
import org.apache.cxf.common.util.StringUtils;
import org.apache.cxf.message.Message;
import org.apache.cxf.phase.PhaseInterceptorChain;
import static org.apache.cxf.tracing.TracerHeaders.DEFAULT_HEADER_SPAN_ID;
public abstract class AbstractTracingProvider {
protected static String getSpanIdHeader() {
return getHeaderOrDefault(TracerHeaders.HEADER_SPAN_ID, DEFAULT_HEADER_SPAN_ID);
}
protected static class TraceScopeHolder implements Serializable {
private static final long serialVersionUID = -5985783659818936359L;
private final T scope;
private final boolean detached;
public TraceScopeHolder(final T scope, final boolean detached) {
this.scope = scope;
this.detached = detached;
}
public T getScope() {
return scope;
}
public boolean isDetached() {
return detached;
}
}
private static String getHeaderOrDefault(final String property, final String fallback) {
final Message message = PhaseInterceptorChain.getCurrentMessage();
if (message != null) {
final Object header = message.getContextualProperty(property);
if (header instanceof String) {
final String name = (String)header;
if (!StringUtils.isEmpty(name)) {
return name;
}
}
}
return fallback;
}
protected String buildSpanDescription(final String path, final String method) {
if (StringUtils.isEmpty(method)) {
return path;
}
return method + " " + path;
}
private static String safeGet(Message message, String key) {
if (!message.containsKey(key)) {
return null;
}
Object value = message.get(key);
return (value instanceof String) ? value.toString() : null;
}
private static String getUriAsString(Message message) {
String uri = safeGet(message, Message.REQUEST_URL);
if (uri == null) {
String address = safeGet(message, Message.ENDPOINT_ADDRESS);
uri = safeGet(message, Message.REQUEST_URI);
if (uri != null && uri.startsWith("/")) {
if (address != null && !address.startsWith(uri)) {
if (address.endsWith("/") && address.length() > 1) {
address = address.substring(0, address.length() - 1);
}
uri = address + uri;
}
} else {
uri = address;
}
}
String query = safeGet(message, Message.QUERY_STRING);
if (query != null) {
return uri + "?" + query;
}
return uri;
}
protected static URI getUri(Message message) {
try {
String uriSt = getUriAsString(message);
return uriSt != null ? new URI(uriSt) : new URI("");
} catch (URISyntaxException e) {
throw new RuntimeException(e.getMessage(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy