/hbase-common/src/saveVersion.sh

http://github.com/apache/hbase · Shell · 142 lines · 118 code · 7 blank · 17 comment · 7 complexity · cef255d7f8a58d09416a3494596bce7a MD5 · raw file

  1. #!/usr/bin/env bash
  2. # This file is used to generate the annotation of package info that
  3. # records the user, url, revision and timestamp.
  4. # Licensed to the Apache Software Foundation (ASF) under one or more
  5. # contributor license agreements. See the NOTICE file distributed with
  6. # this work for additional information regarding copyright ownership.
  7. # The ASF licenses this file to You under the Apache License, Version 2.0
  8. # (the "License"); you may not use this file except in compliance with
  9. # the License. You may obtain a copy of the License at
  10. #
  11. # http://www.apache.org/licenses/LICENSE-2.0
  12. #
  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.
  18. set -e
  19. unset LANG
  20. unset LC_CTYPE
  21. version=$1
  22. javaOutputDirectory="$2/java/"
  23. nativeOutputDirectory="$2/native/utils/"
  24. pushd .
  25. cd ..
  26. user=$(whoami | sed -n -e "s/\\\/\\\\\\\\/p")
  27. if [ "$user" == "" ]
  28. then
  29. user=$(whoami)
  30. fi
  31. date=$(date)
  32. cwd=$(pwd)
  33. if [ -d .svn ]; then
  34. revision=$( (svn info | sed -n -e "s/Last Changed Rev: \(.*\)/\1/p") || true)
  35. url=$( (svn info | sed -n -e 's/^URL: \(.*\)/\1/p') || true)
  36. elif [ -d .git ]; then
  37. revision=$(git log -1 --no-show-signature --pretty=format:"%H" || true)
  38. hostname=$(hostname)
  39. url="git://${hostname}${cwd}"
  40. fi
  41. if [ -z "${revision}" ]; then
  42. echo "[WARN] revision info is empty! either we're not in VCS or VCS commands failed." >&2
  43. revision="Unknown"
  44. url="file://$cwd"
  45. fi
  46. if ! [ -x "$(command -v openssl)" ]; then
  47. if ! [ -x "$(command -v gpg)" ]; then
  48. srcChecksum="Unknown"
  49. else
  50. srcChecksum=$(find hbase-*/src/main/ | grep -e "\.java" -e "\.proto" | LC_ALL=C sort | xargs gpg --print-md sha512 | gpg --print-md sha512 | tr '\n' ' ' | sed 's/[[:space:]]*//g')
  51. fi
  52. else
  53. srcChecksum=$(find hbase-*/src/main/ | grep -e "\.java" -e "\.proto" | LC_ALL=C sort | xargs openssl dgst -sha512 | openssl dgst -sha512 | sed 's/^.* //')
  54. fi
  55. popd
  56. mkdir -p "$javaOutputDirectory/org/apache/hadoop/hbase"
  57. cat >"$javaOutputDirectory/org/apache/hadoop/hbase/Version.java" <<EOF
  58. /**
  59. *
  60. * Licensed to the Apache Software Foundation (ASF) under one
  61. * or more contributor license agreements. See the NOTICE file
  62. * distributed with this work for additional information
  63. * regarding copyright ownership. The ASF licenses this file
  64. * to you under the Apache License, Version 2.0 (the
  65. * "License"); you may not use this file except in compliance
  66. * with the License. You may obtain a copy of the License at
  67. *
  68. * http://www.apache.org/licenses/LICENSE-2.0
  69. *
  70. * Unless required by applicable law or agreed to in writing, software
  71. * distributed under the License is distributed on an "AS IS" BASIS,
  72. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  73. * See the License for the specific language governing permissions and
  74. * limitations under the License.
  75. */
  76. /*
  77. * Generated by src/saveVersion.sh
  78. */
  79. package org.apache.hadoop.hbase;
  80. import org.apache.yetus.audience.InterfaceAudience;
  81. @InterfaceAudience.Private
  82. @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="DM_STRING_CTOR",
  83. justification="Intentional; to be modified in test")
  84. public class Version {
  85. public static final String version = new String("$version");
  86. public static final String revision = "$revision";
  87. public static final String user = "$user";
  88. public static final String date = "$date";
  89. public static final String url = "$url";
  90. public static final String srcChecksum = "$srcChecksum";
  91. }
  92. EOF
  93. mkdir -p "$nativeOutputDirectory"
  94. cat > "$nativeOutputDirectory/version.h" <<EOF
  95. /**
  96. *
  97. * Licensed to the Apache Software Foundation (ASF) under one
  98. * or more contributor license agreements. See the NOTICE file
  99. * distributed with this work for additional information
  100. * regarding copyright ownership. The ASF licenses this file
  101. * to you under the Apache License, Version 2.0 (the
  102. * "License"); you may not use this file except in compliance
  103. * with the License. You may obtain a copy of the License at
  104. *
  105. * http://www.apache.org/licenses/LICENSE-2.0
  106. *
  107. * Unless required by applicable law or agreed to in writing, software
  108. * distributed under the License is distributed on an "AS IS" BASIS,
  109. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  110. * See the License for the specific language governing permissions and
  111. * limitations under the License.
  112. */
  113. /*
  114. * Generated by src/saveVersion.sh from hbase-common.
  115. */
  116. #pragma once
  117. namespace hbase {
  118. class Version {
  119. public:
  120. static constexpr const char* version = "$version";
  121. static constexpr const char* revision = "$revision";
  122. static constexpr const char* user = "$user";
  123. static constexpr const char* date = "$date";
  124. static constexpr const char* url = "$url";
  125. static constexpr const char* src_checksum = "$srcChecksum";
  126. };
  127. } /* namespace hbase */
  128. EOF