-
Notifications
You must be signed in to change notification settings - Fork 177
GumTree API
yuguo edited this page Dec 8, 2017
·
14 revisions
It is possible to process source code file directly from the Java code. To use the GumTree API, we recommend to launch your program using the classpath of the dist
project, which contains all the dependencies. Here are some examples.
Run.initGenerators();
String file = "myfile.java";
TreeContext tc = Generators.getInstance().getTree(file); // retrieve the default generator for the file
ITree t = tc.getRoot(); // return the root of the tree
String file = "myfile.java";
ITree tree = new JdtTreeGenerator().generateFromString(file).getRoot();
Run.initGenerators();
String file1 = "file_v0.java";
String file2 = "file_v1.java";
ITree src = Generators.getInstance().getTree(file1).getRoot();
ITree dst = Generators.getInstance().getTree(file2).getRoot();
Matcher m = Matchers.getInstance().getMatcher(src, dst); // retrieve the default matcher
m.match();
m.getMappings(); // return the mapping store
Run.initGenerators();
String file1 = "file_v0.java";
String file2 = "file_v1.java";
ITree src = Generators.getInstance().getTree(file1).getRoot();
ITree dst = Generators.getInstance().getTree(file2).getRoot();
Matcher m = Matchers.getInstance().getMatcher(src, dst); // retrieve the default matcher
m.match();
ActionGenerator g = new ActionGenerator(src, dst, m.getMappings());
g.generate();
List<Action> actions = g.getActions(); // return the actions