sys_monitor.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file system monitor
  8. */
  9. #ifndef _SYS_MONITOR_H
  10. #define _SYS_MONITOR_H
  11. #include <os_common_api.h>
  12. #include <thread_timer.h>
  13. /**
  14. * @defgroup sys_monitor_apis App system monitor APIs
  15. * @ingroup system_apis
  16. * @{
  17. */
  18. void sys_monitor_init(void);
  19. /**
  20. * @brief start sysmte monitor
  21. *
  22. * @details start system monitor , this rontine make system monitor work
  23. * can excute in system app context, system monitor used thread timer as
  24. * executor.
  25. *
  26. * @return N/A
  27. */
  28. void sys_monitor_start(void);
  29. /**
  30. * @brief stop sysmte monitor
  31. *
  32. * @details stop system monitor, all system monitor work will not excute.
  33. *
  34. * @return N/A
  35. */
  36. void sys_monitor_stop(void);
  37. /**
  38. * @brief deinit system monitor
  39. *
  40. * @details deinit system monitor ,clear system monitor resource.
  41. *
  42. * @return N/A
  43. */
  44. void sys_monitor_deinit(void);
  45. /**
  46. * @cond INTERNAL_HIDDEN
  47. */
  48. #define MAX_MONITOR_WORK_NUM 5
  49. /**
  50. * @brief system monitor work handle
  51. *
  52. * @details system monitor work handle, add to system monitor by user.
  53. * and excute int system monitor context(system app context), excute by
  54. * thread timer or system work.
  55. *
  56. * @return 0 excute success .
  57. * @return others excute failed .
  58. */
  59. typedef int (*monitor_work_handle)(void);
  60. /** system monitor structure */
  61. struct sys_monitor_t
  62. {
  63. /** monitor stoped flag */
  64. uint32_t monitor_stoped:1;
  65. /** system ready flag */
  66. uint32_t system_ready:1;
  67. /** monitor works , register by other user*/
  68. monitor_work_handle monitor_work[MAX_MONITOR_WORK_NUM];
  69. /** monitor excutor, default config to thread timer , if not support thread timer, used delay work*/
  70. #ifdef CONFIG_THREAD_TIMER
  71. struct thread_timer sys_monitor_timer;
  72. #else
  73. os_delayed_work sys_monitor_work;
  74. #endif
  75. };
  76. /**
  77. * @brief get system monitor instance
  78. *
  79. * @details system monitor is singleton mode. if system monitor not init
  80. * this funciton init a system monitor and return this instance. otherwise
  81. * system monitor is already inited, return this instance dirctory.
  82. *
  83. * @return sys_monitor_t monitor instance
  84. * @return NULL excute failed.
  85. */
  86. struct sys_monitor_t *sys_monitor_get_instance(void);
  87. /**
  88. * @brief add system monitor work to system monitor
  89. *
  90. * @details add work to system monitor, when system monitor start ,
  91. * the new work maybe excute by system monitor
  92. * @param monitor_work new work want to add to system monitor
  93. *
  94. * @return 0 excute success
  95. * @return others excute failed
  96. */
  97. int sys_monitor_add_work(monitor_work_handle monitor_work);
  98. /**
  99. * @brief system monitor init
  100. *
  101. * @details init system monitor , malloc system moitor resource
  102. * init thread timer as sysem monitor executor.
  103. *
  104. * @return N/A
  105. */
  106. /**
  107. * INTERNAL_HIDDEN @endcond
  108. */
  109. /**
  110. * @} end defgroup sys_monitor_apis
  111. */
  112. #endif