|
static void | init () |
|
static bool | ContainsKey (wpi::StringRef key) |
| Determines whether the given key is in this table. More...
|
|
static std::vector< std::string > | GetKeys (int types=0) |
|
static void | SetPersistent (wpi::StringRef key) |
| Makes a key's value persistent through program restarts. More...
|
|
static void | ClearPersistent (wpi::StringRef key) |
| Stop making a key's value persistent through program restarts. More...
|
|
static bool | IsPersistent (wpi::StringRef key) |
| Returns whether the value is persistent through program restarts. More...
|
|
static void | SetFlags (wpi::StringRef key, unsigned int flags) |
| Sets flags on the specified key in this table. More...
|
|
static void | ClearFlags (wpi::StringRef key, unsigned int flags) |
| Clears flags on the specified key in this table. More...
|
|
static unsigned int | GetFlags (wpi::StringRef key) |
| Returns the flags for the specified key. More...
|
|
static void | Delete (wpi::StringRef key) |
| Deletes the specified key in this table. More...
|
|
static void | PutData (wpi::StringRef key, Sendable *data) |
| Maps the specified key to the specified value in this table. More...
|
|
static void | PutData (Sendable *value) |
| Maps the specified key (where the key is the name of the Sendable) to the specified value in this table. More...
|
|
static Sendable * | GetData (wpi::StringRef keyName) |
| Returns the value at the specified key. More...
|
|
static bool | PutBoolean (wpi::StringRef keyName, bool value) |
| Maps the specified key to the specified value in this table. More...
|
|
static bool | SetDefaultBoolean (wpi::StringRef key, bool defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static bool | GetBoolean (wpi::StringRef keyName, bool defaultValue) |
| Returns the value at the specified key. More...
|
|
static bool | PutNumber (wpi::StringRef keyName, double value) |
| Maps the specified key to the specified value in this table. More...
|
|
static bool | SetDefaultNumber (wpi::StringRef key, double defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static double | GetNumber (wpi::StringRef keyName, double defaultValue) |
| Returns the value at the specified key. More...
|
|
static bool | PutString (wpi::StringRef keyName, wpi::StringRef value) |
| Maps the specified key to the specified value in this table. More...
|
|
static bool | SetDefaultString (wpi::StringRef key, wpi::StringRef defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::string | GetString (wpi::StringRef keyName, wpi::StringRef defaultValue) |
| Returns the value at the specified key. More...
|
|
static bool | PutBooleanArray (wpi::StringRef key, wpi::ArrayRef< int > value) |
| Put a boolean array in the table. More...
|
|
static bool | SetDefaultBooleanArray (wpi::StringRef key, wpi::ArrayRef< int > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::vector< int > | GetBooleanArray (wpi::StringRef key, wpi::ArrayRef< int > defaultValue) |
| Returns the boolean array the key maps to. More...
|
|
static bool | PutNumberArray (wpi::StringRef key, wpi::ArrayRef< double > value) |
| Put a number array in the table. More...
|
|
static bool | SetDefaultNumberArray (wpi::StringRef key, wpi::ArrayRef< double > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::vector< double > | GetNumberArray (wpi::StringRef key, wpi::ArrayRef< double > defaultValue) |
| Returns the number array the key maps to. More...
|
|
static bool | PutStringArray (wpi::StringRef key, wpi::ArrayRef< std::string > value) |
| Put a string array in the table. More...
|
|
static bool | SetDefaultStringArray (wpi::StringRef key, wpi::ArrayRef< std::string > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::vector< std::string > | GetStringArray (wpi::StringRef key, wpi::ArrayRef< std::string > defaultValue) |
| Returns the string array the key maps to. More...
|
|
static bool | PutRaw (wpi::StringRef key, wpi::StringRef value) |
| Put a raw value (byte array) in the table. More...
|
|
static bool | SetDefaultRaw (wpi::StringRef key, wpi::StringRef defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::string | GetRaw (wpi::StringRef key, wpi::StringRef defaultValue) |
| Returns the raw value (byte array) the key maps to. More...
|
|
static bool | PutValue (wpi::StringRef keyName, std::shared_ptr< nt::Value > value) |
| Maps the specified key to the specified complex value (such as an array) in this table. More...
|
|
static bool | SetDefaultValue (wpi::StringRef key, std::shared_ptr< nt::Value > defaultValue) |
| Gets the current value in the table, setting it if it does not exist. More...
|
|
static std::shared_ptr< nt::Value > | GetValue (wpi::StringRef keyName) |
| Retrieves the complex value (such as an array) in this table into the complex data object. More...
|
|
static void | UpdateValues () |
| Puts all sendable data to the dashboard.
|
|
static void | SetGlobalError (Error::Code code, const wpi::Twine &contextMessage, wpi::StringRef filename, wpi::StringRef function, int lineNumber) |
|
static void | SetGlobalWPIError (const wpi::Twine &errorMessage, const wpi::Twine &contextMessage, wpi::StringRef filename, wpi::StringRef function, int lineNumber) |
|
static const Error & | GetGlobalError () |
| Retrieve the current global error.
|
|
|
| ErrorBase (ErrorBase &&)=default |
|
ErrorBase & | operator= (ErrorBase &&)=default |
|
virtual Error & | GetError () |
| Retrieve the current error. More...
|
|
virtual const Error & | GetError () const |
| Retrieve the current error. More...
|
|
virtual void | ClearError () const |
| Clear the current error information associated with this sensor.
|
|
virtual void | SetErrnoError (const wpi::Twine &contextMessage, wpi::StringRef filename, wpi::StringRef function, int lineNumber) const |
| Set error information associated with a C library call that set an error to the "errno" global variable. More...
|
|
virtual void | SetImaqError (int success, const wpi::Twine &contextMessage, wpi::StringRef filename, wpi::StringRef function, int lineNumber) const |
| Set the current error information associated from the nivision Imaq API. More...
|
|
virtual void | SetError (Error::Code code, const wpi::Twine &contextMessage, wpi::StringRef filename, wpi::StringRef function, int lineNumber) const |
| Set the current error information associated with this sensor. More...
|
|
virtual void | SetErrorRange (Error::Code code, int32_t minRange, int32_t maxRange, int32_t requestedValue, const wpi::Twine &contextMessage, wpi::StringRef filename, wpi::StringRef function, int lineNumber) const |
| Set the current error information associated with this sensor. More...
|
|
virtual void | SetWPIError (const wpi::Twine &errorMessage, Error::Code code, const wpi::Twine &contextMessage, wpi::StringRef filename, wpi::StringRef function, int lineNumber) const |
| Set the current error information associated with this sensor. More...
|
|
virtual void | CloneError (const ErrorBase &rhs) const |
|
virtual bool | StatusIsFatal () const |
| Check if the current error code represents a fatal error. More...
|
|
| SendableBase (bool addLiveWindow=true) |
| Creates an instance of the sensor base. More...
|
|
| SendableBase (SendableBase &&rhs) |
|
SendableBase & | operator= (SendableBase &&rhs) |
|
std::string | GetName () const final |
| Gets the name of this Sendable object. More...
|
|
void | SetName (const wpi::Twine &name) final |
| Sets the name of this Sendable object. More...
|
|
std::string | GetSubsystem () const final |
| Gets the subsystem name of this Sendable object. More...
|
|
void | SetSubsystem (const wpi::Twine &subsystem) final |
| Sets the subsystem name of this Sendable object. More...
|
|
| Sendable (Sendable &&)=default |
|
Sendable & | operator= (Sendable &&)=default |
|
void | SetName (const wpi::Twine &subsystem, const wpi::Twine &name) |
| Sets both the subsystem name and device name of this Sendable object. More...
|
|
virtual void | InitSendable (SendableBuilder &builder)=0 |
| Initializes this Sendable object. More...
|
|
void | AddChild (std::shared_ptr< Sendable > child) |
| Add a child component. More...
|
|
void | AddChild (void *child) |
| Add a child component. More...
|
|
void | SetName (const wpi::Twine &moduleType, int channel) |
| Sets the name of the sensor with a channel number. More...
|
|
void | SetName (const wpi::Twine &moduleType, int moduleNumber, int channel) |
| Sets the name of the sensor with a module and channel number. More...
|
|
Error | m_error |
|