Asterisk - The Open Source Telephony Project GIT-master-a358458
Data Structures | Functions
heap.c File Reference

Max Heap data structure. More...

#include "asterisk.h"
#include "asterisk/heap.h"
#include "asterisk/utils.h"
#include "asterisk/cli.h"
Include dependency graph for heap.c:

Go to the source code of this file.

Data Structures

struct  ast_heap
 

Functions

int __ast_heap_rdlock (struct ast_heap *h, const char *file, const char *func, int line)
 Read-Lock a heap. More...
 
int __ast_heap_unlock (struct ast_heap *h, const char *file, const char *func, int line)
 Unlock a heap. More...
 
int __ast_heap_wrlock (struct ast_heap *h, const char *file, const char *func, int line)
 Write-Lock a heap. More...
 
struct ast_heap_ast_heap_create (unsigned int init_height, ast_heap_cmp_fn cmp_fn, ssize_t index_offset, const char *file, int lineno, const char *func)
 
int _ast_heap_push (struct ast_heap *h, void *elm, const char *file, int lineno, const char *func)
 
static void * _ast_heap_remove (struct ast_heap *h, unsigned int index)
 
struct ast_heapast_heap_destroy (struct ast_heap *h)
 Destroy a max heap. More...
 
void * ast_heap_peek (struct ast_heap *h, unsigned int index)
 Peek at an element on a heap. More...
 
void * ast_heap_pop (struct ast_heap *h)
 Pop the max element off of the heap. More...
 
void * ast_heap_remove (struct ast_heap *h, void *elm)
 Remove a specific element from a heap. More...
 
size_t ast_heap_size (struct ast_heap *h)
 Get the current size of a heap. More...
 
int ast_heap_verify (struct ast_heap *h)
 Verify that a heap has been properly constructed. More...
 
static int bubble_up (struct ast_heap *h, int i)
 
static ssize_t get_index (struct ast_heap *h, void *elm)
 
static int grow_heap (struct ast_heap *h, const char *file, int lineno, const char *func)
 Add a row of additional storage for the heap. More...
 
static void * heap_get (struct ast_heap *h, int i)
 
static void heap_set (struct ast_heap *h, int i, void *elm)
 
static void heap_swap (struct ast_heap *h, int i, int j)
 
static int left_node (int i)
 
static void max_heapify (struct ast_heap *h, int i)
 
static int parent_node (int i)
 
static int right_node (int i)
 

Detailed Description

Max Heap data structure.

Author
Russell Bryant russe.nosp@m.ll@d.nosp@m.igium.nosp@m..com

Definition in file heap.c.

Function Documentation

◆ __ast_heap_rdlock()

int __ast_heap_rdlock ( struct ast_heap h,
const char *  file,
const char *  func,
int  line 
)

Read-Lock a heap.

Parameters
hthe heap
file,func,line

A lock is provided for convenience. It can be assumed that none of the ast_heap API calls are thread safe. This lock does not have to be used if another one is already available to protect the heap.

Returns
see the documentation for pthread_rwlock_rdlock()
Since
1.6.1

Definition at line 286 of file heap.c.

287{
288 return __ast_rwlock_rdlock(file, line, func, &h->lock, "&h->lock");
289}
int __ast_rwlock_rdlock(const char *filename, int lineno, const char *func, ast_rwlock_t *t, const char *name)
Definition: lock.c:848
ast_rwlock_t lock
Definition: heap.c:37

References __ast_rwlock_rdlock(), make_ari_stubs::file, and ast_heap::lock.

◆ __ast_heap_unlock()

int __ast_heap_unlock ( struct ast_heap h,
const char *  file,
const char *  func,
int  line 
)

Unlock a heap.

Parameters
hthe heap
file,func,line
Returns
see the documentation for pthread_rwlock_unlock()
Since
1.6.1

Definition at line 291 of file heap.c.

