WPILibC++ 2025.2.1
|
Log protobuf serializable objects. More...
#include <wpi/DataLog.h>
Public Member Functions | |
ProtobufLogEntry ()=default | |
ProtobufLogEntry (DataLog &log, std::string_view name, int64_t timestamp=0) | |
ProtobufLogEntry (DataLog &log, std::string_view name, std::string_view metadata, int64_t timestamp=0) | |
void | Append (const T &data, int64_t timestamp=0) |
Appends a record to the log. | |
void | Update (const T &data, int64_t timestamp=0) |
Updates the last value and appends a record to the log if it has changed. | |
bool | HasLastValue () const |
Gets whether there is a last value. | |
std::optional< T > | GetLastValue () const |
Gets the last value. | |
Public Member Functions inherited from wpi::log::DataLogEntry | |
DataLogEntry (const DataLogEntry &)=delete | |
DataLogEntry & | operator= (const DataLogEntry &)=delete |
DataLogEntry (DataLogEntry &&rhs) | |
DataLogEntry & | operator= (DataLogEntry &&rhs) |
operator bool () const | |
void | SetMetadata (std::string_view metadata, int64_t timestamp=0) |
Updates the metadata for the entry. | |
void | Finish (int64_t timestamp=0) |
Finishes the entry. | |
Additional Inherited Members | |
Protected Member Functions inherited from wpi::log::DataLogEntry | |
DataLogEntry ()=default | |
DataLogEntry (DataLog &log, std::string_view name, std::string_view type, std::string_view metadata={}, int64_t timestamp=0) | |
Protected Attributes inherited from wpi::log::DataLogEntry | |
DataLog * | m_log = nullptr |
int | m_entry = 0 |
Log protobuf serializable objects.
|
default |
|
inline |
|
inline |
|
inline |
Appends a record to the log.
data | Data to record |
timestamp | Time stamp (may be 0 to indicate now) |
|
inline |
|
inline |
|
inline |
Updates the last value and appends a record to the log if it has changed.
data | Data to record |
timestamp | Time stamp (may be 0 to indicate now) |