Locking.cpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #include "Locking.h"
  2. #include "esp_log.h"
  3. #include "tools.h"
  4. static const char* TAG = "Locking";
  5. using namespace System;
  6. const int Locking::MaxDelay = 1000;
  7. const int Locking::LockMaxWait = 20 * Locking::MaxDelay;
  8. // C++ methods
  9. Locking* Locking::Create(std::string name) { return new Locking(name); }
  10. void Locking::Destroy(Locking* lock) { delete lock; }
  11. LockingHandle* Locking_Create(const char* name) {
  12. return reinterpret_cast<LockingHandle*>(Locking::Create(std::string(name)));
  13. }
  14. void Locking_Destroy(LockingHandle* lock) { Locking::Destroy(reinterpret_cast<Locking*>(lock)); }
  15. bool Locking_Lock(LockingHandle* lock, TickType_t maxWait_ms) {
  16. return reinterpret_cast<Locking*>(lock)->Lock(maxWait_ms);
  17. }
  18. void Locking_Unlock(LockingHandle* lock) { reinterpret_cast<Locking*>(lock)->Unlock(); }
  19. bool Locking_IsLocked(LockingHandle* lock) { return reinterpret_cast<Locking*>(lock)->IsLocked(); }
  20. bool Locking::Lock(TickType_t maxWait_ms) {
  21. assert(_mutex != nullptr);
  22. ESP_LOGV(TAG, "Locking %s", _name.c_str());
  23. if (xSemaphoreTakeRecursive(_mutex, pdMS_TO_TICKS(maxWait_ms)) == pdTRUE) {
  24. ESP_LOGV(TAG, "locked %s", _name.c_str());
  25. return true;
  26. } else {
  27. ESP_LOGE(TAG, "Unable to lock %s", _name.c_str());
  28. return false;
  29. }
  30. }
  31. void Locking::Unlock() {
  32. ESP_LOGV(TAG, "Unlocking %s", _name.c_str());
  33. xSemaphoreGiveRecursive(_mutex);
  34. }