Reputation: 4787
I'd like to implement a way of recording the version of a project within code, so that it can be used when testing and to help track bugs. It seems the best version number to use would just be the current revision number from Subversion. Is there an easy way to hook this number into a (C++ in my case) header file or something, which I can then get at in code? I guess this is a post commit hook or something?
Does anyone have any experience of implementing this (with code to share, please?), or can suggest a better alternative? Thanks.
Upvotes: 41
Views: 49561
Reputation: 233
Adding the following to the top of the file should do the trick
[Subversion]
Revision = "$Revision: $"
Author = "$Author: $"
Date = "$Date: $"
HeadURL = "$HeadURL: $"
Upvotes: 0
Reputation: 23
A good up-to-date solution:
Create a Makefile
containing the following line (in the same folder as YourFile.dox
):
sed "s~RevNumber~$(shell svnversion ../)~g" YourFile.dox > YourFileDummy.dox; doxygen YourFileDummy.dox
And YourFile.dox
should contain this:
...
PROJECT_NUMBER = "Revision RevNumber"
...
Now:
sed
replaces RevNumber
in the .dox with the output of svnversion
(executed in the main folder of your repository) and saves the modified file to YourFileDummy.dox
doxygen
is executed on YourFileDummy.dox
to generate the documentationUpvotes: 0
Reputation: 476
in your Makefile, add:
SVNDEV := -D'SVN_REV="$(shell svnversion -n .)"'
CFLAGS := $(SVNDEV) ...
then you can use macro SVN_REV
anywhere in your code, eg:
printf ("Version: SVN %s\n", SVN_REV);
Upvotes: 7
Reputation: 11822
You can also use SubWCRev which is part of TortoiseSVN.
SubWCRev is Windows console program which can be used to read the status of a Subversion working copy and optionally perform keyword substitution in a template file. This is often used as part of the build process as a means of incorporating working copy information into the object you are building. Typically it might be used to include the revision number in an “About” box.
http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-subwcrev.html
Upvotes: 14
Reputation: 48369
While nifty, the revision keyword trick only updates the file when it's changed in that revision - if you don't change the file, then it will continue to reflect the old revision.
If you want the software to always reflect the overall revision number, then you'll have to delve into the relevant SVN entries file and extract it, which isn't too difficult (it's an XML file).
Wikipedia does this on their version page to indicate the revision of the software that's running live; the code is here - look for the getSvnRevision() method.
Upvotes: 14
Reputation: 9478
Two ways:
Embed $Id$ or $Revision$ within the code. Then set svn:keywords="Id Revision" property on the file. This will give you the last modified revision of that source file. Good for smaller projects and scripts.
Alternatively, use a Makefile driven process and the command line tool svnversion. (Language specific - this should work for C/C++)
echo -n "#define VERSION 1.0.1-" > version.h
svnversion -n . >> version.h
Or some more complex build script with sed and version.h.in. Then just #include version.h
That will give you the repository version number, which will change with every commit / update, and is probably a more appropriate version number for most projects.
Note: I also used a human readable version string that I manually update. The example would give: Version: 1.0.1-r13445
~J
Upvotes: 27
Reputation: 36120
You can use the svn:keywords
property to enable the Rev
keyword.
You can then use $Rev$
in your code and SVN will expand it automatically when updating to $Rev: 256 $
which can then parse...
More info on the Subversion manual
Upvotes: 5