Added BLEAddress operator overload methods (#4839)
Allows BLEAddress to be used as key in std::map etc
This commit is contained in:
parent
560c0f45f5
commit
44aaf13225
@ -59,9 +59,32 @@ BLEAddress::BLEAddress(std::string stringAddress) {
|
|||||||
* @return True if the addresses are equal.
|
* @return True if the addresses are equal.
|
||||||
*/
|
*/
|
||||||
bool BLEAddress::equals(BLEAddress otherAddress) {
|
bool BLEAddress::equals(BLEAddress otherAddress) {
|
||||||
return memcmp(otherAddress.getNative(), m_address, 6) == 0;
|
return memcmp(otherAddress.getNative(), m_address, ESP_BD_ADDR_LEN) == 0;
|
||||||
} // equals
|
} // equals
|
||||||
|
|
||||||
|
bool BLEAddress::operator==(const BLEAddress& otherAddress) const {
|
||||||
|
return memcmp(otherAddress.m_address, m_address, ESP_BD_ADDR_LEN) == 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool BLEAddress::operator!=(const BLEAddress& otherAddress) const {
|
||||||
|
return !(*this == otherAddress);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool BLEAddress::operator<(const BLEAddress& otherAddress) const {
|
||||||
|
return memcmp(otherAddress.m_address, m_address, ESP_BD_ADDR_LEN) < 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool BLEAddress::operator<=(const BLEAddress& otherAddress) const {
|
||||||
|
return !(*this > otherAddress);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool BLEAddress::operator>=(const BLEAddress& otherAddress) const {
|
||||||
|
return !(*this < otherAddress);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool BLEAddress::operator>(const BLEAddress& otherAddress) const {
|
||||||
|
return memcmp(otherAddress.m_address, m_address, ESP_BD_ADDR_LEN) > 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Return the native representation of the address.
|
* @brief Return the native representation of the address.
|
||||||
|
@ -23,6 +23,12 @@ public:
|
|||||||
BLEAddress(esp_bd_addr_t address);
|
BLEAddress(esp_bd_addr_t address);
|
||||||
BLEAddress(std::string stringAddress);
|
BLEAddress(std::string stringAddress);
|
||||||
bool equals(BLEAddress otherAddress);
|
bool equals(BLEAddress otherAddress);
|
||||||
|
bool operator==(const BLEAddress& otherAddress) const;
|
||||||
|
bool operator!=(const BLEAddress& otherAddress) const;
|
||||||
|
bool operator<(const BLEAddress& otherAddress) const;
|
||||||
|
bool operator<=(const BLEAddress& otherAddress) const;
|
||||||
|
bool operator>(const BLEAddress& otherAddress) const;
|
||||||
|
bool operator>=(const BLEAddress& otherAddress) const;
|
||||||
esp_bd_addr_t* getNative();
|
esp_bd_addr_t* getNative();
|
||||||
std::string toString();
|
std::string toString();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user