2016-02-22 21:07:19 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright 2016 The Shaderc Authors. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2016-04-22 00:50:11 +00:00
|
|
|
# Updates an output file with version info unless the new content is the same
|
|
|
|
# as the existing content.
|
2016-02-22 21:07:19 +00:00
|
|
|
#
|
2016-04-22 00:50:11 +00:00
|
|
|
# Args: <spirv-tools_dir> <output-file>
|
2016-02-22 21:07:19 +00:00
|
|
|
#
|
2016-04-22 00:50:11 +00:00
|
|
|
# The output file will contain a line of text consisting of two C source syntax
|
|
|
|
# string literals separated by a comma:
|
|
|
|
# - The software version deduced from the CHANGES file in the given directory.
|
|
|
|
# - A longer string with the project name, the software version number, and
|
|
|
|
# git commit information for the directory. The commit information
|
|
|
|
# is the output of "git describe" if that succeeds, or "git rev-parse HEAD"
|
|
|
|
# if that succeeds, or otherwise a message containing the phrase "unknown hash".
|
|
|
|
# The string contents are escaped as necessary.
|
2016-02-22 21:07:19 +00:00
|
|
|
|
2016-03-06 16:44:21 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2016-02-22 21:07:19 +00:00
|
|
|
import datetime
|
|
|
|
import os.path
|
2016-04-22 00:50:11 +00:00
|
|
|
import re
|
2016-02-22 21:07:19 +00:00
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2016-03-06 18:00:58 +00:00
|
|
|
|
2016-02-24 17:41:29 +00:00
|
|
|
def command_output(cmd, dir):
|
|
|
|
"""Runs a command in a directory and returns its standard output stream.
|
|
|
|
|
|
|
|
Captures the standard error stream.
|
|
|
|
|
|
|
|
Raises a RuntimeError if the command fails to launch or otherwise fails.
|
|
|
|
"""
|
|
|
|
p = subprocess.Popen(cmd,
|
|
|
|
cwd=dir,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE)
|
|
|
|
(stdout, _) = p.communicate()
|
2016-03-06 18:00:58 +00:00
|
|
|
if p.returncode != 0:
|
|
|
|
raise RuntimeError('Failed to run %s in %s' % (cmd, dir))
|
2016-02-24 17:41:29 +00:00
|
|
|
return stdout
|
|
|
|
|
|
|
|
|
2016-04-22 00:50:11 +00:00
|
|
|
def deduceSoftwareVersion(dir):
|
|
|
|
"""Returns a software version number parsed from the CHANGES file
|
|
|
|
in the given dir.
|
|
|
|
|
|
|
|
The CHANGES file describes most recent versions first.
|
|
|
|
"""
|
|
|
|
|
|
|
|
pattern = re.compile('(v\d+\.\d+(-dev)) \d\d\d\d-\d\d-\d\d$')
|
|
|
|
changes_file = os.path.join(dir, 'CHANGES')
|
|
|
|
with open(changes_file) as f:
|
|
|
|
for line in f.readlines():
|
|
|
|
match = pattern.match(line)
|
|
|
|
if match:
|
|
|
|
return match.group(1)
|
|
|
|
raise Exception('No version number found in {}'.format(changes_file))
|
|
|
|
|
|
|
|
|
2016-02-22 21:07:19 +00:00
|
|
|
def describe(dir):
|
2016-02-24 17:41:29 +00:00
|
|
|
"""Returns a string describing the current Git HEAD version as descriptively
|
|
|
|
as possible.
|
|
|
|
|
|
|
|
Runs 'git describe', or alternately 'git rev-parse HEAD', in dir. If
|
|
|
|
successful, returns the output; otherwise returns 'unknown hash, <date>'."""
|
2016-02-22 21:07:19 +00:00
|
|
|
try:
|
2016-03-11 20:24:41 +00:00
|
|
|
# decode() is needed here for Python3 compatibility. In Python2,
|
|
|
|
# str and bytes are the same type, but not in Python3.
|
|
|
|
# Popen.communicate() returns a bytes instance, which needs to be
|
|
|
|
# decoded into text data first in Python3. And this decode() won't
|
|
|
|
# hurt Python2.
|
|
|
|
return command_output(['git', 'describe'], dir).rstrip().decode()
|
2016-02-23 22:58:31 +00:00
|
|
|
except:
|
2016-02-24 17:41:29 +00:00
|
|
|
try:
|
2016-03-11 20:24:41 +00:00
|
|
|
return command_output(
|
|
|
|
['git', 'rev-parse', 'HEAD'], dir).rstrip().decode()
|
2016-02-24 17:41:29 +00:00
|
|
|
except:
|
2016-03-11 20:24:41 +00:00
|
|
|
return 'unknown hash, {}'.format(datetime.date.today().isoformat())
|
2016-02-24 17:41:29 +00:00
|
|
|
|
2016-02-22 21:07:19 +00:00
|
|
|
|
|
|
|
def main():
|
2016-04-22 00:50:11 +00:00
|
|
|
if len(sys.argv) != 3:
|
|
|
|
print('usage: {0} <spirv-tools_dir> <output-file>'.format(sys.argv[0]))
|
2016-02-22 21:07:19 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
2016-04-22 00:50:11 +00:00
|
|
|
output_file = sys.argv[2]
|
|
|
|
|
|
|
|
software_version = deduceSoftwareVersion(sys.argv[1])
|
|
|
|
new_content = '"{}", "SPIRV-Tools {} {}"\n'.format(
|
|
|
|
software_version, software_version,
|
2016-03-11 20:24:41 +00:00
|
|
|
describe(sys.argv[1]).replace('"', '\\"'))
|
2016-04-22 00:50:11 +00:00
|
|
|
if os.path.isfile(output_file) and new_content == open(output_file, 'r').read():
|
2016-02-22 21:07:19 +00:00
|
|
|
sys.exit(0)
|
2016-04-22 00:50:11 +00:00
|
|
|
open(output_file, 'w').write(new_content)
|
2016-02-22 21:07:19 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|