8930ecf7c5
* Add AMXX_VERSION_LOCAL define * Add new defines regarding version of AMX Mod X Added new defines: AMXX_VERSION_MAJOR_NUM and AMXX_VERSION_MINOR_NUM * Rename AMXX_VERSION_LOCAL define Define AMXX_VERSION_LOCAL was renamed to AMXX_VERSION_LOCAL_REV_NUM
116 lines
3.5 KiB
Python
116 lines
3.5 KiB
Python
# vim: set ts=8 sts=2 sw=2 tw=99 et:
|
|
import re
|
|
import os, sys
|
|
import subprocess
|
|
|
|
argv = sys.argv[1:]
|
|
if len(argv) < 2:
|
|
sys.stderr.write('Usage: generate_headers.py <source_path> <output_folder>\n')
|
|
sys.exit(1)
|
|
|
|
SourceFolder = os.path.abspath(os.path.normpath(argv[0]))
|
|
OutputFolder = os.path.normpath(argv[1])
|
|
|
|
class FolderChanger:
|
|
def __init__(self, folder):
|
|
self.old = os.getcwd()
|
|
self.new = folder
|
|
|
|
def __enter__(self):
|
|
if self.new:
|
|
os.chdir(self.new)
|
|
|
|
def __exit__(self, type, value, traceback):
|
|
os.chdir(self.old)
|
|
|
|
def run_and_return(argv):
|
|
# Python 2.6 doesn't have check_output.
|
|
if hasattr(subprocess, 'check_output'):
|
|
text = subprocess.check_output(argv)
|
|
if str != bytes:
|
|
text = str(text, 'utf-8')
|
|
else:
|
|
p = subprocess.Popen(argv, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
output, ignored = p.communicate()
|
|
rval = p.poll()
|
|
if rval:
|
|
raise subprocess.CalledProcessError(rval, argv)
|
|
text = output.decode('utf8')
|
|
return text.strip()
|
|
|
|
def get_git_version():
|
|
revision_count = run_and_return(['git', 'rev-list', '--count', 'HEAD'])
|
|
revision_hash = run_and_return(['git', 'log', '--pretty=format:%h:%H', '-n', '1'])
|
|
shorthash, longhash = revision_hash.split(':')
|
|
|
|
return revision_count, shorthash, longhash
|
|
|
|
def output_version_headers():
|
|
with FolderChanger(SourceFolder):
|
|
count, shorthash, longhash = get_git_version()
|
|
|
|
with open(os.path.join(SourceFolder, 'product.version')) as fp:
|
|
contents = fp.read().rstrip()
|
|
m = re.match('(\d+)\.(\d+)\.(\d+)-?(.*)', contents)
|
|
if m == None:
|
|
raise Exception('Could not detremine product version')
|
|
major, minor, release, tag = m.groups()
|
|
product = "{0}.{1}.{2}.{3}".format(major, minor, release, count)
|
|
fullstring = product
|
|
if tag != "":
|
|
fullstring += "-{0}".format(tag)
|
|
|
|
with open(os.path.join(OutputFolder, 'amxmodx_version_auto.h'), 'w') as fp:
|
|
fp.write("""
|
|
#ifndef _AMXMODX_AUTO_VERSION_INFORMATION_H_
|
|
#define _AMXMODX_AUTO_VERSION_INFORMATION_H_
|
|
|
|
#define AMXX_BUILD_TAG \"{0}\"
|
|
#define AMXX_BUILD_CSET \"{1}\"
|
|
#define AMXX_BUILD_MAJOR \"{2}\"
|
|
#define AMXX_BUILD_MINOR \"{3}\"
|
|
#define AMXX_BUILD_RELEASE \"{4}\"
|
|
#define AMXX_BUILD_LOCAL_REV \"{6}\"
|
|
|
|
#define AMXX_BUILD_UNIQUEID AMXX_BUILD_LOCAL_REV \":\" AMXX_BUILD_CSET
|
|
|
|
#define AMXX_VERSION_STRING \"{5}\"
|
|
#define AMXX_VERSION_FILE {2},{3},{4},{6}
|
|
|
|
#endif // _AMXMODX_AUTO_VERSION_INFORMATION_H_
|
|
""".format(tag, shorthash, major, minor, release, fullstring, count))
|
|
|
|
version_num = int(major) * 100 + int(minor) * 10 + int(release)
|
|
with open(os.path.join(OutputFolder, 'amxmodx_version.inc'), 'w') as fp:
|
|
fp.write("""
|
|
#if defined _amxmodx_version_included
|
|
#endinput
|
|
#endif
|
|
#define _amxmodx_version_included
|
|
|
|
#define AMXX_VERSION_TAG \"{tag}\"
|
|
#define AMXX_VERSION_CSET \"{shorthash}\"
|
|
#define AMXX_VERSION_MAJOR \"{major}\"
|
|
#define AMXX_VERSION_MAJOR_NUM {major}
|
|
#define AMXX_VERSION_MINOR \"{minor}\"
|
|
#define AMXX_VERSION_MINOR_NUM {minor}
|
|
#define AMXX_VERSION_RELEASE \"{release}\"
|
|
#define AMXX_VERSION_LOCAL_REV_NUM {count}
|
|
#define AMXX_VERSION_LOCAL_REV \"{count}\"
|
|
#define AMXX_VERSION {major}.{minor}{release}
|
|
#define AMXX_VERSION_NUM {version_num}
|
|
|
|
stock const AMXX_VERSION_STR[] = "{fullstring}";
|
|
""".format(
|
|
tag = tag,
|
|
shorthash = shorthash,
|
|
major = major,
|
|
minor = minor,
|
|
release = release,
|
|
count = count,
|
|
version_num = version_num,
|
|
fullstring = fullstring
|
|
))
|
|
|
|
output_version_headers()
|