2 * Builtin dlls resource support
4 * Copyright 2000 Alexandre Julliard
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.
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.
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
22 #include "wine/port.h"
28 #ifdef HAVE_SYS_TYPES_H
29 # include <sys/types.h>
32 #ifdef HAVE_SYS_STAT_H
33 # include <sys/stat.h>
35 #ifdef HAVE_SYS_MMAN_H
42 #define ALIGNMENT 2 /* alignment for resource data */
43 #define ALIGN_MASK ((1 << ALIGNMENT) - 1)
45 /* Unicode string or integer id */
48 char *str
; /* ptr to string */
49 WORD id
; /* integer id if str is NULL */
52 /* descriptor for a resource */
55 struct string_id type
;
56 struct string_id name
;
58 unsigned int data_size
;
62 /* type level of the resource tree */
65 const struct string_id
*type
; /* type name */
66 const struct resource
*res
; /* first resource of this type */
67 unsigned int nb_names
; /* total number of names */
70 static struct resource
*resources
;
71 static int nb_resources
;
73 static struct res_type
*res_types
;
74 static int nb_types
; /* total number of types */
76 static const unsigned char *file_pos
; /* current position in resource file */
77 static const unsigned char *file_end
; /* end of resource file */
78 static const char *file_name
; /* current resource file name */
81 inline static struct resource
*add_resource(void)
83 resources
= xrealloc( resources
, (nb_resources
+ 1) * sizeof(*resources
) );
84 return &resources
[nb_resources
++];
87 static struct res_type
*add_type( const struct resource
*res
)
89 struct res_type
*type
;
90 res_types
= xrealloc( res_types
, (nb_types
+ 1) * sizeof(*res_types
) );
91 type
= &res_types
[nb_types
++];
92 type
->type
= &res
->type
;
98 /* get the next byte from the current resource file */
99 static WORD
get_byte(void)
101 unsigned char ret
= *file_pos
++;
102 if (file_pos
> file_end
) fatal_error( "%s is a truncated/corrupted file\n", file_name
);
106 /* get the next word from the current resource file */
107 static WORD
get_word(void)
109 /* might not be aligned */
110 #ifdef WORDS_BIGENDIAN
111 unsigned char high
= get_byte();
112 unsigned char low
= get_byte();
114 unsigned char low
= get_byte();
115 unsigned char high
= get_byte();
117 return low
| (high
<< 8);
120 /* get the next dword from the current resource file */
121 static DWORD
get_dword(void)
123 #ifdef WORDS_BIGENDIAN
124 WORD high
= get_word();
125 WORD low
= get_word();
127 WORD low
= get_word();
128 WORD high
= get_word();
130 return low
| (high
<< 16);
133 /* get a string from the current resource file */
134 static void get_string( struct string_id
*str
)
136 if (*file_pos
== 0xff)
138 get_byte(); /* skip the 0xff */
140 str
->id
= get_word();
144 char *p
= xmalloc( (strlen(file_pos
) + 1) );
147 while ((*p
++ = get_byte()));
151 /* load the next resource from the current file */
152 static void load_next_resource(void)
154 struct resource
*res
= add_resource();
156 get_string( &res
->type
);
157 get_string( &res
->name
);
158 res
->memopt
= get_word();
159 res
->data_size
= get_dword();
160 res
->data
= file_pos
;
161 file_pos
+= res
->data_size
;
162 if (file_pos
> file_end
) fatal_error( "%s is a truncated/corrupted file\n", file_name
);
165 /* load a Win16 .res file */
166 void load_res16_file( const char *name
)
172 if ((fd
= open( name
, O_RDONLY
)) == -1) fatal_perror( "Cannot open %s", name
);
173 if ((fstat( fd
, &st
) == -1)) fatal_perror( "Cannot stat %s", name
);
174 if (!st
.st_size
) fatal_error( "%s is an empty file\n" );
176 if ((base
= mmap( NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0 )) == (void*)-1)
177 #endif /* HAVE_MMAP */
179 base
= xmalloc( st
.st_size
);
180 if (read( fd
, base
, st
.st_size
) != st
.st_size
)
181 fatal_error( "Cannot read %s\n", name
);
186 file_end
= file_pos
+ st
.st_size
;
187 while (file_pos
< file_end
) load_next_resource();
190 /* compare two strings/ids */
191 static int cmp_string( const struct string_id
*str1
, const struct string_id
*str2
)
195 if (!str2
->str
) return str1
->id
- str2
->id
;
196 return 1; /* an id compares larger than a string */
198 if (!str2
->str
) return -1;
199 return strcasecmp( str1
->str
, str2
->str
);
202 /* compare two resources for sorting the resource directory */
203 /* resources are stored first by type, then by name */
204 static int cmp_res( const void *ptr1
, const void *ptr2
)
206 const struct resource
*res1
= ptr1
;
207 const struct resource
*res2
= ptr2
;
210 if ((ret
= cmp_string( &res1
->type
, &res2
->type
))) return ret
;
211 return cmp_string( &res1
->name
, &res2
->name
);
214 /* build the 2-level (type,name) resource tree */
215 static void build_resource_tree(void)
218 struct res_type
*type
= NULL
;
220 qsort( resources
, nb_resources
, sizeof(*resources
), cmp_res
);
222 for (i
= 0; i
< nb_resources
; i
++)
224 if (!i
|| cmp_string( &resources
[i
].type
, &resources
[i
-1].type
)) /* new type */
225 type
= add_type( &resources
[i
] );
230 inline static void put_byte( unsigned char **buffer
, unsigned char val
)
235 inline static void put_word( unsigned char **buffer
, WORD val
)
237 #ifdef WORDS_BIGENDIAN
238 put_byte( buffer
, HIBYTE(val
) );
239 put_byte( buffer
, LOBYTE(val
) );
241 put_byte( buffer
, LOBYTE(val
) );
242 put_byte( buffer
, HIBYTE(val
) );
246 /* output a string preceded by its length */
247 static void output_string( unsigned char **buffer
, const char *str
)
249 int len
= strlen(str
);
250 put_byte( buffer
, len
);
251 while (len
--) put_byte( buffer
, *str
++ );
254 /* output the resource data */
255 int output_res16_data( FILE *outfile
)
257 const struct resource
*res
;
258 unsigned char *buffer
, *p
;
261 if (!nb_resources
) return 0;
263 for (i
= total
= 0, res
= resources
; i
< nb_resources
; i
++, res
++)
264 total
+= (res
->data_size
+ ALIGN_MASK
) & ~ALIGN_MASK
;
266 buffer
= p
= xmalloc( total
);
267 for (i
= 0, res
= resources
; i
< nb_resources
; i
++, res
++)
269 memcpy( p
, res
->data
, res
->data_size
);
271 while ((int)p
& ALIGN_MASK
) *p
++ = 0;
273 dump_bytes( outfile
, buffer
, total
, "resource_data", 1 );
278 /* output the resource definitions */
279 int output_res16_directory( unsigned char *buffer
)
281 int i
, offset
, res_offset
= 0;
283 const struct res_type
*type
;
284 const struct resource
*res
;
285 unsigned char *start
= buffer
;
287 build_resource_tree();
289 offset
= 4; /* alignment + terminator */
290 offset
+= nb_types
* 8; /* typeinfo structures */
291 offset
+= nb_resources
* 12; /* nameinfo structures */
293 put_word( &buffer
, ALIGNMENT
);
295 /* type and name structures */
297 for (i
= 0, type
= res_types
; i
< nb_types
; i
++, type
++)
301 put_word( &buffer
, offset
);
302 offset
+= strlen(type
->type
->str
) + 1;
305 put_word( &buffer
, type
->type
->id
| 0x8000 );
307 put_word( &buffer
, type
->nb_names
);
308 put_word( &buffer
, 0 );
309 put_word( &buffer
, 0 );
311 for (j
= 0, res
= type
->res
; j
< type
->nb_names
; j
++, res
++)
313 put_word( &buffer
, res_offset
>> ALIGNMENT
);
314 put_word( &buffer
, (res
->data_size
+ ALIGN_MASK
) >> ALIGNMENT
);
315 put_word( &buffer
, res
->memopt
);
318 put_word( &buffer
, offset
);
319 offset
+= strlen(res
->name
.str
) + 1;
322 put_word( &buffer
, res
->name
.id
| 0x8000 );
323 put_word( &buffer
, 0 );
324 put_word( &buffer
, 0 );
325 res_offset
+= (res
->data_size
+ ALIGN_MASK
) & ~ALIGN_MASK
;
328 put_word( &buffer
, 0 ); /* terminator */
332 for (i
= 0, type
= res_types
; i
< nb_types
; i
++, type
++)
334 if (type
->type
->str
) output_string( &buffer
, type
->type
->str
);
335 for (j
= 0, res
= type
->res
; j
< type
->nb_names
; j
++, res
++)
337 if (res
->name
.str
) output_string( &buffer
, res
->name
.str
);
340 put_byte( &buffer
, 0 ); /* names terminator */
341 if ((buffer
- start
) & 1) put_byte( &buffer
, 0 ); /* align on word boundary */
343 return buffer
- start
;