blob: ed287e8b43d18b1137c3d1baa4c244154c2787ad [file] [log] [blame]
James E. Blair108c28f2011-09-09 08:56:58 -07001#!/bin/sh -e
2# Copyright (c) 2010-2011 Gluster, Inc. <http://www.gluster.com>
3# This initial version of this file was taken from the source tree
4# of GlusterFS. It was not directly attributed, but is assumed to be
5# Copyright (c) 2010-2011 Gluster, Inc and release GPLv3
6# Subsequent modifications are Copyright (c) 2011 OpenStack, LLC.
7#
8# GlusterFS is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published
10# by the Free Software Foundation; either version 3 of the License,
11# or (at your option) any later version.
12#
13# GlusterFS is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program. If not, see
20# <http://www.gnu.org/licenses/>.
21
22
23branch="master";
24
25set_hooks_commit_msg()
26{
27 top_dir=`git rev-parse --show-toplevel`
28 f="${top_dir}/.git/hooks/commit-msg";
29 u="https://review.openstack.org/tools/hooks/commit-msg";
30
31 if [ -x "$f" ]; then
32 return;
33 fi
34
35 curl -o $f $u || wget -O $f $u;
36
37 chmod +x $f;
38
39 GIT_EDITOR=true git commit --amend
40}
41
42add_remote()
43{
44 username=$1
45 project=$2
46
47 echo "No remote set, testing ssh://$username@review.openstack.org:29418"
48 if ssh -p29418 -o StrictHostKeyChecking=no $username@review.openstack.org gerrit ls-projects >/dev/null 2>&1
49 then
50 echo "$username@review.openstack.org:29418 worked."
51 echo "Creating a git remote called gerrit that maps to:"
52 echo " ssh://$username@review.openstack.org:29418/$project"
53 git remote add gerrit ssh://$username@review.openstack.org:29418/$project
54 return 0
55 fi
56 return 1
57}
58
59check_remote()
60{
61 if ! git remote | grep gerrit >/dev/null 2>&1
62 then
63 origin_project=`git remote show origin | grep 'Fetch URL' | perl -nle '@fields = split(m|[:/]|); $len = $#fields; print $fields[$len-1], "/", $fields[$len];'`
64 if add_remote $USERNAME $origin_project
65 then
66 return 0
67 else
68 echo "Your local name doesn't work on Gerrit."
69 echo -n "Enter Gerrit username (same as launchpad): "
70 read gerrit_user
71 if add_remote $gerrit_user $origin_project
72 then
73 return 0
74 else
75 echo "Can't infer where gerrit is - please set a remote named"
76 echo "gerrit manually and then try again."
77 echo
78 echo "For more information, please see:"
79 echo "\thttp://wiki.openstack.org/GerritWorkflow"
80 exit 1
81 fi
82 fi
83 fi
84}
85
86rebase_changes()
87{
88 git fetch;
89
90 GIT_EDITOR=true git rebase -i origin/$branch || exit $?;
91}
92
93
94assert_diverge()
95{
96 if ! git diff origin/$branch..HEAD | grep -q .
97 then
98 echo "No changes between the current branch and origin/$branch."
99 exit 1
100 fi
101}
102
103
104main()
105{
106 set_hooks_commit_msg;
107
108 check_remote;
109
110 rebase_changes;
111
112 assert_diverge;
113
114 bug=$(git show --format='%s %b' | perl -nle 'if (/\b([Bb]ug|[Ll][Pp])\s*[#:]?\s*(\d+)/) {print "$2"; exit}')
115
116 bp=$(git show --format='%s %b' | perl -nle 'if (/\b([Bb]lue[Pp]rint|[Bb][Pp])\s*[#:]?\s*([0-9a-zA-Z-_]+)/) {print "$2"; exit}')
117
118 if [ "$DRY_RUN" = 1 ]; then
119 drier='echo -e Please use the following command to send your commits to review:\n\n'
120 else
121 drier=
122 fi
123
124 local_branch=`git branch | grep -Ei "\* (.*)" | cut -f2 -d' '`
125 if [ -z "$bug" ]; then
126 if [ -z "$bp" ]; then
127 $drier git push gerrit HEAD:refs/for/$branch/$local_branch;
128 else
129 $drier git push gerrit HEAD:refs/for/$branch/bp/$bp;
130 fi
131 else
132 $drier git push gerrit HEAD:refs/for/$branch/bug/$bug;
133 fi
134}
135
136main "$@"