diff options
author | Swapnil Negi <swapnil.negi09@gmail.com> | 2019-01-04 18:29:50 +0100 |
---|---|---|
committer | Andrej Rode <mail@andrejro.de> | 2019-01-04 18:58:02 +0100 |
commit | 055287896c8c97eb0cdda825559e217d8db54a14 (patch) | |
tree | 613262f5ed45ba4eaadf1bd76009aa16ad22806f /gr-utils/python/modtool/core/info.py | |
parent | 2fcf3b8afe51092003b7f916edb9e5d6372d4842 (diff) |
modtool: gr-modtool overhaul GSoC 2018
This commit contains all the changes done during the 2018 GSoC
"gr-modtool overhaul".
Changes include:
- Rewrite of gr-modtool based on Python Click
- Split of gr-modtool in cli and core
- Adherence to new GNU Radio 3.8 API for OOTs
- Pylint improvements
- Py3k and Py2k compatibility
This feature is merged in a squash-merge due to big refactoring
on the head and base branch and the impossibility to unclutter both.
Diffstat (limited to 'gr-utils/python/modtool/core/info.py')
-rw-r--r-- | gr-utils/python/modtool/core/info.py | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/gr-utils/python/modtool/core/info.py b/gr-utils/python/modtool/core/info.py new file mode 100644 index 0000000000..488445df47 --- /dev/null +++ b/gr-utils/python/modtool/core/info.py @@ -0,0 +1,142 @@ +# +# Copyright 2013, 2018 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# +""" Returns information about a module """ + +from __future__ import print_function +from __future__ import absolute_import +from __future__ import unicode_literals + +import os + +from ..tools import get_modname +from .base import ModTool, ModToolException + + +class ModToolInfo(ModTool): + """ Return information about a given module """ + name = 'info' + description = 'Return information about a given module.' + + def __init__(self, python_readable=False, suggested_dirs=None, **kwargs): + ModTool.__init__(self, **kwargs) + # Don't call ModTool._validate(), is is too chatty! + self._directory = self.dir + self._python_readable = python_readable + self._suggested_dirs = suggested_dirs + + def run(self): + """ Go, go, go! """ + mod_info = dict() + mod_info['base_dir'] = self._get_base_dir(self._directory) + if mod_info['base_dir'] is None: + raise ModToolException('{}' if self._python_readable else "No module found.") + os.chdir(mod_info['base_dir']) + mod_info['modname'] = get_modname() + if mod_info['modname'] is None: + raise ModToolException('{}' if self._python_readable else "No module found.") + if self.info['version'] == '36' and ( + os.path.isdir(os.path.join('include', mod_info['modname'])) or + os.path.isdir(os.path.join('include', 'gnuradio', mod_info['modname'])) + ): + self.info['version'] = '37' + mod_info['version'] = self.info['version'] + if 'is_component' in list(self.info.keys()) and self.info['is_component']: + mod_info['is_component'] = True + mod_info['incdirs'] = [] + mod_incl_dir = os.path.join(mod_info['base_dir'], 'include') + if os.path.isdir(os.path.join(mod_incl_dir, mod_info['modname'])): + mod_info['incdirs'].append(os.path.join(mod_incl_dir, mod_info['modname'])) + else: + mod_info['incdirs'].append(mod_incl_dir) + build_dir = self._get_build_dir(mod_info) + if build_dir is not None: + mod_info['build_dir'] = build_dir + mod_info['incdirs'] += self._get_include_dirs(mod_info) + if self._python_readable: + print(str(mod_info)) + else: + self._pretty_print(mod_info) + + def _get_base_dir(self, start_dir): + """ Figure out the base dir (where the top-level cmake file is) """ + base_dir = os.path.abspath(start_dir) + if self._check_directory(base_dir): + return base_dir + else: + (up_dir, this_dir) = os.path.split(base_dir) + if os.path.split(up_dir)[1] == 'include': + up_dir = os.path.split(up_dir)[0] + if self._check_directory(up_dir): + return up_dir + return None + + def _get_build_dir(self, mod_info): + """ Figure out the build dir (i.e. where you run 'cmake'). This checks + for a file called CMakeCache.txt, which is created when running cmake. + If that hasn't happened, the build dir cannot be detected, unless it's + called 'build', which is then assumed to be the build dir. """ + base_build_dir = mod_info['base_dir'] + if 'is_component' in list(mod_info.keys()): + (base_build_dir, rest_dir) = os.path.split(base_build_dir) + has_build_dir = os.path.isdir(os.path.join(base_build_dir, 'build')) + if (has_build_dir and os.path.isfile(os.path.join(base_build_dir, 'CMakeCache.txt'))): + return os.path.join(base_build_dir, 'build') + else: + for (dirpath, dirnames, filenames) in os.walk(base_build_dir): + if 'CMakeCache.txt' in filenames: + return dirpath + if has_build_dir: + return os.path.join(base_build_dir, 'build') + return None + + def _get_include_dirs(self, mod_info): + """ Figure out include dirs for the make process. """ + inc_dirs = [] + path_or_internal = {True: 'INTERNAL', + False: 'PATH'}['is_component' in list(mod_info.keys())] + try: + cmakecache_fid = open(os.path.join(mod_info['build_dir'], 'CMakeCache.txt')) + for line in cmakecache_fid: + if line.find('GNURADIO_RUNTIME_INCLUDE_DIRS:{}'.format(path_or_internal)) != -1: + inc_dirs += line.replace('GNURADIO_RUNTIME_INCLUDE_DIRS:{}='.format(path_or_internal), '').strip().split(';') + except IOError: + pass + if (not inc_dirs or inc_dirs.isspace) and self._suggested_dirs is not None: + inc_dirs = [os.path.normpath(path) for path in self._suggested_dirs.split(':') if os.path.isdir(path)] + return inc_dirs + + def _pretty_print(elf, mod_info): + """ Output the module info in human-readable format """ + index_names = {'base_dir': 'Base directory', + 'modname': 'Module name', + 'is_component': 'Is GR component', + 'build_dir': 'Build directory', + 'incdirs': 'Include directories'} + for key in list(mod_info.keys()): + if key == 'version': + print(" API version: {}".format({ + '36': 'pre-3.7', + '37': 'post-3.7', + '38': 'post-3.8', + 'autofoo': 'Autotools (pre-3.5)' + }[mod_info['version']])) + else: + print('%19s: %s' % (index_names[key], mod_info[key])) |