2016-04-11 09:57:09 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
import logging
|
2018-07-09 02:09:20 -04:00
|
|
|
import os
|
|
|
|
import subprocess
|
2016-04-11 09:57:09 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2016-08-05 11:36:07 -04:00
|
|
|
def get_version_string(module):
|
2019-07-22 08:15:08 -04:00
|
|
|
"""Given a module calculate a git-aware version string for it.
|
|
|
|
|
|
|
|
If called on a module not in a git checkout will return `__verison__`.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
module (module)
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str
|
|
|
|
"""
|
|
|
|
|
|
|
|
cached_version = getattr(module, "_synapse_version_string_cache", None)
|
|
|
|
if cached_version:
|
|
|
|
return cached_version
|
|
|
|
|
|
|
|
version_string = module.__version__
|
|
|
|
|
2016-04-11 09:57:09 -04:00
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
null = open(os.devnull, "w")
|
2016-04-11 09:57:09 -04:00
|
|
|
cwd = os.path.dirname(os.path.abspath(module.__file__))
|
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
git_branch = (
|
|
|
|
subprocess.check_output(
|
|
|
|
["git", "rev-parse", "--abbrev-ref", "HEAD"], stderr=null, cwd=cwd
|
|
|
|
)
|
|
|
|
.strip()
|
|
|
|
.decode("ascii")
|
|
|
|
)
|
2016-04-11 09:57:09 -04:00
|
|
|
git_branch = "b=" + git_branch
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
git_branch = ""
|
|
|
|
|
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
git_tag = (
|
|
|
|
subprocess.check_output(
|
|
|
|
["git", "describe", "--exact-match"], stderr=null, cwd=cwd
|
|
|
|
)
|
|
|
|
.strip()
|
|
|
|
.decode("ascii")
|
|
|
|
)
|
2016-04-11 09:57:09 -04:00
|
|
|
git_tag = "t=" + git_tag
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
git_tag = ""
|
|
|
|
|
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
git_commit = (
|
|
|
|
subprocess.check_output(
|
|
|
|
["git", "rev-parse", "--short", "HEAD"], stderr=null, cwd=cwd
|
|
|
|
)
|
|
|
|
.strip()
|
|
|
|
.decode("ascii")
|
|
|
|
)
|
2016-04-11 09:57:09 -04:00
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
git_commit = ""
|
|
|
|
|
|
|
|
try:
|
|
|
|
dirty_string = "-this_is_a_dirty_checkout"
|
2019-06-20 05:32:02 -04:00
|
|
|
is_dirty = (
|
|
|
|
subprocess.check_output(
|
|
|
|
["git", "describe", "--dirty=" + dirty_string], stderr=null, cwd=cwd
|
|
|
|
)
|
|
|
|
.strip()
|
|
|
|
.decode("ascii")
|
|
|
|
.endswith(dirty_string)
|
|
|
|
)
|
2016-04-11 09:57:09 -04:00
|
|
|
|
|
|
|
git_dirty = "dirty" if is_dirty else ""
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
git_dirty = ""
|
|
|
|
|
|
|
|
if git_branch or git_tag or git_commit or git_dirty:
|
|
|
|
git_version = ",".join(
|
2019-06-20 05:32:02 -04:00
|
|
|
s for s in (git_branch, git_tag, git_commit, git_dirty) if s
|
2016-04-11 09:57:09 -04:00
|
|
|
)
|
|
|
|
|
2019-07-22 08:15:08 -04:00
|
|
|
version_string = "%s (%s)" % (module.__version__, git_version)
|
2016-04-11 09:57:09 -04:00
|
|
|
except Exception as e:
|
|
|
|
logger.info("Failed to check for git repository: %s", e)
|
|
|
|
|
2019-07-22 08:15:08 -04:00
|
|
|
module._synapse_version_string_cache = version_string
|
|
|
|
|
|
|
|
return version_string
|