1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _TYPELIB_TYPEDESCRIPTION_H_
#define _TYPELIB_TYPEDESCRIPTION_H_
#include <sal/types.h>
#include <typelib/uik.h>
#include <typelib/typeclass.h>
#include <rtl/ustring.h>
#ifdef __cplusplus
extern "C"
{
#endif
struct _typelib_TypeDescription;
#if defined( SAL_W32)
#pragma pack(push, 8)
#endif
/** Holds a weak reference to a type description.
*/
typedef struct _typelib_TypeDescriptionReference
{
/** reference count of type; don't ever modify this by yourself, use
typelib_typedescriptionreference_acquire() and typelib_typedescriptionreference_release()
*/
sal_Int32 nRefCount;
/** number of static references of type, because of the fact that some types are needed
until program termination and are commonly held static.
*/
sal_Int32 nStaticRefCount;
/** type class of type
*/
typelib_TypeClass eTypeClass;
/** fully qualified name of type
*/
rtl_uString * pTypeName;
/** pointer to full typedescription; this value is only valid if the type is never swapped out
*/
struct _typelib_TypeDescription * pType;
/** pointer to optimize the runtime; not for public use
*/
void * pUniqueIdentifier;
/** reserved for future use; 0 if not used
*/
void * pReserved;
} typelib_TypeDescriptionReference;
/** Full type description of a type. Memory layout of this struct is identical to the
typelib_TypeDescriptionReference for the first six members.
So a typedescription can be used as type reference.
*/
typedef struct _typelib_TypeDescription
{
/** reference count; don't ever modify this by yourself, use
typelib_typedescription_acquire() and typelib_typedescription_release()
*/
sal_Int32 nRefCount;
/** number of static references of type, because of the fact that some types are needed
until program termination and are commonly held static.
*/
sal_Int32 nStaticRefCount;
/** type class of type
*/
typelib_TypeClass eTypeClass;
/** fully qualified name of type
*/
rtl_uString * pTypeName;
/** pointer to self to distinguish reference from description; for internal use only
*/
struct _typelib_TypeDescription * pSelf;
/** pointer to optimize the runtime; not for public use
*/
void * pUniqueIdentifier;
/** reserved for future use; 0 if not used
*/
void * pReserved;
/** flag to determine whether the description is complete:
compound and union types lack of member names, enums lack of member types and names,
interfaces lack of members and table init.
Call typelib_typedescription_complete() if false.
*/
sal_Bool bComplete;
/** size of type
*/
sal_Int32 nSize;
/** alignment of type
*/
sal_Int32 nAlignment;
/** pointer to weak reference
*/
typelib_TypeDescriptionReference * pWeakRef;
/** determines, if type can be unloaded (and it is possible to reloaded it)
*/
sal_Bool bOnDemand;
} typelib_TypeDescription;
/** Type description for exception types.
*/
typedef struct _typelib_CompoundTypeDescription
{
/** inherits all members of typelib_TypeDescription
*/
typelib_TypeDescription aBase;
/** pointer to base type description, else 0
*/
struct _typelib_CompoundTypeDescription * pBaseTypeDescription;
/** number of members
*/
sal_Int32 nMembers;
/** byte offsets of each member including the size the base type
*/
sal_Int32 * pMemberOffsets;
/** members of the struct or exception
*/
typelib_TypeDescriptionReference ** ppTypeRefs;
/** member names of the struct or exception
*/
rtl_uString ** ppMemberNames;
} typelib_CompoundTypeDescription;
/**
Type description for struct types.
This is only used to represent plain struct types and instantiated
polymorphic struct types; there is no representation of polymorphic struct
type templates at this level.
@since UDK 3.2.0
*/
typedef struct _typelib_StructTypeDescription
{
/**
Derived from typelib_CompoundTypeDescription.
*/
typelib_CompoundTypeDescription aBase;
/**
Flags for direct members, specifying whether they are of parameterized
type (true) or explict type (false).
For a plain struct type, this is a null pointer.
*/
sal_Bool * pParameterizedTypes;
} typelib_StructTypeDescription;
/** Type description of a union. The type class of this description is typelib_TypeClass_UNION.
*/
typedef struct _typelib_UnionTypeDescription
{
/** inherits all members of typelib_TypeDescription
*/
typelib_TypeDescription aBase;
/** type of the discriminant
*/
typelib_TypeDescriptionReference * pDiscriminantTypeRef;
/** union default descriminant
*/
sal_Int64 nDefaultDiscriminant;
/** union default member type (may be 0)
*/
typelib_TypeDescriptionReference * pDefaultTypeRef;
/** number of union member types
*/
sal_Int32 nMembers;
/** union member discriminant values (same order as idl declaration)
*/
sal_Int64 * pDiscriminants;
/** union member value types (same order as idl declaration)
*/
typelib_TypeDescriptionReference ** ppTypeRefs;
/** union member value names (same order as idl declaration)
*/
rtl_uString ** ppMemberNames;
/** union value offset for data access
*/
sal_Int32 nValueOffset;
} typelib_UnionTypeDescription;
/** Type description of an array or sequence.
*/
typedef struct _typelib_IndirectTypeDescription
{
/** inherits all members of typelib_TypeDescription
*/
typelib_TypeDescription aBase;
/** array, sequence: pointer to element type
*/
typelib_TypeDescriptionReference * pType;
} typelib_IndirectTypeDescription;
/** Type description of an array.
*/
typedef struct _typelib_ArrayTypeDescription
{
/** inherits all members of typelib_IndirectTypeDescription
*/
typelib_IndirectTypeDescription aBase;
/** number of dimensions
*/
sal_Int32 nDimensions;
/** number of total array elements
*/
sal_Int32 nTotalElements;
/** array of dimensions
*/
sal_Int32 * pDimensions;
} typelib_ArrayTypeDescription;
/** Type description of an enum. The type class of this description is typelib_TypeClass_ENUM.
*/
typedef struct _typelib_EnumTypeDescription
{
/** inherits all members of typelib_TypeDescription
*/
typelib_TypeDescription aBase;
/** first value of the enum
*/
sal_Int32 nDefaultEnumValue;
/** number of enum values
*/
sal_Int32 nEnumValues;
/** names of enum values
*/
rtl_uString ** ppEnumNames;
/** values of enum (corresponding to names in similar order)
*/
sal_Int32 * pEnumValues;
} typelib_EnumTypeDescription;
/** Description of an interface method parameter.
*/
typedef struct _typelib_MethodParameter
{
/** name of parameter
*/
rtl_uString * pName;
/** type of parameter
*/
typelib_TypeDescriptionReference * pTypeRef;
/** true: the call type of this parameter is [in] or [inout]
false: the call type of this parameter is [out]
*/
sal_Bool bIn;
/** true: the call type of this parameter is [out] or [inout]
false: the call type of this parameter is [in]
*/
sal_Bool bOut;
} typelib_MethodParameter;
/** Common base type description of typelib_InterfaceMethodTypeDescription and
typelib_InterfaceAttributeTypeDescription.
*/
typedef struct _typelib_InterfaceMemberTypeDescription
{
/** inherits all members of typelib_TypeDescription
*/
typelib_TypeDescription aBase;
/** position of member in the interface including the number of members of
any base interfaces
*/
sal_Int32 nPosition;
/** name of member
*/
rtl_uString * pMemberName;
} typelib_InterfaceMemberTypeDescription;
/** Type description of an interface method. The type class of this description is
typelib_TypeClass_INTERFACE_METHOD. The size and the alignment are 0.
*/
typedef struct _typelib_InterfaceMethodTypeDescription
{
/** inherits all members of typelib_InterfaceMemberTypeDescription
*/
typelib_InterfaceMemberTypeDescription aBase;
/** type of the return value
*/
typelib_TypeDescriptionReference * pReturnTypeRef;
/** number of parameters
*/
sal_Int32 nParams;
/** array of parameters
*/
typelib_MethodParameter * pParams;
/** number of exceptions
*/
sal_Int32 nExceptions;
/** array of exception types
*/
typelib_TypeDescriptionReference ** ppExceptions;
/** determines whether method is declared oneway
*/
sal_Bool bOneWay;
/** the interface description this method is a member of
@since #i21150#
*/
struct _typelib_InterfaceTypeDescription * pInterface;
/** the inherited direct base method (null for a method that is not
inherited)
@since UDK 3.2.0
*/
typelib_TypeDescriptionReference * pBaseRef;
/** if pBaseRef is null, the member position of this method within
pInterface, not counting members inherited from bases; if pBaseRef is
not null, the index of the direct base within pInterface from which this
method is inherited
@since UDK 3.2.0
*/
sal_Int32 nIndex;
} typelib_InterfaceMethodTypeDescription;
/** The description of an interface attribute. The type class of this description is
typelib_TypeClass_INTERFACE_ATTRIBUTE. The size and the alignment are 0.
*/
typedef struct _typelib_InterfaceAttributeTypeDescription
{
/** inherits all members of typelib_InterfaceMemberTypeDescription
*/
typelib_InterfaceMemberTypeDescription aBase;
/** determines whether attribute is read only
*/
sal_Bool bReadOnly;
/** type of the attribute
*/
typelib_TypeDescriptionReference * pAttributeTypeRef;
/** the interface description this attribute is a member of
@since #i21150#
*/
struct _typelib_InterfaceTypeDescription * pInterface;
/** the inherited direct base attribute (null for an attribute that is not
inherited)
@since UDK 3.2.0
*/
typelib_TypeDescriptionReference * pBaseRef;
/** if pBaseRef is null, the member position of this attribute within
pInterface, not counting members inherited from bases; if pBaseRef is
not null, the index of the direct base within pInterface from which this
attribute is inherited
@since UDK 3.2.0
*/
sal_Int32 nIndex;
/** number of getter exceptions
@since UDK 3.2.0
*/
sal_Int32 nGetExceptions;
/** array of getter exception types
@since UDK 3.2.0
*/
typelib_TypeDescriptionReference ** ppGetExceptions;
/** number of setter exceptions
@since UDK 3.2.0
*/
sal_Int32 nSetExceptions;
/** array of setter exception types
@since UDK 3.2.0
*/
typelib_TypeDescriptionReference ** ppSetExceptions;
} typelib_InterfaceAttributeTypeDescription;
/// @HTML
/** Type description of an interface.
<p>Not all members are always initialized (not yet initialized members being
null); there are three levels:</p>
<ul>
<li>Minimally, only <code>aBase</code>,
<code>pBaseTypeDescription</code>, <code>aUik</code>,
<code>nBaseTypes</code>, and <code>ppBaseTypes</code> are initialized;
<code>aBase.bComplete</code> is false. This only happens when an
interface type description is created with
<code>typelib_static_mi_interface_type_init</code> or
<code>typelib_static_interface_type_init</code>.</li>
<li>At the next level, <code>nMembers</code>, <code>ppMembers</code>,
<code>nAllMembers</code>, <code>ppAllMembers</code> are also
initialized; <code>aBase.bComplete</code> is still false. This happens
when an interface type description is created with
<code>typelib_typedescription_newMIInterface</cocde> or
<code>typelib_typedescription_newInterface</code>.</li>
<li>At the final level, <code>pMapMemberIndexToFunctionIndex</code>,
<code>nMapFunctionIndexToMemberIndex</code>, and
<code>pMapFunctionIndexToMemberIndex</code> are also initialized;
<code>aBase.bComplete</code> is true. This happens after a call to
<code>typelib_typedescription_complete</code>.</li>
</ul>
*/
typedef struct _typelib_InterfaceTypeDescription
/// @NOHTML
{
/** inherits all members of typelib_TypeDescription
*/
typelib_TypeDescription aBase;
/** pointer to base type description, else 0
@deprecated
use nBaseTypes and ppBaseTypes instead
*/
struct _typelib_InterfaceTypeDescription * pBaseTypeDescription;
/** unique identifier of interface
*/
typelib_Uik aUik;
/** number of members
*/
sal_Int32 nMembers;
/** array of members; references attributes or methods
*/
typelib_TypeDescriptionReference ** ppMembers;
/** number of members including members of base interface
*/
sal_Int32 nAllMembers;
/** array of members including members of base interface; references attributes or methods
*/
typelib_TypeDescriptionReference ** ppAllMembers;
/** array mapping index of the member description to an index doubling for read-write
attributes (called function index); size of array is nAllMembers
*/
sal_Int32 * pMapMemberIndexToFunctionIndex;
/** number of members plus number of read-write attributes
*/
sal_Int32 nMapFunctionIndexToMemberIndex;
/** array mapping function index to member index; size of arry is nMapFunctionIndexToMemberIndex
*/
sal_Int32 * pMapFunctionIndexToMemberIndex;
/** number of base types
@since UDK 3.2.0
*/
sal_Int32 nBaseTypes;
/** array of base type descriptions
@since UDK 3.2.0
*/
struct _typelib_InterfaceTypeDescription ** ppBaseTypes;
} typelib_InterfaceTypeDescription;
/** Init struct of compound members for typelib_typedescription_new().
*/
typedef struct _typelib_CompoundMember_Init
{
/** type class of compound member
*/
typelib_TypeClass eTypeClass;
/** name of type of compound member
For a member of an instantiated polymorphic struct type that is of
parameterized type, this will be a null pointer.
*/
rtl_uString * pTypeName;
/** name of compound member
*/
rtl_uString * pMemberName;
} typelib_CompoundMember_Init;
/**
Init struct of members for typelib_typedescription_newStruct().
@since UDK 3.2.0
*/
typedef struct _typelib_StructMember_Init
{
/**
Derived from typelib_CompoundMember_Init;
*/
typelib_CompoundMember_Init aBase;
/**
Flag specifying whether the member is of parameterized type (true) or
explict type (false).
*/
sal_Bool bParameterizedType;
} typelib_StructMember_Init;
/** Init struct of interface methods for typelib_typedescription_new().
*/
typedef struct _typelib_Parameter_Init
{
/** type class of parameter
*/
typelib_TypeClass eTypeClass;
/** name of parameter
*/
rtl_uString * pTypeName;
/** name of parameter
*/
rtl_uString * pParamName;
/** true, if parameter is [in] or [inout]
*/
sal_Bool bIn;
/** true, if parameter is [out] or [inout]
*/
sal_Bool bOut;
} typelib_Parameter_Init;
/** Init struct of union types for typelib_typedescription_newUnion().
*/
typedef struct _typelib_Union_Init
{
/** union member discriminant
*/
sal_Int64 nDiscriminant;
/** union member name
*/
rtl_uString * pMemberName;
/** union member type
*/
typelib_TypeDescriptionReference* pTypeRef;
} typelib_Union_Init;
#if defined( SAL_W32)
#pragma pack(pop)
#endif
/** Creates a union type description. All discriminants are handled as int64 values.
The pDiscriminantTypeRef must be of type byte, short, ..., up to hyper.
@param ppRet inout union type description
@param pTypeName name of union type
@param pDiscriminantTypeRef discriminant type
@param nDefaultDiscriminant default discriminant
@param pDefaultTypeRef default value type of union
@param nMembers number of union members
@param pMembers init members
*/
void SAL_CALL typelib_typedescription_newUnion(
typelib_TypeDescription ** ppRet,
rtl_uString * pTypeName,
typelib_TypeDescriptionReference * pDiscriminantTypeRef,
sal_Int64 nDefaultDiscriminant,
typelib_TypeDescriptionReference * pDefaultTypeRef,
sal_Int32 nMembers,
typelib_Union_Init * pMembers )
SAL_THROW_EXTERN_C();
/** Creates an enum type description.
@param ppRet inout enum type description
@param pTypeName name of enum
@param nDefaultEnumValue default enum value
@param nEnumValues number of enum values
@param ppEnumNames names of enum values
@param pEnumValues enum values
*/
void SAL_CALL typelib_typedescription_newEnum(
typelib_TypeDescription ** ppRet,
rtl_uString * pTypeName,
sal_Int32 nDefaultValue,
sal_Int32 nEnumValues,
rtl_uString ** ppEnumNames,
sal_Int32 * pEnumValues )
SAL_THROW_EXTERN_C();
/** Creates an array type description.
@param ppRet inout enum type description
@param pElementTypeRef element type
@param nDimensions number of dimensions
@param pDimensions dimensions
*/
void SAL_CALL typelib_typedescription_newArray(
typelib_TypeDescription ** ppRet,
typelib_TypeDescriptionReference * pElementTypeRef,
sal_Int32 nDimensions,
sal_Int32 * pDimensions )
SAL_THROW_EXTERN_C ();
/** Creates a new type description.
Since this function can only be used to create type descriptions for plain
struct types, not for instantiated polymorphic struct types, the function
typelib_typedescription_newStruct should be used instead for all struct
types.
@param ppRet inout type description
@param eTypeClass type class
@param pTypeName name of type
@param pType sequence, array: element type;
struct, Exception: base type;
@param nMembers number of members if struct, exception
@param pMember array of members if struct, exception
*/
void SAL_CALL typelib_typedescription_new(
typelib_TypeDescription ** ppRet,
typelib_TypeClass eTypeClass,
rtl_uString * pTypeName,
typelib_TypeDescriptionReference * pType,
sal_Int32 nMembers,
typelib_CompoundMember_Init * pMembers )
SAL_THROW_EXTERN_C();
/** Creates a new struct type description.
@param ppRet inout type description
@param pTypeName name of type
@param pType base type;
@param nMembers number of members
@param pMember array of members
@since UDK 3.2.0
*/
void SAL_CALL typelib_typedescription_newStruct(
typelib_TypeDescription ** ppRet,
rtl_uString * pTypeName,
typelib_TypeDescriptionReference * pType,
sal_Int32 nMembers,
typelib_StructMember_Init * pMembers )
SAL_THROW_EXTERN_C();
/** Creates an interface type description.
@param ppRet inout interface type description
@param pTypeName the fully qualified name of the interface.
@param nUik1 uik part
@param nUik2 uik part
@param nUik3 uik part
@param nUik4 uik part
@param nUik5 uik part
@param pBaseInterface base interface type, else 0
@param nMembers number of members
@param ppMembers members; attributes or methods
@deprecated
use typelib_typedescription_newMIInterface instead
*/
void SAL_CALL typelib_typedescription_newInterface(
typelib_InterfaceTypeDescription ** ppRet,
rtl_uString * pTypeName,
sal_uInt32 nUik1, sal_uInt16 nUik2, sal_uInt16 nUik3, sal_uInt32 nUik4, sal_uInt32 nUik5,
typelib_TypeDescriptionReference * pBaseInterface,
sal_Int32 nMembers,
typelib_TypeDescriptionReference ** ppMembers )
SAL_THROW_EXTERN_C();
/** Creates a multiple-inheritance interface type description.
@param ppRet inout interface type description
@param pTypeName the fully qualified name of the interface.
@param nUik1 uik part
@param nUik2 uik part
@param nUik3 uik part
@param nUik4 uik part
@param nUik5 uik part
@param nBaseInterfaces number of base interface types
@param ppBaseInterface base interface types
@param nMembers number of members
@param ppMembers members; attributes or methods
@since UDK 3.2.0
*/
void SAL_CALL typelib_typedescription_newMIInterface(
typelib_InterfaceTypeDescription ** ppRet,
rtl_uString * pTypeName,
sal_uInt32 nUik1, sal_uInt16 nUik2, sal_uInt16 nUik3, sal_uInt32 nUik4, sal_uInt32 nUik5,
sal_Int32 nBaseInterfaces,
typelib_TypeDescriptionReference ** ppBaseInterfaces,
sal_Int32 nMembers,
typelib_TypeDescriptionReference ** ppMembers )
SAL_THROW_EXTERN_C();
/** Creates an interface method type description.
@param ppRet inout method type description
@param nAbsolutePosition position of member including all members of base interfaces
@param bOneWay determines whether method is declared oneway
@param pTypeName fully qualified name of method including interface name
@param eReturnTypeClass type class of return type
@param pReturnTypeName type name of the return type
@param nParams number of parameters
@param pParams parameter types
@param nExceptions number of exceptions
@param ppExceptionNames type names of exceptions
*/
void SAL_CALL typelib_typedescription_newInterfaceMethod(
typelib_InterfaceMethodTypeDescription ** ppRet,
sal_Int32 nAbsolutePosition,
sal_Bool bOneWay,
rtl_uString * pMethodName,
typelib_TypeClass eReturnTypeClass,
rtl_uString * pReturnTypeName,
sal_Int32 nParams,
typelib_Parameter_Init * pParams,
sal_Int32 nExceptions,
rtl_uString ** ppExceptionNames )
SAL_THROW_EXTERN_C();
/** Creates an interface attribute type description.
@param ppRet inout attribute type description
@param nAbsolutePosition position of this attribute including all members of base interfaces
@param pAttributeName fully qualified name of attribute including interface
name
@param eAttributeTypeClass type class of attribute type
@param pAttributeTypeName type name of attribute type
@param bReadOnly determines whether attribute is read-only
@deprecated
use typelib_typedescription_newExtendedInterfaceAttribute instead
*/
void SAL_CALL typelib_typedescription_newInterfaceAttribute(
typelib_InterfaceAttributeTypeDescription ** ppRet,
sal_Int32 nAbsolutePosition,
rtl_uString * pAttributeName,
typelib_TypeClass eAttributeTypeClass,
rtl_uString * pAttributeTypeName,
sal_Bool bReadOnly )
SAL_THROW_EXTERN_C();
/** Creates an extended interface attribute type description.
@param ppRet inout attribute type description
@param nAbsolutePosition position of this attribute including all members of
base interfaces
@param pAttributeName fully qualified name of attribute including interface
name
@param eAttributeTypeClass type class of attribute type
@param pAttributeTypeName type name of attribute type
@param bReadOnly determines whether attribute is read-only
@param nGetExceptions number of getter exceptions
@param ppGetExceptionNames type names of getter exceptions
@param nSetExceptions number of setter exceptions
@param ppSetExceptionNames type names of setter exceptions
@since UDK 3.2.0
*/
void SAL_CALL typelib_typedescription_newExtendedInterfaceAttribute(
typelib_InterfaceAttributeTypeDescription ** ppRet,
sal_Int32 nAbsolutePosition,
rtl_uString * pAttributeName,
typelib_TypeClass eAttributeTypeClass,
rtl_uString * pAttributeTypeName,
sal_Bool bReadOnly,
sal_Int32 nGetExceptions, rtl_uString ** ppGetExceptionNames,
sal_Int32 nSetExceptions, rtl_uString ** ppSetExceptionNames )
SAL_THROW_EXTERN_C();
/** Increments reference count of given type description.
@param pDesc type description
*/
void SAL_CALL typelib_typedescription_acquire(
typelib_TypeDescription * pDesc )
SAL_THROW_EXTERN_C();
/** Decrements reference count of given type. If reference count reaches 0, the trype description
is deleted.
@param pDesc type description
*/
void SAL_CALL typelib_typedescription_release(
typelib_TypeDescription * pDesc )
SAL_THROW_EXTERN_C();
/** Registers a type description and creates a type description reference. Type descriptions
will be registered automatically if they are provided via the callback chain.
@param ppNewDescription inout description to be registered;
*/
void SAL_CALL typelib_typedescription_register(
typelib_TypeDescription ** ppNewDescription )
SAL_THROW_EXTERN_C();
/** Tests whether two types descriptions are equal, i.e. type class and names are equal.
@param p1 a type description
@param p2 another type description
@return true, if type descriptions are equal
*/
sal_Bool SAL_CALL typelib_typedescription_equals(
const typelib_TypeDescription * p1, const typelib_TypeDescription * p2 )
SAL_THROW_EXTERN_C();
/** Retrieves a type description via its fully qualified name.
@param ppRet inout type description; *ppRet is 0, if type description was not found
@param pName name demanded type description
*/
void SAL_CALL typelib_typedescription_getByName(
typelib_TypeDescription ** ppRet, rtl_uString * pName )
SAL_THROW_EXTERN_C();
/** Sets size of type description cache.
@param nNewSize new size of cache
*/
void SAL_CALL typelib_setCacheSize(
sal_Int32 nNewSize )
SAL_THROW_EXTERN_C();
/** Function pointer declaration of callback function get additional descriptions. Callbacks
must provide complete type descriptions (see typelib_typedescription_complete())!
@param pContext callback context
@param ppRet inout type description
@param pTypeName name of demanded type description
*/
typedef void (SAL_CALL * typelib_typedescription_Callback)(
void * pContext, typelib_TypeDescription ** ppRet, rtl_uString * pTypeName );
/** Registers callback function providing additional type descriptions.
@param pContext callback context
@param pCallback callback function
*/
void SAL_CALL typelib_typedescription_registerCallback(
void * pContext, typelib_typedescription_Callback pCallback )
SAL_THROW_EXTERN_C();
/** Revokes a previously registered callback function.
@param pContext callback context
@param pCallback registered callback function
*/
void SAL_CALL typelib_typedescription_revokeCallback(
void * pContext, typelib_typedescription_Callback pCallback )
SAL_THROW_EXTERN_C();
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/** Returns true, if the type description reference may lose the type description. Otherwise
pType is a valid pointer and cannot be discarded through the lifetime of this reference.
Remark: If the pWeakObj of the type is set too, you can avoid the call of
...getDescription(...) and use the description directly. pWeakObj == 0 means, that the
description is not initialized.
@internal
*/
#define TYPELIB_TYPEDESCRIPTIONREFERENCE_ISREALLYWEAK( eTypeClass ) \
((eTypeClass) == typelib_TypeClass_INTERFACE_METHOD || \
(eTypeClass) == typelib_TypeClass_INTERFACE_ATTRIBUTE)
/** Gets a description from the reference. The description may not be locked by this call.
You must use the TYPELIB_DANGER_RELEASE macro to release the description fetched with
this macro.
@internal
*/
#define TYPELIB_DANGER_GET( ppDescription, pTypeRef ) \
{ \
typelib_TypeDescriptionReference * pMacroTypeRef = (pTypeRef); \
typelib_TypeDescription ** ppMacroTypeDescr = (ppDescription); \
if (TYPELIB_TYPEDESCRIPTIONREFERENCE_ISREALLYWEAK( pMacroTypeRef->eTypeClass )) \
{ \
typelib_typedescriptionreference_getDescription( ppMacroTypeDescr, pMacroTypeRef ); \
} \
else if (!pMacroTypeRef->pType || !pMacroTypeRef->pType->pWeakRef) \
{ \
typelib_typedescriptionreference_getDescription( ppMacroTypeDescr, pMacroTypeRef ); \
if (*ppMacroTypeDescr) \
typelib_typedescription_release( *ppMacroTypeDescr ); \
} \
else \
{ \
*ppMacroTypeDescr = pMacroTypeRef->pType; \
} \
}
/** Releases the description previouse fetched by TYPELIB_DANGER_GET.
@internal
*/
#define TYPELIB_DANGER_RELEASE( pDescription ) \
{ \
if (TYPELIB_TYPEDESCRIPTIONREFERENCE_ISREALLYWEAK( (pDescription)->eTypeClass )) \
typelib_typedescription_release( pDescription ); \
}
/** Creates a type description reference. This is a weak reference not holding the description.
If the description is already registered, the previous one is returned.
@param ppTDR inout type description reference
@param eTypeClass type class of type
@param pTypeName name of type
*/
void SAL_CALL typelib_typedescriptionreference_new(
typelib_TypeDescriptionReference ** ppTDR,
typelib_TypeClass eTypeClass,
rtl_uString * pTypeName )
SAL_THROW_EXTERN_C();
/** Creates a type description reference. This is a weak reference not holding the description.
If the description is already registered, the previous one is returned.
@param ppTDR inout type description reference
@param eTypeClass type class of type
@param pTypeName ascii name of type
*/
void SAL_CALL typelib_typedescriptionreference_newByAsciiName(
typelib_TypeDescriptionReference ** ppTDR,
typelib_TypeClass eTypeClass,
const sal_Char * pTypeName )
SAL_THROW_EXTERN_C();
/** Increments reference count of type description reference.
@param pRef type description reference
*/
void SAL_CALL typelib_typedescriptionreference_acquire(
typelib_TypeDescriptionReference * pRef )
SAL_THROW_EXTERN_C();
/** Increments reference count of type description reference. If the reference count reaches 0,
then the reference is deleted.
@param pRef type description reference
*/
void SAL_CALL typelib_typedescriptionreference_release(
typelib_TypeDescriptionReference * pRef )
SAL_THROW_EXTERN_C();
/** Retrieves the type description for a given reference. If it is not possible to resolve the
reference, null is returned.
@param ppRet inout type description
*/
void SAL_CALL typelib_typedescriptionreference_getDescription(
typelib_TypeDescription ** ppRet, typelib_TypeDescriptionReference * pRef )
SAL_THROW_EXTERN_C();
/** Tests whether two types description references are equal, i.e. type class and names are equal.
@param p1 a type description reference
@param p2 another type description reference
@return true, if type description references are equal
*/
sal_Bool SAL_CALL typelib_typedescriptionreference_equals(
const typelib_TypeDescriptionReference * p1, const typelib_TypeDescriptionReference * p2 )
SAL_THROW_EXTERN_C();
/** Assigns a type.
@param ppDest destination type
@param pSource source type
*/
void SAL_CALL typelib_typedescriptionreference_assign(
typelib_TypeDescriptionReference ** ppDest,
typelib_TypeDescriptionReference * pSource )
SAL_THROW_EXTERN_C();
/** Tests if values of type pAssignable can be assigned by values of type pFrom. This includes
widening conversion (e.g., long assignable from short), as long as there is no data loss.
@param pAssignable type description of value to be assigned
@param pFrom type description of value
*/
sal_Bool SAL_CALL typelib_typedescription_isAssignableFrom(
typelib_TypeDescription * pAssignable,
typelib_TypeDescription * pFrom )
SAL_THROW_EXTERN_C();
/** Tests if values of type pAssignable can be assigned by values of type pFrom. This includes
widening conversion (e.g., long assignable from short), as long as there is no data loss.
@param pAssignable type of value to be assigned
@param pFrom type of value
*/
sal_Bool SAL_CALL typelib_typedescriptionreference_isAssignableFrom(
typelib_TypeDescriptionReference * pAssignable,
typelib_TypeDescriptionReference * pFrom )
SAL_THROW_EXTERN_C();
/** Gets static type reference of standard types by type class.
ADDITIONAL OPT: provides Type com.sun.star.uno.Exception for typelib_TypeClass_EXCEPTION
and com.sun.star.uno.XInterface for typelib_TypeClass_INTERFACE.
Thread synchronizes on typelib mutex.
@param eTypeClass type class of basic type
@return pointer to type reference pointer
*/
typelib_TypeDescriptionReference ** SAL_CALL typelib_static_type_getByTypeClass(
typelib_TypeClass eTypeClass )
SAL_THROW_EXTERN_C();
/** Inits static type reference. Thread synchronizes on typelib init mutex.
@param ppRef pointer to type reference pointer
@param eTypeClass type class of type
@param pTypeName ascii name of type
*/
void SAL_CALL typelib_static_type_init(
typelib_TypeDescriptionReference ** ppRef,
typelib_TypeClass eTypeClass, const sal_Char * pTypeName )
SAL_THROW_EXTERN_C();
/** Inits static sequence type reference. Thread synchronizes on typelib init mutex.
@param ppRef pointer to type reference pointer
@param pElementType element type of sequence
*/
void SAL_CALL typelib_static_sequence_type_init(
typelib_TypeDescriptionReference ** ppRef,
typelib_TypeDescriptionReference * pElementType )
SAL_THROW_EXTERN_C ();
/** Inits static array type reference. Thread synchronizes on typelib init mutex.
@param ppRef pointer to type reference pointer
@param pElementType element type of sequence
@param nDimensions number of dimensions
@param ... additional sal_Int32 parameter for each dimension
*/
void SAL_CALL typelib_static_array_type_init(
typelib_TypeDescriptionReference ** ppRef,
typelib_TypeDescriptionReference * pElementType,
sal_Int32 nDimensions, ... )
SAL_THROW_EXTERN_C ();
/** Inits incomplete static compound type reference. Thread synchronizes on typelib init mutex.
Since this function can only be used to create type descriptions for plain
struct types, not for instantiated polymorphic struct types, the function
typelib_static_struct_type_init should be used instead for all struct types.
@param ppRef pointer to type reference pointer
@param eTypeClass typelib_TypeClass_STRUCT or typelib_TypeClass_EXCEPTION
@param pTypeName name of type
@param pBaseType base type
@param nMembers number of members
@param ppMembers member types
*/
void SAL_CALL typelib_static_compound_type_init(
typelib_TypeDescriptionReference ** ppRef,
typelib_TypeClass eTypeClass, const sal_Char * pTypeName,
typelib_TypeDescriptionReference * pBaseType,
sal_Int32 nMembers, typelib_TypeDescriptionReference ** ppMembers )
SAL_THROW_EXTERN_C();
/** Inits incomplete static struct type reference.
Thread synchronizes on typelib init mutex.
@param ppRef pointer to type reference pointer
@param pTypeName name of type
@param pBaseType base type
@param nMembers number of members
@param ppMembers member types
@param pParameterizedTypes flags for direct members, specifying whether they
are of parameterized type (true) or explict type (false); must be null
for a plain struct type
@since UDK 3.2.0
*/
void SAL_CALL typelib_static_struct_type_init(
typelib_TypeDescriptionReference ** ppRef, const sal_Char * pTypeName,
typelib_TypeDescriptionReference * pBaseType,
sal_Int32 nMembers, typelib_TypeDescriptionReference ** ppMembers,
sal_Bool const * pParameterizedTypes )
SAL_THROW_EXTERN_C();
/** Inits incomplete static interface type reference. Thread synchronizes on typelib init mutex.
@param ppRef pointer to type reference pointer
@param pTypeName name of interface
@param pBaseType base type
*/
void SAL_CALL typelib_static_interface_type_init(
typelib_TypeDescriptionReference ** ppRef,
const sal_Char * pTypeName,
typelib_TypeDescriptionReference * pBaseType )
SAL_THROW_EXTERN_C();
/** Inits incomplete static multiple-inheritance interface type reference.
Thread synchronizes on typelib init mutex.
@param ppRef pointer to type reference pointer
@param pTypeName name of interface
@param nBaseTypes number of base types
@param ppBaseTypes base types
@since UDK 3.2.0
*/
void SAL_CALL typelib_static_mi_interface_type_init(
typelib_TypeDescriptionReference ** ppRef,
const sal_Char * pTypeName,
sal_Int32 nBaseTypes,
typelib_TypeDescriptionReference ** ppBaseTypes )
SAL_THROW_EXTERN_C();
/** Inits incomplete static enum type reference. Thread synchronizes on typelib init mutex.
@param ppRef pointer to type reference pointer
@param pTypeName name of enum
@param nDefaultEnumValue default enum value
*/
void SAL_CALL typelib_static_enum_type_init(
typelib_TypeDescriptionReference ** ppRef,
const sal_Char * pTypeName,
sal_Int32 nDefaultValue )
SAL_THROW_EXTERN_C();
/** Completes a typedescription to be used for, e.g., marshalling values. COMPOUND, UNION,
INTERFACE and ENUM type descriptions may be partly initialized (see typelib_static_...(),
typelib_TypeDescription::bComplete). For interface type descriptions, this will also
init index tables.
@param ppTypeDescr [inout] type description to be completed (may be exchanged!)
@return true, if type description is complete
*/
sal_Bool SAL_CALL typelib_typedescription_complete(
typelib_TypeDescription ** ppTypeDescr )
SAL_THROW_EXTERN_C();
#ifdef __cplusplus
}
#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|