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

eu.stamp.botsing.StackTrace Maven / Gradle / Ivy

package eu.stamp.botsing;

/*-
 * #%L
 * botsing-reproduction
 * %%
 * Copyright (C) 2017 - 2018 eu.stamp-project
 * %%
 * Licensed 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.
 * #L%
 */

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.StringTokenizer;

public class StackTrace {

    private static final Logger LOG = LoggerFactory.getLogger(StackTrace.class);

    private String exceptionType;
    private ArrayList frames;
    private int targetFrameLevel;
    private String targetClass;

    /**
     * Sets up this object with the stack trace read from the given file and having the given target frame.
     *
     * @param logPath    The file with a stack trace.
     * @param frameLevel The target frame level.
     * @throws IllegalArgumentException If the file at logPath could not be found or does not contain a valid stack trace.
     */
    public void setup(String logPath, int frameLevel) throws IllegalArgumentException {
        targetFrameLevel = frameLevel;
        try {
            BufferedReader reader = readFromFile(logPath);
            // Parse type of the exception
            StringTokenizer st = new StringTokenizer(reader.readLine(), ":");
            exceptionType = st.nextToken();
            LOG.info("Exception type is detected: " + exceptionType);

            // clear the frames in this.frames (if any)
            if (frames == null) {
                frames = new ArrayList();
            } else {
                frames.clear();
            }

            // Parse frames
            for (int counter = 0; counter < frameLevel; counter++) {
                String tempFrame = reader.readLine();
                if (tempFrame == null) {
                    break;
                }
                frames.add(stringToStackTraceElement(tempFrame));
            }
            LOG.info("Target frame is set to: " + frames.get(frameLevel - 1).toString());

            // Parse Target class
            targetClass = frames.get(frameLevel - 1).getClassName();
            org.evosuite.Properties.TARGET_CLASS = targetClass;
            LOG.info("Target Class is set to: " + targetClass);
        } catch (FileNotFoundException e) {
            LOG.debug("Stack trace file not found!", e);
            throw new IllegalArgumentException("Stack trace file not found!", e);
        } catch (IOException e) {
            LOG.debug("Unable to read file {}!", logPath, e);
            throw new IllegalArgumentException("Unable to read file "+ logPath + "!", e);
        }
    }

    private StackTraceElement stringToStackTraceElement(String frameString) {
        int startPoint = frameString.indexOf("at ") + 3;
        String usefulPart = frameString.substring(startPoint);
        int splitPoint = usefulPart.indexOf("(");
        String usefulForLineDetection = usefulPart.substring(splitPoint);
        String usefulForOtherParts = usefulPart.substring(0, splitPoint);

        //Line detection
        int lineFirstSplitpoint = usefulForLineDetection.indexOf(":") + 1;
        int lineSecondSplitpoint = usefulForLineDetection.indexOf(")");

        int lineNumber = Integer.parseInt(usefulForLineDetection.substring(lineFirstSplitpoint, lineSecondSplitpoint));

        String[] split = usefulForOtherParts.split("\\.");
        // method Detection
        String methodName = split[(split.length - 1)];

        // class detection
        String clazz = String.join(".", Arrays.copyOfRange(split, 0, split.length - 1));
        return new StackTraceElement(clazz, methodName, split[(split.length - 2)], lineNumber);
    }


    public int getTargetFrameLevel() {
        return targetFrameLevel;
    }

    public String getExceptionType() {
        return exceptionType;
    }

    public String getTargetClass() {
        return targetClass;
    }

    public StackTraceElement getFrame(int index) {
        return frames.get(index - 1);
    }

    public int getNumberOfFrames() {
        return frames.size();
    }

    public String getTargetMethod() {
        return frames.get(targetFrameLevel - 1).getMethodName();
    }

    public int getTargetLine() {
        return frames.get(targetFrameLevel - 1).getLineNumber();
    }

    public ArrayList getFrames() {
        return frames;
    }

    public BufferedReader readFromFile(String filePath) throws FileNotFoundException {
        File file = new File(filePath);
        BufferedReader br = new BufferedReader(new FileReader(file));
        return br;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy