Better computations to have uniformly sized parts scaled in both
[wine] / dlls / ole32 / compobj_private.h
1 /*
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
9  *
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.
14  *
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.
19  *
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
23  */
24
25 #ifndef __WINE_OLE_COMPOBJ_H
26 #define __WINE_OLE_COMPOBJ_H
27
28 /* All private prototype functions used by OLE will be added to this header file */
29
30 #include <stdarg.h>
31
32 #include "wine/list.h"
33
34 #include "windef.h"
35 #include "winbase.h"
36 #include "wtypes.h"
37 #include "dcom.h"
38 #include "winreg.h"
39 #include "winternl.h"
40
41 struct apartment;
42 typedef struct apartment APARTMENT;
43
44 /* Thread-safety Annotation Legend:
45  *
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
51  *         must be used.
52  * MUTEX - The value is read or written to with a mutex held.
53  *         The identifier following "MUTEX" is the specific mutex that
54  *         must be used.
55  */
56
57 typedef enum ifstub_state
58 {
59     STUBSTATE_NORMAL_MARSHALED,
60     STUBSTATE_NORMAL_UNMARSHALED,
61     STUBSTATE_TABLE_WEAK_MARSHALED,
62     STUBSTATE_TABLE_WEAK_UNMARSHALED,
63     STUBSTATE_TABLE_STRONG,
64 } STUB_STATE;
65
66 /* an interface stub */
67 struct ifstub   
68 {
69     struct list       entry;      /* entry in stub_manager->ifstubs list (CS stub_manager->lock) */
70     IRpcStubBuffer   *stubbuffer; /* RO */
71     IID               iid;        /* RO */
72     IPID              ipid;       /* RO */
73     IUnknown         *iface;      /* RO */
74 };
75
76
77 /* stub managers hold refs on the object and each interface stub */
78 struct stub_manager
79 {
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) */
84
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) */
91 };
92
93 /* imported interface proxy */
94 struct ifproxy
95 {
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) */
104 };
105
106 /* imported object / proxy manager */
107 struct proxy_manager
108 {
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   LONG 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 */
120 };
121
122 /* this needs to become a COM object that implements IRemUnknown */
123 struct apartment
124 {
125   struct list entry;       
126
127   LONG  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   LONG 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) */
140
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) */
143 };
144
145 /* this is what is stored in TEB->ReservedForOle */
146 struct oletls
147 {
148     struct apartment *apt;
149     IErrorInfo       *errorinfo;   /* see errorinfo.c */
150     IUnknown         *state;       /* see CoSetState */
151     DWORD            inits;        /* number of times CoInitializeEx called */
152 };
153
154
155 /* Global Interface Table Functions */
156
157 extern void* StdGlobalInterfaceTable_Construct(void);
158 extern void  StdGlobalInterfaceTable_Destroy(void* self);
159 extern HRESULT StdGlobalInterfaceTable_GetFactory(LPVOID *ppv);
160 extern void* StdGlobalInterfaceTableInstance;
161
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);
165
166 DWORD COM_OpenKeyForCLSID(REFCLSID clsid, REGSAM access, HKEY *key);
167 HRESULT MARSHAL_GetStandardMarshalCF(LPVOID *ppv);
168
169 /* Stub Manager */
170
171 ULONG stub_manager_int_addref(struct stub_manager *This);
172 ULONG stub_manager_int_release(struct stub_manager *This);
173 struct stub_manager *new_stub_manager(APARTMENT *apt, IUnknown *object, MSHLFLAGS mshlflags);
174 ULONG stub_manager_ext_addref(struct stub_manager *m, ULONG refs);
175 ULONG stub_manager_ext_release(struct stub_manager *m, ULONG refs);
176 struct ifstub *stub_manager_new_ifstub(struct stub_manager *m, IRpcStubBuffer *sb, IUnknown *iptr, REFIID iid);
177 struct stub_manager *get_stub_manager(APARTMENT *apt, OID oid);
178 struct stub_manager *get_stub_manager_from_object(APARTMENT *apt, void *object);
179 BOOL stub_manager_notify_unmarshal(struct stub_manager *m);
180 BOOL stub_manager_is_table_marshaled(struct stub_manager *m);
181 void stub_manager_release_marshal_data(struct stub_manager *m, ULONG refs);
182 HRESULT ipid_to_stub_manager(const IPID *ipid, APARTMENT **stub_apt, struct stub_manager **stubmgr_ret);
183 IRpcStubBuffer *ipid_to_apt_and_stubbuffer(const IPID *ipid, APARTMENT **stub_apt);
184 HRESULT start_apartment_remote_unknown(void);
185
186 HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnknown *obj, MSHLFLAGS mshlflags);
187
188 /* RPC Backend */
189
190 struct dispatch_params;
191
192 void    RPC_StartRemoting(struct apartment *apt);
193 HRESULT RPC_CreateClientChannel(const OXID *oxid, const IPID *ipid, IRpcChannelBuffer **pipebuf);
194 HRESULT RPC_ExecuteCall(struct dispatch_params *params);
195 HRESULT RPC_RegisterInterface(REFIID riid);
196 void    RPC_UnregisterInterface(REFIID riid);
197 void    RPC_StartLocalServer(REFCLSID clsid, IStream *stream);
198 HRESULT RPC_GetLocalClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv);
199
200 /* This function initialize the Running Object Table */
201 HRESULT WINAPI RunningObjectTableImpl_Initialize(void);
202
203 /* This function uninitialize the Running Object Table */
204 HRESULT WINAPI RunningObjectTableImpl_UnInitialize(void);
205
206 /* This function decomposes a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directory" or "FileName") of the path */
207 int FileMonikerImpl_DecomposePath(LPCOLESTR str, LPOLESTR** stringTable);
208
209
210 /* Apartment Functions */
211
212 APARTMENT *apartment_findfromoxid(OXID oxid, BOOL ref);
213 APARTMENT *apartment_findfromtid(DWORD tid);
214 DWORD apartment_addref(struct apartment *apt);
215 DWORD apartment_release(struct apartment *apt);
216 HRESULT apartment_disconnectproxies(struct apartment *apt);
217 void apartment_disconnectobject(struct apartment *apt, void *object);
218 static inline HRESULT apartment_getoxid(struct apartment *apt, OXID *oxid)
219 {
220     *oxid = apt->oxid;
221     return S_OK;
222 }
223
224
225 /* DCOM messages used by the apartment window (not compatible with native) */
226 #define DM_EXECUTERPC   (WM_USER + 0) /* WPARAM = 0, LPARAM = (struct dispatch_params *) */
227
228 /*
229  * Per-thread values are stored in the TEB on offset 0xF80,
230  * see http://www.microsoft.com/msj/1099/bugslayer/bugslayer1099.htm
231  */
232
233 /* will create if necessary */
234 static inline struct oletls *COM_CurrentInfo(void)
235 {
236     if (!NtCurrentTeb()->ReservedForOle)
237         NtCurrentTeb()->ReservedForOle = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct oletls));
238
239     return NtCurrentTeb()->ReservedForOle;
240 }
241
242 static inline APARTMENT* COM_CurrentApt(void)
243 {  
244     return COM_CurrentInfo()->apt;
245 }
246
247 #define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
248
249 /* helpers for debugging */
250 #ifdef __i386__
251 # define DEBUG_SET_CRITSEC_NAME(cs, name) (cs)->DebugInfo->Spare[1] = (DWORD)(__FILE__ ": " name)
252 # define DEBUG_CLEAR_CRITSEC_NAME(cs) (cs)->DebugInfo->Spare[1] = 0
253 #else
254 # define DEBUG_SET_CRITSEC_NAME(cs, name)
255 # define DEBUG_CLEAR_CRITSEC_NAME(cs)
256 #endif
257
258 extern HINSTANCE OLE32_hInstance; /* FIXME: make static */
259
260 #define CHARS_IN_GUID 39 /* including NULL */
261
262 #endif /* __WINE_OLE_COMPOBJ_H */