public
Description: A (fork of a) slick visualization for your source code
Homepage: http://code.google.com/p/codeswarm/
Clone URL: git://github.com/rictic/code_swarm.git
name age message
file .gitignore Sat Mar 28 03:29:35 -0700 2009 Added personal/ to .gitignore [rictic]
file COPYING Fri Mar 27 19:39:10 -0700 2009 Added experimental support for local avatars. ... [Frederic Back]
file README.markdown Tue Feb 03 16:06:22 -0800 2009 More readme cleanup [rictic]
directory bin/ Sun Mar 29 17:19:44 -0700 2009 Added full support for darcs, including autodis... [rictic]
file build.xml Wed Oct 08 07:05:42 -0700 2008 Changed compiler arg from "-Xlint" to "-Xlint:u... [mdippery]
directory data/ Fri Mar 27 19:39:10 -0700 2009 Added experimental support for local avatars. ... [Frederic Back]
directory defaults/ Fri Mar 27 19:39:10 -0700 2009 Added experimental support for local avatars. ... [Frederic Back]
directory eclipse/ Sun Jul 13 16:59:47 -0700 2008 Added eclipse classpath and project files. git... [nawglan]
directory lib/ Sat Nov 08 14:19:45 -0800 2008 Added freebase libraries to lib directory, now ... [rictic]
directory physics_engine/ Sat Oct 04 19:23:13 -0700 2008 Remove old physics engines which I don't plan t... [Xavier Shay]
file run.bat Tue Jul 22 22:39:40 -0700 2008 vecmath.jar also added for run.bat launcher ! ... [sebastien.rombauts]
file runrepositoryfetch.bat Thu Aug 07 09:20:48 -0700 2008 Added the ability to fetch repository-logs at r... [kraeusen]
file runrepositoryfetch.sh Sun Aug 10 12:09:46 -0700 2008 Fixed to work. git-svn-id: http://codeswarm.go... [nawglan]
directory src/ Fri Mar 27 19:39:10 -0700 2009 Added experimental support for local avatars. ... [Frederic Back]

code_swarm is an experiment in organic software visualization.

See http://vis.cs.ucdavis.edu/~ogawa/codeswarm for a picture of what we want to produce.

Google Code Project : http://code.google.com/p/codeswarm/ Google Group/Mailing List: http://groups.google.com/group/codeswarm

Building

Prerequisites

You will need the Apache ant build tool, at least version 5 of the Java SDK from Sun, and Python version 2.4 or later. Linux users: we've been unable to get code_swarm to compile with the GNU toolchain, Sun's implementation is strongly recommended. If you're able to get it to compile with another toolchain, we'll be glad to include instructions here on how to do so.

Mac

Recent versions of OS X come with a good java compiler and Python interpreter, so all you need to do is get and install ant.

If you have DarwinPorts/MacPorts, you can simply:

sudo port install apache-ant

Linux

sudo apt-get install ant
sudo apt-get install sun-java6-jdk 
sudo update-java-alternatives -s java-6-sun 

Tested with Ubuntu 8.04, probably similar in other linux distributions.

You should also ensure that Python is installed. Run python in the terminal if you're unsure.

Windows

  • download ant: http://ant.apache.org/bindownload.cgi
  • unpack it and add the location of its binaries to the the PATH environment variable. For instance, add at the end : C:\apache-ant-1.7.0\bin;

  • download the Sun Java SDK at http://java.sun.com/javase/downloads/index.jsp

  • install it and add the Java binaries to the PATH : C:\Program Files\Java\jdk1.6.0_06\bin;

  • then create a new environment variable called JAVA_HOME and set its path to C:\Program Files\Java\jdk1.6.0_06;

  • download and install Python from http://www.python.org/download/ and ensure that it too is in the PATH

Getting the source code

git

A git fork of the main code_swarm repository is maintained at http://github.com/rictic/code_swarm/tree/master

This fork contains a number of patches which improve the speed of code_swarm significantly, as well as an executable, which makes running code_swarm a one-step process.

To obtain a clone of the repository, simply use:

git clone git://github.com/rictic/code_swarm.git

Subversion

The main code_swarm repository however is on Google Code: http://codeswarm.googlecode.com/

To get the source, see http://code.google.com/p/codeswarm/source/checkout

Running code_swarm

With Java and ant installed, and the code_swarm source downloaded, running it on a git, svn, or hg based project is easy:

  • Add code_swarm/bin to your PATH. A line like export PATH=$PATH:/path/to/code_swarm/bin in your ~/.profile or ~/.bash_profile should do it
  • cd project/to/visualize
  • code_swarm

Other ways of running code_swarm

Running manually

While code_swarm was developed to visualize source code repositories, its input format is generic, and some have experimented with visualizing other collaborative environments, including user activity on wikis and freebase.com.

code_swarm can be invoked by pointing it at a project config file, which contains a number of options for customizing the visualization. The config file must point at a repository xml file, which contains a set of events, which each describe a file, edited by a person, at a specific time. The time is specified as the number of milliseconds since January 1st, 1970.

Example config files can be seen in data/sample.config and bin/config.template

To invoke code_swarm with a given config file, use ./run.sh path/to/project.config

SVN GUI

For an experimental GUI where you can specify a svn url to visualize:

  • cd path/to/code_swarm
  • ant run

Other commands:

  • ant will build, but not run the project
  • ant all will also generate Javadoc HTML documentation
  • ant clean will delete all intermediate and binary files