org.evosuite.instrumentation.LinePool Maven / Gradle / Ivy
/**
* Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
* contributors
*
* This file is part of EvoSuite.
*
* EvoSuite is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3.0 of the License, or
* (at your option) any later version.
*
* EvoSuite is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with EvoSuite. If not, see .
*/
/**
*
*/
package org.evosuite.instrumentation;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
/**
* Keep track of the lines of code in a class
*
* @author Gordon Fraser
*/
public class LinePool {
/** Map class names to methods to sets of line numbers */
private static Map>> lineMap = new LinkedHashMap>>();
/**
* Insert line into map for class
*
* @param className a {@link java.lang.String} object.
* @param methodName a {@link java.lang.String} object.
* @param lineNo a int.
*/
public static void addLine(String className, String methodName, int lineNo) {
if (!lineMap.containsKey(className))
lineMap.put(className, new LinkedHashMap>());
if (!lineMap.get(className).containsKey(methodName))
lineMap.get(className).put(methodName, new LinkedHashSet());
lineMap.get(className).get(methodName).add(lineNo);
}
/**
* Retrieve set of lines
*
* @param className a {@link java.lang.String} object.
* @param methodName a {@link java.lang.String} object.
* @return a {@link java.util.Set} object.
*/
public static Set getLines(String className, String methodName) {
if (lineMap.containsKey(className))
if (lineMap.get(className).containsKey(methodName))
return lineMap.get(className).get(methodName);
return new HashSet();
}
/**
* Retrieve all lines in a class
*
* @param className a {@link java.lang.String} object.
* @return a {@link java.util.Set} object.
*/
public static Set getLines(String className) {
Set lines = new LinkedHashSet();
if (lineMap.containsKey(className))
for (Set methodLines : lineMap.get(className).values())
lines.addAll(methodLines);
return lines;
}
/**
* Retrieve all lines in the pool
*
* @return a {@link java.util.Set} object.
*/
public static Set getAllLines() {
Set lines = new LinkedHashSet();
for (String className : lineMap.keySet())
for (Set methodLines : lineMap.get(className).values())
lines.addAll(methodLines);
return lines;
}
/**
* Retrieve all lines in the pool
*
* @return a {@link java.util.Set} object.
*/
public static int getNumLines() {
int num = 0;
for (String className : lineMap.keySet())
num += lineMap.get(className).size();
return num;
}
/**
* Returns a Set containing all classes for which this pool knows lines
* for as Strings
*
* @return a {@link java.util.Set} object.
*/
public static Set getKnownClasses() {
return new HashSet(lineMap.keySet());
}
public static Set getKnownMethodsFor(String className) {
if(!lineMap.containsKey(className))
return new HashSet();
else
return lineMap.get(className).keySet();
}
public static void removeClass(String className) {
lineMap.remove(className);
}
public static void reset() {
lineMap.clear();
}
}