llversion.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. """@file llversion.py
  2. @brief Utility for parsing llcommon/llversion${server}.h
  3.        for the version string and channel string
  4.        Utility that parses hg or svn info for branch and revision
  5. $LicenseInfo:firstyear=2006&license=mit$
  6. Copyright (c) 2006-2010, Linden Research, Inc.
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13. The above copyright notice and this permission notice shall be included in
  14. all copies or substantial portions of the Software.
  15. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21. THE SOFTWARE.
  22. $/LicenseInfo$
  23. """
  24. import re, sys, os, commands
  25. # Methods for gathering version information from
  26. # llversionviewer.h and llversionserver.h
  27. def get_src_root():
  28.     indra_lib_python_indra_path = os.path.dirname(__file__)
  29.     return os.path.abspath(os.path.realpath(indra_lib_python_indra_path + "/../../../../../"))
  30. def get_version_file_contents(version_type):
  31.     filepath = get_src_root() + '/indra/llcommon/llversion%s.h' % version_type
  32.     file = open(filepath,"r")
  33.     file_str = file.read()
  34.     file.close()
  35.     return file_str
  36. def get_version(version_type):
  37.     file_str = get_version_file_contents(version_type)
  38.     m = re.search('const S32 LL_VERSION_MAJOR = (d+);', file_str)
  39.     VER_MAJOR = m.group(1)
  40.     m = re.search('const S32 LL_VERSION_MINOR = (d+);', file_str)
  41.     VER_MINOR = m.group(1)
  42.     m = re.search('const S32 LL_VERSION_PATCH = (d+);', file_str)
  43.     VER_PATCH = m.group(1)
  44.     m = re.search('const S32 LL_VERSION_BUILD = (d+);', file_str)
  45.     VER_BUILD = m.group(1)
  46.     version = "%(VER_MAJOR)s.%(VER_MINOR)s.%(VER_PATCH)s.%(VER_BUILD)s" % locals()
  47.     return version
  48. def get_channel(version_type):
  49.     file_str = get_version_file_contents(version_type)
  50.     m = re.search('const char * const LL_CHANNEL = "(.+)";', file_str)
  51.     return m.group(1)
  52.     
  53. def get_viewer_version():
  54.     return get_version('viewer')
  55. def get_server_version():
  56.     return get_version('server')
  57. def get_viewer_channel():
  58.     return get_channel('viewer')
  59. def get_server_channel():
  60.     return get_channel('server')
  61. # Methods for gathering subversion information
  62. def get_svn_status_matching(regular_expression):
  63.     # Get the subversion info from the working source tree
  64.     status, output = commands.getstatusoutput('svn info %s' % get_src_root())
  65.     m = regular_expression.search(output)
  66.     if not m:
  67.         print >> sys.stderr, "Failed to parse svn info output, result follows:"
  68.         print >> sys.stderr, output
  69.         raise Exception, "No matching svn status in "+src_root
  70.     return m.group(1)
  71. def get_svn_branch():
  72.     branch_re = re.compile('URL: (S+)')
  73.     return get_svn_status_matching(branch_re)
  74. def get_svn_revision():
  75.     last_rev_re = re.compile('Last Changed Rev: (d+)')
  76.     return get_svn_status_matching(last_rev_re)
  77. def get_hg_repo():
  78.     status, output = commands.getstatusoutput('hg showconfig paths.default')
  79.     if status:
  80.         print >> sys.stderr, output
  81.         sys.exit(1)
  82.     if not output:
  83.         print >> sys.stderr, 'ERROR: cannot find repo we cloned from'
  84.         sys.exit(1)
  85.     return output
  86. def get_hg_changeset():
  87.     # The right thing to do:
  88.     # status, output = commands.getstatusoutput('hg id -i')
  89.     # if status:
  90.     #     print >> sys.stderr, output
  91.     #    sys.exit(1)
  92.     # The temporary hack:
  93.     status, output = commands.getstatusoutput('hg parents --template "{rev}"')
  94.     if status:
  95.         print >> sys.stderr, output
  96.         sys.exit(1)
  97.     lines = output.splitlines()
  98.     if len(lines) > 1:
  99.         print >> sys.stderr, 'ERROR: working directory has %d parents' % len(lines)
  100.     return lines[0]
  101. def using_svn():
  102.     return os.path.isdir(os.path.join(get_src_root(), '.svn'))
  103. def using_hg():
  104.     return os.path.isdir(os.path.join(get_src_root(), '.hg'))