Editing ModtoolArchitecture
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
− | + | This article explains the current architecture of gr_modtool in the python3 branch. | |
− | |||
− | |||
− | This article explains the current architecture of gr_modtool in the python3 branch. | ||
− | |||
− | |||
− | |||
− | |||
= What is gr_modtool? = | = What is gr_modtool? = | ||
− | While developing an [[OutOfTreeModules|Out Of Tree module]], there's a lot of boring, monotonous work involved: boilerplate code, makefile editing, etc. gr_modtool is a script which aims to help with all these things by automatically editing makefiles, using templates, and doing as much work as possible for the developer such that | + | While developing an [[OutOfTreeModules|Out Of Tree module]], there's a lot of boring, monotonous work involved: boilerplate code, makefile editing, etc. gr_modtool is a script which aims to help with all these things by automatically editing makefiles, using templates, and doing as much work as possible for the developer such that you can jump straight into the DSP coding. |
− | Note that gr_modtool makes a lot of assumptions on | + | Note that gr_modtool makes a lot of assumptions on what the code looks like. The more your module is custom and has specific changes, the less useful gr_modtool will be, but it is probably the best place to start with any new module or block. You can go through the [[BlocksCodingGuide|block coding guide]] for getting an insight of coding the block. |
gr_modtool is available in the GNU Radio source tree and is installed by default. | gr_modtool is available in the GNU Radio source tree and is installed by default. | ||
Line 20: | Line 13: | ||
gr-modtool uses the [http://click.pocoo.org/6/ Click] Python package for its command line interface. Some of the advantages of using Click for CLI are:- | gr-modtool uses the [http://click.pocoo.org/6/ Click] Python package for its command line interface. Some of the advantages of using Click for CLI are:- | ||
* Click is fully nestable and composable. | * Click is fully nestable and composable. | ||
− | * Click supports prompting of custom values. | + | * Click supports for prompting of custom values. |
− | * Click works the same in Python 2 | + | * Click works the same in Python 2 and 3. |
− | * Click comes with useful helpers like ANSI colors. | + | * Click comes with useful common helpers like ANSI colors. |
* Click is very simple to code and visualize. | * Click is very simple to code and visualize. | ||
Line 31: | Line 24: | ||
The function <code>get_command</code> returns a command object by the user input command. It first tries to import the module for the command by searching the in-tree modules, then checks for the registration of command via other sources. If the module is found in-tree, then the <code>cli()</code> function of the respective module is called. | The function <code>get_command</code> returns a command object by the user input command. It first tries to import the module for the command by searching the in-tree modules, then checks for the registration of command via other sources. If the module is found in-tree, then the <code>cli()</code> function of the respective module is called. | ||
− | == | + | == Request-Response cycle == |
− | Initially all | + | Initially all requests with <code>gr_modtool</code> in the command-line interface by the user passes through the <code>cli()</code> function of <code>modtool_base.py</code>. If no further command is provided in the command-line, the help page is displayed with all the in-tree plug-ins commands as well as commands from the external plug-ins, if any. <br> |
− | If a command (after gr_modtool) is provided in the interface which has a corresponding module <code>modtool_command.py</code> | + | If a command (after gr_modtool) is provided in the interface which has a corresponding module <code>modtool_command.py</code> (where the command is the user input command) the <code>cli()</code> function of the corresponding module is invoked with the context of the group instance in the base module.<br> |
− | The function is decorated by the decorator | + | The function is decorated by the decorator <code>@click.command()</code> which add the functionalities of the class <code>[http://click.pocoo.org/5/api/#click.command click.Command]</code> and automatically attach the decorated <code>[http://click.pocoo.org/5/options/ options]</code> and <code>[http://click.pocoo.org/5/arguments/ arguments]</code> to it. The user input values of all these parameters are then passed to the <code>run()</code> function of the respective module defined in its core class.<br> |
− | Note: The basic difference between arguments and options is that arguments are | + | Note: The basic difference between arguments and options is that arguments are mandatory (by default, can be made optional as in the case with the modtool scripts) and positional. Moreover, <code>documentation</code> of the argument is not generated by click and it has to be done manually. |
== Key Notes == | == Key Notes == | ||
− | * A decorator function <code>common_params</code> is present in the base module to remove the redundancy of adding the same options in every module. These options | + | * A decorator function <code>common_params</code> is present in the base module to remove the redundancy of adding the same options in every module. These options haven't been provided as the options to the base command group '''intentionally''' because they actually make sense with the command itself and otherwise the command <code>gr_modtool add -t general --skip-lib</code> will look like <code>gr_modtool add --skip-lib -t general</code> which won't be user-friendly. Therefore, these parameters will show up in the help page of the respective command rather than the command group. |
− | * A decorator <code>block_name</code> is present in the base module which adds an argument (non-mandatory) '''block_name''' to the particular command | + | * A decorator <code>block_name</code> is present in the base module which adds an argument (non-mandatory) '''block_name''' to the particular command which uses it. |
* The help page for a particular command can be shown with <code>--help</code> in the CLI. For eg:- <code>gr_modtool add --help</code>. | * The help page for a particular command can be shown with <code>--help</code> in the CLI. For eg:- <code>gr_modtool add --help</code>. | ||
− | * For commands, a short help snippet is generated. By default, | + | * For commands, a short help snippet is generated. By default, it’s the first sentence of the help message of the command, unless it’s too long. This can also be overridden by <code>short_help</code> provided with command. For example, <code>@click.command('newmod', short_help=ModToolNewModule().description)</code> shows the help of the command <code>newmod</code> generated in the help page (<code>gr_modtool --help</code> or simply <code>gr_modtool</code>) as the '''description''' variable of the class <code>ModToolNewModule</code>. The main '''help-text''' when you run the command's help page, eg:- <code>gr_modtool makexml --help</code> is the '''document string''' of the function attached to the decorator <code>@click.command</code>. |
* For options, the help documentation can be added by <code>help</code> parameter in the decorator <code>@click.option()</code>. For example, <code>@click.option('--copyright', help="Name of the copyright holder (you or your company) MUST be a quoted string.")</code>. | * For options, the help documentation can be added by <code>help</code> parameter in the decorator <code>@click.option()</code>. For example, <code>@click.option('--copyright', help="Name of the copyright holder (you or your company) MUST be a quoted string.")</code>. | ||
<br> | <br> | ||
Line 111: | Line 104: | ||
<br> | <br> | ||
− | == | + | == Addind a module in-tree == |
Here is an example of coding a '''click command''':- | Here is an example of coding a '''click command''':- | ||
Line 134: | Line 127: | ||
exit(1) | exit(1) | ||
</pre> | </pre> | ||
− | Here | + | Here the available '''options''' with the command are <code>srcdir</code> and all the options that the function of the class <code>ModTool</code>, <code>common_params</code>, adds to it. <br><br> |
− | + | So, to add a module in-tree, all you have to do is create module as <code>module_command.py</code> with a function <code>cli()</code> in the '''modtool''' directory, add options and arguments to it with <code>@click.option()</code> and <code>@click.argument()</code> decorators and specify the functional details with the obtained value of parameters.<br> | |
− | So, to add a module in-tree, all | + | Note: Instead of <code>**kwargs</code>, we can specify the particular options. |
− | Note: Instead of <code>**kwargs</code>, | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |