ua_timer.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #ifndef UA_TIMER_H_
  5. #define UA_TIMER_H_
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. #include "ua_util.h"
  10. #include "ua_job.h"
  11. typedef void
  12. (*UA_RepeatedJobsListProcessCallback)(void *processContext, UA_Job *job);
  13. struct UA_RepeatedJob;
  14. typedef struct UA_RepeatedJob UA_RepeatedJob;
  15. typedef struct {
  16. /* The linked list of jobs is sorted according to the execution timestamp. */
  17. SLIST_HEAD(RepeatedJobsSList, UA_RepeatedJob) repeatedJobs;
  18. /* Changes to the repeated jobs in a multi-producer single-consumer queue */
  19. UA_RepeatedJob * volatile changes_head;
  20. UA_RepeatedJob *changes_tail;
  21. UA_RepeatedJob *changes_stub;
  22. /* The callback to process jobs that have timed out */
  23. UA_RepeatedJobsListProcessCallback processCallback;
  24. void *processContext;
  25. } UA_RepeatedJobsList;
  26. /* Initialize the RepeatedJobsSList. Not thread-safe. */
  27. void
  28. UA_RepeatedJobsList_init(UA_RepeatedJobsList *rjl,
  29. UA_RepeatedJobsListProcessCallback processCallback,
  30. void *processContext);
  31. /* Add a repated job. Thread-safe, can be used in parallel and in parallel with
  32. * UA_RepeatedJobsList_process. */
  33. UA_StatusCode
  34. UA_RepeatedJobsList_addRepeatedJob(UA_RepeatedJobsList *rjl, const UA_Job job,
  35. const UA_UInt32 interval, UA_Guid *jobId);
  36. /* Remove a repated job. Thread-safe, can be used in parallel and in parallel
  37. * with UA_RepeatedJobsList_process. */
  38. UA_StatusCode
  39. UA_RepeatedJobsList_removeRepeatedJob(UA_RepeatedJobsList *rjl, const UA_Guid jobId);
  40. /* Process the repeated jobs that have timed out. Returns the timestamp of the
  41. * next scheduled repeated job. Not thread-safe. */
  42. UA_DateTime
  43. UA_RepeatedJobsList_process(UA_RepeatedJobsList *rjl, UA_DateTime nowMonotonic,
  44. UA_Boolean *dispatched);
  45. /* Remove all repeated jobs. Not thread-safe. */
  46. void
  47. UA_RepeatedJobsList_deleteMembers(UA_RepeatedJobsList *rjl);
  48. #ifdef __cplusplus
  49. } // extern "C"
  50. #endif
  51. #endif /* UA_TIMER_H_ */