292{
293 return __ast_rwlock_unlock(file, line, func, &h->lock, "&h->lock");
294}
int __ast_rwlock_unlock(const char *filename, int lineno, const char *func, ast_rwlock_t *t, const char *name)
Definition: lock.c:777

References __ast_rwlock_unlock(), make_ari_stubs::file, and ast_heap::lock.

◆ __ast_heap_wrlock()

int __ast_heap_wrlock ( struct ast_heap h,
const char *  file,
const char *  func,
int  line 
)

Write-Lock a heap.

Parameters
hthe heap
file,func,line

A lock is provided for convenience. It can be assumed that none of the ast_heap API calls are thread safe. This lock does not have to be used if another one is already available to protect the heap.

Returns
see the documentation for pthread_rwlock_wrlock()
Since
1.6.1

Definition at line 281 of file heap.c.

282{
283 return __ast_rwlock_wrlock(file, line, func, &h->lock, "&h->lock");
284}
int __ast_rwlock_wrlock(const char *filename, int lineno, const char *func, ast_rwlock_t *t, const char *name)
Definition: lock.c:952

References __ast_rwlock_wrlock(), make_ari_stubs::file, and ast_heap::lock.

◆ _ast_heap_create()

struct ast_heap * _ast_heap_create ( unsigned int  init_height,
ast_heap_cmp_fn  cmp_fn,
ssize_t  index_offset,
const char *  file,
int  lineno,
const char *  func 
)

Definition at line 112 of file heap.c.

114{
115 struct ast_heap *h;
116
117 if (!cmp_fn) {
118 ast_log(LOG_ERROR, "A comparison function must be provided\n");
119 return NULL;
120 }
121
122 if (!init_height) {
123 init_height = 8;
124 }
125
126 h = __ast_calloc(1, sizeof(*h), file, lineno, func);
127 if (!h) {
128 return NULL;
129 }
130
131 h->cmp_fn = cmp_fn;
133 h->avail_len = (1 << init_height) - 1;
134
135 h->heap = __ast_malloc(h->avail_len * sizeof(void *), file, lineno, func);
136 if (!h->heap) {
137 ast_free(h);
138 return NULL;
139 }
140
142
143 return h;
144}
void * __ast_malloc(size_t size, const char *file, int lineno, const char *func) attribute_malloc
Definition: astmm.c:1628
#define ast_free(a)
Definition: astmm.h:180
void * __ast_calloc(size_t nmemb, size_t size, const char *file, int lineno, const char *func) attribute_malloc
Definition: astmm.c:1603
#define ast_log
Definition: astobj2.c:42
#define LOG_ERROR
#define ast_rwlock_init(rwlock)
wrapper for rwlock with tracking enabled
Definition: lock.h:224
#define NULL
Definition: resample.c:96
Definition: heap.c:36
ssize_t index_offset
Definition: heap.c:39
void ** heap
Definition: heap.c:42
size_t avail_len
Definition: heap.c:41
ast_heap_cmp_fn cmp_fn
Definition: heap.c:38

References __ast_calloc(), __ast_malloc(), ast_free, ast_log, ast_rwlock_init, ast_heap::avail_len, ast_heap::cmp_fn, make_ari_stubs::file, ast_heap::heap, ast_heap::index_offset, ast_heap::lock, LOG_ERROR, and NULL.

◆ _ast_heap_push()

int _ast_heap_push ( struct ast_heap h,
void *  elm,
const char *  file,
int  lineno,
const char *  func 
)

Definition at line 222 of file heap.c.

223{
224 if (h->cur_len == h->avail_len && grow_heap(h, file, lineno, func)) {
225 return -1;
226 }
227
228 heap_set(h, ++(h->cur_len), elm);
229
230 bubble_up(h, h->cur_len);
231
232 return 0;
233}
static void heap_set(struct ast_heap *h, int i, void *elm)
Definition: heap.c:78
static int bubble_up(struct ast_heap *h, int i)
Definition: heap.c:212
static int grow_heap(struct ast_heap *h, const char *file, int lineno, const char *func)
Add a row of additional storage for the heap.
Definition: heap.c:161
size_t cur_len
Definition: heap.c:40

