Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a desktop-based tool that's used for code reviews or do we just have to print out the code and mark it up by hand?

share|improve this question
1  
Possible duplicate> stackoverflow.com/questions/457534/… – joveha Apr 17 '10 at 15:13
1  
not really a duplicate. I'm asking for DESKTOP-based tool rather than a web-based one. – omouse Apr 18 '10 at 17:13
1  
Why desktop based? No LAN in your environment? – Assaf Lavie Apr 19 '10 at 13:34
Good question, +1. Sww my answer for a collection of four popular collaborative Code Review tools. – Dimitre Novatchev Apr 9 '11 at 21:03
@omouse: what do you understand by "desktop-based"? Any collaborative CR tool by definition must be network-based. Please, explain. – Dimitre Novatchev Apr 10 '11 at 4:04
show 1 more comment

closed as not constructive by Bill the Lizard Feb 15 '12 at 14:35

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 1 down vote accepted

This largely depends on what format you need the comments in and whether you want them to edit your changes, and how you want them to find their way back into your sandbox and then back into source control. What's wrong with copying and pasting the changes into Word and letting people comment using change tracking? Sounds primitive, but it's not clear what your requirements are? Do you need to share your deltas with other developers for them to build and debug locally and possibly make additional edits, or use inline comments?

One of the really powerful things about TFS source control is shelvesets. Your code changes can be shelved persistently and centrally and can be shared with others and reviewed, but they don't get into source control until you actually check them in. Since our team is distributed across several countries and sites this works really well for us, since you can email the shelf URL to another team member to review overnight without trying to find a convenient time to do a webex for the peer review.

If your version control system doesn't support shelving in this way, then the only other way to do this would be to have a private branch for your changes that can be used for review\collaboration and then when everyone is happy you merge the deltas into the production branch.

share|improve this answer

Just a few:

  1. Rietveld is a web-based collaborative code review tool for Subversion written by Guido van Rossum to run on Google's cloud service. Guido based Rietveld on the experience he had writing Mondrian. Mondrian is a proprietary application used internally by Google to review their code.

  2. Gerrit is a web-based collaborative code review tool for Git. Starting from a set of patches for Rietveld, it became a fork and evolved into a full blown project when ACL patches wouldn't be merged into Rietveld by its author, Guido van Rossum. Originally written in Python like Rietveld, it is now written in Java (JEE Servlet) with SQL since version 2.

  3. Review Board is a web-based collaborative code review tool, available as free software under the MIT License. An alternative to Rietveld and Gerrit, Review Board integrates with Bazaar, ClearCase, CVS, Git, Mercurial, Perforce, and Subversion. Review Board can be installed on any server running Apache or lighttpd and is free for both personal and commercial use.

  4. Crucible is a collaborative code review application by Australian software company Atlassian. Like other Atlassian products, Crucible is a Web-based application primarily aimed at the enterprise, and certain features that enable peer review of a codebase may be considered enterprise social software. Crucible is particularly tailored to distributed teams, and facilitates asynchronous review and commenting on code. Crucible also integrates with popular source control tools, such as Git and Subversion. Crucible is not open source, but customers are allowed to view and modify the code for their own use.

share|improve this answer
Didn't OP say desktop not webbased? – Ira Baxter Apr 10 '11 at 3:56
@Ira-Baxter: Any collaborative tool needs to be networked -- this means generally "network-based". This is why all known such tools end up to be "web-based". Whether such a tool is "web-based" or "LAN-based" is only a matter of the specific network protocol being used. It is not clear what the OP understands by "desktop-based" – Dimitre Novatchev Apr 10 '11 at 4:01

Do you need desktop-based or just computer based? Check out Crucible:

http://www.atlassian.com/software/crucible/

alt text

share|improve this answer
5  
Crucible's good, but Review Board is free/OSS. review-board.org – Sam Post Mar 30 '10 at 3:36
1  
@Sam Post, thanks for sharing, but not everyone things free/OSS is better. I generally prefer to use commercial software when available. – Samuel Neff Mar 30 '10 at 3:38
1  
There's also Kiln from the Joel on Software camp, although it's likely only relevant if you also want to switch SCM to Mercurial. – Morten Mertner Mar 30 '10 at 3:56
unfortunately that looks like it's web-based – omouse Mar 30 '10 at 4:28
1  
crucible is great, you can click on a line of code and add comments and everyone in the review can add comments too, I use it and really ahppy with it – Miau Mar 30 '10 at 16:23
show 1 more comment

I am not sure if you want to review Java code or .Net etc as these static code tools are dependent on the language constructs/principles/grammar/spec etc.

Identify Bug Patterns etc

Cyclomatic comlexity

Coupling and Cohesion

Coding Standards

Test Coverage Tools

Here you can find more comparisons if you want more details

Most of these tools can run on desktop either as standalone or as eclipse/IDEA (or similar IDE for .Net) plug-ins. They also can be integrated into your build process. Most of them also overlap on the functionalities they provide.

share|improve this answer
1  
static analysis != peer code review – Ben Voigt Apr 9 '11 at 2:56

Not the answer you're looking for? Browse other questions tagged or ask your own question.