A tool for generating a visual comparison of two files of source code.
You'll need Tcl/Tk bindings
for Python. This might require installing something outside of your virtual
environment: you'll know it's set up right if you can run python3 -m tkinter
and get a little interactive window to pop up.
- On Mac, try
sudo brew install python-tk
to install that. - On Ubuntu, you might try
sudo apt-get install python3-pil.imagetk
to get Tcl/Tk set up correctly. I don't remember exactly what I did that finally worked, but that was one of the things I tried.
After that, just pip install -r requirements.txt
, and you should be good!
If you get errors about not doing this in a virtual environment, try
python -m venv venv
, then source venv/bin/activate
, and then try installing
the requirements again.
If you're running a different OS, good luck (and if you get it to work, please either file an issue telling us to update the documentation with what you did, or update it yourself and send us a pull request!).
The short version: run visual_diff.py --help
for info.
The main program is visual_diff.py
. You can either specify 1 or 2 different
filenames containing source code as arguments to it. With 2 files, it compares
one to the other; with only 1 file it compares the file to itself. Both files
should be written in the same language (though I have vague plans to change
that in the future!).
Each file is treated as a sequence of lexical tokens. A token is the smallest semantic piece of a program; tokens include keywords like "if" and "for", parentheses, variable names, etc. We then generate an image, in which the pixel in row i and column j is set if the ith token from the first file and the jth token from the second file are equal. All strings are considered equal regardless of their contents; all numbers are considered equal, too.
When you run the program, a graphical user interface will open up in which you can explore the image. Use the scroll wheel to zoom in and out, click-and-drag to pan around, and mouse around the image to explore the code. Quit with control-Q or control-W. The intention is for the GUI to be very similar to Google Maps, OpenStreetMap, or other map exploration interfaces.
The program can recognize a handful of languages from the file extension (e.g.,
.py
or .go
). If you want to use a language that is not automatically
recognized, you can do so with the --language
flag. We use
tree_sitter
for tokenizing,
and it supports many dozens of
languages.
If manually setting the language is a common annoyance for you, please send us
a PR with your file extension and language! The place to change is in
visual_diff.py
, in the guess_language
function.
If you specify an --output_location
, then instead of opening the GUI, the
image will be saved to file and then the program will exit. Most popular image
formats should work, including .png
, .gif
, .jpg
, and .bmp
.
Saving images to a file takes much more memory than displaying them to the
screen (because they involve compression algorithms), so doing this with large
images can freeze your whole system. So, by default we refuse to save any
image that is over 10 megapixels. This can be overridden with the --big_file
flag, but use that at your own peril.
When using the GUI, you can set the maximum line length for the code displayed
using the --text_width
or -tw
option (default is 100 characters, except
Python files are 80 characters), and you can set the sidelength, in
pixels, of the GUI's (square) map view using the --map_width
or -mw
option
(default is 600 pixels).
You can also specify --color
to get a color image instead of black-and-white.
Non-matching tokens are still black pixels, but matching ones are colored
based on how long the estimated chain of matches is: blue indicates a short
chain (likely noise), up through red for a long one (definitely duplicated
code). However, the algorithm for computing these colors can be very slow for
large files, so it is disabled by default.
Finding code that has been copied and pasted or is otherwise similar enough to consider refactoring. This is the main use case of this code. These show up as diagonal lines in the image.
- Finding students who are cheating on their homework by copying and pasting
code from each other. There are better tools for this task, but
visual_diff
is better than nothing. - Cheating on homework by making sure that the code you have copied and pasted has been modified enough that it no longer looks copied and pasted. :upside_down_face:
The mouse cursor has been artificially colored purple in order to better distinguish it from the background. The context at the bottom highlights the token(s) represented by the pixel the mouse is pointing to.
Boilerplate code that repeats itself a lot clearly looks like it repeats:
Here's a short file compared to a longer file which was created by copying the short file and modifying it:
This is a single file compared to itself, where the second half of the file was created by modifying a copy of the first half:
Data structures with very regular structure, such as lists and dictionaries, show up as very regular structures:
If you zoom out in a very large file, each pixel of the map will contain multiple tokens within it. Duplicated code will still show up as a diagonal line even if the individual pixels only match partially.
This code was predominantly written by Alan Davidson. He got the idea from a talk he saw at DEFCON 2006, in which Dan Kaminsky showed a very similar tool he had built to compare binaries made from the same source code using different compilers. Here are slides he made for a very similar talk at SchmooCon 2007 (start around slide 45).