| SVN-Hooks documentation | Contained in the SVN-Hooks distribution. |
SVN::Hooks - A framework for implementing Subversion hooks.
Version 0.90
A single script can implement several hooks:
#!/usr/bin/perl
use SVN::Hooks;
START_COMMIT {
my ($repo_path, $username, $capabilities) = @_;
# ...
}
PRE_COMMIT {
my ($svnlook) = @_;
# ...
}
run_hook($0, @ARGV);
Or you can use already implemented hooks via plugins:
#!/usr/bin/perl use SVN::Hooks; use SVN::Hooks::DenyFilenames; use SVN::Hooks::DenyChanges; use SVN::Hooks::CheckProperty; ... run_hook($0, @ARGV);
In order to really understand what this is all about you need to understand Subversion http://subversion.tigris.org/ and its hooks http://svnbook.red-bean.com/nightly/en/svn.reposadmin.create.html#svn.reposadmin.create.hooks.
Subversion is a version control system, and as such it is used to keep historical revisions of files and directories. Each revision maintains information about all the changes introduced since the previous one: date, author, log message, files changed, files renamed, etc.
Subversion uses a client/server model. The server maintains the repository, which is the database containing all the historical information we talked about above. Users use a Subversion client tool to query and change the repository but also to maintain one or more working areas. A working area is a directory in the user machine containing a copy of a particular revision of the repository. The user can use the client tool to make all sorts of changes in his working area and to "commit" them all in an atomic operation that bumps the repository to a new revision.
A hook is a specifically named program that is called by the
Subversion server during the execution of some operations. There are
exactly nine hooks which must reside under the conf directory in
the repository. When you create a new repository, you get nine
template files in this directory, all of them having the .tmpl
suffix and helpful instructions inside explaining how to convert them
into working hooks.
When Subversion is performing a commit operation on behalf of a
client, for example, it calls the start-commit hook, then the
pre-commit hook, and then the post-commit hook. The first two
can gather all sorts of information about the specific commit
transaction being performed and decide to reject it in case it doesn't
comply to specified policies. The post-commit can be used to log or
alert interested parties about the commit just done.
There are several useful hook scripts available elsewhere http://svn.apache.org/repos/asf/subversion/trunk/contrib/hook-scripts/, mainly for those three associated with the commit operation. However, when you try to combine the functionality of two or more of those scripts in a single hook you normally end up facing two problems.
In order to integrate the funcionality of more than one script you have to write a driver script that's called by Subversion and calls all the other scripts in order, passing to them the arguments they need. Moreover, some of those scripts may have configuration files to read and you may have to maintain several of them.
This arrangement is inefficient in two ways. First because each script
runs as a separate process, which usually have a high startup cost
because they are, well, scripts and not binaries. And second, because
as each script is called in turn they have no memory of the scripts
called before and have to gather the information about the transaction
again and again, normally by calling the svnlook command, which
spawns yet another process.
SVN::Hooks is a framework for implementing Subversion hooks that tries to solve these problems.
Instead of having separate scripts implementing different functionality you have a single script implementing all the funcionality you need either directly or using some of the existing plugins, which are implemented by Perl modules in the SVN::Hooks:: namespace. This single script can be used to implement all nine standard hooks, because each hook knows when to perform based on the context in which the script was called.
In the Subversion server, go to the hooks directory under the
directory where the repository was created. You should see there the
nine hook templates. Create a script there using the SVN::Hooks module.
$ cd /path/to/repo/hooks $ cat >svn-hooks.pl <<END_OF_SCRIPT #!/usr/bin/perl use SVN::Hooks; run_hook($0, @ARGV); END_OF_SCRIPT $ chmod +x svn-hooks.pl
This script will serve for any hook. Create symbolic links pointing to it for each hook you are interested in. (You may create symbolic links for all nine hooks, but this will make Subversion call the script for all hooked operations, even for those that you may not be interested in. Nothing wrong will happen, but the server will be doing extra work for nothing.)
$ ln -s svn-hooks.pl start-commit $ ln -s svn-hooks.pl pre-commit $ ln -s svn-hooks.pl post-commit $ ln -s svn-hooks.pl pre-revprop-change
As is the script won't do anything. You have to implement some hooks or
use some of the existing ones implemented as plugins. Either way, the
script should end with a call to run_hooks passing to it the name
with which it wass called ($0) and all the arguments it received
(@ARGV).
Implement hooks using one of the nine hook directives below. Each
one of them get a single block (anonymous function) as argument. The
block will be called by run_hook with proper arguments, as
indicated below. These arguments are the ones gotten from @ARGV, with
the exception of the ones identified by SVN::Look. These are
SVN::Look objects which can be used to grok detailed information about
the repository and the current transaction. (Please, refer to the
SVN::Look documentation to know how to use it.)
This is an example of a script implementing two hooks:
#!/usr/bin/perl
use SVN::Hooks;
# ...
START_COMMIT {
my ($repos_path, $username, $capabilities) = @_;
exists $committers{$username}
or die "User '$username' is not allowed to commit.\n";
$capabilities =~ /mergeinfo/
or die "Your Subversion client does not support mergeinfo capability.\n";
};
PRE_COMMIT {
my ($svnlook) = @_;
foreach my $added ($svnlook->added()) {
$added !~ /\.(exe|o|jar|zip)$/
or die "Please, don't commit binary files such as '$added'.\n";
}
};
run_hook($0, @ARGV);
Note that the hook directives resemble function definitions but they're not. They are function calls, and as such must end with a semi-colon.
Most of the start-commit and pre-* hooks are used to check some
condition. If the condition holds, they must simply end without
returning anything. Otherwise, they must die with a suitable error
message.
Also note that each hook directive can be called more than once if you need to implement more than one specific hook.
There are several hooks already implemented as plugin modules under
the namespace SVN::Hooks::, which you can use. The main ones are
described succinctly below. Please, see their own documentation for
more details.
Allow only specified users make changes in revision properties.
Check if the Subversion client implements the required capabilities.
Integrate Subversion with the JIRA http://www.atlassian.com/software/jira/ ticketing system.
Check if the log message in a commit conforms to a Regexp.
Check if the files added to the repository have the svn:mime-type
property set. Moreover, for text files, check if the properties
svn:eol-style and svn:keywords are also set.
Check for specific properties for specific kinds of files.
Check if the files and directories being added to the repository conform to a specific structure.
Deny the addition, modification, or deletion of specific files and
directories in the repository. Usually used to deny modifications in
the tags directory.
Deny the addition of files which file names doesn't comply with a Regexp. Usually used to disallow some characteres in the filenames.
Sends notification emails after successful commits.
Allows you to maintain Subversion configuration files versioned in the same repository where they are used. Usually used to maintain the configuration file for the hooks and the repository access control file.
This is an example of a script using some plugins:
#!/usr/bin/perl use SVN::Hooks; use SVN::Hooks::CheckProperty; use SVN::Hooks::DenyChanges; use SVN::Hooks::DenyFilenames; # Accept only letters, digits, underlines, periods, and hifens DENY_FILENAMES(qr/[^-\/\.\w]/i); # Disallow modifications in the tags directory DENY_UPDATE(qr:^tags:); # OpenOffice.org documents need locks CHECK_PROPERTY(qr/\.(?:od[bcfgimpst]|ot[ghpst])$/i => 'svn:needs-lock'); run_hook($0, @ARGV);
Those directives are implemented and exported by the hooks. Note that using hooks you don't need to be explicit about which one of the nine hooks will be triggered by the directives. This is on purpose, because some plugins can trigger more than one hook. The plugin documentation should tell you which hooks can be triggered so that you know which symbolic links you need to create in the hooks repository directory.
Before calling the hooks, the function run_hook evaluates a file
called svn-hooks.conf under the conf directory in the
repository, if it exists. Hence, you can choose to put all the
directives in this file and not in the script under the hooks
directory.
The advantage of this is that you can then manage the configuration
file with the SVN::Hooks::UpdateConfFile and have it versioned
under the same repository that it controls.
One way to do this is to use this hook script:
#!/usr/bin/perl use SVN::Hooks; use SVN::Hooks::UpdateConfFile; use ... UPDATE_CONF_FILE( 'conf/svn-hooks.conf' => 'svn-hooks.conf', validator => [qw(/usr/bin/perl -c)], rotate => 2, ); run_hook($0, @ARGV);
Use this hook script and create a directory called conf at the root
of the repository (besides the common trunk, branches, and
tags directories). Add the svn-hooks.conf file under the conf
directory. Then, whenever you commit a new version of the file, the
pre-commit hook will validate it sintactically (/usr/bin/perl -c)
and copy its new version to the conf/svn-hooks.conf file in the
repository. (Read the SVN::Hooks::UpdateConfFile documentation to
understand it in details.)
Being a Perl script, it's possible to get fancy with the configuration file, using variables, functions, and whatever. But for most purposes it consists just in a series of configuration directives.
Don't forget to end it with the 1; statement, though, because it's
evaluated with a do statement and needs to end with a true
expression.
Please, see the plugins documentation to know about the directives.
Yet to do.
This is responsible to invoke the right plugins depending on the context in which it was called.
Its first argument must be the name of the hook that was
called. Usually you just pass $0 to it, since it knows to extract
the basename of the parameter.
Its second argument must be the path to the directory where the repository was created.
The remaining arguments depend on the hook for which it's being called, like this:
But as these are exactly the arguments Subversion passes when it calls
the hooks, you usually call run_hook like this:
run_hook($0, @ARGV);
Gustavo Chaves, <gnustavo@cpan.org>
Please report any bugs or feature requests to bug-svn-hooks at
rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SVN-Hooks. I will
be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc SVN::Hooks
You can also look for information at:
Copyright 2008-2009 CPqD, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| SVN-Hooks documentation | Contained in the SVN-Hooks distribution. |
package SVN::Hooks; use warnings; use strict; use File::Basename; use SVN::Look; use Exporter qw/import/; our @EXPORT = qw/run_hook POST_COMMIT POST_LOCK POST_REVPROP_CHANGE POST_UNLOCK PRE_COMMIT PRE_LOCK PRE_REVPROP_CHANGE PRE_UNLOCK START_COMMIT/;
our $VERSION = '0.90'; our @Conf_Files = ('conf/svn-hooks.conf'); our $Repo = undef; our %Hooks = (); sub run_hook { my ($hook_name, $repo_path, @args) = @_; $hook_name = basename $hook_name; -d $repo_path or die "not a directory ($repo_path): $_\n"; $Repo = $repo_path; # Reload all configuration files foreach my $conf (@Conf_Files) { package main; unless (my $return = do "$Repo/$conf") { die "couldn't parse '$Repo/$conf': $@\n" if $@; die "couldn't do '$Repo/$conf': $!\n" unless defined $return; die "couldn't run '$Repo/$conf'\n" unless $return; } } # Substitute a SVN::Look object for the first argument # in the hooks where this makes sense. if ($hook_name eq 'pre-commit') { # The next arg is a transaction number $repo_path = SVN::Look->new($repo_path, '-t' => $args[0]); } elsif ($hook_name =~ /^(?:post-commit|(?:pre|post)-revprop-change)$/) { # The next arg is a revision number $repo_path = SVN::Look->new($repo_path, '-r' => $args[0]); } foreach my $hook (values %{$Hooks{$hook_name}}) { if (ref $hook eq 'CODE') { $hook->($repo_path, @args); } elsif (ref $hook eq 'ARRAY') { foreach my $h (@$hook) { $h->($repo_path, @args); } } else { die "SVN::Hooks: internal error!\n"; } } return; } # post-commit(SVN::Look) sub POST_COMMIT (&) { my ($hook) = @_; $Hooks{'post-commit'}{$hook} ||= sub { $hook->(@_); }; } # post-lock(repos-path, username) sub POST_LOCK (&) { my ($hook) = @_; $Hooks{'post-lock'}{$hook} ||= sub { $hook->(@_); }; } # post-revprop-change(SVN::Look, username, property-name, action) sub POST_REVPROP_CHANGE (&) { my ($hook) = @_; $Hooks{'post-revprop-change'}{$hook} ||= sub { $hook->(@_); }; } # post-unlock(repos-path, username) sub POST_UNLOCK (&) { my ($hook) = @_; $Hooks{'post-unlock'}{$hook} ||= sub { $hook->(@_); }; } # pre-commit(SVN::Look) sub PRE_COMMIT (&) { my ($hook) = @_; $Hooks{'pre-commit'}{$hook} ||= sub { $hook->(@_); }; } # pre-lock(repos-path, path, username, comment, steal-lock-flag) sub PRE_LOCK (&) { my ($hook) = @_; $Hooks{'pre-lock'}{$hook} ||= sub { $hook->(@_); }; } # pre-revprop-change(SVN::Look, username, property-name, action) sub PRE_REVPROP_CHANGE (&) { my ($hook) = @_; $Hooks{'pre-revprop-change'}{$hook} ||= sub { $hook->(@_); }; } # pre-unlock(repos-path, path, username, lock-token, break-unlock-flag) sub PRE_UNLOCK (&) { my ($hook) = @_; $Hooks{'pre-unlock'}{$hook} ||= sub { $hook->(@_); }; } # start-commit(repos-path, username, capabilities) sub START_COMMIT (&) { my ($hook) = @_; $Hooks{'start-commit'}{$hook} ||= sub { $hook->(@_); }; } 1; # End of SVN::Hooks __END__