Registers a read/write function to get and set a parameter over ControlPort. More...
#include <gnuradio/rpcregisterhelpers.h>
Public Member Functions | |
rpcbasic_register_variable_rw () | |
void | set (Tfrom _variable) |
rpcbasic_register_variable_rw (const std::string &namebase, const char *functionbase, Tfrom *variable, const pmt::pmt_t &min, const pmt::pmt_t &max, const pmt::pmt_t &def, const char *units_="", const char *desc_="", priv_lvl_t minpriv=RPC_PRIVLVL_MIN, DisplayType display_=DISPNULL) | |
Adds the ability to set and get the variable over ControlPort. More... | |
Public Member Functions inherited from rpcbasic_register_variable< Tfrom > | |
void | setptr (Tfrom *_variable) |
rpcbasic_register_variable () | |
rpcbasic_register_variable (const std::string &namebase, const char *functionbase, Tfrom *variable, const pmt::pmt_t &min, const pmt::pmt_t &max, const pmt::pmt_t &def, const char *units_="", const char *desc_="", priv_lvl_t minpriv_=RPC_PRIVLVL_MIN, DisplayType display_=DISPNULL) | |
Adds the ability to get the variable over ControlPort. More... | |
Public Member Functions inherited from rpcbasic_base | |
rpcbasic_base () | |
virtual | ~rpcbasic_base () |
Additional Inherited Members | |
Protected Member Functions inherited from rpcbasic_register_variable< Tfrom > | |
Tfrom | get () |
Protected Attributes inherited from rpcbasic_register_variable< Tfrom > | |
rpcbasic_register_get< rpcbasic_register_variable< Tfrom >, Tfrom > | d_rpc_reg |
Tfrom * | d_variable |
Registers a read/write function to get and set a parameter over ControlPort.
This class allows us to remotely get and/or set a value or parameter of the block over ControlPort. Unlike the rpcbasic_register_get class, this version is passed the variable directly and establishes a getter for us, so there is no need to have a getter function already in the object.
This version establishes both get and set functions and so provides read/write access to the variable.
We can set the (expected) minimum (min
), maximum (max
), and default (def
) of the variables we will get. These values are not enforced, however, but can be useful for setting up graphs and other ways of bounding the data.
This class also allows us to provide information to the user about the variable, such as an appropriate unit (units_
) as well as a description (desc_
) about what the variable does.
The privilege (minpriv_
) level is the minimum privilege level a remote must identify with to be able to call this function.
We also provide display hints (display_
), which can be used by the ControlPort client application to know how to best display or even print the data. This is a mask of options for variables set in rpccallbackregister_base.h. The mask is defined by one of the "DisplayType Plotting Types" and or'd with any of the "DisplayType
Options" features. See "Display Options" in ControlPort for details.
|
inline |
Empty constructor which should never be called but needs to exist for ues in varous STL data structures.
|
inline |
Adds the ability to set and get the variable over ControlPort.
Creates new getter and setter accessor functions to read and write variable
.
namebase | Name of the object being set up for ControlPort access |
functionbase | The name of the function that we'll access over ControlPort |
variable | A pointer to the variable, possibly as a member of a class |
min | Expected minimum value the parameter can hold |
max | Expected maximum value the parameter can hold |
def | Expected default value the parameter can hold |
units_ | A string to describe what units to represent the variable with |
desc_ | A string to describing the variable. |
minpriv | The required minimum privilege level |
display_ | The display mask |
|
inline |