2 * Copyright 1995 Martin von Loewis
3 * Copyright 1998 Justin Bradford
4 * Copyright 1999 Francis Beaudet
5 * Copyright 1999 Sylvain St-Germain
6 * Copyright 2002 Marcus Meissner
7 * Copyright 2003 Ove Kåven, TransGaming Technologies
8 * Copyright 2004 Mike Hearn, Rob Shearman, CodeWeavers Inc
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #ifndef __WINE_OLE_COMPOBJ_H
26 #define __WINE_OLE_COMPOBJ_H
28 /* All private prototype functions used by OLE will be added to this header file */
32 #include "wine/list.h"
42 typedef struct apartment APARTMENT
;
44 /* Thread-safety Annotation Legend:
46 * RO - The value is read only. It never changes after creation, so no
47 * locking is required.
48 * LOCK - The value is written to only using Interlocked* functions.
49 * CS - The value is read or written to inside a critical section.
50 * The identifier following "CS" is the specific critical setion that
52 * MUTEX - The value is read or written to with a mutex held.
53 * The identifier following "MUTEX" is the specific mutex that
57 typedef enum ifstub_state
59 STUBSTATE_NORMAL_MARSHALED
,
60 STUBSTATE_NORMAL_UNMARSHALED
,
61 STUBSTATE_TABLE_WEAK_MARSHALED
,
62 STUBSTATE_TABLE_WEAK_UNMARSHALED
,
63 STUBSTATE_TABLE_STRONG
,
66 /* an interface stub */
69 struct list entry
; /* entry in stub_manager->ifstubs list (CS stub_manager->lock) */
70 IRpcStubBuffer
*stubbuffer
; /* RO */
73 IUnknown
*iface
; /* RO */
77 /* stub managers hold refs on the object and each interface stub */
80 struct list entry
; /* entry in apartment stubmgr list (CS apt->cs) */
81 struct list ifstubs
; /* list of active ifstubs for the object (CS lock) */
82 CRITICAL_SECTION lock
;
83 APARTMENT
*apt
; /* owning apt (RO) */
85 ULONG extrefs
; /* number of 'external' references (CS lock) */
86 ULONG refs
; /* internal reference count (CS apt->cs) */
87 OID oid
; /* apartment-scoped unique identifier (RO) */
88 IUnknown
*object
; /* the object we are managing the stub for (RO) */
89 ULONG next_ipid
; /* currently unused (LOCK) */
90 STUB_STATE state
; /* state machine (CS lock) */
93 /* imported interface proxy */
96 struct list entry
; /* entry in proxy_manager list (CS parent->cs) */
97 struct proxy_manager
*parent
; /* owning proxy_manager (RO) */
98 LPVOID iface
; /* interface pointer (RO) */
99 IID iid
; /* interface ID (RO) */
100 IPID ipid
; /* imported interface ID (RO) */
101 LPRPCPROXYBUFFER proxy
; /* interface proxy (RO) */
102 DWORD refs
; /* imported (public) references (MUTEX parent->remoting_mutex) */
103 IRpcChannelBuffer
*chan
; /* channel to object (CS parent->cs) */
106 /* imported object / proxy manager */
109 const IMultiQIVtbl
*lpVtbl
;
110 struct apartment
*parent
; /* owning apartment (RO) */
111 struct list entry
; /* entry in apartment (CS parent->cs) */
112 OXID oxid
; /* object exported ID (RO) */
113 OID oid
; /* object ID (RO) */
114 struct list interfaces
; /* imported interfaces (CS cs) */
115 DWORD refs
; /* proxy reference count (LOCK) */
116 CRITICAL_SECTION cs
; /* thread safety for this object and children */
117 ULONG sorflags
; /* STDOBJREF flags (RO) */
118 IRemUnknown
*remunk
; /* proxy to IRemUnknown used for lifecycle management (CS cs) */
119 HANDLE remoting_mutex
; /* mutex used for synchronizing access to IRemUnknown */
122 /* this needs to become a COM object that implements IRemUnknown */
127 DWORD refs
; /* refcount of the apartment (LOCK) */
128 DWORD model
; /* threading model (RO) */
129 DWORD tid
; /* thread id (RO) */
130 HANDLE thread
; /* thread handle (RO) */
131 OXID oxid
; /* object exporter ID (RO) */
132 DWORD ipidc
; /* interface pointer ID counter, starts at 1 (LOCK) */
133 HWND win
; /* message window (RO) */
134 CRITICAL_SECTION cs
; /* thread safety */
135 LPMESSAGEFILTER filter
; /* message filter (CS cs) */
136 struct list proxies
; /* imported objects (CS cs) */
137 struct list stubmgrs
; /* stub managers for exported objects (CS cs) */
138 BOOL remunk_exported
; /* has the IRemUnknown interface for this apartment been created yet? (CS cs) */
139 LONG remoting_started
; /* has the RPC system been started for this apartment? (LOCK) */
141 /* FIXME: OID's should be given out by RPCSS */
142 OID oidc
; /* object ID counter, starts at 1, zero is invalid OID (CS cs) */
145 /* this is what is stored in TEB->ReservedForOle */
148 struct apartment
*apt
;
149 IErrorInfo
*errorinfo
; /* see errorinfo.c */
150 IUnknown
*state
; /* see CoSetState */
151 DWORD inits
; /* number of times CoInitializeEx called */
155 /* Global Interface Table Functions */
157 extern void* StdGlobalInterfaceTable_Construct(void);
158 extern void StdGlobalInterfaceTable_Destroy(void* self
);
159 extern HRESULT
StdGlobalInterfaceTable_GetFactory(LPVOID
*ppv
);
160 extern void* StdGlobalInterfaceTableInstance
;
162 /* FIXME: these shouldn't be needed, except for 16-bit functions */
163 extern HRESULT
WINE_StringFromCLSID(const CLSID
*id
,LPSTR idstr
);
164 HRESULT WINAPI
__CLSIDFromStringA(LPCSTR idstr
, CLSID
*id
);
166 HRESULT
MARSHAL_GetStandardMarshalCF(LPVOID
*ppv
);
170 ULONG
stub_manager_int_addref(struct stub_manager
*This
);
171 ULONG
stub_manager_int_release(struct stub_manager
*This
);
172 struct stub_manager
*new_stub_manager(APARTMENT
*apt
, IUnknown
*object
, MSHLFLAGS mshlflags
);
173 ULONG
stub_manager_ext_addref(struct stub_manager
*m
, ULONG refs
);
174 ULONG
stub_manager_ext_release(struct stub_manager
*m
, ULONG refs
);
175 struct ifstub
*stub_manager_new_ifstub(struct stub_manager
*m
, IRpcStubBuffer
*sb
, IUnknown
*iptr
, REFIID iid
);
176 struct stub_manager
*get_stub_manager(APARTMENT
*apt
, OID oid
);
177 struct stub_manager
*get_stub_manager_from_object(APARTMENT
*apt
, void *object
);
178 BOOL
stub_manager_notify_unmarshal(struct stub_manager
*m
);
179 BOOL
stub_manager_is_table_marshaled(struct stub_manager
*m
);
180 void stub_manager_release_marshal_data(struct stub_manager
*m
, ULONG refs
);
181 HRESULT
ipid_to_stub_manager(const IPID
*ipid
, APARTMENT
**stub_apt
, struct stub_manager
**stubmgr_ret
);
182 IRpcStubBuffer
*ipid_to_apt_and_stubbuffer(const IPID
*ipid
, APARTMENT
**stub_apt
);
183 HRESULT
start_apartment_remote_unknown(void);
185 HRESULT
marshal_object(APARTMENT
*apt
, STDOBJREF
*stdobjref
, REFIID riid
, IUnknown
*obj
, MSHLFLAGS mshlflags
);
189 struct dispatch_params
;
191 void RPC_StartRemoting(struct apartment
*apt
);
192 HRESULT
RPC_CreateClientChannel(const OXID
*oxid
, const IPID
*ipid
, IRpcChannelBuffer
**pipebuf
);
193 HRESULT
RPC_ExecuteCall(struct dispatch_params
*params
);
194 HRESULT
RPC_RegisterInterface(REFIID riid
);
195 void RPC_UnregisterInterface(REFIID riid
);
196 void RPC_StartLocalServer(REFCLSID clsid
, IStream
*stream
);
197 HRESULT
RPC_GetLocalClassObject(REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
);
199 /* This function initialize the Running Object Table */
200 HRESULT WINAPI
RunningObjectTableImpl_Initialize(void);
202 /* This function uninitialize the Running Object Table */
203 HRESULT WINAPI
RunningObjectTableImpl_UnInitialize(void);
205 /* This function decomposes a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directory" or "FileName") of the path */
206 int FileMonikerImpl_DecomposePath(LPCOLESTR str
, LPOLESTR
** stringTable
);
209 /* Apartment Functions */
211 APARTMENT
*apartment_findfromoxid(OXID oxid
, BOOL ref
);
212 APARTMENT
*apartment_findfromtid(DWORD tid
);
213 DWORD
apartment_addref(struct apartment
*apt
);
214 DWORD
apartment_release(struct apartment
*apt
);
215 HRESULT
apartment_disconnectproxies(struct apartment
*apt
);
216 void apartment_disconnectobject(struct apartment
*apt
, void *object
);
217 static inline HRESULT
apartment_getoxid(struct apartment
*apt
, OXID
*oxid
)
224 /* DCOM messages used by the apartment window (not compatible with native) */
225 #define DM_EXECUTERPC (WM_USER + 0) /* WPARAM = 0, LPARAM = (struct dispatch_params *) */
228 * Per-thread values are stored in the TEB on offset 0xF80,
229 * see http://www.microsoft.com/msj/1099/bugslayer/bugslayer1099.htm
232 /* will create if necessary */
233 static inline struct oletls
*COM_CurrentInfo(void)
235 if (!NtCurrentTeb()->ReservedForOle
)
236 NtCurrentTeb()->ReservedForOle
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct oletls
));
238 return NtCurrentTeb()->ReservedForOle
;
241 static inline APARTMENT
* COM_CurrentApt(void)
243 return COM_CurrentInfo()->apt
;
246 #define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
248 /* helpers for debugging */
250 # define DEBUG_SET_CRITSEC_NAME(cs, name) (cs)->DebugInfo->Spare[1] = (DWORD)(__FILE__ ": " name)
251 # define DEBUG_CLEAR_CRITSEC_NAME(cs) (cs)->DebugInfo->Spare[1] = 0
253 # define DEBUG_SET_CRITSEC_NAME(cs, name)
254 # define DEBUG_CLEAR_CRITSEC_NAME(cs)
257 extern HINSTANCE OLE32_hInstance
; /* FIXME: make static */
259 #endif /* __WINE_OLE_COMPOBJ_H */