blob: 80812b457aae4d3212c81cd1f741251f1704be2a [file] [log] [blame]
Stefan Taunerec7a35f2013-08-29 00:38:14 +00001#!/bin/sh
Stefan Tauner8eb1df62017-10-01 16:45:49 +02002# NB: Supposed to be POSIX compatible but at least the usage of 'local' is not.
David Hendricks36e9f4b2013-08-14 14:47:26 +00003#
4# This file is part of the flashrom project.
5#
6# Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de>
7# Copyright (C) 2009,2010 Carl-Daniel Hailfinger
8# Copyright (C) 2010 Chromium OS Authors
Stefan Tauner76347082016-11-27 17:45:49 +01009# Copyright (C) 2013-2016 Stefan Tauner
David Hendricks36e9f4b2013-08-14 14:47:26 +000010#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24#
25
26EXIT_SUCCESS=0
27EXIT_FAILURE=1
28
Joerg Mayerd31d3c32013-08-17 23:58:01 +000029# Make sure we don't get translated output
30export LC_ALL=C
Stefan Taunerec7a35f2013-08-29 00:38:14 +000031# nor local times or dates
32export TZ=UTC0
Joerg Mayerd31d3c32013-08-17 23:58:01 +000033
Stefan Taunerec7a35f2013-08-29 00:38:14 +000034# Helper functions
Stefan Tauner76347082016-11-27 17:45:49 +010035# First argument is the path to inspect (usually optional; without
36# it the whole repository will be considered)
Stefan Taunerec7a35f2013-08-29 00:38:14 +000037git_has_local_changes() {
38 git update-index -q --refresh >/dev/null
39 ! git diff-index --quiet HEAD -- "$1"
David Hendricks36e9f4b2013-08-14 14:47:26 +000040}
41
Stefan Taunerec7a35f2013-08-29 00:38:14 +000042git_last_commit() {
Stefan Tauner76347082016-11-27 17:45:49 +010043 # git rev-parse --short HEAD would suffice if repository as a whole is of interest (no $1)
Stefan Taunerec7a35f2013-08-29 00:38:14 +000044 git log --pretty=format:"%h" -1 -- "$1"
David Hendricks36e9f4b2013-08-14 14:47:26 +000045}
46
Stefan Taunerec7a35f2013-08-29 00:38:14 +000047git_is_file_tracked() {
48 git ls-files --error-unmatch -- "$1" >/dev/null 2>&1
David Hendricks36e9f4b2013-08-14 14:47:26 +000049}
50
Stefan Taunerec7a35f2013-08-29 00:38:14 +000051is_file_tracked() {
Stefan Tauner76347082016-11-27 17:45:49 +010052 git_is_file_tracked "$1"
David Hendricks36e9f4b2013-08-14 14:47:26 +000053}
54
Stefan Taunerec7a35f2013-08-29 00:38:14 +000055# Tries to find a remote source for the changes committed locally.
56# This includes the URL of the remote repository including the last commit and a suitable branch name.
57# Takes one optional argument: the path to inspect
David Hendricks36e9f4b2013-08-14 14:47:26 +000058git_url() {
Stefan Taunerec7a35f2013-08-29 00:38:14 +000059 last_commit=$(git_last_commit "$1")
Stefan Tauner76347082016-11-27 17:45:49 +010060 # get all remote branches containing the last commit (excluding origin/HEAD)
Stefan Taunerec7a35f2013-08-29 00:38:14 +000061 branches=$(git branch -r --contains $last_commit | sed '/\//!d;/.*->.*/d;s/[\t ]*//')
62 if [ -z "$branches" ] ; then
63 echo "No remote branch contains a suitable commit">&2
64 return
65 fi
66
67 # find "nearest" branch
68 local mindiff=9000
69 local target=
70 for branch in $branches ; do
71 curdiff=$(git rev-list --count $last_commit..$branch)
72 if [ $curdiff -ge $mindiff ] ; then
73 continue
74 fi
75 mindiff=$curdiff
76 target=$branch
77 done
78
79 echo "$(git ls-remote --exit-code --get-url ${target%/*}) ${target#*/}"
David Hendricks36e9f4b2013-08-14 14:47:26 +000080}
81
Stefan Tauner8eb1df62017-10-01 16:45:49 +020082# Returns a string indicating where others can get the current source code (excluding uncommitted changes).
Stefan Taunerec7a35f2013-08-29 00:38:14 +000083# Takes one optional argument: the path to inspect
David Hendricks36e9f4b2013-08-14 14:47:26 +000084scm_url() {
Stefan Taunerec7a35f2013-08-29 00:38:14 +000085 local url=
David Hendricks36e9f4b2013-08-14 14:47:26 +000086
Stefan Tauner76347082016-11-27 17:45:49 +010087 if git_is_file_tracked "$1" ; then
Stefan Taunerec7a35f2013-08-29 00:38:14 +000088 url="$(git_url "$1")"
89 else
90 return ${EXIT_FAILURE}
David Hendricks36e9f4b2013-08-14 14:47:26 +000091 fi
92
93 echo "${url}"
94}
95
96# Retrieve timestamp since last modification. If the sources are pristine,
Stefan Taunerec7a35f2013-08-29 00:38:14 +000097# then the timestamp will match that of the SCM's most recent modification
David Hendricks36e9f4b2013-08-14 14:47:26 +000098# date.
99timestamp() {
100 local t
101
Stefan Taunerc65b8552013-09-12 15:48:39 +0000102 # date syntaxes are manifold:
103 # gnu date [-d input]... [+FORMAT]
104 # netbsd date [-ajnu] [-d date] [-r seconds] [+format] [[[[[[CC]yy]mm]dd]HH]MM[.SS]]
105 # freebsd date [-jnu] [-d dst] [-r seconds] [-f fmt date | [[[[[cc]yy]mm]dd]HH]MM[.ss]] [+format] [...]
106 # dragonflybsd date [-jnu] [-d dst] [-r seconds] [-f fmt date | [[[[[cc]yy]mm]dd]HH]MM[.ss]] [+format] [...]
107 # openbsd date [-aju] [-d dst] [-r seconds] [+format] [[[[[[cc]yy]mm]dd]HH]MM[.SS]] [...]
Stefan Tauner76347082016-11-27 17:45:49 +0100108 if git_is_file_tracked "$2" ; then
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000109 # are there local changes?
110 if git_has_local_changes "$2" ; then
111 t=$(date -u "${1}")
112 else
113 # No local changes, get date of the last commit
Stefan Taunerc65b8552013-09-12 15:48:39 +0000114 case $(uname) in
115 # Most BSD dates do not support parsing date values from user input with -d but all of
116 # them support parsing epoch seconds with -r. Thanks to git we can easily use that:
117 NetBSD|OpenBSD|DragonFly|FreeBSD)
118 t=$(date -u -r "$(git log --pretty=format:%ct -1 -- $2)" "$1" 2>/dev/null);;
119 *)
120 t=$(date -d "$(git log --pretty=format:%cD -1 -- $2)" -u "$1" 2>/dev/null);;
121 esac
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000122 fi
123 else
124 t=$(date -u "$1")
David Hendricks36e9f4b2013-08-14 14:47:26 +0000125 fi
126
Stefan Taunerc65b8552013-09-12 15:48:39 +0000127 if [ -z "$t" ]; then
128 echo "Warning: Could not determine timestamp." 2>/dev/null
129 fi
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000130 echo "${t}"
David Hendricks36e9f4b2013-08-14 14:47:26 +0000131}
132
Stefan Tauner5bf6b852017-10-04 03:46:51 +0200133revision() {
Stefan Tauner96209122017-10-01 16:41:35 +0200134 local r
Stefan Tauner76347082016-11-27 17:45:49 +0100135 if git_is_file_tracked "$1" ; then
Stefan Tauner96209122017-10-01 16:41:35 +0200136 r=$(git describe $(git_last_commit "$1"))
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000137 if git_has_local_changes "$1" ; then
138 r="$r-dirty"
139 fi
140 else
Stefan Tauner96209122017-10-01 16:41:35 +0200141 r="unknown"
David Hendricks36e9f4b2013-08-14 14:47:26 +0000142 fi
143
144 echo "${r}"
145}
146
Stefan Taunerd5ff8452015-01-10 09:32:07 +0000147is_tracked() {
148 is_file_tracked "$1"
149}
150
David Hendricks36e9f4b2013-08-14 14:47:26 +0000151show_help() {
152 echo "Usage:
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000153 ${0} <command> [path]
David Hendricks36e9f4b2013-08-14 14:47:26 +0000154
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000155Commands
David Hendricks36e9f4b2013-08-14 14:47:26 +0000156 -h or --help
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000157 this message
Stefan Taunerd5ff8452015-01-10 09:32:07 +0000158 -c or --check
159 test if path is under version control at all
Stefan Tauner5bf6b852017-10-04 03:46:51 +0200160 -r or --revision
161 return unique revision information including an indicator for
162 uncommitted changes
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000163 -U or --url
164 URL associated with the latest commit
165 -d or --date
166 date of most recent modification
David Hendricks36e9f4b2013-08-14 14:47:26 +0000167 -t or --timestamp
168 timestamp of most recent modification
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000169"
David Hendricks36e9f4b2013-08-14 14:47:26 +0000170 return
171}
172
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000173check_action() {
174 if [ -n "$action" ]; then
175 echo "Error: Multiple actions given.">&2
David Hendricks36e9f4b2013-08-14 14:47:26 +0000176 exit ${EXIT_FAILURE}
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000177 fi
178}
David Hendricks36e9f4b2013-08-14 14:47:26 +0000179
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000180main() {
181 local query_path=
182 local action=
183
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000184 # Argument parser loop
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000185 while [ $# -gt 0 ];
186 do
187 case ${1} in
188 -h|--help)
189 action=show_help;
190 shift;;
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000191 -U|--url)
192 check_action $1
193 action=scm_url
194 shift;;
195 -d|--date)
196 check_action $1
197 action="timestamp +%Y-%m-%d" # refrain from suffixing 'Z' to indicate it's UTC
198 shift;;
Stefan Tauner5bf6b852017-10-04 03:46:51 +0200199 -r|--revision)
200 check_action $1
201 action=revision
202 shift;;
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000203 -t|--timestamp)
204 check_action $1
205 action="timestamp +%Y-%m-%dT%H:%M:%SZ" # There is only one valid time format! ISO 8601
206 shift;;
Stefan Taunerd5ff8452015-01-10 09:32:07 +0000207 -c|--check)
Stefan Tauner76347082016-11-27 17:45:49 +0100208 check_action $1
209 action=is_tracked
Stefan Taunerd5ff8452015-01-10 09:32:07 +0000210 shift;;
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000211 -*)
212 show_help;
213 echo "Error: Invalid option: ${1}"
214 exit ${EXIT_FAILURE};;
215 *)
216 if [ -z "$query_path" ] ; then
217 if [ ! -e "$1" ] ; then
218 echo "Error: Path \"${1}\" does not exist.">&2
219 exit ${EXIT_FAILURE}
220 fi
221 query_path=$1
222 else
Stefan Taunerc2eec2c2014-05-03 21:33:01 +0000223 echo "Warning: Ignoring overabundant parameter: \"${1}\"">&2
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000224 fi
225 shift;;
226 esac;
227 done
228
229 # default to current directory (usually equals the whole repository)
230 if [ -z "$query_path" ] ; then
231 query_path=.
232 fi
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000233 if [ -z "$action" ] ; then
234 show_help
235 echo "Error: No actions specified"
236 exit ${EXIT_FAILURE}
237 fi
238
239 $action "$query_path"
240}
241
242main $@