• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * nghttp2 - HTTP/2 C Library
3  *
4  * Copyright (c) 2012 Tatsuhiro Tsujikawa
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be
15  * included in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25 #ifndef NGHTTP2_PQ_H
26 #define NGHTTP2_PQ_H
27 
28 #ifdef HAVE_CONFIG_H
29 #  include <config.h>
30 #endif /* HAVE_CONFIG_H */
31 
32 #include <nghttp2/nghttp2.h>
33 #include "nghttp2_int.h"
34 #include "nghttp2_mem.h"
35 
36 /* Implementation of priority queue */
37 
38 typedef struct {
39   size_t index;
40 } nghttp2_pq_entry;
41 
42 typedef struct {
43   /* The pointer to the pointer to the item stored */
44   nghttp2_pq_entry **q;
45   /* Memory allocator */
46   nghttp2_mem *mem;
47   /* The number of items stored */
48   size_t length;
49   /* The maximum number of items this pq can store. This is
50      automatically extended when length is reached to this value. */
51   size_t capacity;
52   /* The less function between items */
53   nghttp2_less less;
54 } nghttp2_pq;
55 
56 /*
57  * Initializes priority queue |pq| with compare function |cmp|.
58  */
59 void nghttp2_pq_init(nghttp2_pq *pq, nghttp2_less less, nghttp2_mem *mem);
60 
61 /*
62  * Deallocates any resources allocated for |pq|.  The stored items are
63  * not freed by this function.
64  */
65 void nghttp2_pq_free(nghttp2_pq *pq);
66 
67 /*
68  * Adds |item| to the priority queue |pq|.
69  *
70  * This function returns 0 if it succeeds, or one of the following
71  * negative error codes:
72  *
73  * NGHTTP2_ERR_NOMEM
74  *     Out of memory.
75  */
76 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item);
77 
78 /*
79  * Returns item at the top of the queue |pq|. If the queue is empty,
80  * this function returns NULL.
81  */
82 nghttp2_pq_entry *nghttp2_pq_top(nghttp2_pq *pq);
83 
84 /*
85  * Pops item at the top of the queue |pq|. The popped item is not
86  * freed by this function.
87  */
88 void nghttp2_pq_pop(nghttp2_pq *pq);
89 
90 /*
91  * Returns nonzero if the queue |pq| is empty.
92  */
93 int nghttp2_pq_empty(nghttp2_pq *pq);
94 
95 /*
96  * Returns the number of items in the queue |pq|.
97  */
98 size_t nghttp2_pq_size(nghttp2_pq *pq);
99 
100 typedef int (*nghttp2_pq_item_cb)(nghttp2_pq_entry *item, void *arg);
101 
102 /*
103  * Updates each item in |pq| using function |fun| and re-construct
104  * priority queue. The |fun| must return non-zero if it modifies the
105  * item in a way that it affects ordering in the priority queue. The
106  * |arg| is passed to the 2nd parameter of |fun|.
107  */
108 void nghttp2_pq_update(nghttp2_pq *pq, nghttp2_pq_item_cb fun, void *arg);
109 
110 /*
111  * Applies |fun| to each item in |pq|.  The |arg| is passed as arg
112  * parameter to callback function.  This function must not change the
113  * ordering key.  If the return value from callback is nonzero, this
114  * function returns 1 immediately without iterating remaining items.
115  * Otherwise this function returns 0.
116  */
117 int nghttp2_pq_each(nghttp2_pq *pq, nghttp2_pq_item_cb fun, void *arg);
118 
119 /*
120  * Removes |item| from priority queue.
121  */
122 void nghttp2_pq_remove(nghttp2_pq *pq, nghttp2_pq_entry *item);
123 
124 #endif /* NGHTTP2_PQ_H */
125