LTKCPP-- LLRP Toolkit C Plus Plus Library
|
Class Definition CImpinjLocationReportData for LLRP parameter ImpinjLocationReportData. More...
#include <impinj_ltkcpp.h>
Public Member Functions | |
llrp_u64_t | getLastSeenTimestampUTC (void) |
Get accessor functions for the LLRP LastSeenTimestampUTC field. | |
void | setLastSeenTimestampUTC (llrp_u64_t value) |
Set accessor functions for the LLRP LastSeenTimestampUTC field. | |
llrp_s32_t | getLocXCentimeters (void) |
Get accessor functions for the LLRP LocXCentimeters field. | |
void | setLocXCentimeters (llrp_s32_t value) |
Set accessor functions for the LLRP LocXCentimeters field. | |
llrp_s32_t | getLocYCentimeters (void) |
Get accessor functions for the LLRP LocYCentimeters field. | |
void | setLocYCentimeters (llrp_s32_t value) |
Set accessor functions for the LLRP LocYCentimeters field. | |
EImpinjLocationReportType | getType (void) |
Get accessor functions for the LLRP Type field. | |
void | setType (EImpinjLocationReportType value) |
Set accessor functions for the LLRP Type field. | |
CImpinjLocationConfidence * | getImpinjLocationConfidence (void) |
Get accessor functions for the LLRP ImpinjLocationConfidence sub-parameter. | |
EResultCode | setImpinjLocationConfidence (CImpinjLocationConfidence *pValue) |
Set accessor functions for the LLRP ImpinjLocationConfidence sub-parameter. | |
std::list< CParameter * >::iterator | beginCustom (void) |
Returns the first element of the Custom sub-parameter list. | |
std::list< CParameter * >::iterator | endCustom (void) |
Returns the last element of the Custom sub-parameter list. | |
void | clearCustom (void) |
Clears the LLRP Custom sub-parameter list. | |
int | countCustom (void) |
Count of the LLRP Custom sub-parameter list. | |
EResultCode | addCustom (CParameter *pValue) |
Add a Custom to the LLRP sub-parameter list. | |
![]() | |
llrp_bool_t | isAllowedExtension (const CTypeDescriptor *pEnclosingTypeDescriptor) |
Validate whether the element is allowed as an extension in the enclosing element. More... | |
![]() | |
void | addSubParameterToAllList (CParameter *pParameter) |
Add a subparameter to m_listAllSubParameters. Called by the accessor functions setXXX and addXXX. More... | |
void | removeSubParameterFromAllList (CParameter *pParameter) |
Delete a subparameter from m_listAllSubParameters. Called by the accessor functions setXXX (to remove prior reference) clearXXX(). More... | |
void | clearSubParameterList (tListOfParameters *pParameterList) |
Clear a list of subparameters. For each entry apply removeSubParameter(). More... | |
int | walk (int(*pFunc)(const CElement *pElement, void *pArg), void *pArg, int iDepth, int nMaxDepth) const |
Recursive tree walk. The callback is invoked for each element. | |
EResultCode | toXMLString (char *pBuffer, int nBuffer) |
A wrapper around LLRP::toXMLString() More... | |
Protected Attributes | |
llrp_u64_t | m_LastSeenTimestampUTC |
llrp_s32_t | m_LocXCentimeters |
llrp_s32_t | m_LocYCentimeters |
EImpinjLocationReportType | m_eType |
CImpinjLocationConfidence * | m_pImpinjLocationConfidence |
std::list< CParameter * > | m_listCustom |
Internal Framework Functions | |
static const CFieldDescriptor *const | s_apFieldDescriptorTable [] |
static const CTypeDescriptor | s_typeDescriptor |
static const CFieldDescriptor | s_fdLastSeenTimestampUTC |
static const CFieldDescriptor | s_fdLocXCentimeters |
static const CFieldDescriptor | s_fdLocYCentimeters |
static const CFieldDescriptor | s_fdType |
void | decodeFields (CDecoderStream *pDecoderStream) |
Virtual function provided by each specific element type to decode fields (simple values). Leaves pDecoderStream at first subparameter. More... | |
void | assimilateSubParameters (CErrorDetails *pError) |
Assimilates the decoded sub-parameters into m_listAllSubParameters. More... | |
void | encode (CEncoderStream *pEncoderStream) const |
Encode fields and subparameters. More... | |
llrp_bool_t | isAllowedIn (const CTypeDescriptor *pEnclosingElementType) const |
Validate whether the element is allowed as a base type in the enclosing element. More... | |
static CElement * | s_construct (void) |
static void | s_decodeFields (CDecoderStream *pDecoderStream, CElement *pElement) |
Additional Inherited Members | |
![]() | |
const CTypeDescriptor * | m_pType |
The type descriptor desribing this element. | |
CElement * | m_pParent |
Element that encloses this one, NULL if this is top-level element. | |
tListOfParameters | m_listAllSubParameters |
List of all sub elements. | |
Class Definition CImpinjLocationReportData for LLRP parameter ImpinjLocationReportData.
<p>This parameter represents a single Location Report</p> <p>The TimeStampUTC field contains the time stamp of the event.</p> <p>LocXCentimeres and LocYCentimeres represent the location in cm</p> <p>The Confidence field contains confidence that the event occured in the form of a percentage. 0 is not confident. 100 is perfectly confident</p> <SMALL><i>Copyright 2013 Impinj Inc.</i></SMALL>
Definition at line 11085 of file impinj_ltkcpp.h.
|
virtual |
Assimilates the decoded sub-parameters into m_listAllSubParameters.
After fields are decoded, the CDecoder itself takes care of gathering the subparameters into m_listAllSubParameters. Once the end of the enclosing TLV (or message) is reached this assimilateSubParameters() function is called to create parameter refrences from the primary member variables.
[out] | pError | Error details for encoded stream |
Implements LLRP::CElement.
|
virtual |
Virtual function provided by each specific element type to decode fields (simple values). Leaves pDecoderStream at first subparameter.
[in] | pDecoderStream | The stream from which to decode fields |
Implements LLRP::CElement.
|
virtual |
Encode fields and subparameters.
[in] | pEncoderStream | Stream to encode |
Implements LLRP::CElement.
|
virtual |
Validate whether the element is allowed as a base type in the enclosing element.
[in] | pEnclosingTypeDescriptor | A pointer to the enclosing type |
Reimplemented from LLRP::CParameter.