2 * Typelib v2 (MSFT) generation
4 * Copyright 2004 Alastair Bridgewater
5 * 2004, 2005 Huw Davies
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * --------------------------------------------------------------------------------------
26 * Only works on little-endian systems.
31 #include "wine/port.h"
40 #define NONAMELESSUNION
41 #define NONAMELESSSTRUCT
50 #include "typelib_struct.h"
56 enum MSFT_segment_index
{
57 MSFT_SEG_TYPEINFO
= 0, /* type information */
58 MSFT_SEG_IMPORTINFO
, /* import information */
59 MSFT_SEG_IMPORTFILES
, /* import filenames */
60 MSFT_SEG_REFERENCES
, /* references (?) */
61 MSFT_SEG_GUIDHASH
, /* hash table for guids? */
62 MSFT_SEG_GUID
, /* guid storage */
63 MSFT_SEG_NAMEHASH
, /* hash table for names */
64 MSFT_SEG_NAME
, /* name storage */
65 MSFT_SEG_STRING
, /* string storage */
66 MSFT_SEG_TYPEDESC
, /* type descriptions */
67 MSFT_SEG_ARRAYDESC
, /* array descriptions */
68 MSFT_SEG_CUSTDATA
, /* custom data */
69 MSFT_SEG_CUSTDATAGUID
, /* custom data guids */
70 MSFT_SEG_UNKNOWN
, /* ??? */
71 MSFT_SEG_UNKNOWN2
, /* ??? */
72 MSFT_SEG_MAX
/* total number of segments */
75 typedef struct tagMSFT_ImpFile
{
79 char filename
[0]; /* preceded by two bytes of encoded (length << 2) + flags in the low two bits. */
82 typedef struct _msft_typelib_t
85 MSFT_Header typelib_header
;
86 MSFT_pSeg typelib_segdir
[MSFT_SEG_MAX
];
87 unsigned char *typelib_segment_data
[MSFT_SEG_MAX
];
88 int typelib_segment_block_length
[MSFT_SEG_MAX
];
90 INT typelib_typeinfo_offsets
[0x200]; /* Hope that's enough. */
92 INT
*typelib_namehash_segment
;
93 INT
*typelib_guidhash_segment
;
95 INT help_string_dll_offset
;
97 struct _msft_typeinfo_t
*typeinfos
;
98 struct _msft_typeinfo_t
*last_typeinfo
;
101 typedef struct _msft_typeinfo_t
103 msft_typelib_t
*typelib
;
104 MSFT_TypeInfoBase
*typeinfo
;
108 unsigned int var_data_allocated
;
111 unsigned int func_data_allocated
;
126 struct _msft_typeinfo_t
*next_typeinfo
;
131 /*================== Internal functions ===================================*/
133 /****************************************************************************
136 * Initializes the type library header of a new typelib.
138 static void ctl2_init_header(
139 msft_typelib_t
*typelib
) /* [I] The typelib to initialize. */
141 typelib
->typelib_header
.magic1
= 0x5446534d;
142 typelib
->typelib_header
.magic2
= 0x00010002;
143 typelib
->typelib_header
.posguid
= -1;
144 typelib
->typelib_header
.lcid
= 0x0409;
145 typelib
->typelib_header
.lcid2
= 0x0;
146 typelib
->typelib_header
.varflags
= 0x40;
147 typelib
->typelib_header
.version
= 0;
148 typelib
->typelib_header
.flags
= 0;
149 typelib
->typelib_header
.nrtypeinfos
= 0;
150 typelib
->typelib_header
.helpstring
= -1;
151 typelib
->typelib_header
.helpstringcontext
= 0;
152 typelib
->typelib_header
.helpcontext
= 0;
153 typelib
->typelib_header
.nametablecount
= 0;
154 typelib
->typelib_header
.nametablechars
= 0;
155 typelib
->typelib_header
.NameOffset
= -1;
156 typelib
->typelib_header
.helpfile
= -1;
157 typelib
->typelib_header
.CustomDataOffset
= -1;
158 typelib
->typelib_header
.res44
= 0x20;
159 typelib
->typelib_header
.res48
= 0x80;
160 typelib
->typelib_header
.dispatchpos
= -1;
161 typelib
->typelib_header
.nimpinfos
= 0;
164 /****************************************************************************
167 * Initializes the segment directory of a new typelib.
169 static void ctl2_init_segdir(
170 msft_typelib_t
*typelib
) /* [I] The typelib to initialize. */
175 segdir
= &typelib
->typelib_segdir
[MSFT_SEG_TYPEINFO
];
177 for (i
= 0; i
< MSFT_SEG_MAX
; i
++) {
178 segdir
[i
].offset
= -1;
179 segdir
[i
].length
= 0;
180 segdir
[i
].res08
= -1;
181 segdir
[i
].res0c
= 0x0f;
185 /****************************************************************************
188 * Generates a hash key from a GUID.
192 * The hash key for the GUID.
194 static int ctl2_hash_guid(
195 REFGUID guid
) /* [I] The guid to hash. */
201 for (i
= 0; i
< 8; i
++) {
202 hash
^= ((const short *)guid
)[i
];
208 /****************************************************************************
211 * Locates a guid in a type library.
215 * The offset into the GUID segment of the guid, or -1 if not found.
217 static int ctl2_find_guid(
218 msft_typelib_t
*typelib
, /* [I] The typelib to operate against. */
219 int hash_key
, /* [I] The hash key for the guid. */
220 REFGUID guid
) /* [I] The guid to find. */
223 MSFT_GuidEntry
*guidentry
;
225 offset
= typelib
->typelib_guidhash_segment
[hash_key
];
226 while (offset
!= -1) {
227 guidentry
= (MSFT_GuidEntry
*)&typelib
->typelib_segment_data
[MSFT_SEG_GUID
][offset
];
229 if (!memcmp(guidentry
, guid
, sizeof(GUID
))) return offset
;
231 offset
= guidentry
->next_hash
;
237 /****************************************************************************
240 * Locates a name in a type library.
244 * The offset into the NAME segment of the name, or -1 if not found.
248 * The name must be encoded as with ctl2_encode_name().
250 static int ctl2_find_name(
251 msft_typelib_t
*typelib
, /* [I] The typelib to operate against. */
252 char *name
) /* [I] The encoded name to find. */
257 offset
= typelib
->typelib_namehash_segment
[name
[2] & 0x7f];
258 while (offset
!= -1) {
259 namestruct
= (int *)&typelib
->typelib_segment_data
[MSFT_SEG_NAME
][offset
];
261 if (!((namestruct
[2] ^ *((int *)name
)) & 0xffff00ff)) {
262 /* hash codes and lengths match, final test */
263 if (!strncasecmp(name
+4, (void *)(namestruct
+3), name
[0])) break;
266 /* move to next item in hash bucket */
267 offset
= namestruct
[1];
273 /****************************************************************************
276 * Encodes a name string to a form suitable for storing into a type library
277 * or comparing to a name stored in a type library.
281 * The length of the encoded name, including padding and length+hash fields.
285 * Will throw an exception if name or result are NULL. Is not multithread
286 * safe in the slightest.
288 static int ctl2_encode_name(
289 msft_typelib_t
*typelib
, /* [I] The typelib to operate against (used for LCID only). */
290 const char *name
, /* [I] The name string to encode. */
291 char **result
) /* [O] A pointer to a pointer to receive the encoded name. */
294 static char converted_name
[0x104];
298 length
= strlen(name
);
299 memcpy(converted_name
+ 4, name
, length
);
301 converted_name
[length
+ 4] = 0;
304 value
= lhash_val_of_name_sys(typelib
->typelib_header
.varflags
& 0x0f, typelib
->typelib_header
.lcid
, converted_name
+ 4);
306 #ifdef WORDS_BIGENDIAN
307 converted_name
[3] = length
& 0xff;
308 converted_name
[2] = 0x00;
309 converted_name
[1] = value
;
310 converted_name
[0] = value
>> 8;
312 converted_name
[0] = length
& 0xff;
313 converted_name
[1] = 0x00;
314 converted_name
[2] = value
;
315 converted_name
[3] = value
>> 8;
318 for (offset
= (4 - length
) & 3; offset
; offset
--) converted_name
[length
+ offset
+ 3] = 0x57;
320 *result
= converted_name
;
322 return (length
+ 7) & ~3;
325 /****************************************************************************
328 * Encodes a string to a form suitable for storing into a type library or
329 * comparing to a string stored in a type library.
333 * The length of the encoded string, including padding and length fields.
337 * Will throw an exception if string or result are NULL. Is not multithread
338 * safe in the slightest.
340 static int ctl2_encode_string(
341 const char *string
, /* [I] The string to encode. */
342 char **result
) /* [O] A pointer to a pointer to receive the encoded string. */
345 static char converted_string
[0x104];
348 length
= strlen(string
);
349 memcpy(converted_string
+ 2, string
, length
);
351 #ifdef WORDS_BIGENDIAN
352 converted_string
[1] = length
& 0xff;
353 converted_string
[0] = (length
>> 8) & 0xff;
355 converted_string
[0] = length
& 0xff;
356 converted_string
[1] = (length
>> 8) & 0xff;
359 if(length
< 3) { /* strings of this length are padded with up to 8 bytes incl the 2 byte length */
360 for(offset
= 0; offset
< 4; offset
++)
361 converted_string
[length
+ offset
+ 2] = 0x57;
364 for (offset
= (4 - (length
+ 2)) & 3; offset
; offset
--) converted_string
[length
+ offset
+ 1] = 0x57;
366 *result
= converted_string
;
368 return (length
+ 5) & ~3;
371 /****************************************************************************
374 * Allocates memory from a segment in a type library.
378 * Success: The offset within the segment of the new data area.
382 * Does not (yet) handle the case where the allocated segment memory needs to grow.
384 static int ctl2_alloc_segment(
385 msft_typelib_t
*typelib
, /* [I] The type library in which to allocate. */
386 enum MSFT_segment_index segment
, /* [I] The segment in which to allocate. */
387 int size
, /* [I] The amount to allocate. */
388 int block_size
) /* [I] Initial allocation block size, or 0 for default. */
392 if(!typelib
->typelib_segment_data
[segment
]) {
393 if (!block_size
) block_size
= 0x2000;
395 typelib
->typelib_segment_block_length
[segment
] = block_size
;
396 typelib
->typelib_segment_data
[segment
] = xmalloc(block_size
);
397 if (!typelib
->typelib_segment_data
[segment
]) return -1;
398 memset(typelib
->typelib_segment_data
[segment
], 0x57, block_size
);
401 while ((typelib
->typelib_segdir
[segment
].length
+ size
) > typelib
->typelib_segment_block_length
[segment
]) {
402 unsigned char *block
;
404 block_size
= typelib
->typelib_segment_block_length
[segment
];
405 block
= xrealloc(typelib
->typelib_segment_data
[segment
], block_size
<< 1);
407 if (segment
== MSFT_SEG_TYPEINFO
) {
408 /* TypeInfos have a direct pointer to their memory space, so we have to fix them up. */
409 msft_typeinfo_t
*typeinfo
;
411 for (typeinfo
= typelib
->typeinfos
; typeinfo
; typeinfo
= typeinfo
->next_typeinfo
) {
412 typeinfo
->typeinfo
= (void *)&block
[((unsigned char *)typeinfo
->typeinfo
) - typelib
->typelib_segment_data
[segment
]];
416 memset(block
+ block_size
, 0x57, block_size
);
417 typelib
->typelib_segment_block_length
[segment
] = block_size
<< 1;
418 typelib
->typelib_segment_data
[segment
] = block
;
421 offset
= typelib
->typelib_segdir
[segment
].length
;
422 typelib
->typelib_segdir
[segment
].length
+= size
;
427 /****************************************************************************
428 * ctl2_alloc_typeinfo
430 * Allocates and initializes a typeinfo structure in a type library.
434 * Success: The offset of the new typeinfo.
435 * Failure: -1 (this is invariably an out of memory condition).
437 static int ctl2_alloc_typeinfo(
438 msft_typelib_t
*typelib
, /* [I] The type library to allocate in. */
439 int nameoffset
) /* [I] The offset of the name for this typeinfo. */
442 MSFT_TypeInfoBase
*typeinfo
;
444 offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_TYPEINFO
, sizeof(MSFT_TypeInfoBase
), 0);
446 typelib
->typelib_typeinfo_offsets
[typelib
->typelib_header
.nrtypeinfos
++] = offset
;
448 typeinfo
= (void *)(typelib
->typelib_segment_data
[MSFT_SEG_TYPEINFO
] + offset
);
450 typeinfo
->typekind
= (typelib
->typelib_header
.nrtypeinfos
- 1) << 16;
451 typeinfo
->memoffset
= -1; /* should be EOF if no elements */
456 typeinfo
->cElement
= 0;
461 typeinfo
->posguid
= -1;
463 typeinfo
->NameOffset
= nameoffset
;
464 typeinfo
->version
= 0;
465 typeinfo
->docstringoffs
= -1;
466 typeinfo
->helpstringcontext
= 0;
467 typeinfo
->helpcontext
= 0;
468 typeinfo
->oCustData
= -1;
469 typeinfo
->cbSizeVft
= 0;
470 typeinfo
->cImplTypes
= 0;
472 typeinfo
->datatype1
= -1;
473 typeinfo
->datatype2
= 0;
475 typeinfo
->res19
= -1;
480 /****************************************************************************
483 * Allocates and initializes a GUID structure in a type library. Also updates
484 * the GUID hash table as needed.
488 * Success: The offset of the new GUID.
490 static int ctl2_alloc_guid(
491 msft_typelib_t
*typelib
, /* [I] The type library to allocate in. */
492 MSFT_GuidEntry
*guid
) /* [I] The GUID to store. */
495 MSFT_GuidEntry
*guid_space
;
498 hash_key
= ctl2_hash_guid(&guid
->guid
);
500 offset
= ctl2_find_guid(typelib
, hash_key
, &guid
->guid
);
501 if (offset
!= -1) return offset
;
503 offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_GUID
, sizeof(MSFT_GuidEntry
), 0);
505 guid_space
= (void *)(typelib
->typelib_segment_data
[MSFT_SEG_GUID
] + offset
);
508 guid_space
->next_hash
= typelib
->typelib_guidhash_segment
[hash_key
];
509 typelib
->typelib_guidhash_segment
[hash_key
] = offset
;
514 /****************************************************************************
517 * Allocates and initializes a name within a type library. Also updates the
518 * name hash table as needed.
522 * Success: The offset within the segment of the new name.
523 * Failure: -1 (this is invariably an out of memory condition).
525 static int ctl2_alloc_name(
526 msft_typelib_t
*typelib
, /* [I] The type library to allocate in. */
527 const char *name
) /* [I] The name to store. */
531 MSFT_NameIntro
*name_space
;
534 length
= ctl2_encode_name(typelib
, name
, &encoded_name
);
536 offset
= ctl2_find_name(typelib
, encoded_name
);
537 if (offset
!= -1) return offset
;
539 offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_NAME
, length
+ 8, 0);
541 name_space
= (void *)(typelib
->typelib_segment_data
[MSFT_SEG_NAME
] + offset
);
542 name_space
->hreftype
= -1;
543 name_space
->next_hash
= -1;
544 memcpy(&name_space
->namelen
, encoded_name
, length
);
546 if (typelib
->typelib_namehash_segment
[encoded_name
[2] & 0x7f] != -1)
547 name_space
->next_hash
= typelib
->typelib_namehash_segment
[encoded_name
[2] & 0x7f];
549 typelib
->typelib_namehash_segment
[encoded_name
[2] & 0x7f] = offset
;
551 typelib
->typelib_header
.nametablecount
+= 1;
552 typelib
->typelib_header
.nametablechars
+= *encoded_name
;
557 /****************************************************************************
560 * Allocates and initializes a string in a type library.
564 * Success: The offset within the segment of the new string.
565 * Failure: -1 (this is invariably an out of memory condition).
567 static int ctl2_alloc_string(
568 msft_typelib_t
*typelib
, /* [I] The type library to allocate in. */
569 const char *string
) /* [I] The string to store. */
573 unsigned char *string_space
;
574 char *encoded_string
;
576 length
= ctl2_encode_string(string
, &encoded_string
);
578 for (offset
= 0; offset
< typelib
->typelib_segdir
[MSFT_SEG_STRING
].length
;
579 offset
+= (((typelib
->typelib_segment_data
[MSFT_SEG_STRING
][offset
+ 1] << 8) |
580 typelib
->typelib_segment_data
[MSFT_SEG_STRING
][offset
+ 0]) + 5) & ~3) {
581 if (!memcmp(encoded_string
, typelib
->typelib_segment_data
[MSFT_SEG_STRING
] + offset
, length
)) return offset
;
584 offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_STRING
, length
, 0);
586 string_space
= typelib
->typelib_segment_data
[MSFT_SEG_STRING
] + offset
;
587 memcpy(string_space
, encoded_string
, length
);
592 /****************************************************************************
593 * alloc_msft_importinfo
595 * Allocates and initializes an import information structure in a type library.
599 * Success: The offset of the new importinfo.
600 * Failure: -1 (this is invariably an out of memory condition).
602 static int alloc_msft_importinfo(
603 msft_typelib_t
*typelib
, /* [I] The type library to allocate in. */
604 MSFT_ImpInfo
*impinfo
) /* [I] The import information to store. */
607 MSFT_ImpInfo
*impinfo_space
;
610 offset
< typelib
->typelib_segdir
[MSFT_SEG_IMPORTINFO
].length
;
611 offset
+= sizeof(MSFT_ImpInfo
)) {
612 if (!memcmp(&(typelib
->typelib_segment_data
[MSFT_SEG_IMPORTINFO
][offset
]),
613 impinfo
, sizeof(MSFT_ImpInfo
))) {
618 impinfo
->flags
|= typelib
->typelib_header
.nimpinfos
++;
620 offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_IMPORTINFO
, sizeof(MSFT_ImpInfo
), 0);
622 impinfo_space
= (void *)(typelib
->typelib_segment_data
[MSFT_SEG_IMPORTINFO
] + offset
);
623 *impinfo_space
= *impinfo
;
628 /****************************************************************************
631 * Allocates and initializes an import file definition in a type library.
635 * Success: The offset of the new importinfo.
636 * Failure: -1 (this is invariably an out of memory condition).
638 static int alloc_importfile(
639 msft_typelib_t
*typelib
, /* [I] The type library to allocate in. */
640 int guidoffset
, /* [I] The offset to the GUID for the imported library. */
641 int major_version
, /* [I] The major version number of the imported library. */
642 int minor_version
, /* [I] The minor version number of the imported library. */
643 const char *filename
) /* [I] The filename of the imported library. */
647 MSFT_ImpFile
*importfile
;
648 char *encoded_string
;
650 length
= ctl2_encode_string(filename
, &encoded_string
);
652 encoded_string
[0] <<= 2;
653 encoded_string
[0] |= 1;
655 for (offset
= 0; offset
< typelib
->typelib_segdir
[MSFT_SEG_IMPORTFILES
].length
;
656 offset
+= (((typelib
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
][offset
+ 0xd] << 8) |
657 typelib
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
][offset
+ 0xc]) >> 2) + 0xc) {
658 if (!memcmp(encoded_string
, typelib
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
] + offset
+ 0xc, length
)) return offset
;
661 offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_IMPORTFILES
, length
+ 0xc, 0);
663 importfile
= (MSFT_ImpFile
*)&typelib
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
][offset
];
664 importfile
->guid
= guidoffset
;
665 importfile
->lcid
= typelib
->typelib_header
.lcid2
;
666 importfile
->version
= major_version
| (minor_version
<< 16);
667 memcpy(&importfile
->filename
, encoded_string
, length
);
672 static void alloc_importinfo(msft_typelib_t
*typelib
, importinfo_t
*importinfo
)
674 importlib_t
*importlib
= importinfo
->importlib
;
676 chat("alloc_importinfo: %s\n", importinfo
->name
);
678 if(!importlib
->allocated
) {
682 chat("allocating importlib %s\n", importlib
->name
);
684 importlib
->allocated
= -1;
686 memcpy(&guid
.guid
, &importlib
->guid
, sizeof(GUID
));
689 guid_idx
= ctl2_alloc_guid(typelib
, &guid
);
691 alloc_importfile(typelib
, guid_idx
, importlib
->version
&0xffff,
692 importlib
->version
>>16, importlib
->name
);
695 if(importinfo
->offset
== -1 || !(importinfo
->flags
& MSFT_IMPINFO_OFFSET_IS_GUID
)) {
696 MSFT_ImpInfo impinfo
;
698 impinfo
.flags
= importinfo
->flags
;
699 impinfo
.oImpFile
= 0;
701 if(importinfo
->flags
& MSFT_IMPINFO_OFFSET_IS_GUID
) {
705 memcpy(&guid
.guid
, &importinfo
->guid
, sizeof(GUID
));
707 impinfo
.oGuid
= ctl2_alloc_guid(typelib
, &guid
);
709 importinfo
->offset
= alloc_msft_importinfo(typelib
, &impinfo
);
711 typelib
->typelib_segment_data
[MSFT_SEG_GUID
][impinfo
.oGuid
+sizeof(GUID
)]
712 = importinfo
->offset
+1;
714 if(!strcmp(importinfo
->name
, "IDispatch"))
715 typelib
->typelib_header
.dispatchpos
= importinfo
->offset
+1;
717 impinfo
.oGuid
= importinfo
->id
;
718 importinfo
->offset
= alloc_msft_importinfo(typelib
, &impinfo
);
723 static importinfo_t
*find_importinfo(msft_typelib_t
*typelib
, const char *name
)
725 importlib_t
*importlib
;
728 chat("search importlib %s\n", name
);
733 LIST_FOR_EACH_ENTRY( importlib
, &typelib
->typelib
->importlibs
, importlib_t
, entry
)
735 for(i
=0; i
< importlib
->ntypeinfos
; i
++) {
736 if(!strcmp(name
, importlib
->importinfos
[i
].name
)) {
737 chat("Found %s in importlib.\n", name
);
738 return importlib
->importinfos
+i
;
746 static void add_structure_typeinfo(msft_typelib_t
*typelib
, type_t
*structure
);
747 static void add_interface_typeinfo(msft_typelib_t
*typelib
, type_t
*interface
);
748 static void add_enum_typeinfo(msft_typelib_t
*typelib
, type_t
*enumeration
);
749 static void add_coclass_typeinfo(msft_typelib_t
*typelib
, type_t
*cls
);
750 static void add_dispinterface_typeinfo(msft_typelib_t
*typelib
, type_t
*dispinterface
);
753 /****************************************************************************
756 * Encodes a type, storing information in the TYPEDESC and ARRAYDESC
757 * segments as needed.
764 static int encode_type(
765 msft_typelib_t
*typelib
, /* [I] The type library in which to encode the TYPEDESC. */
766 int vt
, /* [I] vt to encode */
767 type_t
*type
, /* [I] type */
768 int *encoded_type
, /* [O] The encoded type description. */
769 int *width
, /* [O] The width of the type, or NULL. */
770 int *alignment
, /* [O] The alignment of the type, or NULL. */
771 int *decoded_size
) /* [O] The total size of the unencoded TYPEDESCs, including nested descs. */
780 chat("encode_type vt %d type %p\n", vt
, type
);
782 default_type
= 0x80000000 | (vt
<< 16) | vt
;
783 if (!width
) width
= &scratch
;
784 if (!alignment
) alignment
= &scratch
;
785 if (!decoded_size
) decoded_size
= &scratch
;
791 *encoded_type
= default_type
;
797 *encoded_type
= 0x80000000 | (VT_I4
<< 16) | VT_INT
;
798 if ((typelib
->typelib_header
.varflags
& 0x0f) == SYS_WIN16
) {
808 *encoded_type
= 0x80000000 | (VT_UI4
<< 16) | VT_UINT
;
809 if ((typelib
->typelib_header
.varflags
& 0x0f) == SYS_WIN16
) {
821 *encoded_type
= default_type
;
831 *encoded_type
= default_type
;
839 *encoded_type
= default_type
;
846 *encoded_type
= default_type
;
852 *encoded_type
= default_type
;
858 *encoded_type
= 0x80000000 | (VT_EMPTY
<< 16) | vt
;
866 *encoded_type
= default_type
;
867 *width
= pointer_size
;
872 *encoded_type
= default_type
;
877 *encoded_type
= 0xfffe0000 | vt
;
878 *width
= pointer_size
;
885 for(next_vt
= 0; is_ptr(type
); type
= type_pointer_get_ref(type
)) {
886 next_vt
= get_type_vt(type_pointer_get_ref(type
));
890 /* if no type found then it must be void */
894 encode_type(typelib
, next_vt
, type_pointer_get_ref(type
),
895 &target_type
, NULL
, NULL
, &child_size
);
896 /* these types already have an implicit pointer, so we don't need to
898 if(next_vt
== VT_DISPATCH
|| next_vt
== VT_UNKNOWN
) {
899 chat("encode_type: skipping ptr\n");
900 *encoded_type
= target_type
;
901 *width
= pointer_size
;
903 *decoded_size
= child_size
;
907 for (typeoffset
= 0; typeoffset
< typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
; typeoffset
+= 8) {
908 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
909 if (((typedata
[0] & 0xffff) == VT_PTR
) && (typedata
[1] == target_type
)) break;
912 if (typeoffset
== typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
) {
915 if (target_type
& 0x80000000) {
916 mix_field
= ((target_type
>> 16) & 0x3fff) | VT_BYREF
;
918 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][target_type
];
919 mix_field
= ((typedata
[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
922 typeoffset
= ctl2_alloc_segment(typelib
, MSFT_SEG_TYPEDESC
, 8, 0);
923 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
925 typedata
[0] = (mix_field
<< 16) | VT_PTR
;
926 typedata
[1] = target_type
;
929 *encoded_type
= typeoffset
;
931 *width
= pointer_size
;
933 *decoded_size
= 8 /*sizeof(TYPEDESC)*/ + child_size
;
939 type_t
*element_type
= type_alias_get_aliasee(type_array_get_element(type
));
940 int next_vt
= get_type_vt(element_type
);
942 encode_type(typelib
, next_vt
, type_alias_get_aliasee(type_array_get_element(type
)), &target_type
, NULL
, NULL
, &child_size
);
944 for (typeoffset
= 0; typeoffset
< typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
; typeoffset
+= 8) {
945 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
946 if (((typedata
[0] & 0xffff) == VT_SAFEARRAY
) && (typedata
[1] == target_type
)) break;
949 if (typeoffset
== typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
) {
952 if (target_type
& 0x80000000) {
953 mix_field
= ((target_type
>> 16) & VT_TYPEMASK
) | VT_ARRAY
;
955 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][target_type
];
956 mix_field
= ((typedata
[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
959 typeoffset
= ctl2_alloc_segment(typelib
, MSFT_SEG_TYPEDESC
, 8, 0);
960 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
962 typedata
[0] = (mix_field
<< 16) | VT_SAFEARRAY
;
963 typedata
[1] = target_type
;
966 *encoded_type
= typeoffset
;
968 *width
= pointer_size
;
970 *decoded_size
= 8 /*sizeof(TYPEDESC)*/ + child_size
;
978 /* typedef'd types without public attribute aren't included in the typelib */
979 while (type
->typelib_idx
< 0 && type_is_alias(type
) && !is_attr(type
->attrs
, ATTR_PUBLIC
))
980 type
= type_alias_get_aliasee(type
);
982 chat("encode_type: VT_USERDEFINED - type %p name = %s real type %d idx %d\n", type
,
983 type
->name
, type_get_type(type
), type
->typelib_idx
);
985 if(type
->typelib_idx
== -1) {
986 chat("encode_type: trying to ref not added type\n");
987 switch (type_get_type(type
)) {
989 add_structure_typeinfo(typelib
, type
);
992 add_interface_typeinfo(typelib
, type
);
995 add_enum_typeinfo(typelib
, type
);
998 add_coclass_typeinfo(typelib
, type
);
1001 error("encode_type: VT_USERDEFINED - unhandled type %d\n",
1002 type_get_type(type
));
1006 typeinfo_offset
= typelib
->typelib_typeinfo_offsets
[type
->typelib_idx
];
1007 for (typeoffset
= 0; typeoffset
< typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
; typeoffset
+= 8) {
1008 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1009 if ((typedata
[0] == ((0x7fff << 16) | VT_USERDEFINED
)) && (typedata
[1] == typeinfo_offset
)) break;
1012 if (typeoffset
== typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
) {
1013 typeoffset
= ctl2_alloc_segment(typelib
, MSFT_SEG_TYPEDESC
, 8, 0);
1014 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1016 typedata
[0] = (0x7fff << 16) | VT_USERDEFINED
;
1017 typedata
[1] = typeinfo_offset
;
1020 *encoded_type
= typeoffset
;
1027 error("encode_type: unrecognized type %d.\n", vt
);
1028 *encoded_type
= default_type
;
1037 static void dump_type(type_t
*t
)
1039 chat("dump_type: %p name %s type %d attrs %p\n", t
, t
->name
, type_get_type(t
), t
->attrs
);
1042 static int encode_var(
1043 msft_typelib_t
*typelib
, /* [I] The type library in which to encode the TYPEDESC. */
1044 type_t
*type
, /* [I] The type description to encode. */
1045 var_t
*var
, /* [I] The var to encode. */
1046 int *encoded_type
, /* [O] The encoded type description. */
1047 int *width
, /* [O] The width of the type, or NULL. */
1048 int *alignment
, /* [O] The alignment of the type, or NULL. */
1049 int *decoded_size
) /* [O] The total size of the unencoded TYPEDESCs, including nested descs. */
1058 if (!width
) width
= &scratch
;
1059 if (!alignment
) alignment
= &scratch
;
1060 if (!decoded_size
) decoded_size
= &scratch
;
1063 chat("encode_var: var %p type %p type->name %s\n",
1064 var
, type
, type
->name
? type
->name
: "NULL");
1066 if (is_array(type
) && !type_array_is_decl_as_ptr(type
)) {
1067 int num_dims
, elements
= 1, arrayoffset
;
1073 is_array(atype
) && !type_array_is_decl_as_ptr(atype
);
1074 atype
= type_array_get_element(atype
))
1077 chat("array with %d dimensions\n", num_dims
);
1078 encode_var(typelib
, atype
, var
, &target_type
, width
, alignment
, NULL
);
1079 arrayoffset
= ctl2_alloc_segment(typelib
, MSFT_SEG_ARRAYDESC
, (2 + 2 * num_dims
) * sizeof(int), 0);
1080 arraydata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_ARRAYDESC
][arrayoffset
];
1082 arraydata
[0] = target_type
;
1083 arraydata
[1] = num_dims
;
1084 arraydata
[1] |= ((num_dims
* 2 * sizeof(int)) << 16);
1088 is_array(atype
) && !type_array_is_decl_as_ptr(atype
);
1089 atype
= type_array_get_element(atype
))
1091 arraydata
[0] = type_array_get_dim(atype
);
1094 elements
*= type_array_get_dim(atype
);
1097 typeoffset
= ctl2_alloc_segment(typelib
, MSFT_SEG_TYPEDESC
, 8, 0);
1098 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1100 typedata
[0] = (0x7ffe << 16) | VT_CARRAY
;
1101 typedata
[1] = arrayoffset
;
1103 *encoded_type
= typeoffset
;
1104 *width
= *width
* elements
;
1105 *decoded_size
= 20 /*sizeof(ARRAYDESC)*/ + (num_dims
- 1) * 8 /*sizeof(SAFEARRAYBOUND)*/;
1109 vt
= get_type_vt(type
);
1111 type_t
*ref
= is_ptr(type
) ?
1112 type_pointer_get_ref(type
) : type_array_get_element(type
);
1113 int skip_ptr
= encode_var(typelib
, ref
, var
,
1114 &target_type
, NULL
, NULL
, &child_size
);
1117 chat("encode_var: skipping ptr\n");
1118 *encoded_type
= target_type
;
1119 *decoded_size
= child_size
;
1120 *width
= pointer_size
;
1125 for (typeoffset
= 0; typeoffset
< typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
; typeoffset
+= 8) {
1126 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1127 if (((typedata
[0] & 0xffff) == VT_PTR
) && (typedata
[1] == target_type
)) break;
1130 if (typeoffset
== typelib
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
) {
1133 if (target_type
& 0x80000000) {
1134 mix_field
= ((target_type
>> 16) & 0x3fff) | VT_BYREF
;
1136 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][target_type
];
1137 mix_field
= ((typedata
[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
1140 typeoffset
= ctl2_alloc_segment(typelib
, MSFT_SEG_TYPEDESC
, 8, 0);
1141 typedata
= (void *)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1143 typedata
[0] = (mix_field
<< 16) | VT_PTR
;
1144 typedata
[1] = target_type
;
1147 *encoded_type
= typeoffset
;
1149 *width
= pointer_size
;
1151 *decoded_size
= 8 /*sizeof(TYPEDESC)*/ + child_size
;
1157 encode_type(typelib
, vt
, type
, encoded_type
, width
, alignment
, decoded_size
);
1158 /* these types already have an implicit pointer, so we don't need to
1160 if(vt
== VT_DISPATCH
|| vt
== VT_UNKNOWN
) return 2;
1164 static unsigned int get_ulong_val(unsigned int val
, int vt
)
1170 return val
& 0xffff;
1179 static void write_value(msft_typelib_t
* typelib
, int *out
, int vt
, const void *value
)
1197 const unsigned int lv
= get_ulong_val(*(const unsigned int *)value
, vt
);
1198 if((lv
& 0x3ffffff) == lv
) {
1203 int offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_CUSTDATA
, 8, 0);
1204 *((unsigned short *)&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][offset
]) = vt
;
1205 memcpy(&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][offset
+2], value
, 4);
1206 *((unsigned short *)&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][offset
+6]) = 0x5757;
1213 const char *s
= (const char *) value
;
1214 int len
= strlen(s
), seg_len
= (len
+ 6 + 3) & ~0x3;
1215 int offset
= ctl2_alloc_segment(typelib
, MSFT_SEG_CUSTDATA
, seg_len
, 0);
1216 *((unsigned short *)&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][offset
]) = vt
;
1217 memcpy(&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][offset
+2], &len
, sizeof(len
));
1218 memcpy(&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][offset
+6], value
, len
);
1220 while(len
< seg_len
) {
1221 *((char *)&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][offset
+len
]) = 0x57;
1229 warning("can't write value of type %d yet\n", vt
);
1234 static HRESULT
set_custdata(msft_typelib_t
*typelib
, REFGUID guid
,
1235 int vt
, const void *value
, int *offset
)
1237 MSFT_GuidEntry guidentry
;
1243 guidentry
.guid
= *guid
;
1245 guidentry
.hreftype
= -1;
1246 guidentry
.next_hash
= -1;
1248 guidoffset
= ctl2_alloc_guid(typelib
, &guidentry
);
1249 write_value(typelib
, &data_out
, vt
, value
);
1251 custoffset
= ctl2_alloc_segment(typelib
, MSFT_SEG_CUSTDATAGUID
, 12, 0);
1253 custdata
= (int *)&typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATAGUID
][custoffset
];
1254 custdata
[0] = guidoffset
;
1255 custdata
[1] = data_out
;
1256 custdata
[2] = *offset
;
1257 *offset
= custoffset
;
1262 /* It's possible to have a default value for pointer arguments too.
1263 In this case default value has a referenced type, e.g.
1264 'LONG*' argument gets VT_I4, 'DOUBLE*' - VT_R8. IUnknown* and IDispatch*
1265 are recognised too and stored as VT_UNKNOWN and VT_DISPATCH.
1266 But IUnknown/IDispatch arguments can only have default value of 0
1267 (or expression that resolves to zero) while other pointers can have
1268 any default value. */
1269 static int get_defaultvalue_vt(type_t
*type
)
1271 int vt
= get_type_vt(type
);
1272 if (type_get_type(type
) == TYPE_ENUM
)
1276 vt
= get_type_vt(type
);
1277 if (vt
== VT_PTR
&& is_ptr(type
)) {
1278 vt
= get_type_vt(type_pointer_get_ref(type
));
1279 /* The only acceptable value for pointers to non-basic types
1280 is NULL, it's stored as VT_I4 for both 32 and 64 bit typelibs. */
1281 if (vt
== VT_USERDEFINED
)
1289 static HRESULT
add_func_desc(msft_typeinfo_t
* typeinfo
, var_t
*func
, int index
)
1291 int offset
, name_offset
;
1292 int *typedata
, typedata_size
;
1293 int i
, id
, next_idx
;
1294 int decoded_size
, extra_attr
= 0;
1295 int num_params
= 0, num_optional
= 0, num_defaults
= 0;
1297 unsigned char *namedata
;
1299 unsigned int funcflags
= 0, callconv
= 4 /* CC_STDCALL */;
1300 unsigned int funckind
, invokekind
= 1 /* INVOKE_FUNC */;
1301 int help_context
= 0, help_string_context
= 0, help_string_offset
= -1;
1302 int entry
= -1, entry_is_ord
= 0;
1303 int lcid_retval_count
= 0;
1305 chat("add_func_desc(%p,%d)\n", typeinfo
, index
);
1307 id
= ((0x6000 | (typeinfo
->typeinfo
->datatype2
& 0xffff)) << 16) | index
;
1309 switch(typeinfo
->typekind
) {
1310 case TKIND_DISPATCH
:
1311 funckind
= 0x4; /* FUNC_DISPATCH */
1314 funckind
= 0x3; /* FUNC_STATIC */
1317 funckind
= 0x1; /* FUNC_PUREVIRTUAL */
1321 if (is_local( func
->attrs
)) {
1322 chat("add_func_desc: skipping local function\n");
1326 if (type_get_function_args(func
->type
))
1327 LIST_FOR_EACH_ENTRY( arg
, type_get_function_args(func
->type
), var_t
, entry
)
1330 if (arg
->attrs
) LIST_FOR_EACH_ENTRY( attr
, arg
->attrs
, const attr_t
, entry
) {
1331 if(attr
->type
== ATTR_DEFAULTVALUE
)
1333 else if(attr
->type
== ATTR_OPTIONAL
)
1338 chat("add_func_desc: num of params %d\n", num_params
);
1340 name_offset
= ctl2_alloc_name(typeinfo
->typelib
, func
->name
);
1342 if (func
->attrs
) LIST_FOR_EACH_ENTRY( attr
, func
->attrs
, const attr_t
, entry
) {
1343 expr_t
*expr
= attr
->u
.pval
;
1344 switch(attr
->type
) {
1346 funcflags
|= 0x4; /* FUNCFLAG_FBINDABLE */
1348 case ATTR_DEFAULTBIND
:
1349 funcflags
|= 0x20; /* FUNCFLAG_FDEFAULTBIND */
1351 case ATTR_DEFAULTCOLLELEM
:
1352 funcflags
|= 0x100; /* FUNCFLAG_FDEFAULTCOLLELEM */
1354 case ATTR_DISPLAYBIND
:
1355 funcflags
|= 0x10; /* FUNCFLAG_FDISPLAYBIND */
1358 extra_attr
= max(extra_attr
, 3);
1359 if (expr
->type
== EXPR_STRLIT
|| expr
->type
== EXPR_WSTRLIT
)
1360 entry
= ctl2_alloc_string(typeinfo
->typelib
, attr
->u
.pval
);
1366 case ATTR_HELPCONTEXT
:
1367 extra_attr
= max(extra_attr
, 1);
1368 help_context
= expr
->u
.lval
;
1370 case ATTR_HELPSTRING
:
1371 extra_attr
= max(extra_attr
, 2);
1372 help_string_offset
= ctl2_alloc_string(typeinfo
->typelib
, attr
->u
.pval
);
1374 case ATTR_HELPSTRINGCONTEXT
:
1375 extra_attr
= max(extra_attr
, 6);
1376 help_string_context
= expr
->u
.lval
;
1379 funcflags
|= 0x40; /* FUNCFLAG_FHIDDEN */
1384 case ATTR_IMMEDIATEBIND
:
1385 funcflags
|= 0x1000; /* FUNCFLAG_FIMMEDIATEBIND */
1387 case ATTR_NONBROWSABLE
:
1388 funcflags
|= 0x400; /* FUNCFLAG_FNONBROWSABLE */
1393 invokekind
= 0x2; /* INVOKE_PROPERTYGET */
1396 invokekind
= 0x4; /* INVOKE_PROPERTYPUT */
1398 case ATTR_PROPPUTREF
:
1399 invokekind
= 0x8; /* INVOKE_PROPERTYPUTREF */
1401 /* FIXME: FUNCFLAG_FREPLACEABLE */
1402 case ATTR_REQUESTEDIT
:
1403 funcflags
|= 0x8; /* FUNCFLAG_FREQUESTEDIT */
1405 case ATTR_RESTRICTED
:
1406 funcflags
|= 0x1; /* FUNCFLAG_FRESTRICTED */
1409 funcflags
|= 0x2; /* FUNCFLAG_FSOURCE */
1411 case ATTR_UIDEFAULT
:
1412 funcflags
|= 0x200; /* FUNCFLAG_FUIDEFAULT */
1414 case ATTR_USESGETLASTERROR
:
1415 funcflags
|= 0x80; /* FUNCFLAG_FUSESGETLASTERROR */
1418 if (num_optional
|| num_defaults
)
1419 warning("add_func_desc: ignoring vararg in function with optional or defaultvalue params\n");
1428 /* allocate type data space for us */
1429 typedata_size
= 0x18 + extra_attr
* sizeof(int) + (num_params
* (num_defaults
? 16 : 12));
1431 if (!typeinfo
->func_data
) {
1432 typeinfo
->func_data
= xmalloc(0x100);
1433 typeinfo
->func_data_allocated
= 0x100;
1434 typeinfo
->func_data
[0] = 0;
1437 if(typeinfo
->func_data
[0] + typedata_size
+ sizeof(int) > typeinfo
->func_data_allocated
) {
1438 typeinfo
->func_data_allocated
= max(typeinfo
->func_data_allocated
* 2,
1439 typeinfo
->func_data
[0] + typedata_size
+ sizeof(int));
1440 typeinfo
->func_data
= xrealloc(typeinfo
->func_data
, typeinfo
->func_data_allocated
);
1443 offset
= typeinfo
->func_data
[0];
1444 typeinfo
->func_data
[0] += typedata_size
;
1445 typedata
= typeinfo
->func_data
+ (offset
>> 2) + 1;
1448 /* find func with the same name - if it exists use its id */
1449 for(i
= 0; i
< (typeinfo
->typeinfo
->cElement
& 0xffff); i
++) {
1450 if(name_offset
== typeinfo
->func_names
[i
]) {
1451 id
= typeinfo
->func_indices
[i
];
1456 /* find the first func with the same id and link via the hiword of typedata[4] */
1458 for(i
= 0; i
< (typeinfo
->typeinfo
->cElement
& 0xffff); i
++) {
1459 if(id
== typeinfo
->func_indices
[i
]) {
1460 next_idx
= typeinfo
->func_data
[(typeinfo
->func_offsets
[i
] >> 2) + 1 + 4] >> 16;
1461 typeinfo
->func_data
[(typeinfo
->func_offsets
[i
] >> 2) + 1 + 4] &= 0xffff;
1462 typeinfo
->func_data
[(typeinfo
->func_offsets
[i
] >> 2) + 1 + 4] |= (index
<< 16);
1467 /* fill out the basic type information */
1468 typedata
[0] = typedata_size
| (index
<< 16);
1469 encode_var(typeinfo
->typelib
, type_function_get_rettype(func
->type
), func
, &typedata
[1], NULL
, NULL
, &decoded_size
);
1470 typedata
[2] = funcflags
;
1471 typedata
[3] = ((52 /*sizeof(FUNCDESC)*/ + decoded_size
) << 16) | typeinfo
->typeinfo
->cbSizeVft
;
1472 typedata
[4] = (next_idx
<< 16) | (callconv
<< 8) | (invokekind
<< 3) | funckind
;
1473 if(num_defaults
) typedata
[4] |= 0x1000;
1474 if(entry_is_ord
) typedata
[4] |= 0x2000;
1475 typedata
[5] = (num_optional
<< 16) | num_params
;
1477 /* NOTE: High word of typedata[3] is total size of FUNCDESC + size of all ELEMDESCs for params + TYPEDESCs for pointer params and return types. */
1478 /* That is, total memory allocation required to reconstitute the FUNCDESC in its entirety. */
1479 typedata
[3] += (16 /*sizeof(ELEMDESC)*/ * num_params
) << 16;
1480 typedata
[3] += (24 /*sizeof(PARAMDESCEX)*/ * num_defaults
) << 16;
1482 switch(extra_attr
) {
1483 case 6: typedata
[11] = help_string_context
;
1484 case 5: typedata
[10] = -1;
1485 case 4: typedata
[9] = -1;
1486 case 3: typedata
[8] = entry
;
1487 case 2: typedata
[7] = help_string_offset
;
1488 case 1: typedata
[6] = help_context
;
1492 warning("unknown number of optional attrs\n");
1495 if (type_get_function_args(func
->type
))
1498 LIST_FOR_EACH_ENTRY( arg
, type_get_function_args(func
->type
), var_t
, entry
)
1501 int *paramdata
= typedata
+ 6 + extra_attr
+ (num_defaults
? num_params
: 0) + i
* 3;
1502 int *defaultdata
= num_defaults
? typedata
+ 6 + extra_attr
+ i
: NULL
;
1504 if(defaultdata
) *defaultdata
= -1;
1506 encode_var(typeinfo
->typelib
, arg
->type
, arg
, paramdata
, NULL
, NULL
, &decoded_size
);
1507 if (arg
->attrs
) LIST_FOR_EACH_ENTRY( attr
, arg
->attrs
, const attr_t
, entry
) {
1508 switch(attr
->type
) {
1509 case ATTR_DEFAULTVALUE
:
1512 expr_t
*expr
= (expr_t
*)attr
->u
.pval
;
1513 vt
= get_defaultvalue_vt(arg
->type
);
1514 paramflags
|= 0x30; /* PARAMFLAG_FHASDEFAULT | PARAMFLAG_FOPT */
1515 if (expr
->type
== EXPR_STRLIT
|| expr
->type
== EXPR_WSTRLIT
)
1517 if (vt
!= VT_BSTR
) error("string default value applied to non-string type\n");
1518 chat("default value '%s'\n", expr
->u
.sval
);
1519 write_value(typeinfo
->typelib
, defaultdata
, vt
, expr
->u
.sval
);
1523 chat("default value %d\n", expr
->cval
);
1524 write_value(typeinfo
->typelib
, defaultdata
, vt
, &expr
->cval
);
1529 paramflags
|= 0x01; /* PARAMFLAG_FIN */
1532 paramflags
|= 0x10; /* PARAMFLAG_FOPT */
1535 paramflags
|= 0x02; /* PARAMFLAG_FOUT */
1537 case ATTR_PARAMLCID
:
1538 paramflags
|= 0x04; /* PARAMFLAG_LCID */
1539 lcid_retval_count
++;
1542 paramflags
|= 0x08; /* PARAMFLAG_FRETVAL */
1543 lcid_retval_count
++;
1546 chat("unhandled param attr %d\n", attr
->type
);
1551 paramdata
[2] = paramflags
;
1552 typedata
[3] += decoded_size
<< 16;
1558 if(lcid_retval_count
== 1)
1559 typedata
[4] |= 0x4000;
1560 else if(lcid_retval_count
== 2)
1561 typedata
[4] |= 0x8000;
1563 if(typeinfo
->funcs_allocated
== 0) {
1564 typeinfo
->funcs_allocated
= 10;
1565 typeinfo
->func_indices
= xmalloc(typeinfo
->funcs_allocated
* sizeof(int));
1566 typeinfo
->func_names
= xmalloc(typeinfo
->funcs_allocated
* sizeof(int));
1567 typeinfo
->func_offsets
= xmalloc(typeinfo
->funcs_allocated
* sizeof(int));
1569 if(typeinfo
->funcs_allocated
== (typeinfo
->typeinfo
->cElement
& 0xffff)) {
1570 typeinfo
->funcs_allocated
*= 2;
1571 typeinfo
->func_indices
= xrealloc(typeinfo
->func_indices
, typeinfo
->funcs_allocated
* sizeof(int));
1572 typeinfo
->func_names
= xrealloc(typeinfo
->func_names
, typeinfo
->funcs_allocated
* sizeof(int));
1573 typeinfo
->func_offsets
= xrealloc(typeinfo
->func_offsets
, typeinfo
->funcs_allocated
* sizeof(int));
1576 /* update the index data */
1577 typeinfo
->func_indices
[typeinfo
->typeinfo
->cElement
& 0xffff] = id
;
1578 typeinfo
->func_offsets
[typeinfo
->typeinfo
->cElement
& 0xffff] = offset
;
1579 typeinfo
->func_names
[typeinfo
->typeinfo
->cElement
& 0xffff] = name_offset
;
1582 if (!typeinfo
->typeinfo
->res2
) typeinfo
->typeinfo
->res2
= 0x20;
1583 typeinfo
->typeinfo
->res2
<<= 1;
1585 if (index
< 2) typeinfo
->typeinfo
->res2
+= num_params
<< 4;
1587 if (typeinfo
->typeinfo
->res3
== -1) typeinfo
->typeinfo
->res3
= 0;
1588 typeinfo
->typeinfo
->res3
+= 0x38 + num_params
* 0x10;
1589 if(num_defaults
) typeinfo
->typeinfo
->res3
+= num_params
* 0x4;
1591 /* adjust size of VTBL */
1592 if(funckind
!= 0x3 /* FUNC_STATIC */)
1593 typeinfo
->typeinfo
->cbSizeVft
+= pointer_size
;
1595 /* Increment the number of function elements */
1596 typeinfo
->typeinfo
->cElement
+= 1;
1598 namedata
= typeinfo
->typelib
->typelib_segment_data
[MSFT_SEG_NAME
] + name_offset
;
1599 if (*((INT
*)namedata
) == -1) {
1600 *((INT
*)namedata
) = typeinfo
->typelib
->typelib_typeinfo_offsets
[typeinfo
->typeinfo
->typekind
>> 16];
1601 if(typeinfo
->typekind
== TKIND_MODULE
)
1602 namedata
[9] |= 0x10;
1604 namedata
[9] &= ~0x10;
1606 if(typeinfo
->typekind
== TKIND_MODULE
)
1607 namedata
[9] |= 0x20;
1609 if (type_get_function_args(func
->type
))
1612 LIST_FOR_EACH_ENTRY( arg
, type_get_function_args(func
->type
), var_t
, entry
)
1614 /* don't give the last arg of a [propput*] func a name */
1615 if(i
!= num_params
- 1 || (invokekind
!= 0x4 /* INVOKE_PROPERTYPUT */ && invokekind
!= 0x8 /* INVOKE_PROPERTYPUTREF */))
1617 int *paramdata
= typedata
+ 6 + extra_attr
+ (num_defaults
? num_params
: 0) + i
* 3;
1618 offset
= ctl2_alloc_name(typeinfo
->typelib
, arg
->name
);
1619 paramdata
[1] = offset
;
1627 static HRESULT
add_var_desc(msft_typeinfo_t
*typeinfo
, UINT index
, var_t
* var
)
1630 unsigned int typedata_size
;
1634 int var_type_size
, var_kind
= 0 /* VAR_PERINSTANCE */;
1638 unsigned char *namedata
;
1639 int var_num
= (typeinfo
->typeinfo
->cElement
>> 16) & 0xffff;
1641 chat("add_var_desc(%d, %s)\n", index
, var
->name
);
1643 id
= 0x40000000 + index
;
1645 if (var
->attrs
) LIST_FOR_EACH_ENTRY( attr
, var
->attrs
, const attr_t
, entry
) {
1646 expr_t
*expr
= attr
->u
.pval
;
1647 switch(attr
->type
) {
1649 varflags
|= 0x04; /* VARFLAG_FBINDABLE */
1651 case ATTR_DEFAULTBIND
:
1652 varflags
|= 0x20; /* VARFLAG_FDEFAULTBIND */
1654 case ATTR_DEFAULTCOLLELEM
:
1655 varflags
|= 0x100; /* VARFLAG_FDEFAULTCOLLELEM */
1657 case ATTR_DISPLAYBIND
:
1658 varflags
|= 0x10; /* VARFLAG_FDISPLAYBIND */
1661 varflags
|= 0x40; /* VARFLAG_FHIDDEN */
1666 case ATTR_IMMEDIATEBIND
:
1667 varflags
|= 0x1000; /* VARFLAG_FIMMEDIATEBIND */
1669 case ATTR_NONBROWSABLE
:
1670 varflags
|= 0x400; /* VARFLAG_FNONBROWSABLE */
1673 varflags
|= 0x01; /* VARFLAG_FREADONLY */
1675 /* FIXME: VARFLAG_FREPLACEABLE */
1676 case ATTR_REQUESTEDIT
:
1677 varflags
|= 0x08; /* VARFLAG_FREQUESTEDIT */
1679 case ATTR_RESTRICTED
:
1680 varflags
|= 0x80; /* VARFLAG_FRESTRICTED */
1683 varflags
|= 0x02; /* VARFLAG_FSOURCE */
1685 case ATTR_UIDEFAULT
:
1686 varflags
|= 0x0200; /* VARFLAG_FUIDEFAULT */
1693 /* allocate type data space for us */
1694 typedata_size
= 0x14;
1696 if (!typeinfo
->var_data
) {
1697 typeinfo
->var_data
= xmalloc(0x100);
1698 typeinfo
->var_data_allocated
= 0x100;
1699 typeinfo
->var_data
[0] = 0;
1702 if(typeinfo
->var_data
[0] + typedata_size
+ sizeof(int) > typeinfo
->var_data_allocated
) {
1703 typeinfo
->var_data_allocated
= max(typeinfo
->var_data_allocated
* 2,
1704 typeinfo
->var_data
[0] + typedata_size
+ sizeof(int));
1705 typeinfo
->var_data
= xrealloc(typeinfo
->var_data
, typeinfo
->var_data_allocated
);
1708 offset
= typeinfo
->var_data
[0];
1709 typeinfo
->var_data
[0] += typedata_size
;
1710 typedata
= typeinfo
->var_data
+ (offset
>> 2) + 1;
1712 /* fill out the basic type information */
1713 typedata
[0] = typedata_size
| (index
<< 16);
1714 typedata
[2] = varflags
;
1715 typedata
[3] = (36 /*sizeof(VARDESC)*/ << 16) | 0;
1717 if(typeinfo
->vars_allocated
== 0) {
1718 typeinfo
->vars_allocated
= 10;
1719 typeinfo
->var_indices
= xmalloc(typeinfo
->vars_allocated
* sizeof(int));
1720 typeinfo
->var_names
= xmalloc(typeinfo
->vars_allocated
* sizeof(int));
1721 typeinfo
->var_offsets
= xmalloc(typeinfo
->vars_allocated
* sizeof(int));
1723 if(typeinfo
->vars_allocated
== var_num
) {
1724 typeinfo
->vars_allocated
*= 2;
1725 typeinfo
->var_indices
= xrealloc(typeinfo
->var_indices
, typeinfo
->vars_allocated
* sizeof(int));
1726 typeinfo
->var_names
= xrealloc(typeinfo
->var_names
, typeinfo
->vars_allocated
* sizeof(int));
1727 typeinfo
->var_offsets
= xrealloc(typeinfo
->var_offsets
, typeinfo
->vars_allocated
* sizeof(int));
1729 /* update the index data */
1730 typeinfo
->var_indices
[var_num
] = id
;
1731 typeinfo
->var_names
[var_num
] = -1;
1732 typeinfo
->var_offsets
[var_num
] = offset
;
1734 /* figure out type widths and whatnot */
1735 encode_var(typeinfo
->typelib
, var
->type
, var
, &typedata
[1], &var_datawidth
,
1736 &var_alignment
, &var_type_size
);
1738 /* pad out starting position to data width */
1739 typeinfo
->datawidth
+= var_alignment
- 1;
1740 typeinfo
->datawidth
&= ~(var_alignment
- 1);
1742 switch(typeinfo
->typekind
) {
1744 write_value(typeinfo
->typelib
, &typedata
[4], VT_I4
, &var
->eval
->cval
);
1745 var_kind
= 2; /* VAR_CONST */
1746 var_type_size
+= 16; /* sizeof(VARIANT) */
1747 typeinfo
->datawidth
= var_datawidth
;
1750 typedata
[4] = typeinfo
->datawidth
;
1751 typeinfo
->datawidth
+= var_datawidth
;
1753 case TKIND_DISPATCH
:
1754 var_kind
= 3; /* VAR_DISPATCH */
1755 typeinfo
->datawidth
= pointer_size
;
1759 error("add_var_desc: unhandled type kind %d\n", typeinfo
->typekind
);
1763 /* add type description size to total required allocation */
1764 typedata
[3] += var_type_size
<< 16 | var_kind
;
1766 /* fix type alignment */
1767 alignment
= (typeinfo
->typeinfo
->typekind
>> 11) & 0x1f;
1768 if (alignment
< var_alignment
) {
1769 alignment
= var_alignment
;
1770 typeinfo
->typeinfo
->typekind
&= ~0xffc0;
1771 typeinfo
->typeinfo
->typekind
|= alignment
<< 11 | alignment
<< 6;
1775 if (!typeinfo
->typeinfo
->res2
) typeinfo
->typeinfo
->res2
= 0x1a;
1776 if ((index
== 0) || (index
== 1) || (index
== 2) || (index
== 4) || (index
== 9)) {
1777 typeinfo
->typeinfo
->res2
<<= 1;
1781 if (typeinfo
->typeinfo
->res3
== -1) typeinfo
->typeinfo
->res3
= 0;
1782 typeinfo
->typeinfo
->res3
+= 0x2c;
1784 /* increment the number of variable elements */
1785 typeinfo
->typeinfo
->cElement
+= 0x10000;
1787 /* pad data width to alignment */
1788 typeinfo
->typeinfo
->size
= (typeinfo
->datawidth
+ (alignment
- 1)) & ~(alignment
- 1);
1790 offset
= ctl2_alloc_name(typeinfo
->typelib
, var
->name
);
1791 if (offset
== -1) return E_OUTOFMEMORY
;
1793 namedata
= typeinfo
->typelib
->typelib_segment_data
[MSFT_SEG_NAME
] + offset
;
1794 if (*((INT
*)namedata
) == -1) {
1795 *((INT
*)namedata
) = typeinfo
->typelib
->typelib_typeinfo_offsets
[typeinfo
->typeinfo
->typekind
>> 16];
1796 if(typeinfo
->typekind
!= TKIND_DISPATCH
)
1797 namedata
[9] |= 0x10;
1799 namedata
[9] &= ~0x10;
1801 if (typeinfo
->typekind
== TKIND_ENUM
) {
1802 namedata
[9] |= 0x20;
1804 typeinfo
->var_names
[var_num
] = offset
;
1809 static HRESULT
add_impl_type(msft_typeinfo_t
*typeinfo
, type_t
*ref
, importinfo_t
*importinfo
)
1812 alloc_importinfo(typeinfo
->typelib
, importinfo
);
1813 typeinfo
->typeinfo
->datatype1
= importinfo
->offset
+1;
1815 if(ref
->typelib_idx
== -1)
1816 add_interface_typeinfo(typeinfo
->typelib
, ref
);
1817 if(ref
->typelib_idx
== -1)
1818 error("add_impl_type: unable to add inherited interface\n");
1820 typeinfo
->typeinfo
->datatype1
= typeinfo
->typelib
->typelib_typeinfo_offsets
[ref
->typelib_idx
];
1823 typeinfo
->typeinfo
->cImplTypes
++;
1827 static msft_typeinfo_t
*create_msft_typeinfo(msft_typelib_t
*typelib
, enum type_kind kind
,
1828 const char *name
, const attr_list_t
*attrs
)
1831 msft_typeinfo_t
*msft_typeinfo
;
1833 int typeinfo_offset
;
1834 MSFT_TypeInfoBase
*typeinfo
;
1835 MSFT_GuidEntry guidentry
;
1837 chat("create_msft_typeinfo: name %s kind %d\n", name
, kind
);
1839 msft_typeinfo
= xmalloc(sizeof(*msft_typeinfo
));
1840 memset( msft_typeinfo
, 0, sizeof(*msft_typeinfo
) );
1842 msft_typeinfo
->typelib
= typelib
;
1844 nameoffset
= ctl2_alloc_name(typelib
, name
);
1845 typeinfo_offset
= ctl2_alloc_typeinfo(typelib
, nameoffset
);
1846 typeinfo
= (MSFT_TypeInfoBase
*)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEINFO
][typeinfo_offset
];
1848 typelib
->typelib_segment_data
[MSFT_SEG_NAME
][nameoffset
+ 9] = 0x38;
1849 *((int *)&typelib
->typelib_segment_data
[MSFT_SEG_NAME
][nameoffset
]) = typeinfo_offset
;
1851 msft_typeinfo
->typekind
= kind
;
1852 msft_typeinfo
->typeinfo
= typeinfo
;
1854 typeinfo
->typekind
|= kind
| 0x20;
1856 if(kind
== TKIND_COCLASS
)
1857 typeinfo
->flags
|= 0x2; /* TYPEFLAG_FCANCREATE */
1859 if (attrs
) LIST_FOR_EACH_ENTRY( attr
, attrs
, const attr_t
, entry
) {
1860 switch(attr
->type
) {
1861 case ATTR_AGGREGATABLE
:
1862 if (kind
== TKIND_COCLASS
)
1863 typeinfo
->flags
|= 0x400; /* TYPEFLAG_FAGGREGATABLE */
1866 case ATTR_APPOBJECT
:
1867 if (kind
== TKIND_COCLASS
)
1868 typeinfo
->flags
|= 0x1; /* TYPEFLAG_FAPPOBJECT */
1872 if (kind
== TKIND_COCLASS
)
1873 typeinfo
->flags
|= 0x20; /* TYPEFLAG_FCONTROL */
1878 int offset
= ctl2_alloc_string(typelib
, attr
->u
.pval
);
1879 typeinfo
->datatype1
= offset
;
1884 /* FIXME: check interface is compatible */
1885 typeinfo
->typekind
= (typeinfo
->typekind
& ~0xff) | 0x34;
1886 typeinfo
->flags
|= 0x140; /* TYPEFLAG_FDUAL | TYPEFLAG_FOLEAUTOMATION */
1889 case ATTR_HELPCONTEXT
:
1891 expr_t
*expr
= (expr_t
*)attr
->u
.pval
;
1892 typeinfo
->helpcontext
= expr
->cval
;
1895 case ATTR_HELPSTRING
:
1897 int offset
= ctl2_alloc_string(typelib
, attr
->u
.pval
);
1898 if (offset
== -1) break;
1899 typeinfo
->docstringoffs
= offset
;
1902 case ATTR_HELPSTRINGCONTEXT
:
1904 expr_t
*expr
= (expr_t
*)attr
->u
.pval
;
1905 typeinfo
->helpstringcontext
= expr
->cval
;
1909 typeinfo
->flags
|= 0x10; /* TYPEFLAG_FHIDDEN */
1913 typeinfo
->flags
|= 0x04; /* TYPEFLAG_FLICENSED */
1916 case ATTR_NONCREATABLE
:
1917 typeinfo
->flags
&= ~0x2; /* TYPEFLAG_FCANCREATE */
1920 case ATTR_NONEXTENSIBLE
:
1921 typeinfo
->flags
|= 0x80; /* TYPEFLAG_FNONEXTENSIBLE */
1924 case ATTR_OLEAUTOMATION
:
1925 typeinfo
->flags
|= 0x100; /* TYPEFLAG_FOLEAUTOMATION */
1928 /* FIXME: TYPEFLAG_FPREDCLID */
1931 typeinfo
->flags
|= 0x4000; /* TYPEFLAG_FPROXY */
1934 /* FIXME: TYPEFLAG_FREPLACEABLE */
1936 case ATTR_RESTRICTED
:
1937 typeinfo
->flags
|= 0x200; /* TYPEFLAG_FRESTRICTED */
1941 guidentry
.guid
= *(GUID
*)attr
->u
.pval
;
1942 guidentry
.hreftype
= typelib
->typelib_typeinfo_offsets
[typeinfo
->typekind
>> 16];
1943 guidentry
.next_hash
= -1;
1944 typeinfo
->posguid
= ctl2_alloc_guid(typelib
, &guidentry
);
1946 if (IsEqualIID(guid
, &IID_IDispatch
)) {
1947 typelib
->typelib_header
.dispatchpos
= typelib
->typelib_typeinfo_offsets
[typeinfo
->typekind
>> 16];
1953 typeinfo
->version
= attr
->u
.ival
;
1961 if (typelib
->last_typeinfo
) typelib
->last_typeinfo
->next_typeinfo
= msft_typeinfo
;
1962 typelib
->last_typeinfo
= msft_typeinfo
;
1963 if (!typelib
->typeinfos
) typelib
->typeinfos
= msft_typeinfo
;
1966 return msft_typeinfo
;
1969 static void add_dispatch(msft_typelib_t
*typelib
)
1971 int guid_offset
, impfile_offset
;
1972 MSFT_GuidEntry guidentry
;
1973 MSFT_ImpInfo impinfo
;
1974 GUID stdole
= {0x00020430,0x0000,0x0000,{0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46}};
1975 GUID iid_idispatch
= {0x00020400,0x0000,0x0000,{0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46}};
1977 if(typelib
->typelib_header
.dispatchpos
!= -1) return;
1979 guidentry
.guid
= stdole
;
1980 guidentry
.hreftype
= 2;
1981 guidentry
.next_hash
= -1;
1982 guid_offset
= ctl2_alloc_guid(typelib
, &guidentry
);
1983 impfile_offset
= alloc_importfile(typelib
, guid_offset
, 2, 0, "stdole2.tlb");
1985 guidentry
.guid
= iid_idispatch
;
1986 guidentry
.hreftype
= 1;
1987 guidentry
.next_hash
= -1;
1988 impinfo
.flags
= TKIND_INTERFACE
<< 24 | MSFT_IMPINFO_OFFSET_IS_GUID
;
1989 impinfo
.oImpFile
= impfile_offset
;
1990 impinfo
.oGuid
= ctl2_alloc_guid(typelib
, &guidentry
);
1991 typelib
->typelib_header
.dispatchpos
= alloc_msft_importinfo(typelib
, &impinfo
) | 0x01;
1994 static void add_dispinterface_typeinfo(msft_typelib_t
*typelib
, type_t
*dispinterface
)
1999 msft_typeinfo_t
*msft_typeinfo
;
2001 if (-1 < dispinterface
->typelib_idx
)
2004 dispinterface
->typelib_idx
= typelib
->typelib_header
.nrtypeinfos
;
2005 msft_typeinfo
= create_msft_typeinfo(typelib
, TKIND_DISPATCH
, dispinterface
->name
,
2006 dispinterface
->attrs
);
2008 msft_typeinfo
->typeinfo
->size
= pointer_size
;
2009 msft_typeinfo
->typeinfo
->typekind
|= 0x2100;
2011 msft_typeinfo
->typeinfo
->flags
|= 0x1000; /* TYPEFLAG_FDISPATCHABLE */
2012 add_dispatch(typelib
);
2013 msft_typeinfo
->typeinfo
->cImplTypes
= 1;
2015 /* count the no of methods, as the variable indices come after the funcs */
2016 if (dispinterface
->details
.iface
->disp_methods
)
2017 LIST_FOR_EACH_ENTRY( func
, dispinterface
->details
.iface
->disp_methods
, var_t
, entry
)
2020 if (type_dispiface_get_props(dispinterface
))
2021 LIST_FOR_EACH_ENTRY( var
, type_dispiface_get_props(dispinterface
), var_t
, entry
)
2022 add_var_desc(msft_typeinfo
, idx
++, var
);
2024 if (type_dispiface_get_methods(dispinterface
))
2027 LIST_FOR_EACH_ENTRY( func
, type_dispiface_get_methods(dispinterface
), var_t
, entry
)
2028 if(add_func_desc(msft_typeinfo
, func
, idx
) == S_OK
)
2033 static void add_interface_typeinfo(msft_typelib_t
*typelib
, type_t
*interface
)
2036 const statement_t
*stmt_func
;
2038 msft_typeinfo_t
*msft_typeinfo
;
2039 importinfo_t
*ref_importinfo
= NULL
;
2040 int num_parents
= 0, num_funcs
= 0;
2042 const type_t
*derived
;
2044 if (-1 < interface
->typelib_idx
)
2047 if (!interface
->details
.iface
)
2049 error( "interface %s is referenced but not defined\n", interface
->name
);
2053 if (is_attr(interface
->attrs
, ATTR_DISPINTERFACE
)) {
2054 add_dispinterface_typeinfo(typelib
, interface
);
2058 /* midl adds the parent interface first, unless the parent itself
2059 has no parent (i.e. it stops before IUnknown). */
2061 inherit
= type_iface_get_inherit(interface
);
2064 ref_importinfo
= find_importinfo(typelib
, inherit
->name
);
2066 if(!ref_importinfo
&& type_iface_get_inherit(inherit
) &&
2067 inherit
->typelib_idx
== -1)
2068 add_interface_typeinfo(typelib
, inherit
);
2071 interface
->typelib_idx
= typelib
->typelib_header
.nrtypeinfos
;
2072 msft_typeinfo
= create_msft_typeinfo(typelib
, TKIND_INTERFACE
, interface
->name
, interface
->attrs
);
2073 msft_typeinfo
->typeinfo
->size
= pointer_size
;
2074 msft_typeinfo
->typeinfo
->typekind
|= 0x2200;
2076 for (derived
= inherit
; derived
; derived
= type_iface_get_inherit(derived
))
2077 if (derived
->name
&& !strcmp(derived
->name
, "IDispatch"))
2078 msft_typeinfo
->typeinfo
->flags
|= 0x1000; /* TYPEFLAG_FDISPATCHABLE */
2080 /* can't be dual if it doesn't derive from IDispatch */
2081 if (!(msft_typeinfo
->typeinfo
->flags
& 0x1000)) /* TYPEFLAG_FDISPATCHABLE */
2082 msft_typeinfo
->typeinfo
->flags
&= ~0x40; /* TYPEFLAG_FDUAL */
2084 if(type_iface_get_inherit(interface
))
2085 add_impl_type(msft_typeinfo
, type_iface_get_inherit(interface
),
2088 /* count the number of inherited interfaces and non-local functions */
2089 for(ref
= inherit
; ref
; ref
= type_iface_get_inherit(ref
)) {
2091 STATEMENTS_FOR_EACH_FUNC( stmt_func
, type_iface_get_stmts(ref
) ) {
2092 var_t
*func
= stmt_func
->u
.var
;
2093 if (!is_local(func
->attrs
)) num_funcs
++;
2096 msft_typeinfo
->typeinfo
->datatype2
= num_funcs
<< 16 | num_parents
;
2097 msft_typeinfo
->typeinfo
->cbSizeVft
= num_funcs
* pointer_size
;
2099 STATEMENTS_FOR_EACH_FUNC( stmt_func
, type_iface_get_stmts(interface
) ) {
2100 var_t
*func
= stmt_func
->u
.var
;
2101 if(add_func_desc(msft_typeinfo
, func
, idx
) == S_OK
)
2106 static void add_structure_typeinfo(msft_typelib_t
*typelib
, type_t
*structure
)
2110 msft_typeinfo_t
*msft_typeinfo
;
2112 if (-1 < structure
->typelib_idx
)
2115 structure
->typelib_idx
= typelib
->typelib_header
.nrtypeinfos
;
2116 msft_typeinfo
= create_msft_typeinfo(typelib
, TKIND_RECORD
, structure
->name
, structure
->attrs
);
2117 msft_typeinfo
->typeinfo
->size
= 0;
2119 if (type_struct_get_fields(structure
))
2120 LIST_FOR_EACH_ENTRY( cur
, type_struct_get_fields(structure
), var_t
, entry
)
2121 add_var_desc(msft_typeinfo
, idx
++, cur
);
2124 static void add_enum_typeinfo(msft_typelib_t
*typelib
, type_t
*enumeration
)
2128 msft_typeinfo_t
*msft_typeinfo
;
2130 if (-1 < enumeration
->typelib_idx
)
2133 enumeration
->typelib_idx
= typelib
->typelib_header
.nrtypeinfos
;
2134 msft_typeinfo
= create_msft_typeinfo(typelib
, TKIND_ENUM
, enumeration
->name
, enumeration
->attrs
);
2135 msft_typeinfo
->typeinfo
->size
= 0;
2137 if (type_enum_get_values(enumeration
))
2138 LIST_FOR_EACH_ENTRY( cur
, type_enum_get_values(enumeration
), var_t
, entry
)
2139 add_var_desc(msft_typeinfo
, idx
++, cur
);
2142 static void add_typedef_typeinfo(msft_typelib_t
*typelib
, type_t
*tdef
)
2144 msft_typeinfo_t
*msft_typeinfo
;
2147 if (-1 < tdef
->typelib_idx
)
2150 tdef
->typelib_idx
= typelib
->typelib_header
.nrtypeinfos
;
2151 msft_typeinfo
= create_msft_typeinfo(typelib
, TKIND_ALIAS
, tdef
->name
, tdef
->attrs
);
2152 encode_type(typelib
, get_type_vt(type_alias_get_aliasee(tdef
)),
2153 type_alias_get_aliasee(tdef
),
2154 &msft_typeinfo
->typeinfo
->datatype1
,
2155 &msft_typeinfo
->typeinfo
->size
,
2156 &alignment
, &msft_typeinfo
->typeinfo
->datatype2
);
2157 msft_typeinfo
->typeinfo
->typekind
|= (alignment
<< 11 | alignment
<< 6);
2160 static void add_coclass_typeinfo(msft_typelib_t
*typelib
, type_t
*cls
)
2162 msft_typeinfo_t
*msft_typeinfo
;
2164 int num_ifaces
= 0, offset
, i
;
2165 MSFT_RefRecord
*ref
, *first
= NULL
, *first_source
= NULL
;
2166 int have_default
= 0, have_default_source
= 0;
2168 ifref_list_t
*ifaces
;
2170 if (-1 < cls
->typelib_idx
)
2173 cls
->typelib_idx
= typelib
->typelib_header
.nrtypeinfos
;
2174 msft_typeinfo
= create_msft_typeinfo(typelib
, TKIND_COCLASS
, cls
->name
, cls
->attrs
);
2176 ifaces
= type_coclass_get_ifaces(cls
);
2177 if (ifaces
) LIST_FOR_EACH_ENTRY( iref
, ifaces
, ifref_t
, entry
) num_ifaces
++;
2179 offset
= msft_typeinfo
->typeinfo
->datatype1
= ctl2_alloc_segment(typelib
, MSFT_SEG_REFERENCES
,
2180 num_ifaces
* sizeof(*ref
), 0);
2183 if (ifaces
) LIST_FOR_EACH_ENTRY( iref
, ifaces
, ifref_t
, entry
) {
2184 if(iref
->iface
->typelib_idx
== -1)
2185 add_interface_typeinfo(typelib
, iref
->iface
);
2186 ref
= (MSFT_RefRecord
*) (typelib
->typelib_segment_data
[MSFT_SEG_REFERENCES
] + offset
+ i
* sizeof(*ref
));
2187 ref
->reftype
= typelib
->typelib_typeinfo_offsets
[iref
->iface
->typelib_idx
];
2189 ref
->oCustData
= -1;
2191 if(i
< num_ifaces
- 1)
2192 ref
->onext
= offset
+ (i
+ 1) * sizeof(*ref
);
2194 if (iref
->attrs
) LIST_FOR_EACH_ENTRY( attr
, iref
->attrs
, const attr_t
, entry
) {
2195 switch(attr
->type
) {
2197 ref
->flags
|= 0x1; /* IMPLTYPEFLAG_FDEFAULT */
2199 case ATTR_DEFAULTVTABLE
:
2200 ref
->flags
|= 0x8; /* IMPLTYPEFLAG_FDEFAULTVTABLE */
2202 case ATTR_RESTRICTED
:
2203 ref
->flags
|= 0x4; /* IMPLTYPEFLAG_FRESTRICTED */
2206 ref
->flags
|= 0x2; /* IMPLTYPEFLAG_FSOURCE */
2209 warning("add_coclass_typeinfo: unhandled attr %d\n", attr
->type
);
2212 if(ref
->flags
& 0x1) { /* IMPLTYPEFLAG_FDEFAULT */
2213 if(ref
->flags
& 0x2) /* IMPLTYPEFLAG_SOURCE */
2214 have_default_source
= 1;
2219 /* If the interface is non-restricted and we haven't already had one then
2220 remember it so that we can use it as a default later */
2221 if((ref
->flags
& 0x4) == 0) { /* IMPLTYPEFLAG_FRESTRICTED */
2222 if(ref
->flags
& 0x2) { /* IMPLTYPEFLAG_FSOURCE */
2232 /* If we haven't had a default interface, then set the default flags on the
2234 if(!have_default
&& first
)
2235 first
->flags
|= 0x1;
2236 if(!have_default_source
&& first_source
)
2237 first_source
->flags
|= 0x1;
2239 msft_typeinfo
->typeinfo
->cImplTypes
= num_ifaces
;
2240 msft_typeinfo
->typeinfo
->size
= pointer_size
;
2241 msft_typeinfo
->typeinfo
->typekind
|= 0x2200;
2244 static void add_module_typeinfo(msft_typelib_t
*typelib
, type_t
*module
)
2247 const statement_t
*stmt
;
2248 msft_typeinfo_t
*msft_typeinfo
;
2250 if (-1 < module
->typelib_idx
)
2253 module
->typelib_idx
= typelib
->typelib_header
.nrtypeinfos
;
2254 msft_typeinfo
= create_msft_typeinfo(typelib
, TKIND_MODULE
, module
->name
, module
->attrs
);
2255 msft_typeinfo
->typeinfo
->typekind
|= 0x0a00;
2257 STATEMENTS_FOR_EACH_FUNC( stmt
, module
->details
.module
->stmts
) {
2258 var_t
*func
= stmt
->u
.var
;
2259 if(add_func_desc(msft_typeinfo
, func
, idx
) == S_OK
)
2263 msft_typeinfo
->typeinfo
->size
= idx
;
2266 static void add_type_typeinfo(msft_typelib_t
*typelib
, type_t
*type
)
2268 switch (type_get_type(type
)) {
2269 case TYPE_INTERFACE
:
2270 add_interface_typeinfo(typelib
, type
);
2273 add_structure_typeinfo(typelib
, type
);
2276 add_enum_typeinfo(typelib
, type
);
2279 add_coclass_typeinfo(typelib
, type
);
2285 error("add_entry: unhandled type 0x%x for %s\n",
2286 type_get_type(type
), type
->name
);
2291 static void add_entry(msft_typelib_t
*typelib
, const statement_t
*stmt
)
2293 switch(stmt
->type
) {
2298 case STMT_DECLARATION
:
2299 /* not included in typelib */
2301 case STMT_IMPORTLIB
:
2302 /* not processed here */
2306 const type_list_t
*type_entry
= stmt
->u
.type_list
;
2307 for (; type_entry
; type_entry
= type_entry
->next
) {
2308 /* if the type is public then add the typedef, otherwise attempt
2309 * to add the aliased type */
2310 if (is_attr(type_entry
->type
->attrs
, ATTR_PUBLIC
))
2311 add_typedef_typeinfo(typelib
, type_entry
->type
);
2313 add_type_typeinfo(typelib
, type_alias_get_aliasee(type_entry
->type
));
2318 add_module_typeinfo(typelib
, stmt
->u
.type
);
2323 type_t
*type
= stmt
->u
.type
;
2324 add_type_typeinfo(typelib
, type
);
2330 static void set_name(msft_typelib_t
*typelib
)
2334 offset
= ctl2_alloc_name(typelib
, typelib
->typelib
->name
);
2335 if (offset
== -1) return;
2336 typelib
->typelib_header
.NameOffset
= offset
;
2340 static void set_version(msft_typelib_t
*typelib
)
2342 typelib
->typelib_header
.version
= get_attrv( typelib
->typelib
->attrs
, ATTR_VERSION
);
2345 static void set_guid(msft_typelib_t
*typelib
)
2347 MSFT_GuidEntry guidentry
;
2350 GUID guid
= {0,0,0,{0,0,0,0,0,0}};
2352 guidentry
.guid
= guid
;
2353 guidentry
.hreftype
= -2;
2354 guidentry
.next_hash
= -1;
2356 ptr
= get_attrp( typelib
->typelib
->attrs
, ATTR_UUID
);
2357 if (ptr
) guidentry
.guid
= *(GUID
*)ptr
;
2359 offset
= ctl2_alloc_guid(typelib
, &guidentry
);
2360 typelib
->typelib_header
.posguid
= offset
;
2365 static void set_doc_string(msft_typelib_t
*typelib
)
2367 char *str
= get_attrp( typelib
->typelib
->attrs
, ATTR_HELPSTRING
);
2371 int offset
= ctl2_alloc_string(typelib
, str
);
2372 if (offset
!= -1) typelib
->typelib_header
.helpstring
= offset
;
2376 static void set_help_file_name(msft_typelib_t
*typelib
)
2378 char *str
= get_attrp( typelib
->typelib
->attrs
, ATTR_HELPFILE
);
2382 int offset
= ctl2_alloc_string(typelib
, str
);
2385 typelib
->typelib_header
.helpfile
= offset
;
2386 typelib
->typelib_header
.varflags
|= 0x10;
2391 static void set_help_context(msft_typelib_t
*typelib
)
2393 const expr_t
*expr
= get_attrp( typelib
->typelib
->attrs
, ATTR_HELPCONTEXT
);
2394 if (expr
) typelib
->typelib_header
.helpcontext
= expr
->cval
;
2397 static void set_help_string_dll(msft_typelib_t
*typelib
)
2399 char *str
= get_attrp( typelib
->typelib
->attrs
, ATTR_HELPSTRINGDLL
);
2403 int offset
= ctl2_alloc_string(typelib
, str
);
2406 typelib
->help_string_dll_offset
= offset
;
2407 typelib
->typelib_header
.varflags
|= 0x100;
2412 static void set_help_string_context(msft_typelib_t
*typelib
)
2414 const expr_t
*expr
= get_attrp( typelib
->typelib
->attrs
, ATTR_HELPSTRINGCONTEXT
);
2415 if (expr
) typelib
->typelib_header
.helpstringcontext
= expr
->cval
;
2418 static void set_lcid(msft_typelib_t
*typelib
)
2420 const expr_t
*lcid_expr
= get_attrp( typelib
->typelib
->attrs
, ATTR_LIBLCID
);
2423 typelib
->typelib_header
.lcid
= lcid_expr
->cval
;
2424 typelib
->typelib_header
.lcid2
= lcid_expr
->cval
;
2428 static void set_lib_flags(msft_typelib_t
*typelib
)
2432 typelib
->typelib_header
.flags
= 0;
2433 if (!typelib
->typelib
->attrs
) return;
2434 LIST_FOR_EACH_ENTRY( attr
, typelib
->typelib
->attrs
, const attr_t
, entry
)
2436 switch(attr
->type
) {
2438 typelib
->typelib_header
.flags
|= 0x02; /* LIBFLAG_FCONTROL */
2441 typelib
->typelib_header
.flags
|= 0x04; /* LIBFLAG_FHIDDEN */
2443 case ATTR_RESTRICTED
:
2444 typelib
->typelib_header
.flags
|= 0x01; /* LIBFLAG_FRESTRICTED */
2453 static void ctl2_write_segment(msft_typelib_t
*typelib
, int segment
)
2455 put_data(typelib
->typelib_segment_data
[segment
], typelib
->typelib_segdir
[segment
].length
);
2458 static void ctl2_finalize_typeinfos(msft_typelib_t
*typelib
, int filesize
)
2460 msft_typeinfo_t
*typeinfo
;
2462 for (typeinfo
= typelib
->typeinfos
; typeinfo
; typeinfo
= typeinfo
->next_typeinfo
) {
2463 typeinfo
->typeinfo
->memoffset
= filesize
;
2464 if (typeinfo
->func_data
)
2465 filesize
+= typeinfo
->func_data
[0] + ((typeinfo
->typeinfo
->cElement
& 0xffff) * 12);
2466 if (typeinfo
->var_data
)
2467 filesize
+= typeinfo
->var_data
[0] + (((typeinfo
->typeinfo
->cElement
>> 16) & 0xffff) * 12);
2468 if (typeinfo
->func_data
|| typeinfo
->var_data
)
2473 static int ctl2_finalize_segment(msft_typelib_t
*typelib
, int filepos
, int segment
)
2475 if (typelib
->typelib_segdir
[segment
].length
) {
2476 typelib
->typelib_segdir
[segment
].offset
= filepos
;
2478 typelib
->typelib_segdir
[segment
].offset
= -1;
2481 return typelib
->typelib_segdir
[segment
].length
;
2485 static void ctl2_write_typeinfos(msft_typelib_t
*typelib
)
2487 msft_typeinfo_t
*typeinfo
;
2490 for (typeinfo
= typelib
->typeinfos
; typeinfo
; typeinfo
= typeinfo
->next_typeinfo
) {
2491 if (!typeinfo
->func_data
&& !typeinfo
->var_data
) continue;
2493 if (typeinfo
->func_data
)
2494 typedata_size
= typeinfo
->func_data
[0];
2495 if (typeinfo
->var_data
)
2496 typedata_size
+= typeinfo
->var_data
[0];
2497 put_data(&typedata_size
, sizeof(int));
2498 if (typeinfo
->func_data
)
2499 put_data(typeinfo
->func_data
+ 1, typeinfo
->func_data
[0]);
2500 if (typeinfo
->var_data
)
2501 put_data(typeinfo
->var_data
+ 1, typeinfo
->var_data
[0]);
2502 if (typeinfo
->func_indices
)
2503 put_data(typeinfo
->func_indices
, (typeinfo
->typeinfo
->cElement
& 0xffff) * 4);
2504 if (typeinfo
->var_indices
)
2505 put_data(typeinfo
->var_indices
, (typeinfo
->typeinfo
->cElement
>> 16) * 4);
2506 if (typeinfo
->func_names
)
2507 put_data(typeinfo
->func_names
, (typeinfo
->typeinfo
->cElement
& 0xffff) * 4);
2508 if (typeinfo
->var_names
)
2509 put_data(typeinfo
->var_names
, (typeinfo
->typeinfo
->cElement
>> 16) * 4);
2510 if (typeinfo
->func_offsets
)
2511 put_data(typeinfo
->func_offsets
, (typeinfo
->typeinfo
->cElement
& 0xffff) * 4);
2512 if (typeinfo
->var_offsets
) {
2513 int add
= 0, i
, offset
;
2514 if(typeinfo
->func_data
)
2515 add
= typeinfo
->func_data
[0];
2516 for(i
= 0; i
< (typeinfo
->typeinfo
->cElement
>> 16); i
++) {
2517 offset
= typeinfo
->var_offsets
[i
];
2519 put_data(&offset
, 4);
2525 static void save_all_changes(msft_typelib_t
*typelib
)
2529 chat("save_all_changes(%p)\n", typelib
);
2531 filepos
= sizeof(MSFT_Header
) + sizeof(MSFT_SegDir
);
2532 if(typelib
->typelib_header
.varflags
& 0x100) filepos
+= 4; /* helpstringdll */
2533 filepos
+= typelib
->typelib_header
.nrtypeinfos
* 4;
2535 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_TYPEINFO
);
2536 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_GUIDHASH
);
2537 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_GUID
);
2538 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_REFERENCES
);
2539 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_IMPORTINFO
);
2540 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_IMPORTFILES
);
2541 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_NAMEHASH
);
2542 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_NAME
);
2543 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_STRING
);
2544 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_TYPEDESC
);
2545 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_ARRAYDESC
);
2546 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_CUSTDATA
);
2547 filepos
+= ctl2_finalize_segment(typelib
, filepos
, MSFT_SEG_CUSTDATAGUID
);
2549 ctl2_finalize_typeinfos(typelib
, filepos
);
2552 init_output_buffer();
2554 put_data(&typelib
->typelib_header
, sizeof(typelib
->typelib_header
));
2555 if(typelib
->typelib_header
.varflags
& 0x100)
2556 put_data(&typelib
->help_string_dll_offset
, sizeof(typelib
->help_string_dll_offset
));
2558 put_data(typelib
->typelib_typeinfo_offsets
, typelib
->typelib_header
.nrtypeinfos
* 4);
2559 put_data(&typelib
->typelib_segdir
, sizeof(typelib
->typelib_segdir
));
2560 ctl2_write_segment( typelib
, MSFT_SEG_TYPEINFO
);
2561 ctl2_write_segment( typelib
, MSFT_SEG_GUIDHASH
);
2562 ctl2_write_segment( typelib
, MSFT_SEG_GUID
);
2563 ctl2_write_segment( typelib
, MSFT_SEG_REFERENCES
);
2564 ctl2_write_segment( typelib
, MSFT_SEG_IMPORTINFO
);
2565 ctl2_write_segment( typelib
, MSFT_SEG_IMPORTFILES
);
2566 ctl2_write_segment( typelib
, MSFT_SEG_NAMEHASH
);
2567 ctl2_write_segment( typelib
, MSFT_SEG_NAME
);
2568 ctl2_write_segment( typelib
, MSFT_SEG_STRING
);
2569 ctl2_write_segment( typelib
, MSFT_SEG_TYPEDESC
);
2570 ctl2_write_segment( typelib
, MSFT_SEG_ARRAYDESC
);
2571 ctl2_write_segment( typelib
, MSFT_SEG_CUSTDATA
);
2572 ctl2_write_segment( typelib
, MSFT_SEG_CUSTDATAGUID
);
2574 ctl2_write_typeinfos(typelib
);
2576 if (strendswith( typelib_name
, ".res" )) /* create a binary resource file */
2578 char typelib_id
[13] = "#1";
2580 expr_t
*expr
= get_attrp( typelib
->typelib
->attrs
, ATTR_ID
);
2582 sprintf( typelib_id
, "#%d", expr
->cval
);
2583 add_output_to_resources( "TYPELIB", typelib_id
);
2584 output_typelib_regscript( typelib
->typelib
);
2585 flush_output_resources( typelib_name
);
2587 else flush_output_buffer( typelib_name
);
2590 int create_msft_typelib(typelib_t
*typelib
)
2592 msft_typelib_t
*msft
;
2594 const statement_t
*stmt
;
2596 char *time_override
;
2597 unsigned int version
= 7 << 24 | 555; /* 7.00.0555 */
2598 GUID midl_time_guid
= {0xde77ba63,0x517c,0x11d1,{0xa2,0xda,0x00,0x00,0xf8,0x77,0x3c,0xe9}};
2599 GUID midl_version_guid
= {0xde77ba64,0x517c,0x11d1,{0xa2,0xda,0x00,0x00,0xf8,0x77,0x3c,0xe9}};
2600 GUID midl_info_guid
= {0xde77ba65,0x517c,0x11d1,{0xa2,0xda,0x00,0x00,0xf8,0x77,0x3c,0xe9}};
2601 char info_string
[128];
2603 pointer_size
= (typelib_kind
== SYS_WIN64
) ? 8 : 4;
2605 msft
= xmalloc(sizeof(*msft
));
2606 memset(msft
, 0, sizeof(*msft
));
2607 msft
->typelib
= typelib
;
2609 ctl2_init_header(msft
);
2610 ctl2_init_segdir(msft
);
2612 msft
->typelib_header
.varflags
|= typelib_kind
;
2615 * The following two calls return an offset or -1 if out of memory. We
2616 * specifically need an offset of 0, however, so...
2618 if (ctl2_alloc_segment(msft
, MSFT_SEG_GUIDHASH
, 0x80, 0x80)) { failed
= 1; }
2619 if (ctl2_alloc_segment(msft
, MSFT_SEG_NAMEHASH
, 0x200, 0x200)) { failed
= 1; }
2627 msft
->typelib_guidhash_segment
= (int *)msft
->typelib_segment_data
[MSFT_SEG_GUIDHASH
];
2628 msft
->typelib_namehash_segment
= (int *)msft
->typelib_segment_data
[MSFT_SEG_NAMEHASH
];
2630 memset(msft
->typelib_guidhash_segment
, 0xff, 0x80);
2631 memset(msft
->typelib_namehash_segment
, 0xff, 0x200);
2633 set_lib_flags(msft
);
2635 set_help_file_name(msft
);
2636 set_doc_string(msft
);
2640 set_help_context(msft
);
2641 set_help_string_dll(msft
);
2642 set_help_string_context(msft
);
2644 /* midl adds two sets of custom data to the library: the current unix time
2645 and midl's version number */
2646 time_override
= getenv( "WIDL_TIME_OVERRIDE");
2647 cur_time
= time_override
? atol( time_override
) : time(NULL
);
2648 sprintf(info_string
, "Created by WIDL version %s at %s\n", PACKAGE_VERSION
, ctime(&cur_time
));
2649 set_custdata(msft
, &midl_info_guid
, VT_BSTR
, info_string
, &msft
->typelib_header
.CustomDataOffset
);
2650 set_custdata(msft
, &midl_time_guid
, VT_UI4
, &cur_time
, &msft
->typelib_header
.CustomDataOffset
);
2651 set_custdata(msft
, &midl_version_guid
, VT_UI4
, &version
, &msft
->typelib_header
.CustomDataOffset
);
2654 LIST_FOR_EACH_ENTRY( stmt
, typelib
->stmts
, const statement_t
, entry
)
2655 add_entry(msft
, stmt
);
2657 save_all_changes(msft
);