chiark / gitweb /
Argument naming changes. Describe naming conventions for array types.
[mLib] / man / darray.3
CommitLineData
d1836466 1.\" -*-nroff-*-
2.de VS
3.sp 1
4.RS
5.nf
6.ft B
7..
8.de VE
9.ft R
10.fi
11.RE
12.sp 1
13..
14.de hP
15.IP
16.ft B
17\h'-\w'\\$1\ 'u'\\$1\ \c
18.ft P
19..
20.ie t .ds o \(bu
21.el .ds o o
22.TH darray 3 "21 October 1999" mLib
23.SH "NAME"
24darray \- dense, dynamically resizing arrays
25.\" @DA_INIT
26.\" @DA_DECL
27.\" @DA_CREATE
28.\" @DA_DESTROY
29.\" @DA_ENSURE
30.\" @DA_SHUNT
31.\" @DA_TIDY
85bb21f7 32.\" @DA_RESET
d1836466 33.\" @DA
34.\" @DA_LEN
35.\" @DA_SPARE
36.\" @DA_OFFSET
37.\" @DA_INCLUDE
38.\" @DA_EXTEND
39.\" @DA_UNSAFE_EXTEND
40.\" @DA_SLIDE
41.\" @DA_UNSAFE_SLIDE
85bb21f7 42.\" @DA_SHRINK
43.\" @DA_UNSAFE_SHRINK
44.\" @DA_UNSLIDE
45.\" @DA_UNSAFE_UNSLIDE
d1836466 46.\" @DA_PUSH
47.\" @DA_POP
48.\" @DA_UNSHIFT
49.\" @DA_SHIFT
50.\" @DAEXC_UFLOW
51.\" @DAEXC_OFLOW
52.\" @da_ensure
53.\" @da_shunt
54.\" @da_tidy
55.SH "SYNOPSIS"
56.nf
57.B "#include <mLib/darray.h>"
58
bcb99985 59.BI DA_DECL( type_v ", " type );
60.IB type_v " " a " = DA_INIT;"
61.BI "void DA_CREATE(" type_v " *" a );
62.BI "void DA_DESTROY(" type_v " *" a );
d1836466 63
bcb99985 64.BI "void DA_ENSURE(" type_v " *" a ", size_t " n );
65.BI "void DA_SHUNT(" type_v " *" a ", size_t " n );
66.BI "void DA_TIDY(" type_v " *" a );
67.BI "void DA_RESET(" type_v " *" a );
d1836466 68
bcb99985 69.IB type " *DA(" type_v " *" a );
70.BI "size_t DA_LEN(" type_v " *" a );
71.BI "size_t DA_SPARE(" type_v " *" a );
72.BI "size_t DA_OFFSET(" type_v " *" a );
73.BI "void DA_INCLUDE(" type_v " *" a ", size_t " i );
85bb21f7 74
bcb99985 75.BI "void DA_EXTEND(" type_v " *" a ", long " n );
76.BI "void DA_SHRINK(" type_v " *" a ", long " n );
77.BI "void DA_SLIDE(" type_v " *" a ", long " n );
78.BI "void DA_UNSLIDE(" type_v " *" a ", long " n );
85bb21f7 79
bcb99985 80.BI "void DA_UNSAFE_EXTEND(" type_v " *" a ", long " n );
81.BI "void DA_UNSAFE_SHRINK(" type_v " *" a ", long " n );
82.BI "void DA_UNSAFE_SLIDE(" type_v " *" a ", long " n );
83.BI "void DA_UNSAFE_UNSLIDE(" type_v " *" a ", long " n );
d1836466 84
bcb99985 85.BI "void DA_PUSH(" type_v " *" a ", " type " " x );
86.IB type " DA_POP(" type_v " *" a );
87.BI "void DA_UNSHIFT(" type_v " *" a ", " type " " x );
88.IB type " DA_SHIFT(" type_v " *" a );
d1836466 89
90.BI "void *da_ensure(da_base *" b ", void *" v ", size_t " sz ", size_t " n );
91.BI "void *da_shunt(da_base *" b ", void *" v ", size_t " sz ", size_t " n );
92.BI "void *da_tidy(da_base *" b ", void *" v ", size_t " sz );
93.fi
94.SH "DESCRIPTION"
95The
96.B <mLib/darray.h>
97declares a collection of types, macros and functions which implement
98dynamically resizing arrays.
99.PP
100The macros described here may evaluate their arguments multiple times
101unless otherwise specified.
102.SS "Creation and destruction"
103Each element type must have its own array
104type declared using the
105.B DA_DECL
106macro. Calling
107.VS
bcb99985 108.BI DA_DECL( type_v ", " type );
d1836466 109.VE
110Declares a new dynamic array type
bcb99985 111.I type_v
d1836466 112whose elements have type
113.IR type .
114.PP
bcb99985 115It is conventional to form the name of an array type by appending
116.RB ` _v '
117to the base type name. If the base type is a standard type, or is
118declared separately from the array, it's also conventional to declare a
119macro with the same name as the array type only in uppercase which may
120be used to prevent multiple declarations, e.g.,
121.VS
122#ifndef FOO_V
123# define FOO_V
124 DA_DECL(foo_v, foo)
125#endif
126.VE
d1836466 127The macro
128.B DA_INIT
129is a valid static initializer for all types of dynamic arrays. For
130cases where this isn't appropriate, a dynamic array may be initialized
131using the macro
132.BR DA_INIT ,
133passing it the address of the array.
134.PP
135Arrays may be disposed of using the
136.B DA_DESTROY
137macro, which again takes the address of the array.
138.SS "Storage allocation"
139.PP
140Space for new array elements may be reserved using the
141.B DA_ENSURE
142and
143.B DA_SHUNT
144macros, which reserve space at the end and beginning of the array
145respectively. Both macros take two arguments: the address of an array
146object and the number of spare elements required.
147.PP
148Neither of these macros actually extends the array; both merely allocate
149memory for the array to extend itself into. Use the macros
150.B DA_EXTEND
151and
152.B DA_SLIDE
153to actually increase the bounds of the array.
154.PP
155Note that when space is reserved, all the array elements might move.
156You should be careful not to depend on the addresses of array elements.
157If sufficient storage cannot be allocated, the exception
158.B EXC_NOMEM
159is thrown (see
160.BR exc (3)).
161.PP
162The macro
163.B DA_TIDY
164takes one argument: the address of a dynamic array. It minimizes the
165amount of memory used by the array. This is a useful function to call
166when the array's size has finally settled down.
85bb21f7 167.PP
168The macro
169.B DA_RESET
170accepts the address of an array. It reduces the length of the array to
171zero. No storage is deallocated. Resetting arrays might not be a good
172idea if the objects in the array are dynamically allocated.
d1836466 173.SS "Accessing array elements"
174If
175.I a
176is the address of a dynamic array object, then
177.BI DA( a )
178is the base address of the actual array. The elements are stored
179contiguously starting at this address. An element at index
180.I i
181may be referenced using the syntax
182.BI DA( a )[ i \fR.
183.PP
184The number of elements in the array
185.I a
186is given by
187.BI DA_LEN( a )\fR.
188An integer array index
189.I i
190is
191.I valid
192if 0 \(<=
193.I i
194<
195.BI DA_LEN( a )\fR.
196.PP
197There may be some spare slots at the end of the array. In particular,
198after a call to
199.BI DA_ENSURE( a ", " n )
200there will be at least
201.I n
202spare slots. The number of spare slots at the end of the array may be
203obtained as
204.BI DA_SPARE( a )\fR.
205.PP
206Similarly, there may be spare slots before the start of the array. In
207particular, after a call to
208.BI DA_SHUNT( a ", " n )
209there will be at least
210.I n
211spare slots. The number of spare slots before the start of the array
212may be obtained as
213.BI DA_OFFSET( a )\fR.
214.PP
215The call
216.BI DA_INCLUDE( a ", " i )
217ensures that the array's bounds include the index
218.I i
219by extending the array if necessary. The exception
220.B EXC_NOMEM
221is thrown if there isn't enough memory to do this.
222.PP
223The array's bounds may be extended by
224.I n
225slots by calling
226.BI DA_EXTEND( a ", " n )\fR.
227The integer
228.I n
229must be less than
230.BI DA_SPARE( a )\fR;
231if this is not the case then the exception
232.B DAEXC_OFLOW
233is thrown.
234Note that
235.I n
236may be negative to reduce the bounds of the array: in this case it must
237be greater than
238.BI \-DA_LEN( a )
239or the exception
240.B DAEXC_UFLOW
241is thrown. The macro
242.B DA_UNSAFE_EXTEND
243does the same job, but performs no error checking.
244.PP
245The macro
246.BI DA_SLIDE( a ", " n )
247offsets the array elements by
248.IR n .
249If
250.I n
251is positive, the array elements are slid upwards, to higher-numbered
252indices; if
253.I n
254is negative, the elements are slid downwards. Precisely, what happens
255is that elements which used to have index
256.I i
257\-
258.I n
259now have index
260.IR i .
261The exception
262.B DAEXC_OFLOW
263is thrown if
264.I n
265>
266.BI DA_OFFSET( a )\fR;
267.B DAEXC_UFLOW
268is thrown if
269.I n
270<
271.BI \-DA_LEN( a )\fR.
272The macro
273.B DA_UNSAFE_SLIDE
274does the same job, only without the error checking.
85bb21f7 275.PP
276The macros
277.B DA_SHRINK
278and
279.B DA_UNSLIDE
280do the same things as
281.B DA_EXTEND
282and
283.B DA_SLIDE
284respectively, except that they interpret the sign of their second
285arguments in the opposite way. This is useful if the argument is
286unsigned (e.g., if it's based on
287.BR DA_LEN ). There are unsafed versions of both these macros too.
d1836466 288.SS "Stack operations"
289Dynamic arrays support Perl-like stack operations. Given an array
290(pointer)
291.I a
292and an object of the array's element type
293.I x
294the following operations are provided:
295.TP
296.BI DA_PUSH( a ", " x )
297Add
298.I x
299to the end of the array, increasing the array size by one.
300.TP
301.IB x " = DA_POP(" a )
302Remove the final element of the array, assigning
303.I x
304its value and decreasing the array size by one.
305.TP
306.BI DA_UNSHIFT( a ", " x )
307Insert
308.I x
309at the beginning of the array, shifting all the elements up one place
310and increasing the array size by one.
311.TP
312.IB x " = DA_SHIFT(" a )
313Remove the first element of the array, assigning
314.I x
315its value, shifting all the subsequent array items down one place and
316decreasing the array size by one.
317.PP
318The operations
319.B DA_PUSH
320and
321.B DA_UNSHIFT
322can fail due to lack of memory, in which case
323.B EXC_NOMEM
324is thrown. The operations
325.B DA_POP
326and
327.B DA_SHIFT
328can fail because the array is empty, in which case
329.B DAEXC_UFLOW
330is thrown.
331.SS "Low-level details"
332This section describes low-level details of the dynamic array
333implementation. You should try to avoid making use of this information
334if you can, since the interface may change in later library versions.
335In particular, more subtleties may be added which low-level access will
336miss.
337.PP
338Dynamic arrays are structures with the format
339.VS
bcb99985 340.BI "typedef struct " type_v " {"
d1836466 341.B " da_base b;"
342.BI " " type " *v;"
bcb99985 343.BI "} " type_v ";"
d1836466 344.VE
345The pointer
346.B v
347indicates the current base of the array. This will move in the
348allocated space as a result of
349.B DA_SHIFT
350and
351.B DA_UNSHIFT
352(and
353.BR DA_SLIDE )
354operations.
355.PP
356The
357.B da_base
358structure contains the following elements:
359.TP
360.B "size_t sz"
361The number of allocated slots from
362.B v
363onwards.
364.TP
365.B "size_t len"
366The number of items considered to be in the array. The allocated space
367is usually larger than this.
368.TP
369.B "size_t off"
370The number of allocated slots preceding
371.BR v .
372The total number of allocated items is therefore
373.B sz
374+
375.BR off .
376.TP
377.B "unsigned push"
378The number of items pushed or ensured since the last array expansion.
379.TP
380.B "unsigned unshift"
381The number of items unshifted or shunted since the last array expansion.
382.PP
383The
384.B push
385and
386.B unshift
387members are used by the expansion routines to decide how to allocate
388free space before and after the array elements following a reallocation.
389The other members should be fairly self-explanatory.
390.PP
391The reallocation routines
392.BR da_ensure ,
393.B da_shunt
394and
395.B da_tidy
396have a regular interface. They're a bit
397strange, though, because they have to deal with lots of different types
398of arrays. The arguments they take are:
399.TP
400.BI "da_base *" b
401Pointer to the
402.B da_base
403member of the array block.
404.TP
405.BI "void *" v
406The array base pointer from the array block (i.e., the
407.B v
408member).
409.TP
410.BI "size_t " sz
411The element size for the array.
412.TP
413.BI "size_t " n
414(For
415.B da_ensure
416and
417.B da_shunt
418only.) The number of spare slots required.
419.PP
420The functions may modify the base structure, and return a newly
421allocated (or at least repositioned) array base pointer, or throw
422.B EXC_NOMEM
423if there's not enough memory.
424.PP
425The three functions behave as follows:
426.TP
427.B da_ensure
428Ensure that there are at least
429.I n
430spare slots after the end of the array.
431.TP
432.B da_shunt
433Ensure that there are at least
434.I n
435spare slots preceding the start of the array.
436.TP
437.B da_tidy
438Reallocate the array to use the smallest amount of memory possible.
439.SH "SEE ALSO"
440.BR exc (3),
441.BR mLib (3).
442.SH "AUTHOR"
443Mark Wooding, <mdw@nsict.org>