553c9ad4710610f56285681c164469dcc661941f
[swftools.git] / lib / q.h
1 /* q.h
2    Header file for q.c.
3
4    Part of the swftools package.
5    
6    Copyright (c) 2001,2002,2003,2004 Matthias Kramm <kramm@quiss.org>
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
21
22 #ifndef __q_h__
23 #define __q_h__
24
25 #include <stdio.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 /* dynamically growing mem section */
32 typedef struct _mem_t {
33     char*buffer;
34     int len;
35     int pos;
36 } mem_t;
37
38 /* fifo buffered growing mem region */
39 typedef struct _ringbuffer_t
40 {
41     void*internal;
42     int available;
43 } ringbuffer_t;
44
45 /* non-nul terminated string */
46 typedef struct _string_t {
47     const char*str;
48     int len;
49 } string_t;
50
51 /* key/value pairs of strings */
52 typedef struct _map_t {
53     void*internal;
54 } map_t;
55
56 typedef struct _dictentry {
57     const char*s;
58     void*data;
59     struct _dictentry*next;
60 } dictentry_t;
61
62 /* (void*) pointers referenced by strings */
63 typedef struct _dict {
64     dictentry_t**slots;
65     int hashsize;
66     int num;
67 } dict_t;
68
69 /* array of strings, string<->int mapping,
70    with O(1) for int->string lookup and
71         O(n/hashsize) for string->int lookup */
72 typedef struct _stringarray_t
73 {
74     void*internal;
75 } stringarray_t;
76
77 /* heap */
78 typedef struct _heap
79 {
80     void**elements;
81     char*data;
82     int elem_size;
83     int size;
84     int max_size;
85     int(*compare)(const void *, const void *);
86 } heap_t;
87
88 void mem_init(mem_t*mem);
89 int mem_put(mem_t*m, void*data, int length);
90 int mem_putstring(mem_t*m, string_t str);
91 void mem_clear(mem_t*mem);
92 void mem_destroy(mem_t*mem);
93
94 void ringbuffer_init(ringbuffer_t*r);
95 void ringbuffer_put(ringbuffer_t*r, void*buf, int size);
96 int ringbuffer_read(ringbuffer_t*r, void*buf, int size);
97 void ringbuffer_clear(ringbuffer_t*r);
98
99 string_t string_new(const char*text, int len);
100 string_t string_new2(const char*text);
101 unsigned int string_hash(string_t*str);
102 unsigned int string_hash2(const char*str);
103 void string_set(string_t*str, const char*text);
104 void string_set2(string_t*str, const char*text, int len);
105 void string_dup(string_t*str, const char*text);
106 void string_dup2(string_t*str, const char*text, int len);
107 int string_equals(string_t*str, const char*text);
108
109 void stringarray_init(stringarray_t*sa, int hashsize);
110 void stringarray_put(stringarray_t*sa, string_t str);
111 char* stringarray_at(stringarray_t*sa, int pos);
112 string_t stringarray_at2(stringarray_t*sa, int pos);
113 int stringarray_find(stringarray_t*sa, string_t*str);
114 void stringarray_clear(stringarray_t*sa);
115 void stringarray_destroy(stringarray_t*sa);
116
117 dict_t*dict_new();
118 void dict_init(dict_t*dict);
119 void dict_put(dict_t*dict, string_t t1, void* t2);
120 void dict_put2(dict_t*dict, const char* t1, void* t2);
121 stringarray_t* dict_index(dict_t*dict);
122 int dict_count(dict_t* dict);
123 void* dict_lookup(dict_t*dict, const char*name);
124 void dict_dump(dict_t*dict, FILE*fi, const char*prefix);
125 char dict_del(dict_t*dict, const char* name);
126 void dict_foreach_keyvalue(dict_t*h, void (*runFunction)(void*data, const char*key, void*val), void*data);
127 void dict_foreach_value(dict_t*h, void (*runFunction)(void*));
128 void dict_free_all(dict_t*h, void (*freeFunction)(void*));
129 void dict_clear(dict_t*dict);
130 void dict_destroy(dict_t*dict);
131
132 void map_init(map_t*map);
133 void map_put(map_t*map, string_t t1, string_t t2);
134 const char* map_lookup(map_t*map, const char*name);
135 void map_dump(map_t*map, FILE*fi, const char*prefix);
136 void map_clear(map_t*map);
137 void map_destroy(map_t*map);
138
139 void heap_init(heap_t*h,int n,int elem_size, int(*compare)(const void *, const void *));
140 void heap_clear(heap_t*h);
141 void heap_put(heap_t*h, void*e);
142 int heap_size(heap_t*h);
143 void* heap_max(heap_t*h);
144 void* heap_chopmax(heap_t*h);
145 void heap_dump(heap_t*h, FILE*fi);
146 void** heap_flatten(heap_t*h);
147
148 char* strdup_n(const char*str, int size);
149
150 #ifdef __cplusplus
151 }
152 #endif
153
154 #endif //__q_h__