References ast_heap::avail_len, bubble_up(), ast_heap::cur_len, make_ari_stubs::file, grow_heap(), and heap_set().

◆ _ast_heap_remove()

static void * _ast_heap_remove ( struct ast_heap h,
unsigned int  index 
)
static

Definition at line 235 of file heap.c.

236{
237 void *ret;
238
239 if (!index || index > h->cur_len) {
240 return NULL;
241 }
242
243 ret = heap_get(h, index);
244 heap_set(h, index, heap_get(h, (h->cur_len)--));
245 index = bubble_up(h, index);
246 max_heapify(h, index);
247
248 return ret;
249}
static void max_heapify(struct ast_heap *h, int i)
Definition: heap.c:185
static void * heap_get(struct ast_heap *h, int i)
Definition: heap.c:60

References bubble_up(), ast_heap::cur_len, heap_get(), heap_set(), max_heapify(), and NULL.

Referenced by ast_heap_pop(), and ast_heap_remove().

◆ ast_heap_destroy()

struct ast_heap * ast_heap_destroy ( struct ast_heap h)

Destroy a max heap.

Parameters
hthe heap to destroy
Return values
NULLfor convenience
Since
1.6.1

Definition at line 146 of file heap.c.

147{
148 ast_free(h->heap);
149 h->heap = NULL;
150
152
153 ast_free(h);
154
155 return NULL;
156}
#define ast_rwlock_destroy(rwlock)
Definition: lock.h:233

References ast_free, ast_rwlock_destroy, ast_heap::heap, ast_heap::lock, and NULL.

Referenced by ast_bridge_features_cleanup(), ast_sched_context_destroy(), AST_TEST_DEFINE(), sorcery_memory_cache_destructor(), and timing_shutdown().

◆ ast_heap_peek()

void * ast_heap_peek ( struct ast_heap h,
unsigned int  index 
)

Peek at an element on a heap.

Parameters
hthe heap
indexindex of the element to return. The first element is at index 1, and the last element is at the index == the size of the heap.
Returns
an element at the specified index on the heap. This element will not be removed before being returned.
Note
If this function is being used in combination with ast_heap_size() for purposes of traversing the heap, the heap must be locked for the entire duration of the traversal.

Example code for a traversal:

struct ast_heap *h;
...
size_t size, i;
void *cur_obj;
size = ast_heap_size(h);
for (i = 1; i <= size && (cur_obj = ast_heap_peek(h, i)); i++) {
... Do stuff with cur_obj ...
}
#define ast_heap_unlock(h)
Definition: heap.h:249
#define ast_heap_rdlock(h)
Definition: heap.h:248
size_t ast_heap_size(struct ast_heap *h)
Get the current size of a heap.
Definition: heap.c:276
void * ast_heap_peek(struct ast_heap *h, unsigned int index)
Peek at an element on a heap.
Definition: heap.c:267
Since
1.6.1

Definition at line 267 of file heap.c.

268{
269 if (!h->cur_len || !index || index > h->cur_len) {
270 return NULL;
271 }
272
273 return heap_get(h, index);
274}

References ast_heap::cur_len, heap_get(), and NULL.

Referenced by add_to_cache(), ast_bridge_features_merge(), ast_sched_clean_by_callback(), ast_sched_dump(), ast_sched_report(), ast_sched_runq(), ast_sched_wait(), ast_timer_open(), bridge_channel_handle_interval(), bridge_channel_next_interval(), expire_objects_from_cache(), hooks_remove_heap(), memory_cache_stale_check(), remove_from_cache(), sched_find(), and schedule_cache_expiration().

◆ ast_heap_pop()

void * ast_heap_pop ( struct ast_heap h)

Pop the max element off of the heap.

Parameters
hthe heap
Returns
this will return the element on the top of the heap, which has the largest value according to the element comparison function that was provided when the heap was created. The element will be removed before being returned.
Since
1.6.1

