1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#
# Copyright 2013, 2018, 2019 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#
""" Module to call bindtool and create Python bindings """
import os
import logging
import warnings
import subprocess
try:
from gnuradio.bindtool import BindingGenerator
except ImportError:
have_bindtool = False
else:
have_bindtool = True
from ..tools import ParserCCBlock, CMakeFileEditor, ask_yes_no
from .base import ModTool, ModToolException
from gnuradio import gr
logger = logging.getLogger(__name__)
class ModToolGenBindings(ModTool):
""" Make YAML file for GRC block bindings """
name = 'bind'
description = 'Generate Python bindings for GR block'
def __init__(self, blockname=None, **kwargs):
ModTool.__init__(self, blockname, **kwargs)
self.info['pattern'] = blockname
def validate(self):
""" Validates the arguments """
ModTool._validate(self)
if not self.info['pattern'] or self.info['pattern'].isspace():
raise ModToolException("Incorrect blockname (Regex)!")
def run(self):
""" Go, go, go! """
# This portion will be covered by the CLI
if not self.cli:
self.validate()
if not have_bindtool:
logger.error(
"Bindtool required to generate bindings ... Aborting")
return
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=DeprecationWarning)
file_to_process = os.path.join(self.dir, self.info['includedir'], self.info['blockname'] + '.h')
bg = BindingGenerator(prefix=gr.prefix(), namespace=[
'gr', self.info['modname']], prefix_include_root=self.info['modname'], output_dir=os.path.join(self.dir, 'python'))
bg.gen_file_binding(file_to_process)
|