/[public]/psiconv/trunk/lib/psiconv/list.h
ViewVC logotype

Annotation of /psiconv/trunk/lib/psiconv/list.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 98 - (hide annotations)
Mon Jan 29 21:57:05 2001 UTC (23 years, 3 months ago) by frodo
File MIME type: text/plain
File size: 5239 byte(s)
(Frodo) Base formula work

1 frodo 2 /*
2     list.h - Part of psiconv, a PSION 5 file formats converter
3 frodo 63 Copyright (c) 1999, 2000 Frodo Looijaard <frodol@dds.nl>
4 frodo 2
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9    
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13     GNU General Public License for more details.
14    
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18     */
19    
20     /* A generic list type. In C++, this would be much neater. All elements must
21     be of the same size (solve it with pointers, if needed) */
22    
23     #ifndef PSICONV_LIST_H
24     #define PSICONV_LIST_H
25    
26 frodo 79 #include <psiconv/general.h>
27 frodo 2 #include <stddef.h>
28     #include <stdio.h>
29    
30 frodo 55 #ifdef __cplusplus
31     extern "C" {
32     #endif /* __cplusplus */
33    
34 frodo 2 /* Always use psiconv_list, never struct psiconv_list */
35     /* No need to export the actual internal format */
36 frodo 56 typedef struct psiconv_list_s *psiconv_list;
37 frodo 2
38     /* Before using a list, call list_new. It takes the size of a single element
39     as its argument. Always compute it with a sizeof() expression, just to be
40 frodo 62 safe. The returned list is empty.
41     If there is not enough memory available, NULL is returned. You should
42     always test for this explicitely, because the other functions do not
43     like a psiconv_list argument that is equal to NULL */
44 frodo 79 extern psiconv_list psiconv_list_new(size_t element_size);
45 frodo 2
46     /* This frees the list. If elements contain pointers that need to be freed
47     separately, call list_free_el below. */
48     extern void psiconv_list_free(psiconv_list l);
49    
50     /* This calls free_el first for each element, before doing a list_free.
51     Note that you should *not* do 'free(el)' at any time; that is taken care of
52     automatically. */
53     extern void psiconv_list_free_el(psiconv_list l, void free_el(void *el));
54    
55     /* Return the number of allocated elements */
56 frodo 79 extern psiconv_u32 psiconv_list_length(const psiconv_list l);
57 frodo 2
58     /* Return 1 if the list is empty, 0 if not */
59     extern int psiconv_list_is_empty(const psiconv_list l);
60    
61 frodo 80 /* Empty a list. Note this does not reclaim any memory space! */
62     extern void psiconv_list_empty(psiconv_list l);
63    
64 frodo 2 /* Get an element from the list, and return a pointer to it. Note: you can
65     directly modify this element, but be careful not to write beyond the
66 frodo 62 element memory space.
67     If indx is out of range, NULL is returned. */
68 frodo 79 extern void * psiconv_list_get(const psiconv_list l, psiconv_u32 indx);
69 frodo 2
70     /* Add an element at the end of the list. The element is copied from the
71     supplied element. Of course, this does not help if the element contains
72 frodo 62 pointers.
73     As the lists extends itself, it may be necessary to allocate new
74     memory. If this fails, a negative error-code is returned. If everything,
75     succeeds, 0 is returned. */
76 frodo 70 extern int psiconv_list_add(psiconv_list l, const void *el);
77 frodo 2
78 frodo 98 /* Remove the last element from the list, and copy it to el. Note that
79     this will not reduce the amount of space reserved for the list.
80     An error code is returned, which will be 0 zero if everything
81     succeeded. It is your own responsibility to make sure enough
82     space is allocated to el. */
83     extern int psiconv_list_pop(psiconv_list l, void *el);
84    
85 frodo 80 /* Replace an element within the list. The element is copied from the
86     supplied element. Fails if you try to write at or after the end of
87     the list. */
88     extern int psiconv_list_replace(psiconv_list l, psiconv_u32 indx,
89     const void *el);
90    
91 frodo 2 /* Do some action for each element. Note: you can directly modify the
92     elements supplied to action, and they will be changed in the list,
93     but never try a free(el)! */
94     extern void psiconv_list_foreach_el(psiconv_list l, void action(void *el));
95    
96     /* Clone the list, that is, copy it. If elements contain pointers, you
97 frodo 62 should call the next routine. If not enough memory is available,
98     NULL is returned. */
99 frodo 2 extern psiconv_list psiconv_list_clone(const psiconv_list l);
100    
101     /* Read upto size_t elements from file f, and put them at the end of list l.
102     Returned is the actual number of elements added. This assumes the file
103 frodo 62 layout and the memory layout of elements is the same. Note that if
104     not enough memory could be allocated, 0 is simply returned. */
105 frodo 2 extern size_t psiconv_list_fread(psiconv_list l,size_t size, FILE *f);
106    
107 frodo 74 /* Read the whole file f to list l. Returns 0 on succes, and an errorcode
108     on failure. */
109     extern int psiconv_list_fread_all(psiconv_list l, FILE *f);
110    
111     /* Write the whole list l to the opened file f. Returns 0 on succes, and
112     an errorcode on failure. */
113     extern int psiconv_list_fwrite_all(const psiconv_list l, FILE *f);
114    
115 frodo 72 /* Concatenate two lists. The element sized does not have to be the same,
116     but the result may be quite unexpected if it is not. */
117     int psiconv_list_concat(psiconv_list l, const psiconv_list extra);
118 frodo 62
119 frodo 72
120 frodo 55 #ifdef __cplusplus
121     }
122     #endif /* __cplusplus */
123    
124 frodo 2 #endif

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26