This file is indexed.

/usr/share/doc/libcork-doc/html/_sources/dllist.txt is in libcork-doc 0.15.0+ds-11.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
.. _dllist:

*******************
Doubly-linked lists
*******************

.. highlight:: c

::

  #include <libcork/ds.h>

This section defines a doubly-linked list data structure.  The structure
is “invasive”, since you must place an instance of the
:c:type:`cork_dllist_item` type into the type whose instances will be
stored in the list.  The list itself is represented by the
:c:type:`cork_dllist` type.

As an example, we could define the following types for storing groups,
as well as the users within each group::

  struct group {
      const char  *group_name;
      struct cork_dllist  members;
  };

  struct user {
      const char  *username;
      const char  *real_name;
      struct cork_dllist_item  list;
  };

Note that both ``cork_dllist`` and ``cork_dllist_item`` are embedded
directly into our domain-specific types.  This means that every list
operation defined in this section is guaranteed to succeed, since no
memory operations will be involved.  (The list and any items will have
already been allocated before you try to call the list function.)

Like with any embedded ``struct``, you can use the
:c:func:`cork_container_of` macro to obtain a pointer to a ``struct
user`` if you're given a pointer to a :c:type:`cork_dllist_item`.


.. type:: struct cork_dllist

   A doubly-linked list.  The list itself is represented by a sentinel
   element, representing the empty list.


.. type:: struct cork_dllist_item

   An element of a doubly-linked list.  This type will usually be
   embedded within the type whose instances will be stored in the list.

   .. member:: struct cork_dllist_item \*next
               struct cork_dllist_item \*prev

      A pointer to the next (or previous) element in the list.  If this
      element marks the end (or beginning) of the list, then *next* (or
      *prev*) will point to the list's sentinel value.


.. function:: void cork_dllist_init(struct cork_dllist \*list)
              struct cork_dllist CORK_DLLIST_INIT(SYMBOL name)

   Initializes a doubly-linked list.  The list will initially be empty.

   The second variant is a static initializer, that lets you initialize a list
   at compile time, rather than runtime.  You must pass in the name of the list
   for this to work, since we need to be able to extract pointers into the list
   object.


Querying a list
---------------

.. function:: size_t cork_dllist_size(const struct cork_dllist \*list)

   Returns the number of elements in *list*.
   
   This operation runs in :math:`O(n)` time.


.. function:: bool cork_dllist_is_empty(struct cork_dllist \*list)

   Returns whether *list* is empty.

   This operation runs in :math:`O(1)` time.


Editing a list
--------------

.. function:: void cork_dllist_add_to_head(struct cork_dllist \*list, struct cork_dllist_item \*element)
              void cork_dllist_add_to_tail(struct cork_dllist \*list, struct cork_dllist_item \*element)

   Adds *element* to *list*.  The ``_head`` variant adds the new element to the
   beginning of the list; the ``_tail`` variant adds it to the end.
   
   You are responsible for allocating the list element yourself, most likely by
   allocating the ``struct`` that you've embedded :c:type:`cork_dllist_item`
   into.

   .. note::

      This function assumes that *element* isn't already a member of a different
      list.  You're responsible for calling :c:func:`cork_dllist_remove()` if
      this isn't the case.  (If you don't, the other list will become
      malformed.)

   This operation runs in :math:`O(1)` time.


.. function:: void cork_dllist_add_after(struct cork_dllist_item \*pred, struct cork_dllist_item \*element)
              void cork_dllist_add_before(struct cork_dllist_item \*succ, struct cork_dllist_item \*element)

   Adds *element* to the same list that *pred* or *succ* belong to.  The
   ``_after`` variant ensures that *element* appears in the list immediately
   after *pred*.  The ``_before`` variant ensures that *element* appears in the
   list immediately before *succ*.

   .. note::

      This function assumes that *element* isn't already a member of a different
      list.  You're responsible for calling :c:func:`cork_dllist_remove()` if
      this isn't the case.  (If you don't, the other list will become
      malformed.)

   This operation runs in :math:`O(1)` time.


.. function:: void cork_dllist_add_list_to_head(struct cork_dllist \*dest, struct cork_dllist \*src)
              void cork_dllist_add_list_to_tail(struct cork_dllist \*dest, struct cork_dllist \*src)

   Moves all of the elements in *src* to *dest*.  The ``_head`` variant moves
   the elements to the beginning of *dest*; the ``_tail`` variant moves them to
   the end.  After these functions return, *src* will be empty.

   This operation runs in :math:`O(1)` time.


