blob: 8f4ea47600f30cd757b74130775dfcb9432e5b97 [file] [log] [blame]
Scott Bakerbcbd4cc2018-03-07 13:50:21 -08001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15"""
16 xosutil/autodiscover_version.py
17
18 This module implements support for recursively searching for a VERSION file and extracting the version number from
19 it. Search starts from the directory of this file, or if autodiscover_version_of_caller is called, the directory
20 of the caller.
21"""
22
23import inspect
24import os
25
Zack Williams045b63d2019-01-22 16:30:57 -070026
Scott Bakere02aa692018-03-23 09:54:14 -070027def autodiscover_version(caller_filename=None, save_to=None, max_parent_depth=None):
Scott Bakerbcbd4cc2018-03-07 13:50:21 -080028 """ walk back along the path to the current module, searching for a VERSION file """
29 if not caller_filename:
30 caller_filename = os.path.realpath(__file__)
31 file_path = os.path.abspath(os.path.dirname(caller_filename))
32 cur_path = file_path
33 while True:
34 version_fn = os.path.join(cur_path, "VERSION")
35 if os.path.exists(version_fn):
36 version = open(version_fn, "rt").readline().strip()
37 if save_to:
38 f = open(os.path.join(file_path, save_to), "wt")
39 f.write("# This file is autogenerated. Do not edit.\n")
40 f.write("__version__ = '%s'\n" % version)
41 f.close()
42 return version
43
Scott Bakere02aa692018-03-23 09:54:14 -070044 # limit_parent_depth can be used to limit how far back we search the tree for a VERSION file.
Zack Williams045b63d2019-01-22 16:30:57 -070045 if max_parent_depth is not None:
46 if max_parent_depth <= 0:
Scott Bakere02aa692018-03-23 09:54:14 -070047 return None
48 max_parent_depth -= 1
49
Scott Bakerbcbd4cc2018-03-07 13:50:21 -080050 (cur_path, remainder) = os.path.split(cur_path)
51 if not remainder:
52 return None
53
Zack Williams045b63d2019-01-22 16:30:57 -070054
Scott Bakerbcbd4cc2018-03-07 13:50:21 -080055def autodiscover_version_of_caller(*args, **kwargs):
56 frame = inspect.stack()[1]
57 module = inspect.getmodule(frame[0])
58 return autodiscover_version(module.__file__, *args, **kwargs)
Scott Bakerfdb7e602018-03-21 09:09:12 -070059
Zack Williams045b63d2019-01-22 16:30:57 -070060
Scott Bakerfdb7e602018-03-21 09:09:12 -070061def autodiscover_version_of_main(*args, **kwargs):
62 import __main__
Zack Williams045b63d2019-01-22 16:30:57 -070063
Scott Bakerfdb7e602018-03-21 09:09:12 -070064 if hasattr(__main__, "__file__"):
65 return autodiscover_version(__main__.__file__, *args, **kwargs)
66 else:
67 return None