Definition at line 262 of file heap.c.

263{
264 return _ast_heap_remove(h, 1);
265}
static void * _ast_heap_remove(struct ast_heap *h, unsigned int index)
Definition: heap.c:235

References _ast_heap_remove().

Referenced by ast_bridge_features_cleanup(), ast_sched_context_destroy(), ast_sched_runq(), AST_TEST_DEFINE(), remove_all_from_cache(), and remove_oldest_from_cache().

◆ ast_heap_remove()

void * ast_heap_remove ( struct ast_heap h,
void *  elm 
)

Remove a specific element from a heap.

Parameters
hthe heap to remove from
elmthe element to remove
Returns
elm, if the removal was successful
Return values
NULLif it failed
Note
the index_offset parameter to ast_heap_create() is required to be able to use this function.
Since
1.6.1

Definition at line 251 of file heap.c.

252{
253 ssize_t i = get_index(h, elm);
254
255 if (i == -1) {
256 return NULL;
257 }
258
259 return _ast_heap_remove(h, i);
260}
static ssize_t get_index(struct ast_heap *h, void *elm)
Definition: heap.c:65

References _ast_heap_remove(), get_index(), and NULL.

Referenced by ast_sched_clean_by_callback(), ast_sched_del_nonrunning(), AST_TEST_DEFINE(), ast_unregister_timing_interface(), bridge_channel_handle_interval(), hooks_remove_heap(), and remove_from_cache().

◆ ast_heap_size()

size_t ast_heap_size ( struct ast_heap h)

Get the current size of a heap.

Parameters
hthe heap
Returns
the number of elements currently in the heap
Since
1.6.1

Definition at line 276 of file heap.c.

277{
278 return h->cur_len;
279}

References ast_heap::cur_len.

Referenced by ast_sched_dump(), ast_sched_report(), hooks_remove_heap(), sched_find(), and schedule().

◆ ast_heap_verify()

int ast_heap_verify ( struct ast_heap h)

Verify that a heap has been properly constructed.

Parameters
ha heap
Return values
0success
non-zerofailure
Note
This function is mostly for debugging purposes. It traverses an existing heap and verifies that every node is properly placed relative to its children.
Since
1.6.1

Definition at line 88 of file heap.c.

89{
90 unsigned int i;
91
92 for (i = 1; i <= (h->cur_len / 2); i++) {
93 int l = left_node(i);
94 int r = right_node(i);
95
96 if (l <= h->cur_len) {
97 if (h->cmp_fn(heap_get(h, i), heap_get(h, l)) < 0) {
98 return -1;
99 }
100 }
101
102 if (r <= h->cur_len) {
103 if (h->cmp_fn(heap_get(h, i), heap_get(h, r)) < 0) {
104 return -1;
105 }
106 }
107 }
108
109 return 0;
110}
static int left_node(int i)
Definition: heap.c:45
static int right_node(int i)
Definition: heap.c:50

References ast_heap::cmp_fn, ast_heap::cur_len, heap_get(), left_node(), and right_node().

Referenced by AST_TEST_DEFINE().

◆ bubble_up()

static int bubble_up ( struct ast_heap h,
int  i 
)
static

Definition at line 212 of file heap.c.

213{
214 while (i > 1 && h->cmp_fn(heap_get(h, parent_node(i)), heap_get(h, i)) < 0) {
215 heap_swap(h, i, parent_node(i));
216 i = parent_node(i);
217 }
218
219 return i;
220}
static void heap_swap(struct ast_heap *h, int i, int j)
Definition: heap.c:176
static int parent_node(int i)
Definition: heap.c:55

References ast_heap::cmp_fn, heap_get(), heap_swap(), and parent_node().

Referenced by _ast_heap_push(), and _ast_heap_remove().

◆ get_index()

static ssize_t get_index ( struct ast_heap h,
void *  elm 
)
inlinestatic

Definition at line 65 of file heap.c.

