Edit

kc3-lang/angle/src/commit_id.py

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2020-03-02 09:41:22
    Hash : dd19d554
    Message : Change commit_id 'check' back to looking for .git files. commit_id.py was change to try running 'git status' to confirm that git was present. This caused it to succeed if there was a git checkout somewhere above ANGLE if ANGLE's .git didn't exist, incorrectly adding a non-existant .git/HEAD file to the gn rule's inputs. Always verify that ANGLE's .git/HEAD is present in commit_id.py. BUG=angleproject:2344 Change-Id: I7e170f39c8d5cef73086ecf6d68925a1d3512de1 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2082993 Commit-Queue: Geoff Lang <geofflang@chromium.org> Reviewed-by: Brian Osman <brianosman@google.com> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/commit_id.py
  • #!/usr/bin/env python
    #  Copyright 2018 The ANGLE Project Authors. All rights reserved.
    #  Use of this source code is governed by a BSD-style license that can be
    #  found in the LICENSE file.
    
    # Generate commit.h with git commit hash.
    #
    
    import subprocess as sp
    import sys
    import os
    
    usage = """\
    Usage: commit_id.py check                - check if git is present
           commit_id.py gen <file_to_write>  - generate commit.h"""
    
    
    def grab_output(command, cwd):
        return sp.Popen(command, stdout=sp.PIPE, shell=True, cwd=cwd).communicate()[0].strip()
    
    
    if len(sys.argv) < 2:
        sys.exit(usage)
    
    operation = sys.argv[1]
    
    # Set the root of ANGLE's repo as the working directory
    cwd = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..')
    
    git_dir_exists = os.path.exists(os.path.join(cwd, '.git', 'HEAD'))
    
    if operation == 'check':
        if git_dir_exists:
            print("1")
        else:
            print("0")
        sys.exit(0)
    
    if len(sys.argv) < 3 or operation != 'gen':
        sys.exit(usage)
    
    output_file = sys.argv[2]
    commit_id_size = 12
    commit_id = 'unknown hash'
    commit_date = 'unknown date'
    enable_binary_loading = False
    
    if git_dir_exists:
        try:
            commit_id = grab_output('git rev-parse --short=%d HEAD' % commit_id_size, cwd)
            commit_date = grab_output('git show -s --format=%ci HEAD', cwd)
            enable_binary_loading = True
        except:
            pass
    
    hfile = open(output_file, 'w')
    
    hfile.write('#define ANGLE_COMMIT_HASH "%s"\n' % commit_id)
    hfile.write('#define ANGLE_COMMIT_HASH_SIZE %d\n' % commit_id_size)
    hfile.write('#define ANGLE_COMMIT_DATE "%s"\n' % commit_date)
    
    if not enable_binary_loading:
        hfile.write('#define ANGLE_DISABLE_PROGRAM_BINARY_LOAD\n')
    
    hfile.close()