dbus-marshal-byteswap: Byte-swap Unix fd indexes if needed
[platform/upstream/dbus.git] / dbus / dbus-list.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-list.h Generic linked list utility (internal to D-Bus implementation)
3  * 
4  * Copyright (C) 2002, 2003 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #ifndef DBUS_LIST_H
25 #define DBUS_LIST_H
26
27 #include <dbus/dbus-internals.h>
28 #include <dbus/dbus-memory.h>
29 #include <dbus/dbus-types.h>
30 #include <dbus/dbus-sysdeps.h>
31
32 DBUS_BEGIN_DECLS
33
34 struct DBusList
35 {
36   DBusList *prev; /**< Previous list node. */
37   DBusList *next; /**< Next list node. */
38   void     *data; /**< Data stored at this element. */
39 };
40 DBUS_PRIVATE_EXPORT
41 dbus_bool_t _dbus_list_append             (DBusList **list,
42                                            void      *data);
43 DBUS_PRIVATE_EXPORT
44 dbus_bool_t _dbus_list_prepend            (DBusList **list,
45                                            void      *data);
46 dbus_bool_t _dbus_list_insert_before      (DBusList **list,
47                                            DBusList  *before_this_link,
48                                            void      *data);
49 DBUS_PRIVATE_EXPORT
50 dbus_bool_t _dbus_list_insert_after       (DBusList **list,
51                                            DBusList  *after_this_link,
52                                            void      *data);
53 DBUS_PRIVATE_EXPORT
54 void        _dbus_list_insert_before_link (DBusList **list,
55                                            DBusList  *before_this_link,
56                                            DBusList  *link);
57 DBUS_PRIVATE_EXPORT
58 void        _dbus_list_insert_after_link  (DBusList **list,
59                                            DBusList  *after_this_link,
60                                            DBusList  *link);
61 DBUS_PRIVATE_EXPORT
62 dbus_bool_t _dbus_list_remove             (DBusList **list,
63                                            void      *data);
64 DBUS_PRIVATE_EXPORT
65 dbus_bool_t _dbus_list_remove_last        (DBusList **list,
66                                            void      *data);
67 DBUS_PRIVATE_EXPORT
68 void        _dbus_list_remove_link        (DBusList **list,
69                                            DBusList  *link);
70 DBUS_PRIVATE_EXPORT
71 DBusList*   _dbus_list_find_first         (DBusList **list,
72                                            void      *data);
73 DBUS_PRIVATE_EXPORT
74 DBusList*   _dbus_list_find_last          (DBusList **list,
75                                            void      *data);
76 DBUS_PRIVATE_EXPORT
77 void        _dbus_list_clear              (DBusList **list);
78 DBUS_PRIVATE_EXPORT
79 DBusList*   _dbus_list_get_first_link     (DBusList **list);
80 DBUS_PRIVATE_EXPORT
81 DBusList*   _dbus_list_get_last_link      (DBusList **list);
82 DBUS_PRIVATE_EXPORT
83 void*       _dbus_list_get_last           (DBusList **list);
84 DBUS_PRIVATE_EXPORT
85 void*       _dbus_list_get_first          (DBusList **list);
86 DBUS_PRIVATE_EXPORT
87 void*       _dbus_list_pop_first          (DBusList **list);
88 DBUS_PRIVATE_EXPORT
89 void*       _dbus_list_pop_last           (DBusList **list);
90 DBUS_PRIVATE_EXPORT
91 DBusList*   _dbus_list_pop_first_link     (DBusList **list);
92 DBUS_PRIVATE_EXPORT
93 dbus_bool_t _dbus_list_copy               (DBusList **list,
94                                            DBusList **dest);
95 DBUS_PRIVATE_EXPORT
96 int         _dbus_list_get_length         (DBusList **list);
97 DBUS_PRIVATE_EXPORT
98 DBusList*   _dbus_list_alloc_link         (void      *data);
99 DBUS_PRIVATE_EXPORT
100 void        _dbus_list_free_link          (DBusList  *link);
101 DBUS_PRIVATE_EXPORT
102 void        _dbus_list_unlink             (DBusList **list,
103                                            DBusList  *link);
104 DBUS_PRIVATE_EXPORT
105 void        _dbus_list_append_link        (DBusList **list,
106                                            DBusList  *link);
107 DBUS_PRIVATE_EXPORT
108 void        _dbus_list_prepend_link       (DBusList **list,
109                                            DBusList  *link);
110 DBUS_PRIVATE_EXPORT
111 dbus_bool_t _dbus_list_length_is_one      (DBusList **list);
112
113
114 DBUS_PRIVATE_EXPORT
115 void _dbus_list_foreach (DBusList            **list,
116                          DBusForeachFunction   function,
117                          void                 *data);
118
119 #define _dbus_list_get_next_link(list, link) ((link)->next == *(list) ? NULL : (link)->next)
120 #define _dbus_list_get_prev_link(list, link) ((link) == *(list) ? NULL : (link)->prev)
121
122 /* if DBUS_ENABLE_STATS */
123 DBUS_PRIVATE_EXPORT
124 void        _dbus_list_get_stats          (dbus_uint32_t *in_use_p,
125                                            dbus_uint32_t *in_free_list_p,
126                                            dbus_uint32_t *allocated_p);
127
128 DBUS_END_DECLS
129
130 #endif /* DBUS_LIST_H */