66{
67 ssize_t *index;
68
69 if (h->index_offset < 0) {
70 return -1;
71 }
72
73 index = elm + h->index_offset;
74
75 return *index;
76}

References ast_heap::index_offset.

Referenced by ast_heap_remove().

◆ grow_heap()

static int grow_heap ( struct ast_heap h,
const char *  file,
int  lineno,
const char *  func 
)
static

Add a row of additional storage for the heap.

Definition at line 161 of file heap.c.

162{
163 void **new_heap;
164 size_t new_len = h->avail_len * 2 + 1;
165
166 new_heap = __ast_realloc(h->heap, new_len * sizeof(void *), file, lineno, func);
167 if (!new_heap) {
168 return -1;
169 }
170 h->heap = new_heap;
171 h->avail_len = new_len;
172
173 return 0;
174}
void * __ast_realloc(void *ptr, size_t size, const char *file, int lineno, const char *func)
Definition: astmm.c:1640

References __ast_realloc(), ast_heap::avail_len, make_ari_stubs::file, and ast_heap::heap.

Referenced by _ast_heap_push().

◆ heap_get()

static void * heap_get ( struct ast_heap h,
int  i 
)
inlinestatic

Definition at line 60 of file heap.c.

61{
62 return h->heap[i - 1];
63}

References ast_heap::heap.

Referenced by _ast_heap_remove(), ast_heap_peek(), ast_heap_verify(), bubble_up(), heap_swap(), and max_heapify().

◆ heap_set()

static void heap_set ( struct ast_heap h,
int  i,
void *  elm 
)
inlinestatic

Definition at line 78 of file heap.c.

79{
80 h->heap[i - 1] = elm;
81
82 if (h->index_offset >= 0) {
83 ssize_t *index = elm + h->index_offset;
84 *index = i;
85 }
86}

References ast_heap::heap, and ast_heap::index_offset.

Referenced by _ast_heap_push(), _ast_heap_remove(), and heap_swap().

◆ heap_swap()

static void heap_swap ( struct ast_heap h,
int  i,
int  j 
)
inlinestatic

Definition at line 176 of file heap.c.

177{
178 void *tmp;
179
180 tmp = heap_get(h, i);
181 heap_set(h, i, heap_get(h, j));
182 heap_set(h, j, tmp);
183}
static int tmp()
Definition: bt_open.c:389

References heap_get(), heap_set(), and tmp().

Referenced by bubble_up(), and max_heapify().

◆ left_node()

static int left_node ( int  i)
inlinestatic

Definition at line 45 of file heap.c.

46{
47 return 2 * i;
48}

Referenced by ast_heap_verify(), and max_heapify().

◆ max_heapify()

static void max_heapify ( struct ast_heap h,
int  i 
)
inlinestatic

Definition at line 185 of file heap.c.

186{
187 for (;;) {
188 int l = left_node(i);
189 int r = right_node(i);
190 int max;
191
192 if (l <= h->cur_len && h->cmp_fn(heap_get(h, l), heap_get(h, i)) > 0) {
193 max = l;
194 } else {
195 max = i;
196 }
197
198 if (r <= h->cur_len && h->cmp_fn(heap_get(h, r), heap_get(h, max)) > 0) {
199 max = r;
200 }
201
202 if (max == i) {
203 break;
204 }
205
206 heap_swap(h, i, max);
207
208 i = max;
209 }
210}
#define max(a, b)
Definition: f2c.h:198

References ast_heap::cmp_fn, ast_heap::cur_len, heap_get(), heap_swap(), left_node(), max, and right_node().

Referenced by _ast_heap_remove().

◆ parent_node()

static int parent_node ( int  i)
inlinestatic

Definition at line 55 of file heap.c.

56{
57 return i / 2;
58}

Referenced by bubble_up().

◆ right_node()

static int right_node ( int  i)
inlinestatic

Definition at line 50 of file heap.c.

51{
52 return 2 * i + 1;
53}

Referenced by ast_heap_verify(), and max_heapify().