Locking.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #pragma once
  24. #include "esp_attr.h"
  25. #include "esp_system.h"
  26. #include "freertos/FreeRTOS.h"
  27. #include "freertos/semphr.h"
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. typedef struct LockingHandle LockingHandle;
  32. #ifdef __cplusplus
  33. } // extern "C"
  34. #include <string>
  35. namespace System {
  36. class Locking {
  37. private:
  38. SemaphoreHandle_t _mutex;
  39. static const int MaxDelay;
  40. static const int LockMaxWait;
  41. std::string _name;
  42. public:
  43. Locking(std::string name) : _mutex(xSemaphoreCreateRecursiveMutex()), _name(name) {}
  44. bool Lock(TickType_t maxWait_ms = LockMaxWait);
  45. void Unlock();
  46. bool IsLocked() { return xSemaphoreGetMutexHolder(_mutex) != nullptr; }
  47. ~Locking() { vSemaphoreDelete(_mutex); }
  48. static Locking* Create(std::string name);
  49. static void Destroy(Locking* lock);
  50. };
  51. } // namespace PlatformConfig
  52. extern "C" {
  53. #endif
  54. LockingHandle* Locking_Create(const char* name);
  55. void Locking_Destroy(LockingHandle* lock);
  56. bool Locking_Lock(LockingHandle* lock, TickType_t maxWait_ms);
  57. void Locking_Unlock(LockingHandle* lock);
  58. bool Locking_IsLocked(LockingHandle* lock);
  59. #ifdef __cplusplus
  60. }
  61. #endif