Goal
- Detecting where comparisons between and copies of variables are made
- Inject code near the line where the operation has happened
- The purpose of the code: everytime the class is ran make a counter increase
General purpose: count the amount of comparisons and copies made after execution with certain parameters
2 options
Note: I always have a .java file to begin with
1) Edit java file
Find comparisons with regex and inject pieces of code near the line And then compile the class (My application uses JavaCompiler)
2)Use ASM Bytecode engineering
Also detecting where the events i want to track and inject pieces into the bytecode And then use the (already compiled but modified) class
My Question
What is the best/cleanest way? Is there a better way to do this?