.. function:: void cork_dllist_remove(struct cork_dllist_item \*element)

   Removes *element* from the list that it currently belongs to.  (Note
   that you don't have to pass in a pointer to that list.)

   .. note::

      You must not call this function on a list's sentinel element.

   This operation runs in :math:`O(1)` time.


Iterating through a list
------------------------

There are two strategies you can use to access all of the elements in a
doubly-linked list: *visiting* and *iterating*.  With visiting, you write
a visitor function, which will be applied to each element in the list.
(In this case, libcork controls the loop that steps through each
element.)

.. function:: int cork_dllist_visit(struct cork_dllist \*list, void \*user_data, cork_dllist_visit_f \*func)

   Apply a function to each element in *list*.  The function is allowed
   to remove the current element from the list; this will not affect our
   ability to iterate through the remainder of the list.  The function
   will be given a pointer to the :c:type:`cork_dllist_item` for each
   element; you can use :c:func:`cork_container_of()` to get a pointer to the
   actual element type.

   If your visitor function ever returns a non-zero value, we will abort the
   iteration and return that value from ``cork_dllist_visit``.  If your function
   always returns ``0``, then you will visit all of the elements in *list*, and
   we'll return ``0`` from ``cork_dllist_visit``.

   .. type:: int cork_dllist_visit_f(void \*user_data, struct cork_dllist_item \*element)

      A function that can be applied to each element in a doubly-linked list.

For instance, you can manually calculate the number of elements in a
list as follows (assuming you didn't want to use the built-in
:c:func:`cork_dllist_size()` function, of course)::

  static int
  count_elements(void *user_data, struct cork_dllist_item *element)
  {
      size_t  *count = ud;
      (*count)++;
      return 0;
  }

  struct cork_dllist  *list = /* from somewhere */;
  size_t  count = 0;
  cork_dllist_visit(list, &count, count_elements);  /* returns 0 */
  /* the number of elements is now in count */


The second strategy is to iterate through the elements yourself.

.. macro:: cork_dllist_foreach(struct cork_dllist \*list, struct cork_dllist_item &\*curr, struct cork_dllist_item &\*next, TYPE element_type, TYPE &\*element, FIELD item_field)
           cork_dllist_foreach_void(struct cork_dllist \*list, struct cork_dllist_item &\*curr, struct cork_dllist_item &\*next)

   Iterate through each element in *list*, executing a statement for each one.
   You must declare two variables of type ``struct cork_dllist_item *``, and
   pass in their names as *curr* and *next*.  (You'll usually call the variables
   ``curr`` and ``next``, too.)

   For the ``_void`` variant, your statement can only use these
   :c:type:`cork_dllist_item` variables to access the current list element.  You
   can use :c:func:`cork_container_of` to get a pointer to the actual element
   type.

   For the non-``_void`` variant, we'll automatically call
   :c:func:`cork_container_of` for you.  *element_type* should be the actual
   element type, which must contain an embedded :c:func:`cork_dllist_item`
   field.  *item_field* should be the name of this embedded field.  You must
   allocate a pointer to the element type, and pass in its name as *element*.

For instance, you can use these macros calculate the number of elements as
follows::

  struct cork_dllist  *list = /* from somewhere */;
  struct cork_dllist  *curr;
  struct cork_dllist  *next;
  size_t  count = 0;
  cork_dllist_foreach_void(list, curr, next) {
      count++;
  }
  /* the number of elements is now in count */

We're able to use :c:macro:`cork_dllist_foreach_void` since we don't need to
access the contents of each element to calculate how many of theo there are.  If
we wanted to calculuate a sum, however, we'd have to use
:c:macro:`cork_dllist_foreach`::

  struct element {
      unsigned int  value;
      struct cork_dllist_item  item;
  };

  struct cork_dllist  *list = /* from somewhere */;
  struct cork_dllist  *curr;
  struct cork_dllist  *next;
  struct element  *element;
  unsigned int  sum = 0;
  cork_dllist_foreach(list, curr, next, struct element, element, item) {
      sum += element->value;
  }
  /* the sum of the elements is now in sum */


If the ``foreach`` macros don't provide what you need, you can also iterate
through the list manually.

.. function:: struct cork_dllist_item \*cork_dllist_head(struct cork_dllist \*list)
              struct cork_dllist_item \*cork_dllist_start(struct cork_dllist \*list)

   Returns the element at the beginning of *list*.  If *list* is empty,
   then the ``_head`` variant will return ``NULL``, while the ``_start``
   variant will return the list's sentinel element.


.. function:: struct cork_dllist_item \*cork_dllist_tail(struct cork_dllist \*list)
              struct cork_dllist_item \*cork_dllist_end(struct cork_dllist \*list)

   Returns the element at the end of *list*.  If *list* is empty, then
   the ``_tail`` variant will return ``NULL``, while the ``_end``
   variant will return the list's sentinel element.

.. function:: bool cork_dllist_is_start(struct cork_dllist \*list, struct cork_dllist_item \*element)
              bool cork_dllist_is_end(struct cork_dllist \*list, struct cork_dllist_item \*element)

   Returns whether *element* marks the start (or end) of *list*.

With these functions, manually counting the list elements looks like::

  struct cork_dllist  *list = /* from somewhere */;
  struct cork_dllist_item  *curr;
  size_t  count = 0;
  for (curr = cork_dllist_start(list); !cork_dllist_is_end(list, curr);
       curr = curr->next) {
      count++;
  }
  /* the number of elements is now in count */

You can also count the elements in reverse order::

  struct cork_dllist  *list = /* from somewhere */;
  struct cork_dllist_item  *curr;
  size_t  count = 0;
  for (curr = cork_dllist_end(list); !cork_dllist_is_start(list, curr);
       curr = curr->prev) {
      count++;
  }
  /* the number of elements is now in count */