getversion.sh 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. #!/bin/sh
  2. #
  3. # This file is part of the flashrom project.
  4. #
  5. # Copyright (C) 2009,2010 Carl-Daniel Hailfinger
  6. # Copyright (C) 2011 Chromium OS Authors
  7. #
  8. # This program is free software; you can redistribute it and/or modify
  9. # it under the terms of the GNU General Public License as published by
  10. # the Free Software Foundation; either version 2 of the License, or
  11. # (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU 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, write to the Free Software
  20. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  21. #
  22. # getversion.sh: Get version / revision info. Currently, only Git and Subversion
  23. # are supported.
  24. #
  25. # *_revision: Echo the latest source code revision (git hash or svn revision).
  26. #
  27. # *_server: Echo the server from where the source code was checked out.
  28. #
  29. # *_timestamp: Echo the timestamp of most recent modification. If the sources
  30. # are pristine, the timestamp will correspond to the most recently
  31. # committed change, expressed in UTC. If there are local
  32. # modifications, the timestamp will correspond to compilation
  33. # time and a '+' is added to denote uncommitted changes.
  34. #
  35. git_revision() {
  36. echo $(git log --pretty=format:'%h' -n 1)
  37. }
  38. git_server() {
  39. # Note: This may not work as expected if multiple remotes are fetched from.
  40. echo $(git remote -v | \
  41. awk '/fetch/ {split($2, pieces, "//"); print pieces[2]; exit 0}')
  42. }
  43. git_timestamp() {
  44. local date_format="+%b %d %Y %H:%M:%S"
  45. local timestamp
  46. # are there local changes in the client?
  47. if git status | \
  48. egrep '^# Change(s to be committed|d but not updated):$' > /dev/null
  49. then
  50. timestamp=$(date "${date_format} +")
  51. else
  52. # No local changes, get date of the last log record.
  53. timestamp=$(git log --pretty=format:'%ct' -n 1 | \
  54. awk '{print strftime("%b %d %Y %H:%M:%S UTC", $1, 1)}')
  55. fi
  56. echo "${timestamp}"
  57. }
  58. svn_revision() {
  59. local revision=""
  60. # Try both "svnversion" and "svn info"
  61. revision=$(LC_ALL=C svnversion -cn . 2>/dev/null | \
  62. sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]")
  63. if [ -z "${revision}" ]; then
  64. revision=$(LC_ALL=C svn info . 2>/dev/null | \
  65. awk '/^Revision:/ {print $2 }' | grep "[0-9]")
  66. fi
  67. # Prepend revision with 'r'
  68. echo "r${revision}"
  69. }
  70. svn_server() {
  71. echo $(LC_ALL=C svn info . 2>/dev/null | awk '/^URL:/ {print $2 }')
  72. }
  73. svn_timestamp() {
  74. local date_format="+%b %d %Y %H:%M:%S"
  75. local timestamp
  76. # Whitelist most of the characters that appear on the left of
  77. # "svn status" output, with the notable exceptions being '?' (Not
  78. # under version control) and 'X'(item is an externals definition)
  79. if [ -n "$(LC_ALL=C svn status . | grep '^ *[ADMRCI\!L+SKOTB\*].*')" ]; then
  80. timestamp=$(date "${date_format} +")
  81. else
  82. local last_commit_date=$(svn info . | \
  83. grep "Last Changed Date:" | awk '{print $4" "$5" "$6}')
  84. timestamp=$(date --utc --date "${last_commit_date}" "${date_format} UTC")
  85. fi
  86. echo "${timestamp}"
  87. }
  88. #
  89. # Determine which SCM we're using and choose the appropriate functions
  90. #
  91. IS_GIT=0
  92. IS_SVN=0
  93. if [ -d ".git" ]; then
  94. IS_GIT=1
  95. elif [ -d ".svn" ]; then
  96. IS_SVN=1
  97. fi
  98. get_revision() {
  99. if [ $IS_GIT -eq 1 ]; then
  100. echo "$(git_revision)"
  101. elif [ $IS_SVN -eq 1 ]; then
  102. echo "$(svn_revision)"
  103. fi
  104. }
  105. get_server() {
  106. if [ $IS_GIT -eq 1 ]; then
  107. echo "$(git_server)"
  108. elif [ $IS_SVN -eq 1 ]; then
  109. echo "$(svn_server)"
  110. fi
  111. }
  112. get_timestamp() {
  113. if [ $IS_GIT -eq 1 ]; then
  114. echo "$(git_timestamp)"
  115. elif [ $IS_SVN -eq 1 ]; then
  116. echo "$(svn_timestamp)"
  117. fi
  118. }
  119. show_help() {
  120. echo "Usage: getversion.sh <options>"
  121. echo ""
  122. echo "Options:"
  123. echo -e "\t-r | --revision Revision (SVN), commit hash (Git)"
  124. echo -e "\t-s | --server Upstream server"
  125. echo -e "\t-t | --timestamp UTC timestamp of most recent modification"
  126. }
  127. if [ -z "$*" ]; then
  128. # default action: print "<revision> : <server> : <timestamp>"
  129. echo "${0}: Using default parameters" >&2
  130. echo "$(get_server) : $(get_revision) : $(get_timestamp)"
  131. else
  132. for ARG in $@; do
  133. case ${ARG} in
  134. -h|--help)
  135. show_help;
  136. shift;;
  137. -r|--revision)
  138. echo "$(get_revision)"
  139. shift;;
  140. -s|--server)
  141. echo "$(get_server)"
  142. shift;;
  143. -t|--timestamp)
  144. echo "$(get_timestamp)"
  145. shift;;
  146. esac;
  147. done
  148. fi