pqueue.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Copyright (c) 2023 Agustina Arzille.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. * Adjustable priority queue.
  18. *
  19. * Unlike the standard priority list bundled in the kernel, this data
  20. * structure can increase the priority of every member in O(1) time.
  21. * For this reason, its usage is encouraged when starvation needs to
  22. * be avoided.
  23. */
  24. #ifndef KERN_PQUEUE_H
  25. #define KERN_PQUEUE_H
  26. #include <stdbool.h>
  27. #include <stdint.h>
  28. #include <kern/macros.h>
  29. /*
  30. * Priority queue node.
  31. *
  32. * Note that the 'priority' member is not really meaningful to clients,
  33. * as it's dynamically adjusted as the queue is modified.
  34. */
  35. struct pqueue_node
  36. {
  37. struct pqueue_node *prev;
  38. struct pqueue_node *next;
  39. union
  40. {
  41. struct
  42. {
  43. uint16_t prio;
  44. uint16_t extra;
  45. };
  46. uint32_t full;
  47. };
  48. };
  49. struct pqueue
  50. {
  51. struct pqueue_node *head;
  52. };
  53. static inline void
  54. pqueue_init (struct pqueue *pq)
  55. {
  56. pq->head = NULL;
  57. }
  58. static inline void
  59. pqueue_node_init (struct pqueue_node *node, uint32_t prio)
  60. {
  61. node->prev = node->next = NULL;
  62. node->extra = 0;
  63. node->prio = MIN (prio, UINT16_MAX);
  64. }
  65. static inline bool
  66. pqueue_node_unlinked (const struct pqueue_node *node)
  67. {
  68. return (node->next == NULL && node->prev == NULL);
  69. }
  70. static inline bool
  71. pqueue_empty (const struct pqueue *pqueue)
  72. {
  73. return (pqueue->head == NULL);
  74. }
  75. static inline uint32_t
  76. pqueue_node_prio (const struct pqueue_node *pnode)
  77. {
  78. return (pnode->prio);
  79. }
  80. // Insert a node in the priority queue.
  81. void pqueue_insert (struct pqueue *pqueue, struct pqueue_node *node);
  82. /*
  83. * Pop a node from the priority list, returning the top-most one,
  84. * or NULL if empty.
  85. */
  86. struct pqueue_node* pqueue_pop (struct pqueue *pqueue);
  87. // Remove a node from the queue.
  88. void pqueue_remove (struct pqueue *pqueue, struct pqueue_node *node);
  89. // Increment the priority of all nodes in the queue.
  90. static inline void
  91. pqueue_inc (struct pqueue *pqueue, uint32_t off)
  92. {
  93. if (!pqueue->head)
  94. return;
  95. _Auto head = pqueue->head;
  96. if (likely (head->prio < UINT16_MAX - off))
  97. head->prio += off;
  98. else
  99. head->prio = UINT16_MAX;
  100. }
  101. static inline struct pqueue_node*
  102. pqueue_node_next (const struct pqueue *pqueue, struct pqueue_node *node)
  103. {
  104. return (!node || node->next == pqueue->head ? NULL : node->next);
  105. }
  106. static inline uint32_t
  107. pqueue_prio (const struct pqueue *pqueue)
  108. {
  109. return (pqueue->head ? pqueue->head->prio : 0);
  110. }
  111. #define pqueue_entry structof
  112. #define pqueue_first_entry(pq, type, member) \
  113. ({ \
  114. _Auto pq_ = (pq); \
  115. pqueue_empty (pq_) ? NULL : pqueue_entry (pq_->head, type, member); \
  116. })
  117. #define pqueue_pop_entry(pq, type, member) \
  118. pqueue_entry (pqueue_pop (pq), type, member)
  119. #define pqueue_next_entry(pq, node, type, member) \
  120. ({ \
  121. _Auto nxt_ = pqueue_node_next ((pq), (node)); \
  122. nxt_ ? pqueue_entry (nxt_, type, member) : NULL; \
  123. })
  124. #define pqueue_for_each(pq, node) \
  125. for (struct pqueue_node *node = (pq)->head; \
  126. node != NULL; node = pqueue_node_next ((pq), node))
  127. #define pqueue_for_each_safe(pq, node, aux) \
  128. for (struct pqueue_node *node = (pq)->head, \
  129. *aux = pqueue_node_next ((pq), node); \
  130. node != NULL; node = aux, aux = pqueue_node_next ((pq), aux))
  131. #define pqueue_for_each_entry(pq, entry, member) \
  132. for (entry = pqueue_first_entry ((pq), typeof (*entry), member); \
  133. entry != NULL; \
  134. entry = pqueue_next_entry ((pq), entry, typeof (*entry), member))
  135. #define pqueue_for_each_entry_safe(pq, entry, aux, member) \
  136. for (entry = pqueue_first_entry ((pq), typeof (*entry), member), \
  137. aux = entry ? pqueue_next_entry (pq, &entry->member, \
  138. typeof (*entry), member) : NULL; \
  139. entry != NULL; entry = aux, \
  140. aux = !entry ? NULL : \
  141. pqueue_next_entry ((pq), &aux->member, typeof (*aux), member))
  142. #endif