mirror of
https://github.com/gnuradio/gnuradio-companion.git
synced 2025-12-11 04:34:56 -06:00
All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
66 lines
2.2 KiB
Python
Executable File
66 lines
2.2 KiB
Python
Executable File
# Copyright 2016 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of GNU Radio
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
|
|
import argparse
|
|
import os
|
|
import subprocess
|
|
|
|
from gnuradio import gr
|
|
|
|
from .core import Messages
|
|
from .core.platform import Platform
|
|
|
|
|
|
def argument_parser():
|
|
parser = argparse.ArgumentParser(description=(
|
|
"Compile a GRC file (.grc) into a GNU Radio Python program and run it."
|
|
))
|
|
parser.add_argument("-o", "--output", metavar='DIR', default='.',
|
|
help="Output directory for compiled program [default=%(default)s]")
|
|
parser.add_argument("-u", "--user-lib-dir", action='store_true', default=False,
|
|
help="Output to default hier_block library (overwrites -o)")
|
|
parser.add_argument("-r", "--run", action="store_true", default=False,
|
|
help="Run the program after compiling [default=%(default)s]")
|
|
parser.add_argument(metavar="GRC_FILE", dest='grc_files', nargs='+',
|
|
help=".grc file to compile")
|
|
return parser
|
|
|
|
|
|
def main(args=None):
|
|
args = args or argument_parser().parse_args()
|
|
|
|
platform = Platform(
|
|
name='GNU Radio Companion Compiler',
|
|
prefs=gr.prefs(),
|
|
version=gr.version(),
|
|
version_parts=(gr.major_version(), gr.api_version(), gr.minor_version())
|
|
)
|
|
platform.build_library()
|
|
|
|
out_dir = args.output if not args.user_lib_dir else platform.config.hier_block_lib_dir
|
|
if os.path.exists(out_dir):
|
|
pass # all is well
|
|
elif args.save_to_lib:
|
|
os.mkdir(out_dir) # create missing hier_block lib directory
|
|
else:
|
|
exit('Error: Invalid output directory')
|
|
|
|
Messages.send_init(platform)
|
|
flow_graph = file_path = None
|
|
for grc_file in args.grc_files:
|
|
os.path.exists(grc_file) or exit('Error: missing ' + grc_file)
|
|
Messages.send('\n')
|
|
|
|
flow_graph, file_path = platform.load_and_generate_flow_graph(
|
|
os.path.abspath(grc_file), os.path.abspath(out_dir))
|
|
if not file_path:
|
|
exit('Compilation error')
|
|
if file_path and args.run:
|
|
run_command_args = flow_graph.get_run_command(file_path, split=True)
|
|
subprocess.call(run_command_args)
|