IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Base/abstract announcer class. More...
Public Member Functions | |
def | __init__ (self, theConfig) |
Constructor for announcer class. More... | |
def | ack (self) |
Send along to Announcement that Channel acknowledges message. More... | |
def | message (self) |
Return the announcement message. More... | |
def | prepare (self, theSignal) |
Prepare the announcement (e.g., convert to text for reporting out). More... | |
Static Public Member Functions | |
def | alwaystoiterable (fsig) |
def | counter (icnt=0, cspec="{}") |
Signal is ignored and replace with invocation counter. More... | |
def | counterWithReset (icnt=0, cspec="{}") |
Signal is ignored and replace with invocation counter. More... | |
def | dateof () |
Signal is ignored and replace with current date (as string). More... | |
def | fixed (theAnnouncement) |
Signal is ignored and replace with a fixed output. More... | |
def | float2text (fspec="{}") |
Convert float to string based on preset specification. More... | |
def | int2text (isig) |
Convert integer to string. More... | |
def | passthrough (fsig) |
def | text2text (ssig) |
Signal is already a string, so just return. More... | |
def | timeof () |
Signal is ignored and replace with current time (as string). More... | |
def | toiterable (fsig) |
Public Attributes | |
announcement | |
config | |
Base/abstract announcer class.
An announcement packages a signal into text for reporting purposes. The python logging API does not really have an analog to this because a logger is given the text to output. Here, the signal is given and it must be converted to text. The conversion may require specific formatting needs to render it interpretable by a follow-up post-processing routine, or it might even not be text. An overloaded announcer may package it up differently for the channel to output, based on the channel design (it may serialize data provided in a specific format as in the case of ROS messages).
The base announcer relies on function pointers that perform signal translation.
def __init__ | ( | self, | |
theConfig | |||
) |
Constructor for announcer class.
Reimplemented in RunningCommentary, and Commentary.
def ack | ( | self | ) |
Send along to Announcement that Channel acknowledges message.
Acknowledgement simply lets the Channel know that there was an action that took place. The channel may not need to know anything about that, in which case the ack can be ignored. However, if internal state information requires knowing when the Channel has acted, then this can be useful to reset internal states.
Reimplemented in RunningCommentary.
|
static |
|
static |
Signal is ignored and replace with invocation counter.
Every time the trigger happens to involve counter, the counter increases. It starts with 0. If something else should be used, then pass in the initial value when creating the pointer.
Reimplemented in Commentary.
|
static |
Signal is ignored and replace with invocation counter.
Every time the trigger happens to involve counter, the counter increases. It starts with 0. If something else should be used, then pass in the initial value when creating the pointer.
|
static |
Signal is ignored and replace with current date (as string).
Rather than use the signal to generate the message, use the date of the signal occurence to be the announcement.
|
static |
Signal is ignored and replace with a fixed output.
Rather than use the signal to generate the message, a fixed announcement is output. The fixed announcement should be provided when generating the function pointer.
|
static |
Convert float to string based on preset specification.
[in] | fspec | The given specification. |
|
static |
Convert integer to string.
[in] | isig | The integer. |
def message | ( | self | ) |
Return the announcement message.
Reimplemented in Commentary.
|
static |
def prepare | ( | self, | |
theSignal | |||
) |
Prepare the announcement (e.g., convert to text for reporting out).
[in] | theSignal | The signal attached to the announcement. |
Reimplemented in RunningCommentary, and Commentary.
|
static |
Signal is already a string, so just return.
(Should be rare)
[in] | ssig | The string. |
|
static |
Signal is ignored and replace with current time (as string).
Rather than use the signal to generate the message, use the time of the signal occurence to be the announcement.
Reimplemented in Commentary.
|
static |
announcement |
config |