Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AnalysisScope example #11

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package com.ibm.wala.examples.analysisscope;

import com.ibm.wala.ipa.callgraph.AnalysisScope;
import com.ibm.wala.ipa.callgraph.AnalysisScope;
import com.ibm.wala.util.config.FileOfClasses;
import com.ibm.wala.util.config.AnalysisScopeReader;

import java.io.File;
import java.io.IOException;
import com.ibm.wala.util.config.AnalysisScopeReader;

//for more information, please check out https://github.com/wala/WALA/wiki/Analysis-Scope
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Write this as proper Javadoc on the class rather than just a single line comment



public class analysisscope {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
public class analysisscope {
public class AnalysisScopeExamples {

Class names start with a capital and use camel case. See https://google.github.io/styleguide/javaguide.html#s5.2.2-class-names

/**
* @param classPath paths of jars to include in analysis scope, formatted as a Java classpath
* @return AnaylsisScope object created by makeJavaBinaryAnalysisScope
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* @return AnaylsisScope object created by makeJavaBinaryAnalysisScope
* @return AnalysisScope object created by makeJavaBinaryAnalysisScope

* @throws IOException
*/
AnalysisScope makeAnalysisScope(String classPath) throws IOException {
return AnalysisScopeReader.makeJavaBinaryAnalysisScope(classPath, null);
}

/**
*
* @param classPath Location of a scope file in string form
* @param exceptionFile location of an exception file
* @return return an analysis scope object
* @throws IOException
*/
AnalysisScope makeAnalysisScope(String classPath, String exceptionFile) throws IOException{
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The first parameter should be named something like scopeFilePath, and the second should be exclusionsFilePath

File exception = new File(exceptionFile);
return AnalysisScopeReader.readJavaScope(classPath, exception, null);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return AnalysisScopeReader.readJavaScope(classPath, exception, null);
return AnalysisScopeReader.readJavaScope(classPath, exception, AnalysisScopeExamples.class.getClassLoader());

Should pass a real classloader as the final parameter.

}
}