3 # Part of Gerrit Code Review (http://code.google.com/p/gerrit/)
5 # Copyright (C) 2009 The Android Open Source Project
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 CHANGE_ID_AFTER
="Bug|Issue"
23 # Check for, and add if missing, a unique Change-Id
26 clean_message
=`sed -e '
33 ' "$MSG" | git stripspace`
34 if test -z "$clean_message"
39 # Does Change-Id: already exist? if so, exit (no change).
40 if grep -i '^Change-Id: I[0-9a-f]\{40\}$' "$MSG" >/dev
/null
48 if [ -x /usr
/xpg
4/bin
/awk ]; then
49 # Solaris AWK is just too broken
54 # - parse the commit message as (textLine+ blankLine*)*
55 # - assume textLine+ to be a footer until proven otherwise
56 # - exception: the first block is not footer (as it is the title)
57 # - read textLine+ into a variable
58 # - then count blankLines
59 # - once the next textLine appears, print textLine+ blankLine* as these
61 # - in END, the last textLine+ block is available for footer parsing
64 # while we start with the assumption that textLine+
65 # is a footer, the first block is not.
71 # Skip lines starting with "#" without any spaces before it.
74 # Skip the line starting with the diff command and everything after it,
75 # up to the end of the file, assuming it is only patch data.
76 # If more than one line before the diff was empty, strip all but one.
83 # Count blank lines outside footer comments
84 /^$/ && (footerComment == 0) {
89 # Catch footer comment
90 /^\[[a-zA-Z0-9-]+:/ && (isFooter == 1) {
94 /]$/ && (footerComment == 1) {
98 # We have a non-blank line after blank lines. Handle this.
101 for (i = 0; i < blankLines; i++) {
111 # Detect that the current block is not the footer
112 (footerComment == 0) && (!/^\[?[a-zA-Z0-9-]+:/ || /^[a-zA-Z0-9-]+:\/\//) {
117 # We need this information about the current last comment line
118 if (footerComment == 2) {
128 # If the last block is considered a footer, splice in the Change-Id at the
130 # Look for the right place to inject Change-Id by considering
131 # CHANGE_ID_AFTER. Keys listed in it (case insensitive) come first,
132 # then Change-Id, then everything else (eg. Signed-off-by:).
134 # Otherwise just print the last block, a new line and the Change-Id as a
142 changeIdAfter = "^(" tolower("'"$CHANGE_ID_AFTER"'") "):"
143 numlines = split(lines, footer, "\n")
144 for (line = 1; line <= numlines; line++) {
145 if (unprinted && match(tolower(footer[line]), changeIdAfter) != 1) {
147 print "Change-Id: I'"$id"'"
152 print "Change-Id: I'"$id"'"
154 }' "$MSG" > $T && mv $T "$MSG" ||
rm -f $T
156 _gen_ChangeIdInput
() {
157 echo "tree `git write-tree`"
158 if parent
=`git rev-parse "HEAD^0" 2>/dev/null`
160 echo "parent $parent"
162 echo "author `git var GIT_AUTHOR_IDENT`"
163 echo "committer `git var GIT_COMMITTER_IDENT`"
165 printf '%s' "$clean_message"
169 git hash-object
-t commit
--stdin
172 if ! grep -qi '^[[:space:]]*\+Signed-off-by:' "$MSG"; then
173 printf "\nError: No Signed-off-by line in the commit message.\n"