hooks.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. # hooks.py -- for dealing with git hooks
  2. # Copyright (C) 2012-2013 Jelmer Vernooij and others.
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License
  6. # as published by the Free Software Foundation; version 2
  7. # of the License or (at your option) a later version of the License.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  17. # MA 02110-1301, USA.
  18. """Access to hooks."""
  19. import os
  20. import subprocess
  21. import tempfile
  22. from dulwich.errors import (
  23. HookError,
  24. )
  25. class Hook(object):
  26. """Generic hook object."""
  27. def execute(self, *args):
  28. """Execute the hook with the given args
  29. :param args: argument list to hook
  30. :raise HookError: hook execution failure
  31. :return: a hook may return a useful value
  32. """
  33. raise NotImplementedError(self.execute)
  34. class ShellHook(Hook):
  35. """Hook by executable file
  36. Implements standard githooks(5) [0]:
  37. [0] http://www.kernel.org/pub/software/scm/git/docs/githooks.html
  38. """
  39. def __init__(self, name, path, numparam,
  40. pre_exec_callback=None, post_exec_callback=None):
  41. """Setup shell hook definition
  42. :param name: name of hook for error messages
  43. :param path: absolute path to executable file
  44. :param numparam: number of requirements parameters
  45. :param pre_exec_callback: closure for setup before execution
  46. Defaults to None. Takes in the variable argument list from the
  47. execute functions and returns a modified argument list for the
  48. shell hook.
  49. :param post_exec_callback: closure for cleanup after execution
  50. Defaults to None. Takes in a boolean for hook success and the
  51. modified argument list and returns the final hook return value
  52. if applicable
  53. """
  54. self.name = name
  55. self.filepath = path
  56. self.numparam = numparam
  57. self.pre_exec_callback = pre_exec_callback
  58. self.post_exec_callback = post_exec_callback
  59. def execute(self, *args):
  60. """Execute the hook with given args"""
  61. if len(args) != self.numparam:
  62. raise HookError("Hook %s executed with wrong number of args. \
  63. Expected %d. Saw %d. %s"
  64. % (self.name, self.numparam, len(args)))
  65. if (self.pre_exec_callback is not None):
  66. args = self.pre_exec_callback(*args)
  67. try:
  68. ret = subprocess.call([self.filepath] + list(args))
  69. if ret != 0:
  70. if (self.post_exec_callback is not None):
  71. self.post_exec_callback(0, *args)
  72. raise HookError("Hook %s exited with non-zero status"
  73. % (self.name))
  74. if (self.post_exec_callback is not None):
  75. return self.post_exec_callback(1, *args)
  76. except OSError: # no file. silent failure.
  77. if (self.post_exec_callback is not None):
  78. self.post_exec_callback(0, *args)
  79. class PreCommitShellHook(ShellHook):
  80. """pre-commit shell hook"""
  81. def __init__(self, controldir):
  82. filepath = os.path.join(controldir, 'hooks', 'pre-commit')
  83. ShellHook.__init__(self, 'pre-commit', filepath, 0)
  84. class PostCommitShellHook(ShellHook):
  85. """post-commit shell hook"""
  86. def __init__(self, controldir):
  87. filepath = os.path.join(controldir, 'hooks', 'post-commit')
  88. ShellHook.__init__(self, 'post-commit', filepath, 0)
  89. class CommitMsgShellHook(ShellHook):
  90. """commit-msg shell hook
  91. :param args[0]: commit message
  92. :return: new commit message or None
  93. """
  94. def __init__(self, controldir):
  95. filepath = os.path.join(controldir, 'hooks', 'commit-msg')
  96. def prepare_msg(*args):
  97. (fd, path) = tempfile.mkstemp()
  98. f = os.fdopen(fd, 'wb')
  99. try:
  100. f.write(args[0])
  101. finally:
  102. f.close()
  103. return (path,)
  104. def clean_msg(success, *args):
  105. if success:
  106. f = open(args[0], 'rb')
  107. try:
  108. new_msg = f.read()
  109. finally:
  110. f.close()
  111. os.unlink(args[0])
  112. return new_msg
  113. os.unlink(args[0])
  114. ShellHook.__init__(self, 'commit-msg', filepath, 1,
  115. prepare_msg, clean_msg)