Fixing a bug in the TreeTable2 example

This New Year I resolved to run backups of our computers regularly in 2007. My vague plan was to dump the data to DVDs, since both of our newest machines, a Dell PC running Windows XP Pro and a Mac have DVD burners.

What, to my dismay, did I learn when I examined the Properties of my home directory on the PC? It weighs in at over 140 gigabytes. The DVDs hold about 6 gigabytes, so it would take at least 24 DVDs to run a backup. Aside from the cost, managing 24 DVDs sort of defeats the purpose.

Before going to plan B, getting an outboard disk drive to use as the backup device, I thought I'd investigate all of this growth in my home directory. Last time I looked, my home directory was less than 10 gigabytes.

In the past I've used du from the bash command line to investigate the file system. This is powerful, but it's slow and very painful. What I really wanted was a tree browser that was smart enough to show me the size of each subtree.

In a project that I'd worked on a couple of years ago I learned that there's a cool thing called a TreeTable that has just the right properties. The leftmost column is a hierarchical tree browser, while the columns to the right are capable of containing data associated with the tree nodes on the left.

Thought I, "let's get a treetable class from somewhere and then marry it with some code that can inspect the file system." So I googled for 'treetable' and found not only a very nice treetable library available free, but an example built using it that did exactly what I wanted.

After downloading the source code and creating a project in Eclipse, I ran it. It worked nicely and was just what I wanted. But there was one small problem.

It reported that my home directory had a negative size:

Tree Table - Negative Size

Immediately that told me that somewhere in the code a node size was being represented as an integer, a 32-bit quantity that couldn't represent more than 2 gigabytes before wrapping and showing a negative number. What I really wanted was an unsigned 64-bit number, though I suspected that I'd have to settle for a long, a 64-bit signed number. That would be adequate for now, since my 140 gigabyte file system size could be represented comfortably in a 38-bit integer.

The next step was to find and fix the problem with the code. My fear was that the underlying system call was returning an integer, which would have made the fix potentially quite painful. Fortunately, however, the problem turned out to reside in a single line of code in FileSystemModel2.java:
if (fn.isTotalSizeValid()) {
return new Integer((int)((FileNode)node).totalSize());
}

In this you can see that the long that is being returned by totalSize() from the FileNode node is being forcibly converted (don't you love the word "coerce?") to an integer.

Replacing the coercion with an appropriate Long object was the work of moments:
if (fn.isTotalSizeValid()) {
return new Long(((FileNode)node).totalSize());
}

Which had the desired result:

Tree Table - Correct Size

With this version I was able rapidly to navigate to the directory where I had stored the video that I'd made at the Bar Mitzvah of a friend's son, files that I certainly didn't need to back up and that represented the vast bulk of the 140 gigabytes.

Comments

Popular posts from this blog

Quora Greatest Hits - What are common stages that PhD student researchers go through with their thesis project?

HP 35 calculator 200 trick