All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.log4j.spi.LocationInfo Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta2
Show newest version
/*
 * 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.log4j.spi;

import java.io.Serializable;
import java.util.Objects;

/**
 * The internal representation of caller location information.
 *
 * @since 0.8.3
 */
public class LocationInfo implements Serializable {

    /**
     * When location information is not available the constant NA is returned. Current value of this string
     * constant is ?.
     */
    public final static String NA = "?";

    static final long serialVersionUID = -1325822038990805636L;

    private final StackTraceElement stackTraceElement;

    public String fullInfo;

    /**
     * Constructs a new instance.
     */
    public LocationInfo(final StackTraceElement stackTraceElement) {
        this.stackTraceElement = Objects.requireNonNull(stackTraceElement, "stackTraceElement");
        this.fullInfo = stackTraceElement.toString();
    }

    /**
     * Constructs a new instance.
     *
     * @param file source file name
     * @param declaringClass class name
     * @param methodName method
     * @param line source line number
     *
     * @since 1.2.15
     */
    public LocationInfo(final String file, final String declaringClass, final String methodName, final String line) {
        this(new StackTraceElement(declaringClass, methodName, file, Integer.parseInt(line)));
    }

    /**
     * Constructs a new instance.
     */
    public LocationInfo(final Throwable throwable, final String fqnOfCallingClass) {
        String declaringClass = null, methodName = null, file = null, line = null;
        if (throwable != null && fqnOfCallingClass != null) {
            final StackTraceElement[] elements = throwable.getStackTrace();
            String prevClass = NA;
            for (int i = elements.length - 1; i >= 0; i--) {
                final String thisClass = elements[i].getClassName();
                if (fqnOfCallingClass.equals(thisClass)) {
                    final int caller = i + 1;
                    if (caller < elements.length) {
                        declaringClass = prevClass;
                        methodName = elements[caller].getMethodName();
                        file = elements[caller].getFileName();
                        if (file == null) {
                            file = NA;
                        }
                        final int lineNo = elements[caller].getLineNumber();
                        if (lineNo < 0) {
                            line = NA;
                        } else {
                            line = String.valueOf(lineNo);
                        }
                        final StringBuilder builder = new StringBuilder();
                        builder.append(declaringClass);
                        builder.append(".");
                        builder.append(methodName);
                        builder.append("(");
                        builder.append(file);
                        builder.append(":");
                        builder.append(line);
                        builder.append(")");
                        this.fullInfo = builder.toString();
                    }
                    break;
                }
                prevClass = thisClass;
            }
        }
        this.stackTraceElement = new StackTraceElement(declaringClass, methodName, file, Integer.parseInt(line));
        this.fullInfo = stackTraceElement.toString();
    }

    /**
     * Gets the fully qualified class name of the caller making the logging request.
     */
    public String getClassName() {
        return stackTraceElement.getClassName();
    }

    /**
     * Gets the file name of the caller.
     */
    public String getFileName() {
        return stackTraceElement.getFileName();
    }

    /**
     * Gets the line number of the caller.
     */
    public String getLineNumber() {
        return Integer.toString(stackTraceElement.getLineNumber());
    }

    /**
     * Gets the method name of the caller.
     */
    public String getMethodName() {
        return stackTraceElement.getMethodName();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy