112 lines
3.9 KiB
Python
Executable File
112 lines
3.9 KiB
Python
Executable File
#!/usr/bin/env python
|
|
"""\
|
|
@file llversion.py
|
|
@brief Parses llcommon/llversionserver.h and llcommon/llversionviewer.h
|
|
for the version string and channel string.
|
|
Parses hg info for branch and revision.
|
|
|
|
$LicenseInfo:firstyear=2006&license=mit$
|
|
|
|
Copyright (c) 2006-2009, Linden Research, Inc.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
$/LicenseInfo$
|
|
"""
|
|
|
|
import re, sys, os, subprocess
|
|
|
|
# Methods for gathering version information from
|
|
# llversionviewer.h and llversionserver.h
|
|
|
|
def get_src_root():
|
|
indra_lib_python_indra_path = os.path.dirname(__file__)
|
|
return os.path.abspath(os.path.realpath(indra_lib_python_indra_path + "/../../../../../"))
|
|
|
|
def get_version_file_contents(version_type):
|
|
# AO , be aware of .in files
|
|
filepath = get_src_root() + '/indra/llcommon/llversion%s.h' % version_type
|
|
if not (os.path.isfile(filepath)):
|
|
filepath = filepath + ".in"
|
|
|
|
file = open(filepath,"r")
|
|
file_str = file.read()
|
|
file.close()
|
|
return file_str
|
|
|
|
def get_version(version_type):
|
|
file_str = get_version_file_contents(version_type)
|
|
m = re.search('const S32 LL_VERSION_MAJOR = (\d+);', file_str)
|
|
VER_MAJOR = m.group(1)
|
|
m = re.search('const S32 LL_VERSION_MINOR = (\d+);', file_str)
|
|
VER_MINOR = m.group(1)
|
|
m = re.search('const S32 LL_VERSION_PATCH = (\d+);', file_str)
|
|
VER_PATCH = m.group(1)
|
|
m = re.search('const S32 LL_VERSION_BUILD = (\d+);', file_str)
|
|
VER_BUILD = m.group(1)
|
|
version = "%(VER_MAJOR)s.%(VER_MINOR)s.%(VER_PATCH)s.%(VER_BUILD)s" % locals()
|
|
return version
|
|
|
|
def get_channel(version_type):
|
|
file_str = get_version_file_contents(version_type)
|
|
m = re.search('const char \* const LL_CHANNEL = "(.+)";', file_str)
|
|
return m.group(1)
|
|
|
|
def get_viewer_version():
|
|
return get_version('viewer')
|
|
|
|
def get_server_version():
|
|
return get_version('server')
|
|
|
|
def get_viewer_channel():
|
|
return get_channel('viewer')
|
|
|
|
def get_server_channel():
|
|
return get_channel('server')
|
|
|
|
# Methods for gathering hg information
|
|
def get_hg_repo():
|
|
child = subprocess.Popen(["hg","showconfig","paths.default"], stdout=subprocess.PIPE)
|
|
output, error = child.communicate()
|
|
status = child.returncode
|
|
if status:
|
|
print >> sys.stderr, error
|
|
sys.exit(1)
|
|
if not output:
|
|
print >> sys.stderr, 'ERROR: cannot find repo we cloned from'
|
|
sys.exit(1)
|
|
return output
|
|
|
|
def get_hg_changeset():
|
|
# The right thing to do would be to use the *global* revision id:
|
|
# "hg id -i"
|
|
# For the moment though, we use the parent revision:
|
|
child = subprocess.Popen(["hg","parents","--template","{rev}"], stdout=subprocess.PIPE)
|
|
output, error = child.communicate()
|
|
status = child.returncode
|
|
if status:
|
|
print >> sys.stderr, error
|
|
sys.exit(1)
|
|
lines = output.splitlines()
|
|
if len(lines) > 1:
|
|
print >> sys.stderr, 'ERROR: working directory has %d parents' % len(lines)
|
|
return lines[0]
|
|
|
|
def using_hg():
|
|
return os.path.isdir(os.path.join(get_src_root(), '.hg'))
|