-
Notifications
You must be signed in to change notification settings - Fork 311
/
Copy pathcstl_deque_aux.h
227 lines (201 loc) · 10.1 KB
/
cstl_deque_aux.h
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
/*
* The implement of deque auxiliary function.
* Copyright (C) 2008 - 2012 Wangbo
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author e-mail: activesys.wb@gmail.com
* activesys@sina.com.cn
*/
#ifndef _CSTL_DEQUE_AUX_H_
#define _CSTL_DEQUE_AUX_H_
#ifdef __cplusplus
extern "C" {
#endif
/** include section **/
/** constant declaration and macro section **/
#define _DEQUE_MAP_COUNT 16
#define _DEQUE_MAP_GROW_STEP 8
#define _DEQUE_ELEM_COUNT 16
/* macros for type informations */
#define _GET_DEQUE_TYPE_SIZE(pdeq_deque) ((pdeq_deque)->_t_typeinfo._pt_type->_t_typesize)
#define _GET_DEQUE_TYPE_NAME(pdeq_deque) ((pdeq_deque)->_t_typeinfo._s_typename)
#define _GET_DEQUE_TYPE_BASENAME(pdeq_deque) ((pdeq_deque)->_t_typeinfo._pt_type->_s_typename)
#define _GET_DEQUE_TYPE_INIT_FUNCTION(pdeq_deque) ((pdeq_deque)->_t_typeinfo._pt_type->_t_typeinit)
#define _GET_DEQUE_TYPE_COPY_FUNCTION(pdeq_deque) ((pdeq_deque)->_t_typeinfo._pt_type->_t_typecopy)
#define _GET_DEQUE_TYPE_LESS_FUNCTION(pdeq_deque) ((pdeq_deque)->_t_typeinfo._pt_type->_t_typeless)
#define _GET_DEQUE_TYPE_DESTROY_FUNCTION(pdeq_deque) ((pdeq_deque)->_t_typeinfo._pt_type->_t_typedestroy)
#define _GET_DEQUE_TYPE_STYLE(pdeq_deque) ((pdeq_deque)->_t_typeinfo._t_style)
/** data type declaration and struct, union, enum section **/
/** exported global variable declaration section **/
/** exported function prototype section **/
#ifndef NDEBUG
/**
* Test iterator referenced data is within the deque.
* @param cpdeq_deque point to deque container.
* @param it_iter deque iterator.
* @return if iterator referenced is within the deque, then return true, otherwise return false.
* @remarks if cpdeq_deque == NULL, then the behavior is undefined, the it_iter must be valie deque iterator and
* must belong to deque, otherwist the behavior is undefined.
*/
extern bool_t _deque_iterator_belong_to_deque(const deque_t* cpdeq_deque, deque_iterator_t it_iter);
/**
* Test the type that saved in the deque container and referenced by it_iter are same.
* @param cpdeq_deque deque container.
* @param it_iter deque iterator.
* @return if the type is same, return true, else return false.
* @remarks if cpdeq_first == NULL or it_iter is not deque iterator, then the behavior is undefined.
*/
extern bool_t _deque_same_deque_iterator_type(const deque_t* cpdeq_deque, deque_iterator_t it_iter);
/**
* Test the type that saved in the deque container and referenced by it_iter are same.
* @param cpdeq_deque deque container.
* @param it_iter iterator.
* @return if the type is same, return true, else return false.
* @remarks if cpdeq_first == NULL, then the behavior is undefined.
*/
extern bool_t _deque_same_iterator_type(const deque_t* cpdeq_deque, iterator_t it_iter);
/**
* Test deque is created by create_deque.
* @param cpdeq_deque deque container.
* @return if deque is created by create_deque, then return true, else return false.
* @remarks if cpdeq_deque == NULL, then the behavior is undefined.
*/
extern bool_t _deque_is_created(const deque_t* cpdeq_deque);
#endif /* NDEBUG */
/**
* Test deque is initialized by deque initialization functions.
* @param cpdeq_deque deque container.
* @return if deque is initialized by deque initialization functions, then return true, else return false.
* @remarks if cpdeq_deque == NULL, then the behavior is undefined.
*/
extern bool_t _deque_is_inited(const deque_t* cpdeq_deque);
/**
* Test the type that saved in the deque container is same.
* @param cpdeq_first first deque.
* @param cpdeq_second second deque.
* @return if the type is same, return true, else return false.
* @remarks if cpdeq_first == NULL or cpdeq_second == NULL, the behavior is undefined. the two deque must be
* initialized or created by create_deque(), otherwise the behavior is undefined.
*/
extern bool_t _deque_same_type(const deque_t* cpdeq_first, const deque_t* cpdeq_second);
/**
* Expand deque at end.
* @param pdeq_deque deque container.
* @param t_expandsize expand size.
* @param pit_pos iterator pointer.
* @return iterator that reference deque end before expanding.
* @remarks if pdeq_deque == NULL, then the behavior is undefined. the deque container must be initialized, otherwise the
* behavior is undefined. *pit_pos must be valid deque iterator, otherwise the behavior is undefined. the pit_pos
* may be NULL.
*/
extern deque_iterator_t _deque_expand_at_end(deque_t* pdeq_deque, size_t t_expandsize, deque_iterator_t* pit_pos);
/**
* Expand deque at begin.
* @param pdeq_deque deque container.
* @param t_expandsize expand size.
* @param pit_pos iterator pointer.
* @return iterator that reference deque begin before expanding.
* @remarks if pdeq_deque == NULL, then the behavior is undefined. the deque container must be initialized, otherwise the
* behavior is undefined. *pit_pos must be valid deque iterator, otherwise the behavior is undefined. the pit_pos
* may be NULL.
*/
extern deque_iterator_t _deque_expand_at_begin(deque_t* pdeq_deque, size_t t_expandsize, deque_iterator_t* pit_pos);
/**
* Shrink deque at end.
* @param pdeq_deque deque container.
* @param t_shrinksize shrink size.
* @return void.
* @remarks if pdeq_deque == NULL, then the behavior is undefined. the deque container must be initialized, otherwise the
* behavior is undefined. if t_shrinksize > deque_size(pdeq_deque), then this function erase all elements.
*/
extern void _deque_shrink_at_end(deque_t* pdeq_deque, size_t t_shrinksize);
/**
* Shrink deque at begin.
* @param pdeq_deque deque container.
* @param t_shrinksize shrink size.
* @return void.
* @remarks if pdeq_deque == NULL, then the behavior is undefined. the deque container must be initialized, otherwise the
* behavior is undefined. if t_shrinksize > deque_size(pdeq_deque), then this function erase all elements.
*/
extern void _deque_shrink_at_begin(deque_t* pdeq_deque, size_t t_shrinksize);
/**
* Move element range to deque end.
* @param pdeq_deque deque container.
* @param it_begin range begin.
* @param it_end range end.
* @param t_step move step.
* @return the begin of gap range.
* @remarks if pdeq_deque == NULL, then the behavior is undefined. the deque container must be initialized, otherwise the
* behavior is undefine. [it_begin, it_end) must be valid for deque container, otherwise the behavior is undefine.
* [it_begin, it_end) must also be valid for deque container after moving, otherwise the behavior is undefine.
*/
extern deque_iterator_t _deque_move_elem_to_end(
deque_t* pdeq_deque, deque_iterator_t it_begin, deque_iterator_t it_end, size_t t_step);
/**
* Move element range to deque begin.
* @param pdeq_deque deque container.
* @param it_begin range begin.
* @param it_end range end.
* @param t_step move step.
* @return the begin of gap range.
* @remarks if pdeq_deque == NULL, then the behavior is undefined. the deque container must be initialized, otherwise the
* behavior is undefine. [it_begin, it_end) must be valid for deque container, otherwise the behavior is undefine.
* [it_begin, it_end) must also be valid for deque container after moving, otherwise the behavior is undefine.
*/
extern deque_iterator_t _deque_move_elem_to_begin(
deque_t* pdeq_deque, deque_iterator_t it_begin, deque_iterator_t it_end, size_t t_step);
/**
* Obtain data from variable argument list, the data type and deque element data type are same.
* @param pdeq_deque deque container.
* @param val_elemlist variable argument list.
* @param pv_varg data buffer.
* @return void.
* @remarks if pdeq_deque == NULL or pv_varg == NULL, then the behavior is undefined. pdeq_deque must be initialized
* or created by create_deque(), otherwise the behavior is undefined.
*/
extern void _deque_get_varg_value_auxiliary(deque_t* pdeq_deque, va_list val_elemlist, void* pv_varg);
/**
* Destroy data, the data type and deque element data type are same.
* @param pdeq_deque deque container.
* @param pv_varg data buffer.
* @return void.
* @remarks if pdeq_deque == NULL or pv_varg == NULL, then the behavior is undefined. pdeq_deque must be initialized
* or created by create_deque(), otherwise the behavior is undefined.
*/
extern void _deque_destroy_varg_value_auxiliary(deque_t* pdeq_deque, void* pv_varg);
/**
* Initialize data within range [it_begin, it_end) according to deque element data type.
* @param pdeq_deque deque container.
* @param it_begin range begin.
* @param it_end range end.
* @return void.
* @remarks if pdeq_deque == NULL, then the behavior is undefined. pdeq_deque must be initialized or created by create_deque(),
* otherwise the behavior is undefined. [it_begin, it_end) must be valid range, and the type of pdeq_deque and
* [it_begin, it_end) must be the same, otherwise the behavior is undefined.
*/
extern void _deque_init_elem_range_auxiliary(deque_t* pdeq_deque, deque_iterator_t it_begin, deque_iterator_t it_end);
/**
* Get the iterator pointer auxiliary function.
* @param it_iter deque iterator.
* @return data pointer.
* @remarks it_iter must be valid deque iterator, otherwise the behavior is undefined.
*/
extern void* _deque_iterator_get_pointer_auxiliary(iterator_t it_iter);
#ifdef __cplusplus
}
#endif
#endif /* _CSTL_DEQUE_AUX_H_ */
/** eof **/