Generate the 16-bit module header in the standard on-disk format, so
[wine] / tools / winebuild / res16.c
1 /*
2  * Builtin dlls resource support
3  *
4  * Copyright 2000 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <ctype.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #ifdef HAVE_SYS_TYPES_H
31 # include <sys/types.h>
32 #endif
33 #include <fcntl.h>
34 #ifdef HAVE_SYS_STAT_H
35 # include <sys/stat.h>
36 #endif
37 #ifdef HAVE_SYS_MMAN_H
38 #include <sys/mman.h>
39 #endif
40
41 #include "windef.h"
42 #include "winbase.h"
43 #include "build.h"
44
45 #define ALIGNMENT 2 /* alignment for resource data */
46 #define ALIGN_MASK ((1 << ALIGNMENT) - 1)
47
48 /* Unicode string or integer id */
49 struct string_id
50 {
51     char  *str;  /* ptr to string */
52     WORD   id;   /* integer id if str is NULL */
53 };
54
55 /* descriptor for a resource */
56 struct resource
57 {
58     struct string_id type;
59     struct string_id name;
60     const void      *data;
61     unsigned int     data_size;
62     WORD             memopt;
63 };
64
65 /* type level of the resource tree */
66 struct res_type
67 {
68     const struct string_id  *type;         /* type name */
69     const struct resource   *res;          /* first resource of this type */
70     unsigned int             nb_names;     /* total number of names */
71 };
72
73 /* top level of the resource tree */
74 struct res_tree
75 {
76     struct res_type *types;                /* types array */
77     unsigned int     nb_types;             /* total number of types */
78 };
79
80 static const unsigned char *file_pos;   /* current position in resource file */
81 static const unsigned char *file_end;   /* end of resource file */
82 static const char *file_name;  /* current resource file name */
83
84
85 inline static struct resource *add_resource( DLLSPEC *spec )
86 {
87     spec->resources = xrealloc( spec->resources, (spec->nb_resources + 1) * sizeof(*spec->resources) );
88     return &spec->resources[spec->nb_resources++];
89 }
90
91 static struct res_type *add_type( struct res_tree *tree, const struct resource *res )
92 {
93     struct res_type *type;
94     tree->types = xrealloc( tree->types, (tree->nb_types + 1) * sizeof(*tree->types) );
95     type = &tree->types[tree->nb_types++];
96     type->type        = &res->type;
97     type->res         = res;
98     type->nb_names    = 0;
99     return type;
100 }
101
102 /* get the next byte from the current resource file */
103 static unsigned char get_byte(void)
104 {
105     unsigned char ret = *file_pos++;
106     if (file_pos > file_end) fatal_error( "%s is a truncated/corrupted file\n", file_name );
107     return ret;
108 }
109
110 /* get the next word from the current resource file */
111 static WORD get_word(void)
112 {
113     /* might not be aligned */
114 #ifdef WORDS_BIGENDIAN
115     unsigned char high = get_byte();
116     unsigned char low = get_byte();
117 #else
118     unsigned char low = get_byte();
119     unsigned char high = get_byte();
120 #endif
121     return low | (high << 8);
122 }
123
124 /* get the next dword from the current resource file */
125 static DWORD get_dword(void)
126 {
127 #ifdef WORDS_BIGENDIAN
128     WORD high = get_word();
129     WORD low = get_word();
130 #else
131     WORD low = get_word();
132     WORD high = get_word();
133 #endif
134     return low | (high << 16);
135 }
136
137 /* get a string from the current resource file */
138 static void get_string( struct string_id *str )
139 {
140     if (*file_pos == 0xff)
141     {
142         get_byte();  /* skip the 0xff */
143         str->str = NULL;
144         str->id = get_word();
145     }
146     else
147     {
148         char *p = xmalloc( (strlen(file_pos) + 1) );
149         str->str = p;
150         str->id = 0;
151         while ((*p++ = get_byte()));
152     }
153 }
154
155 /* load the next resource from the current file */
156 static void load_next_resource( DLLSPEC *spec )
157 {
158     struct resource *res = add_resource( spec );
159
160     get_string( &res->type );
161     get_string( &res->name );
162     res->memopt    = get_word();
163     res->data_size = get_dword();
164     res->data      = file_pos;
165     file_pos += res->data_size;
166     if (file_pos > file_end) fatal_error( "%s is a truncated/corrupted file\n", file_name );
167 }
168
169 /* load a Win16 .res file */
170 void load_res16_file( const char *name, DLLSPEC *spec )
171 {
172     int fd;
173     void *base;
174     struct stat st;
175
176     if ((fd = open( name, O_RDONLY )) == -1) fatal_perror( "Cannot open %s", name );
177     if ((fstat( fd, &st ) == -1)) fatal_perror( "Cannot stat %s", name );
178     if (!st.st_size) fatal_error( "%s is an empty file\n", name );
179 #ifdef  HAVE_MMAP
180     if ((base = mmap( NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0 )) == (void*)-1)
181 #endif  /* HAVE_MMAP */
182     {
183         base = xmalloc( st.st_size );
184         if (read( fd, base, st.st_size ) != st.st_size)
185             fatal_error( "Cannot read %s\n", name );
186     }
187
188     file_name = name;
189     file_pos  = base;
190     file_end  = file_pos + st.st_size;
191     while (file_pos < file_end) load_next_resource( spec );
192 }
193
194 /* compare two strings/ids */
195 static int cmp_string( const struct string_id *str1, const struct string_id *str2 )
196 {
197     if (!str1->str)
198     {
199         if (!str2->str) return str1->id - str2->id;
200         return 1;  /* an id compares larger than a string */
201     }
202     if (!str2->str) return -1;
203     return strcasecmp( str1->str, str2->str );
204 }
205
206 /* compare two resources for sorting the resource directory */
207 /* resources are stored first by type, then by name */
208 static int cmp_res( const void *ptr1, const void *ptr2 )
209 {
210     const struct resource *res1 = ptr1;
211     const struct resource *res2 = ptr2;
212     int ret;
213
214     if ((ret = cmp_string( &res1->type, &res2->type ))) return ret;
215     return cmp_string( &res1->name, &res2->name );
216 }
217
218 /* build the 2-level (type,name) resource tree */
219 static struct res_tree *build_resource_tree( DLLSPEC *spec )
220 {
221     unsigned int i;
222     struct res_tree *tree;
223     struct res_type *type = NULL;
224
225     qsort( spec->resources, spec->nb_resources, sizeof(*spec->resources), cmp_res );
226
227     tree = xmalloc( sizeof(*tree) );
228     tree->types = NULL;
229     tree->nb_types = 0;
230
231     for (i = 0; i < spec->nb_resources; i++)
232     {
233         if (!i || cmp_string( &spec->resources[i].type, &spec->resources[i-1].type ))  /* new type */
234             type = add_type( tree, &spec->resources[i] );
235         type->nb_names++;
236     }
237     return tree;
238 }
239
240 /* free the resource tree */
241 static void free_resource_tree( struct res_tree *tree )
242 {
243     free( tree->types );
244     free( tree );
245 }
246
247 inline static void put_byte( unsigned char **buffer, unsigned char val )
248 {
249     *(*buffer)++ = val;
250 }
251
252 inline static void put_word( unsigned char **buffer, WORD val )
253 {
254 #ifdef WORDS_BIGENDIAN
255     put_byte( buffer, HIBYTE(val) );
256     put_byte( buffer, LOBYTE(val) );
257 #else
258     put_byte( buffer, LOBYTE(val) );
259     put_byte( buffer, HIBYTE(val) );
260 #endif
261 }
262
263 /* output a string preceded by its length */
264 static void output_string( unsigned char **buffer, const char *str )
265 {
266     int len = strlen(str);
267     put_byte( buffer, len );
268     while (len--) put_byte( buffer, *str++ );
269 }
270
271 /* output the resource data */
272 int output_res16_data( FILE *outfile, DLLSPEC *spec )
273 {
274     const struct resource *res;
275     unsigned char *buffer, *p;
276     unsigned int i;
277     int total;
278
279     if (!spec->nb_resources) return 0;
280
281     for (i = total = 0, res = spec->resources; i < spec->nb_resources; i++, res++)
282         total += (res->data_size + ALIGN_MASK) & ~ALIGN_MASK;
283
284     buffer = p = xmalloc( total );
285     for (i = 0, res = spec->resources; i < spec->nb_resources; i++, res++)
286     {
287         memcpy( p, res->data, res->data_size );
288         p += res->data_size;
289         while ((int)p & ALIGN_MASK) *p++ = 0;
290     }
291     dump_bytes( outfile, buffer, total, "resource_data", 1 );
292     free( buffer );
293     return total;
294 }
295
296 /* output the resource definitions */
297 unsigned int output_res16_directory( unsigned char **ret_buf, DLLSPEC *spec )
298 {
299     int offset, res_offset = 0;
300     unsigned int i, j, total_size;
301     struct res_tree *tree;
302     const struct res_type *type;
303     const struct resource *res;
304     unsigned char *buffer;
305
306     tree = build_resource_tree( spec );
307
308     /* first compute total size */
309
310     offset = 4;  /* alignment + terminator */
311     offset += tree->nb_types * 8;  /* typeinfo structures */
312     offset += spec->nb_resources * 12;  /* nameinfo structures */
313
314     total_size = offset;
315
316     for (i = 0, type = tree->types; i < tree->nb_types; i++, type++)
317     {
318         if (type->type->str) total_size += strlen(type->type->str) + 1;
319         for (j = 0, res = type->res; j < type->nb_names; j++, res++)
320             if (res->name.str) total_size += strlen(res->name.str) + 1;
321     }
322     total_size++;  /* final terminator */
323     if (total_size & 1) total_size++;
324     *ret_buf = buffer = xmalloc( total_size );
325
326     put_word( &buffer, ALIGNMENT );
327
328     /* type and name structures */
329
330     for (i = 0, type = tree->types; i < tree->nb_types; i++, type++)
331     {
332         if (type->type->str)
333         {
334             put_word( &buffer, offset );
335             offset += strlen(type->type->str) + 1;
336         }
337         else
338             put_word( &buffer, type->type->id | 0x8000 );
339
340         put_word( &buffer, type->nb_names );
341         put_word( &buffer, 0 );
342         put_word( &buffer, 0 );
343
344         for (j = 0, res = type->res; j < type->nb_names; j++, res++)
345         {
346             put_word( &buffer, res_offset >> ALIGNMENT );
347             put_word( &buffer, (res->data_size + ALIGN_MASK) >> ALIGNMENT );
348             put_word( &buffer, res->memopt );
349             if (res->name.str)
350             {
351                 put_word( &buffer, offset );
352                 offset += strlen(res->name.str) + 1;
353             }
354             else
355                 put_word( &buffer, res->name.id | 0x8000 );
356             put_word( &buffer, 0 );
357             put_word( &buffer, 0 );
358             res_offset += (res->data_size + ALIGN_MASK) & ~ALIGN_MASK;
359         }
360     }
361     put_word( &buffer, 0 );  /* terminator */
362
363     /* name strings */
364
365     for (i = 0, type = tree->types; i < tree->nb_types; i++, type++)
366     {
367         if (type->type->str) output_string( &buffer, type->type->str );
368         for (j = 0, res = type->res; j < type->nb_names; j++, res++)
369         {
370             if (res->name.str) output_string( &buffer, res->name.str );
371         }
372     }
373     put_byte( &buffer, 0 );  /* names terminator */
374     if ((buffer - *ret_buf) & 1) put_byte( &buffer, 0 );  /* align on word boundary */
375     assert( buffer - *ret_buf == total_size );
376
377     free_resource_tree( tree );
378     return total_size;
379 }