wined3d: Remove the GetContainer() methods from the public wined3d interface.
[wine/wine-gecko.git] / dlls / ole32 / moniker.c
blobb0030dee59b9ddbd94fc353f742aec38d7633f93
1 /*
2 * Monikers
4 * Copyright 1998 Marcus Meissner
5 * Copyright 1999 Noomen Hamza
6 * Copyright 2005 Robert Shearman (for CodeWeavers)
7 * Copyright 2007 Robert Shearman
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "config.h"
25 #include "wine/port.h"
27 #include <stdarg.h>
28 #include <string.h>
30 #define COBJMACROS
32 #include "winerror.h"
33 #include "windef.h"
34 #include "winbase.h"
35 #include "winuser.h"
36 #include "wtypes.h"
37 #include "ole2.h"
39 #include "wine/list.h"
40 #include "wine/debug.h"
41 #include "wine/unicode.h"
42 #include "wine/exception.h"
44 #include "compobj_private.h"
45 #include "moniker.h"
46 #include "irot.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(ole);
50 /* see MSDN docs for IROTData::GetComparisonData, which states what this
51 * constant is
53 #define MAX_COMPARISON_DATA 2048
55 static LONG WINAPI rpc_filter(EXCEPTION_POINTERS *eptr)
57 return I_RpcExceptionFilter(eptr->ExceptionRecord->ExceptionCode);
60 /* define the structure of the running object table elements */
61 struct rot_entry
63 struct list entry;
64 InterfaceData* object; /* marshaled running object*/
65 MonikerComparisonData* moniker_data; /* moniker comparison data that identifies this object */
66 DWORD cookie; /* cookie identifying this object */
67 FILETIME last_modified;
68 IrotContextHandle ctxt_handle;
71 /* define the RunningObjectTableImpl structure */
72 typedef struct RunningObjectTableImpl
74 const IRunningObjectTableVtbl *lpVtbl;
75 LONG ref;
77 struct list rot; /* list of ROT entries */
78 CRITICAL_SECTION lock;
79 } RunningObjectTableImpl;
81 static RunningObjectTableImpl* runningObjectTableInstance = NULL;
82 static IrotHandle irot_handle;
84 /* define the EnumMonikerImpl structure */
85 typedef struct EnumMonikerImpl
87 const IEnumMonikerVtbl *lpVtbl;
88 LONG ref;
90 InterfaceList *moniker_list;
91 ULONG pos;
92 } EnumMonikerImpl;
95 /* IEnumMoniker Local functions*/
96 static HRESULT EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
97 ULONG pos, IEnumMoniker **ppenumMoniker);
99 static IrotHandle get_irot_handle(void)
101 if (!irot_handle)
103 RPC_STATUS status;
104 RPC_WSTR binding;
105 IrotHandle new_handle;
106 unsigned short ncacn_np[] = IROT_PROTSEQ;
107 unsigned short endpoint[] = IROT_ENDPOINT;
108 status = RpcStringBindingComposeW(NULL, ncacn_np, NULL, endpoint, NULL, &binding);
109 if (status == RPC_S_OK)
111 status = RpcBindingFromStringBindingW(binding, &new_handle);
112 RpcStringFreeW(&binding);
114 if (status != RPC_S_OK)
115 return NULL;
116 if (InterlockedCompareExchangePointer(&irot_handle, new_handle, NULL))
117 /* another thread beat us to it */
118 RpcBindingFree(&new_handle);
120 return irot_handle;
123 static BOOL start_rpcss(void)
125 PROCESS_INFORMATION pi;
126 STARTUPINFOW si;
127 WCHAR cmd[MAX_PATH];
128 static const WCHAR rpcss[] = {'\\','r','p','c','s','s','.','e','x','e',0};
129 BOOL rslt;
130 void *redir;
132 TRACE("\n");
134 ZeroMemory(&si, sizeof(STARTUPINFOA));
135 si.cb = sizeof(STARTUPINFOA);
136 GetSystemDirectoryW( cmd, MAX_PATH - sizeof(rpcss)/sizeof(WCHAR) );
137 strcatW( cmd, rpcss );
139 Wow64DisableWow64FsRedirection( &redir );
140 rslt = CreateProcessW( cmd, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi );
141 Wow64RevertWow64FsRedirection( redir );
143 if (rslt)
145 CloseHandle(pi.hProcess);
146 CloseHandle(pi.hThread);
147 Sleep(100);
150 return rslt;
153 static HRESULT create_stream_on_mip_ro(const InterfaceData *mip, IStream **stream)
155 HGLOBAL hglobal = GlobalAlloc(0, mip->ulCntData);
156 void *pv = GlobalLock(hglobal);
157 memcpy(pv, mip->abData, mip->ulCntData);
158 GlobalUnlock(hglobal);
159 return CreateStreamOnHGlobal(hglobal, TRUE, stream);
162 static inline void rot_entry_delete(struct rot_entry *rot_entry)
164 if (rot_entry->cookie)
166 InterfaceData *object = NULL;
167 InterfaceData *moniker = NULL;
168 __TRY
170 IrotRevoke(get_irot_handle(), rot_entry->cookie,
171 &rot_entry->ctxt_handle, &object, &moniker);
173 __EXCEPT(rpc_filter)
176 __ENDTRY
177 MIDL_user_free(object);
178 if (moniker)
180 IStream *stream;
181 HRESULT hr;
182 hr = create_stream_on_mip_ro(moniker, &stream);
183 if (hr == S_OK)
185 CoReleaseMarshalData(stream);
186 IUnknown_Release(stream);
189 MIDL_user_free(moniker);
191 if (rot_entry->object)
193 IStream *stream;
194 HRESULT hr;
195 hr = create_stream_on_mip_ro(rot_entry->object, &stream);
196 if (hr == S_OK)
198 CoReleaseMarshalData(stream);
199 IUnknown_Release(stream);
202 HeapFree(GetProcessHeap(), 0, rot_entry->object);
203 HeapFree(GetProcessHeap(), 0, rot_entry->moniker_data);
204 HeapFree(GetProcessHeap(), 0, rot_entry);
207 /* moniker_data must be freed with HeapFree when no longer in use */
208 static HRESULT get_moniker_comparison_data(IMoniker *pMoniker, MonikerComparisonData **moniker_data)
210 HRESULT hr;
211 IROTData *pROTData = NULL;
212 hr = IMoniker_QueryInterface(pMoniker, &IID_IROTData, (void *)&pROTData);
213 if (SUCCEEDED(hr))
215 ULONG size = MAX_COMPARISON_DATA;
216 *moniker_data = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(MonikerComparisonData, abData[size]));
217 if (!*moniker_data)
219 IROTData_Release(pROTData);
220 return E_OUTOFMEMORY;
222 hr = IROTData_GetComparisonData(pROTData, (*moniker_data)->abData, size, &size);
223 IROTData_Release(pROTData);
224 if (hr != S_OK)
226 ERR("Failed to copy comparison data into buffer, hr = 0x%08x\n", hr);
227 HeapFree(GetProcessHeap(), 0, *moniker_data);
228 return hr;
230 (*moniker_data)->ulCntData = size;
232 else
234 IBindCtx *pbc;
235 LPOLESTR pszDisplayName;
236 CLSID clsid;
237 int len;
239 TRACE("generating comparison data from display name\n");
241 hr = CreateBindCtx(0, &pbc);
242 if (FAILED(hr))
243 return hr;
244 hr = IMoniker_GetDisplayName(pMoniker, pbc, NULL, &pszDisplayName);
245 IBindCtx_Release(pbc);
246 if (FAILED(hr))
247 return hr;
248 hr = IMoniker_GetClassID(pMoniker, &clsid);
249 if (FAILED(hr))
251 CoTaskMemFree(pszDisplayName);
252 return hr;
255 len = strlenW(pszDisplayName);
256 *moniker_data = HeapAlloc(GetProcessHeap(), 0,
257 FIELD_OFFSET(MonikerComparisonData, abData[sizeof(CLSID) + (len+1)*sizeof(WCHAR)]));
258 if (!*moniker_data)
260 CoTaskMemFree(pszDisplayName);
261 return E_OUTOFMEMORY;
263 (*moniker_data)->ulCntData = sizeof(CLSID) + (len+1)*sizeof(WCHAR);
265 memcpy(&(*moniker_data)->abData[0], &clsid, sizeof(clsid));
266 memcpy(&(*moniker_data)->abData[sizeof(clsid)], pszDisplayName, (len+1)*sizeof(WCHAR));
267 CoTaskMemFree(pszDisplayName);
269 return S_OK;
272 static HRESULT reduce_moniker(IMoniker *pmk, IBindCtx *pbc, IMoniker **pmkReduced)
274 IBindCtx *pbcNew = NULL;
275 HRESULT hr;
276 if (!pbc)
278 hr = CreateBindCtx(0, &pbcNew);
279 if (FAILED(hr))
280 return hr;
281 pbc = pbcNew;
283 hr = IMoniker_Reduce(pmk, pbc, MKRREDUCE_ALL, NULL, pmkReduced);
284 if (FAILED(hr))
285 ERR("reducing moniker failed with error 0x%08x\n", hr);
286 if (pbcNew) IBindCtx_Release(pbcNew);
287 return hr;
290 /***********************************************************************
291 * RunningObjectTable_QueryInterface
293 static HRESULT WINAPI
294 RunningObjectTableImpl_QueryInterface(IRunningObjectTable* iface,
295 REFIID riid,void** ppvObject)
297 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
299 TRACE("(%p,%p,%p)\n",This,riid,ppvObject);
301 /* validate arguments */
303 if (ppvObject==0)
304 return E_INVALIDARG;
306 *ppvObject = 0;
308 if (IsEqualIID(&IID_IUnknown, riid) ||
309 IsEqualIID(&IID_IRunningObjectTable, riid))
310 *ppvObject = This;
312 if ((*ppvObject)==0)
313 return E_NOINTERFACE;
315 IRunningObjectTable_AddRef(iface);
317 return S_OK;
320 /***********************************************************************
321 * RunningObjectTable_AddRef
323 static ULONG WINAPI
324 RunningObjectTableImpl_AddRef(IRunningObjectTable* iface)
326 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
328 TRACE("(%p)\n",This);
330 return InterlockedIncrement(&This->ref);
333 /***********************************************************************
334 * RunningObjectTable_Destroy
336 static HRESULT
337 RunningObjectTableImpl_Destroy(void)
339 struct list *cursor, *cursor2;
340 IrotHandle old_handle;
342 TRACE("()\n");
344 if (runningObjectTableInstance==NULL)
345 return E_INVALIDARG;
347 /* free the ROT table memory */
348 LIST_FOR_EACH_SAFE(cursor, cursor2, &runningObjectTableInstance->rot)
350 struct rot_entry *rot_entry = LIST_ENTRY(cursor, struct rot_entry, entry);
351 list_remove(&rot_entry->entry);
352 rot_entry_delete(rot_entry);
355 DEBUG_CLEAR_CRITSEC_NAME(&runningObjectTableInstance->lock);
356 DeleteCriticalSection(&runningObjectTableInstance->lock);
358 /* free the ROT structure memory */
359 HeapFree(GetProcessHeap(),0,runningObjectTableInstance);
360 runningObjectTableInstance = NULL;
362 old_handle = irot_handle;
363 irot_handle = NULL;
364 if (old_handle)
365 RpcBindingFree(&old_handle);
367 return S_OK;
370 /***********************************************************************
371 * RunningObjectTable_Release
373 static ULONG WINAPI
374 RunningObjectTableImpl_Release(IRunningObjectTable* iface)
376 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
377 ULONG ref;
379 TRACE("(%p)\n",This);
381 ref = InterlockedDecrement(&This->ref);
383 /* uninitialize ROT structure if there's no more references to it */
384 if (ref == 0)
386 struct list *cursor, *cursor2;
387 LIST_FOR_EACH_SAFE(cursor, cursor2, &This->rot)
389 struct rot_entry *rot_entry = LIST_ENTRY(cursor, struct rot_entry, entry);
390 list_remove(&rot_entry->entry);
391 rot_entry_delete(rot_entry);
393 /* RunningObjectTable data structure will be not destroyed here ! the destruction will be done only
394 * when RunningObjectTableImpl_UnInitialize function is called
398 return ref;
401 /***********************************************************************
402 * RunningObjectTable_Register
404 * PARAMS
405 * grfFlags [in] Registration options
406 * punkObject [in] the object being registered
407 * pmkObjectName [in] the moniker of the object being registered
408 * pdwRegister [out] the value identifying the registration
410 static HRESULT WINAPI
411 RunningObjectTableImpl_Register(IRunningObjectTable* iface, DWORD grfFlags,
412 IUnknown *punkObject, IMoniker *pmkObjectName, DWORD *pdwRegister)
414 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
415 struct rot_entry *rot_entry;
416 HRESULT hr = S_OK;
417 IStream *pStream = NULL;
418 DWORD mshlflags;
419 IBindCtx *pbc;
420 InterfaceData *moniker = NULL;
422 TRACE("(%p,%d,%p,%p,%p)\n",This,grfFlags,punkObject,pmkObjectName,pdwRegister);
424 if (grfFlags & ~(ROTFLAGS_REGISTRATIONKEEPSALIVE|ROTFLAGS_ALLOWANYCLIENT))
426 ERR("Invalid grfFlags: 0x%08x\n", grfFlags & ~(ROTFLAGS_REGISTRATIONKEEPSALIVE|ROTFLAGS_ALLOWANYCLIENT));
427 return E_INVALIDARG;
430 if (punkObject==NULL || pmkObjectName==NULL || pdwRegister==NULL)
431 return E_INVALIDARG;
433 rot_entry = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*rot_entry));
434 if (!rot_entry)
435 return E_OUTOFMEMORY;
437 /* marshal object */
438 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
439 if (hr != S_OK)
441 rot_entry_delete(rot_entry);
442 return hr;
444 mshlflags = (grfFlags & ROTFLAGS_REGISTRATIONKEEPSALIVE) ? MSHLFLAGS_TABLESTRONG : MSHLFLAGS_TABLEWEAK;
445 hr = CoMarshalInterface(pStream, &IID_IUnknown, punkObject, MSHCTX_LOCAL | MSHCTX_NOSHAREDMEM, NULL, mshlflags);
446 /* FIXME: a cleaner way would be to create an IStream class that writes
447 * directly to an MInterfacePointer */
448 if (hr == S_OK)
450 HGLOBAL hglobal;
451 hr = GetHGlobalFromStream(pStream, &hglobal);
452 if (hr == S_OK)
454 SIZE_T size = GlobalSize(hglobal);
455 const void *pv = GlobalLock(hglobal);
456 rot_entry->object = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(MInterfacePointer, abData[size]));
457 rot_entry->object->ulCntData = size;
458 memcpy(rot_entry->object->abData, pv, size);
459 GlobalUnlock(hglobal);
462 IStream_Release(pStream);
463 if (hr != S_OK)
465 rot_entry_delete(rot_entry);
466 return hr;
469 hr = CreateBindCtx(0, &pbc);
470 if (FAILED(hr))
472 rot_entry_delete(rot_entry);
473 return hr;
476 hr = reduce_moniker(pmkObjectName, pbc, &pmkObjectName);
477 if (FAILED(hr))
479 rot_entry_delete(rot_entry);
480 IBindCtx_Release(pbc);
481 return hr;
484 hr = IMoniker_GetTimeOfLastChange(pmkObjectName, pbc, NULL,
485 &rot_entry->last_modified);
486 IBindCtx_Release(pbc);
487 if (FAILED(hr))
489 CoFileTimeNow(&rot_entry->last_modified);
490 hr = S_OK;
493 hr = get_moniker_comparison_data(pmkObjectName,
494 &rot_entry->moniker_data);
495 if (hr != S_OK)
497 rot_entry_delete(rot_entry);
498 IMoniker_Release(pmkObjectName);
499 return hr;
502 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
503 if (hr != S_OK)
505 rot_entry_delete(rot_entry);
506 IMoniker_Release(pmkObjectName);
507 return hr;
509 /* marshal moniker */
510 hr = CoMarshalInterface(pStream, &IID_IMoniker, (IUnknown *)pmkObjectName,
511 MSHCTX_LOCAL | MSHCTX_NOSHAREDMEM, NULL, MSHLFLAGS_TABLESTRONG);
512 /* FIXME: a cleaner way would be to create an IStream class that writes
513 * directly to an MInterfacePointer */
514 if (hr == S_OK)
516 HGLOBAL hglobal;
517 hr = GetHGlobalFromStream(pStream, &hglobal);
518 if (hr == S_OK)
520 SIZE_T size = GlobalSize(hglobal);
521 const void *pv = GlobalLock(hglobal);
522 moniker = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(InterfaceData, abData[size]));
523 moniker->ulCntData = size;
524 memcpy(moniker->abData, pv, size);
525 GlobalUnlock(hglobal);
528 IStream_Release(pStream);
529 IMoniker_Release(pmkObjectName);
530 if (hr != S_OK)
532 HeapFree(GetProcessHeap(), 0, moniker);
533 rot_entry_delete(rot_entry);
534 return hr;
538 while (TRUE)
540 __TRY
542 hr = IrotRegister(get_irot_handle(), rot_entry->moniker_data,
543 rot_entry->object, moniker,
544 &rot_entry->last_modified, grfFlags,
545 &rot_entry->cookie, &rot_entry->ctxt_handle);
547 __EXCEPT(rpc_filter)
549 hr = HRESULT_FROM_WIN32(GetExceptionCode());
551 __ENDTRY
552 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
554 if (start_rpcss())
555 continue;
557 break;
559 HeapFree(GetProcessHeap(), 0, moniker);
560 if (FAILED(hr))
562 rot_entry_delete(rot_entry);
563 return hr;
566 /* gives a registration identifier to the registered object*/
567 *pdwRegister = rot_entry->cookie;
569 EnterCriticalSection(&This->lock);
570 list_add_tail(&This->rot, &rot_entry->entry);
571 LeaveCriticalSection(&This->lock);
573 return hr;
576 /***********************************************************************
577 * RunningObjectTable_Revoke
579 * PARAMS
580 * dwRegister [in] Value identifying registration to be revoked
582 static HRESULT WINAPI
583 RunningObjectTableImpl_Revoke( IRunningObjectTable* iface, DWORD dwRegister)
585 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
586 struct rot_entry *rot_entry;
588 TRACE("(%p,%d)\n",This,dwRegister);
590 EnterCriticalSection(&This->lock);
591 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, struct rot_entry, entry)
593 if (rot_entry->cookie == dwRegister)
595 list_remove(&rot_entry->entry);
596 LeaveCriticalSection(&This->lock);
598 rot_entry_delete(rot_entry);
599 return S_OK;
602 LeaveCriticalSection(&This->lock);
604 return E_INVALIDARG;
607 /***********************************************************************
608 * RunningObjectTable_IsRunning
610 * PARAMS
611 * pmkObjectName [in] moniker of the object whose status is desired
613 static HRESULT WINAPI
614 RunningObjectTableImpl_IsRunning( IRunningObjectTable* iface, IMoniker *pmkObjectName)
616 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
617 MonikerComparisonData *moniker_data;
618 HRESULT hr;
619 const struct rot_entry *rot_entry;
621 TRACE("(%p,%p)\n",This,pmkObjectName);
623 hr = reduce_moniker(pmkObjectName, NULL, &pmkObjectName);
624 if (FAILED(hr))
625 return hr;
626 hr = get_moniker_comparison_data(pmkObjectName, &moniker_data);
627 IMoniker_Release(pmkObjectName);
628 if (hr != S_OK)
629 return hr;
631 hr = S_FALSE;
632 EnterCriticalSection(&This->lock);
633 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, const struct rot_entry, entry)
635 if ((rot_entry->moniker_data->ulCntData == moniker_data->ulCntData) &&
636 !memcmp(moniker_data->abData, rot_entry->moniker_data->abData, moniker_data->ulCntData))
638 hr = S_OK;
639 break;
642 LeaveCriticalSection(&This->lock);
644 if (hr == S_FALSE)
646 while (TRUE)
648 __TRY
650 hr = IrotIsRunning(get_irot_handle(), moniker_data);
652 __EXCEPT(rpc_filter)
654 hr = HRESULT_FROM_WIN32(GetExceptionCode());
656 __ENDTRY
657 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
659 if (start_rpcss())
660 continue;
662 break;
666 HeapFree(GetProcessHeap(), 0, moniker_data);
668 return hr;
671 /***********************************************************************
672 * RunningObjectTable_GetObject
674 * PARAMS
675 * pmkObjectName [in] Pointer to the moniker on the object
676 * ppunkObject [out] variable that receives the IUnknown interface pointer
678 static HRESULT WINAPI
679 RunningObjectTableImpl_GetObject( IRunningObjectTable* iface,
680 IMoniker *pmkObjectName, IUnknown **ppunkObject)
682 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
683 MonikerComparisonData *moniker_data;
684 InterfaceData *object = NULL;
685 IrotCookie cookie;
686 HRESULT hr;
687 struct rot_entry *rot_entry;
689 TRACE("(%p,%p,%p)\n",This,pmkObjectName,ppunkObject);
691 if (ppunkObject == NULL)
692 return E_POINTER;
694 *ppunkObject = NULL;
696 hr = reduce_moniker(pmkObjectName, NULL, &pmkObjectName);
697 if (FAILED(hr))
698 return hr;
699 hr = get_moniker_comparison_data(pmkObjectName, &moniker_data);
700 IMoniker_Release(pmkObjectName);
701 if (hr != S_OK)
702 return hr;
704 EnterCriticalSection(&This->lock);
705 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, struct rot_entry, entry)
707 if ((rot_entry->moniker_data->ulCntData == moniker_data->ulCntData) &&
708 !memcmp(moniker_data->abData, rot_entry->moniker_data->abData, moniker_data->ulCntData))
710 IStream *pStream;
711 hr = create_stream_on_mip_ro(rot_entry->object, &pStream);
712 if (hr == S_OK)
714 hr = CoUnmarshalInterface(pStream, &IID_IUnknown, (void **)ppunkObject);
715 IStream_Release(pStream);
718 LeaveCriticalSection(&This->lock);
719 HeapFree(GetProcessHeap(), 0, moniker_data);
721 return hr;
724 LeaveCriticalSection(&This->lock);
726 TRACE("moniker unavailable locally, calling SCM\n");
728 while (TRUE)
730 __TRY
732 hr = IrotGetObject(get_irot_handle(), moniker_data, &object, &cookie);
734 __EXCEPT(rpc_filter)
736 hr = HRESULT_FROM_WIN32(GetExceptionCode());
738 __ENDTRY
739 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
741 if (start_rpcss())
742 continue;
744 break;
747 if (SUCCEEDED(hr))
749 IStream *pStream;
750 hr = create_stream_on_mip_ro(object, &pStream);
751 if (hr == S_OK)
753 hr = CoUnmarshalInterface(pStream, &IID_IUnknown, (void **)ppunkObject);
754 IStream_Release(pStream);
757 else
758 WARN("Moniker unavailable, IrotGetObject returned 0x%08x\n", hr);
760 HeapFree(GetProcessHeap(), 0, moniker_data);
762 return hr;
765 /***********************************************************************
766 * RunningObjectTable_NoteChangeTime
768 * PARAMS
769 * dwRegister [in] Value identifying registration being updated
770 * pfiletime [in] Pointer to structure containing object's last change time
772 static HRESULT WINAPI
773 RunningObjectTableImpl_NoteChangeTime(IRunningObjectTable* iface,
774 DWORD dwRegister, FILETIME *pfiletime)
776 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
777 struct rot_entry *rot_entry;
778 HRESULT hr = E_INVALIDARG;
780 TRACE("(%p,%d,%p)\n",This,dwRegister,pfiletime);
782 EnterCriticalSection(&This->lock);
783 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, struct rot_entry, entry)
785 if (rot_entry->cookie == dwRegister)
787 rot_entry->last_modified = *pfiletime;
788 LeaveCriticalSection(&This->lock);
790 while (TRUE)
792 __TRY
794 hr = IrotNoteChangeTime(get_irot_handle(), dwRegister, pfiletime);
796 __EXCEPT(rpc_filter)
798 hr = HRESULT_FROM_WIN32(GetExceptionCode());
800 __ENDTRY
801 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
803 if (start_rpcss())
804 continue;
806 break;
809 goto done;
812 LeaveCriticalSection(&This->lock);
814 done:
815 TRACE("-- 0x08%x\n", hr);
816 return hr;
819 /***********************************************************************
820 * RunningObjectTable_GetTimeOfLastChange
822 * PARAMS
823 * pmkObjectName [in] moniker of the object whose status is desired
824 * pfiletime [out] structure that receives object's last change time
826 static HRESULT WINAPI
827 RunningObjectTableImpl_GetTimeOfLastChange(IRunningObjectTable* iface,
828 IMoniker *pmkObjectName, FILETIME *pfiletime)
830 HRESULT hr = MK_E_UNAVAILABLE;
831 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
832 MonikerComparisonData *moniker_data;
833 const struct rot_entry *rot_entry;
835 TRACE("(%p,%p,%p)\n",This,pmkObjectName,pfiletime);
837 if (pmkObjectName==NULL || pfiletime==NULL)
838 return E_INVALIDARG;
840 hr = reduce_moniker(pmkObjectName, NULL, &pmkObjectName);
841 if (FAILED(hr))
842 return hr;
843 hr = get_moniker_comparison_data(pmkObjectName, &moniker_data);
844 IMoniker_Release(pmkObjectName);
845 if (hr != S_OK)
846 return hr;
848 hr = MK_E_UNAVAILABLE;
850 EnterCriticalSection(&This->lock);
851 LIST_FOR_EACH_ENTRY(rot_entry, &This->rot, const struct rot_entry, entry)
853 if ((rot_entry->moniker_data->ulCntData == moniker_data->ulCntData) &&
854 !memcmp(moniker_data->abData, rot_entry->moniker_data->abData, moniker_data->ulCntData))
856 *pfiletime = rot_entry->last_modified;
857 hr = S_OK;
858 break;
861 LeaveCriticalSection(&This->lock);
863 if (hr != S_OK)
865 while (TRUE)
867 __TRY
869 hr = IrotGetTimeOfLastChange(get_irot_handle(), moniker_data, pfiletime);
871 __EXCEPT(rpc_filter)
873 hr = HRESULT_FROM_WIN32(GetExceptionCode());
875 __ENDTRY
876 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
878 if (start_rpcss())
879 continue;
881 break;
885 HeapFree(GetProcessHeap(), 0, moniker_data);
887 TRACE("-- 0x%08x\n", hr);
888 return hr;
891 /***********************************************************************
892 * RunningObjectTable_EnumRunning
894 * PARAMS
895 * ppenumMoniker [out] receives the IEnumMoniker interface pointer
897 static HRESULT WINAPI
898 RunningObjectTableImpl_EnumRunning(IRunningObjectTable* iface,
899 IEnumMoniker **ppenumMoniker)
901 RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
902 InterfaceList *interface_list = NULL;
903 HRESULT hr;
905 TRACE("(%p, %p)\n", This, ppenumMoniker);
907 *ppenumMoniker = NULL;
909 while (TRUE)
911 __TRY
913 hr = IrotEnumRunning(get_irot_handle(), &interface_list);
915 __EXCEPT(rpc_filter)
917 hr = HRESULT_FROM_WIN32(GetExceptionCode());
919 __ENDTRY
920 if (hr == HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE))
922 if (start_rpcss())
923 continue;
925 break;
928 if (SUCCEEDED(hr))
929 hr = EnumMonikerImpl_CreateEnumROTMoniker(interface_list,
930 0, ppenumMoniker);
932 return hr;
935 /* Virtual function table for the IRunningObjectTable class. */
936 static const IRunningObjectTableVtbl VT_RunningObjectTableImpl =
938 RunningObjectTableImpl_QueryInterface,
939 RunningObjectTableImpl_AddRef,
940 RunningObjectTableImpl_Release,
941 RunningObjectTableImpl_Register,
942 RunningObjectTableImpl_Revoke,
943 RunningObjectTableImpl_IsRunning,
944 RunningObjectTableImpl_GetObject,
945 RunningObjectTableImpl_NoteChangeTime,
946 RunningObjectTableImpl_GetTimeOfLastChange,
947 RunningObjectTableImpl_EnumRunning
950 /***********************************************************************
951 * RunningObjectTable_Initialize
953 HRESULT WINAPI RunningObjectTableImpl_Initialize(void)
955 TRACE("\n");
957 /* create the unique instance of the RunningObjectTableImpl structure */
958 runningObjectTableInstance = HeapAlloc(GetProcessHeap(), 0, sizeof(RunningObjectTableImpl));
960 if (!runningObjectTableInstance)
961 return E_OUTOFMEMORY;
963 /* initialize the virtual table function */
964 runningObjectTableInstance->lpVtbl = &VT_RunningObjectTableImpl;
966 /* the initial reference is set to "1" so that it isn't destroyed after its
967 * first use until the process is destroyed, as the running object table is
968 * a process-wide cache of a global table */
969 runningObjectTableInstance->ref = 1;
971 list_init(&runningObjectTableInstance->rot);
972 InitializeCriticalSection(&runningObjectTableInstance->lock);
973 DEBUG_SET_CRITSEC_NAME(&runningObjectTableInstance->lock, "RunningObjectTableImpl.lock");
975 return S_OK;
978 /***********************************************************************
979 * RunningObjectTable_UnInitialize
981 HRESULT WINAPI RunningObjectTableImpl_UnInitialize(void)
983 TRACE("\n");
985 if (runningObjectTableInstance==NULL)
986 return E_POINTER;
988 RunningObjectTableImpl_Release((IRunningObjectTable*)runningObjectTableInstance);
990 RunningObjectTableImpl_Destroy();
992 return S_OK;
995 /***********************************************************************
996 * GetRunningObjectTable (OLE32.@)
998 * Retrieves the global running object table.
1000 * PARAMS
1001 * reserved [I] Reserved. Set to 0.
1002 * pprot [O] Address that receives the pointer to the running object table.
1004 * RETURNS
1005 * Success: S_OK.
1006 * Failure: Any HRESULT code.
1008 HRESULT WINAPI
1009 GetRunningObjectTable(DWORD reserved, LPRUNNINGOBJECTTABLE *pprot)
1011 IID riid=IID_IRunningObjectTable;
1012 HRESULT res;
1014 TRACE("()\n");
1016 if (reserved!=0)
1017 return E_UNEXPECTED;
1019 if(runningObjectTableInstance==NULL)
1020 return CO_E_NOTINITIALIZED;
1022 res = IRunningObjectTable_QueryInterface((IRunningObjectTable*)runningObjectTableInstance,&riid,(void**)pprot);
1024 return res;
1027 static HRESULT get_moniker_for_progid_display_name(LPBC pbc,
1028 LPCOLESTR szDisplayName,
1029 LPDWORD pchEaten,
1030 LPMONIKER *ppmk)
1032 CLSID clsid;
1033 HRESULT hr;
1034 LPWSTR progid;
1035 LPCWSTR start = szDisplayName;
1036 LPCWSTR end;
1037 int len;
1038 IMoniker *class_moniker;
1040 if (*start == '@')
1041 start++;
1043 /* find end delimiter */
1044 for (end = start; *end; end++)
1045 if (*end == ':')
1046 break;
1048 len = end - start;
1050 /* must start with '@' or have a ':' somewhere and mustn't be one character
1051 * long (since that looks like an absolute path) */
1052 if (((start == szDisplayName) && (*end == '\0')) || (len <= 1))
1053 return MK_E_SYNTAX;
1055 progid = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
1056 if (progid)
1058 memcpy(progid, start, len * sizeof(WCHAR));
1059 progid[len] = '\0';
1061 hr = CLSIDFromProgID(progid, &clsid);
1062 HeapFree(GetProcessHeap(), 0, progid);
1063 if (FAILED(hr))
1064 return MK_E_SYNTAX;
1066 hr = CreateClassMoniker(&clsid, &class_moniker);
1067 if (SUCCEEDED(hr))
1069 IParseDisplayName *pdn;
1070 hr = IMoniker_BindToObject(class_moniker, pbc, NULL,
1071 &IID_IParseDisplayName, (void **)&pdn);
1072 /* fallback to using IClassFactory to get IParseDisplayName -
1073 * adsldp.dll depends on this */
1074 if (FAILED(hr))
1076 IClassFactory *pcf;
1077 hr = IMoniker_BindToObject(class_moniker, pbc, NULL,
1078 &IID_IClassFactory, (void **)&pcf);
1079 if (SUCCEEDED(hr))
1081 hr = IClassFactory_CreateInstance(pcf, NULL,
1082 &IID_IParseDisplayName,
1083 (void **)&pdn);
1084 IClassFactory_Release(pcf);
1087 IMoniker_Release(class_moniker);
1088 if (SUCCEEDED(hr))
1090 hr = IParseDisplayName_ParseDisplayName(pdn, pbc,
1091 (LPOLESTR)szDisplayName,
1092 pchEaten, ppmk);
1093 IParseDisplayName_Release(pdn);
1096 return hr;
1099 /******************************************************************************
1100 * MkParseDisplayName [OLE32.@]
1102 HRESULT WINAPI MkParseDisplayName(LPBC pbc, LPCOLESTR szDisplayName,
1103 LPDWORD pchEaten, LPMONIKER *ppmk)
1105 HRESULT hr = MK_E_SYNTAX;
1106 static const WCHAR wszClsidColon[] = {'c','l','s','i','d',':'};
1107 IMoniker *moniker;
1108 DWORD chEaten;
1110 TRACE("(%p, %s, %p, %p)\n", pbc, debugstr_w(szDisplayName), pchEaten, ppmk);
1112 if (!pbc || !IsValidInterface((LPUNKNOWN) pbc))
1113 return E_INVALIDARG;
1115 if (!szDisplayName || !*szDisplayName)
1116 return E_INVALIDARG;
1118 if (!pchEaten || !ppmk)
1119 return E_INVALIDARG;
1121 *pchEaten = 0;
1122 *ppmk = NULL;
1124 if (!strncmpiW(szDisplayName, wszClsidColon, sizeof(wszClsidColon)/sizeof(wszClsidColon[0])))
1126 hr = ClassMoniker_CreateFromDisplayName(pbc, szDisplayName, &chEaten, &moniker);
1127 if (FAILED(hr) && (hr != MK_E_SYNTAX))
1128 return hr;
1130 else
1132 hr = get_moniker_for_progid_display_name(pbc, szDisplayName, &chEaten, &moniker);
1133 if (FAILED(hr) && (hr != MK_E_SYNTAX))
1134 return hr;
1137 if (FAILED(hr))
1139 hr = FileMoniker_CreateFromDisplayName(pbc, szDisplayName, &chEaten, &moniker);
1140 if (FAILED(hr) && (hr != MK_E_SYNTAX))
1141 return hr;
1144 if (SUCCEEDED(hr))
1146 while (TRUE)
1148 IMoniker *next_moniker;
1149 *pchEaten += chEaten;
1150 szDisplayName += chEaten;
1151 if (!*szDisplayName)
1153 *ppmk = moniker;
1154 return S_OK;
1156 chEaten = 0;
1157 hr = IMoniker_ParseDisplayName(moniker, pbc, NULL,
1158 (LPOLESTR)szDisplayName, &chEaten,
1159 &next_moniker);
1160 IMoniker_Release(moniker);
1161 if (FAILED(hr))
1163 *pchEaten = 0;
1164 break;
1166 moniker = next_moniker;
1170 return hr;
1173 /***********************************************************************
1174 * GetClassFile (OLE32.@)
1176 * Retrieves the class ID associated with the given filename.
1178 * PARAMS
1179 * filePathName [I] Filename to retrieve the class ID for.
1180 * pclsid [O] Address that receives the class ID for the file.
1182 * RETURNS
1183 * Success: S_OK.
1184 * Failure: Any HRESULT code.
1186 HRESULT WINAPI GetClassFile(LPCOLESTR filePathName,CLSID *pclsid)
1188 IStorage *pstg=0;
1189 HRESULT res;
1190 int nbElm, length, i;
1191 LONG sizeProgId;
1192 LPOLESTR *pathDec=0,absFile=0,progId=0;
1193 LPWSTR extension;
1194 static const WCHAR bkslashW[] = {'\\',0};
1195 static const WCHAR dotW[] = {'.',0};
1197 TRACE("%s, %p\n", debugstr_w(filePathName), pclsid);
1199 /* if the file contain a storage object the return the CLSID written by IStorage_SetClass method*/
1200 if((StgIsStorageFile(filePathName))==S_OK){
1202 res=StgOpenStorage(filePathName,NULL,STGM_READ | STGM_SHARE_DENY_WRITE,NULL,0,&pstg);
1204 if (SUCCEEDED(res))
1205 res=ReadClassStg(pstg,pclsid);
1207 IStorage_Release(pstg);
1209 return res;
1211 /* If the file is not a storage object then attempt to match various bits in the file against a
1212 pattern in the registry. This case is not frequently used, so I present only the pseudocode for
1213 this case.
1215 for(i=0;i<nFileTypes;i++)
1217 for(i=0;j<nPatternsForType;j++){
1219 PATTERN pat;
1220 HANDLE hFile;
1222 pat=ReadPatternFromRegistry(i,j);
1223 hFile=CreateFileW(filePathName,,,,,,hFile);
1224 SetFilePosition(hFile,pat.offset);
1225 ReadFile(hFile,buf,pat.size,&r,NULL);
1226 if (memcmp(buf&pat.mask,pat.pattern.pat.size)==0){
1228 *pclsid=ReadCLSIDFromRegistry(i);
1229 return S_OK;
1234 /* if the above strategies fail then search for the extension key in the registry */
1236 /* get the last element (absolute file) in the path name */
1237 nbElm=FileMonikerImpl_DecomposePath(filePathName,&pathDec);
1238 absFile=pathDec[nbElm-1];
1240 /* failed if the path represents a directory and not an absolute file name*/
1241 if (!lstrcmpW(absFile, bkslashW))
1242 return MK_E_INVALIDEXTENSION;
1244 /* get the extension of the file */
1245 extension = NULL;
1246 length=lstrlenW(absFile);
1247 for(i = length-1; (i >= 0) && *(extension = &absFile[i]) != '.'; i--)
1248 /* nothing */;
1250 if (!extension || !lstrcmpW(extension, dotW))
1251 return MK_E_INVALIDEXTENSION;
1253 res=RegQueryValueW(HKEY_CLASSES_ROOT, extension, NULL, &sizeProgId);
1255 /* get the progId associated to the extension */
1256 progId = CoTaskMemAlloc(sizeProgId);
1257 res = RegQueryValueW(HKEY_CLASSES_ROOT, extension, progId, &sizeProgId);
1259 if (res==ERROR_SUCCESS)
1260 /* return the clsid associated to the progId */
1261 res= CLSIDFromProgID(progId,pclsid);
1263 for(i=0; pathDec[i]!=NULL;i++)
1264 CoTaskMemFree(pathDec[i]);
1265 CoTaskMemFree(pathDec);
1267 CoTaskMemFree(progId);
1269 if (res==ERROR_SUCCESS)
1270 return res;
1272 return MK_E_INVALIDEXTENSION;
1275 /***********************************************************************
1276 * EnumMoniker_QueryInterface
1278 static HRESULT WINAPI EnumMonikerImpl_QueryInterface(IEnumMoniker* iface,REFIID riid,void** ppvObject)
1280 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1282 TRACE("(%p,%p,%p)\n",This,riid,ppvObject);
1284 /* validate arguments */
1285 if (ppvObject == NULL)
1286 return E_INVALIDARG;
1288 *ppvObject = NULL;
1290 if (IsEqualIID(&IID_IUnknown, riid))
1291 *ppvObject = This;
1292 else
1293 if (IsEqualIID(&IID_IEnumMoniker, riid))
1294 *ppvObject = This;
1296 if ((*ppvObject)==NULL)
1297 return E_NOINTERFACE;
1299 IEnumMoniker_AddRef(iface);
1301 return S_OK;
1304 /***********************************************************************
1305 * EnumMoniker_AddRef
1307 static ULONG WINAPI EnumMonikerImpl_AddRef(IEnumMoniker* iface)
1309 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1311 TRACE("(%p)\n",This);
1313 return InterlockedIncrement(&This->ref);
1316 /***********************************************************************
1317 * EnumMoniker_release
1319 static ULONG WINAPI EnumMonikerImpl_Release(IEnumMoniker* iface)
1321 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1322 ULONG ref;
1324 TRACE("(%p)\n",This);
1326 ref = InterlockedDecrement(&This->ref);
1328 /* uninitialize rot structure if there's no more reference to it*/
1329 if (ref == 0)
1331 ULONG i;
1333 TRACE("(%p) Deleting\n",This);
1335 for (i = 0; i < This->moniker_list->size; i++)
1336 HeapFree(GetProcessHeap(), 0, This->moniker_list->interfaces[i]);
1337 HeapFree(GetProcessHeap(), 0, This->moniker_list);
1338 HeapFree(GetProcessHeap(), 0, This);
1341 return ref;
1343 /***********************************************************************
1344 * EnumMoniker_Next
1346 static HRESULT WINAPI EnumMonikerImpl_Next(IEnumMoniker* iface, ULONG celt, IMoniker** rgelt, ULONG * pceltFetched)
1348 ULONG i;
1349 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1350 HRESULT hr = S_OK;
1352 TRACE("(%p) TabCurrentPos %d Tablastindx %d\n", This, This->pos, This->moniker_list->size);
1354 /* retrieve the requested number of moniker from the current position */
1355 for(i = 0; (This->pos < This->moniker_list->size) && (i < celt); i++)
1357 IStream *stream;
1358 hr = create_stream_on_mip_ro(This->moniker_list->interfaces[This->pos++], &stream);
1359 if (hr != S_OK) break;
1360 hr = CoUnmarshalInterface(stream, &IID_IMoniker, (void **)&rgelt[i]);
1361 IStream_Release(stream);
1362 if (hr != S_OK) break;
1365 if (pceltFetched != NULL)
1366 *pceltFetched= i;
1368 if (hr != S_OK)
1369 return hr;
1371 if (i == celt)
1372 return S_OK;
1373 else
1374 return S_FALSE;
1378 /***********************************************************************
1379 * EnumMoniker_Skip
1381 static HRESULT WINAPI EnumMonikerImpl_Skip(IEnumMoniker* iface, ULONG celt)
1383 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1385 TRACE("(%p)\n",This);
1387 if (This->pos + celt >= This->moniker_list->size)
1388 return S_FALSE;
1390 This->pos += celt;
1392 return S_OK;
1395 /***********************************************************************
1396 * EnumMoniker_Reset
1398 static HRESULT WINAPI EnumMonikerImpl_Reset(IEnumMoniker* iface)
1400 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1402 This->pos = 0; /* set back to start of list */
1404 TRACE("(%p)\n",This);
1406 return S_OK;
1409 /***********************************************************************
1410 * EnumMoniker_Clone
1412 static HRESULT WINAPI EnumMonikerImpl_Clone(IEnumMoniker* iface, IEnumMoniker ** ppenum)
1414 EnumMonikerImpl *This = (EnumMonikerImpl *)iface;
1415 InterfaceList *moniker_list;
1416 ULONG i;
1418 TRACE("(%p)\n",This);
1420 *ppenum = NULL;
1422 moniker_list = HeapAlloc(GetProcessHeap(), 0, FIELD_OFFSET(InterfaceList, interfaces[This->moniker_list->size]));
1423 if (!moniker_list)
1424 return E_OUTOFMEMORY;
1426 moniker_list->size = This->moniker_list->size;
1427 for (i = 0; i < This->moniker_list->size; i++)
1429 SIZE_T size = FIELD_OFFSET(InterfaceData, abData[This->moniker_list->interfaces[i]->ulCntData]);
1430 moniker_list->interfaces[i] = HeapAlloc(GetProcessHeap(), 0, size);
1431 if (!moniker_list->interfaces[i])
1433 ULONG end = i;
1434 for (i = 0; i < end; i++)
1435 HeapFree(GetProcessHeap(), 0, moniker_list->interfaces[i]);
1436 HeapFree(GetProcessHeap(), 0, moniker_list);
1437 return E_OUTOFMEMORY;
1439 memcpy(moniker_list->interfaces[i], This->moniker_list->interfaces[i], size);
1442 /* copy the enum structure */
1443 return EnumMonikerImpl_CreateEnumROTMoniker(moniker_list, This->pos, ppenum);
1446 /* Virtual function table for the IEnumMoniker class. */
1447 static const IEnumMonikerVtbl VT_EnumMonikerImpl =
1449 EnumMonikerImpl_QueryInterface,
1450 EnumMonikerImpl_AddRef,
1451 EnumMonikerImpl_Release,
1452 EnumMonikerImpl_Next,
1453 EnumMonikerImpl_Skip,
1454 EnumMonikerImpl_Reset,
1455 EnumMonikerImpl_Clone
1458 /***********************************************************************
1459 * EnumMonikerImpl_CreateEnumROTMoniker
1460 * Used by EnumRunning to create the structure and EnumClone
1461 * to copy the structure
1463 static HRESULT EnumMonikerImpl_CreateEnumROTMoniker(InterfaceList *moniker_list,
1464 ULONG current_pos,
1465 IEnumMoniker **ppenumMoniker)
1467 EnumMonikerImpl* This = NULL;
1469 if (!ppenumMoniker)
1470 return E_INVALIDARG;
1472 This = HeapAlloc(GetProcessHeap(), 0, sizeof(EnumMonikerImpl));
1473 if (!This) return E_OUTOFMEMORY;
1475 TRACE("(%p)\n", This);
1477 /* initialize the virtual table function */
1478 This->lpVtbl = &VT_EnumMonikerImpl;
1480 /* the initial reference is set to "1" */
1481 This->ref = 1; /* set the ref count to one */
1482 This->pos = current_pos; /* Set the list start posn */
1483 This->moniker_list = moniker_list;
1485 *ppenumMoniker = (IEnumMoniker*)This;
1487 return S_OK;
1491 /* Shared implementation of moniker marshaler based on saving and loading of
1492 * monikers */
1494 typedef struct MonikerMarshal
1496 const IUnknownVtbl *lpVtbl;
1497 const IMarshalVtbl *lpVtblMarshal;
1499 LONG ref;
1500 IMoniker *moniker;
1501 } MonikerMarshal;
1503 static inline MonikerMarshal *impl_from_IMarshal( IMarshal *iface )
1505 return (MonikerMarshal *)((char*)iface - FIELD_OFFSET(MonikerMarshal, lpVtblMarshal));
1508 static HRESULT WINAPI MonikerMarshalInner_QueryInterface(IUnknown *iface, REFIID riid, LPVOID *ppv)
1510 MonikerMarshal *This = (MonikerMarshal *)iface;
1511 TRACE("(%s, %p)\n", debugstr_guid(riid), ppv);
1512 *ppv = NULL;
1513 if (IsEqualIID(&IID_IUnknown, riid) || IsEqualIID(&IID_IMarshal, riid))
1515 *ppv = &This->lpVtblMarshal;
1516 IUnknown_AddRef((IUnknown *)&This->lpVtblMarshal);
1517 return S_OK;
1519 FIXME("No interface for %s\n", debugstr_guid(riid));
1520 return E_NOINTERFACE;
1523 static ULONG WINAPI MonikerMarshalInner_AddRef(IUnknown *iface)
1525 MonikerMarshal *This = (MonikerMarshal *)iface;
1526 return InterlockedIncrement(&This->ref);
1529 static ULONG WINAPI MonikerMarshalInner_Release(IUnknown *iface)
1531 MonikerMarshal *This = (MonikerMarshal *)iface;
1532 ULONG ref = InterlockedDecrement(&This->ref);
1534 if (!ref) HeapFree(GetProcessHeap(), 0, This);
1535 return ref;
1538 static const IUnknownVtbl VT_MonikerMarshalInner =
1540 MonikerMarshalInner_QueryInterface,
1541 MonikerMarshalInner_AddRef,
1542 MonikerMarshalInner_Release
1545 static HRESULT WINAPI MonikerMarshal_QueryInterface(IMarshal *iface, REFIID riid, LPVOID *ppv)
1547 MonikerMarshal *This = impl_from_IMarshal(iface);
1548 return IMoniker_QueryInterface(This->moniker, riid, ppv);
1551 static ULONG WINAPI MonikerMarshal_AddRef(IMarshal *iface)
1553 MonikerMarshal *This = impl_from_IMarshal(iface);
1554 return IMoniker_AddRef(This->moniker);
1557 static ULONG WINAPI MonikerMarshal_Release(IMarshal *iface)
1559 MonikerMarshal *This = impl_from_IMarshal(iface);
1560 return IMoniker_Release(This->moniker);
1563 static HRESULT WINAPI MonikerMarshal_GetUnmarshalClass(
1564 LPMARSHAL iface, REFIID riid, void* pv, DWORD dwDestContext,
1565 void* pvDestContext, DWORD mshlflags, CLSID* pCid)
1567 MonikerMarshal *This = impl_from_IMarshal(iface);
1569 TRACE("(%s, %p, %x, %p, %x, %p)\n", debugstr_guid(riid), pv,
1570 dwDestContext, pvDestContext, mshlflags, pCid);
1572 return IMoniker_GetClassID(This->moniker, pCid);
1575 static HRESULT WINAPI MonikerMarshal_GetMarshalSizeMax(
1576 LPMARSHAL iface, REFIID riid, void* pv, DWORD dwDestContext,
1577 void* pvDestContext, DWORD mshlflags, DWORD* pSize)
1579 MonikerMarshal *This = impl_from_IMarshal(iface);
1580 HRESULT hr;
1581 ULARGE_INTEGER size;
1583 TRACE("(%s, %p, %x, %p, %x, %p)\n", debugstr_guid(riid), pv,
1584 dwDestContext, pvDestContext, mshlflags, pSize);
1586 hr = IMoniker_GetSizeMax(This->moniker, &size);
1587 if (hr == S_OK)
1588 *pSize = (DWORD)size.QuadPart;
1589 return hr;
1592 static HRESULT WINAPI MonikerMarshal_MarshalInterface(LPMARSHAL iface, IStream *pStm,
1593 REFIID riid, void* pv, DWORD dwDestContext,
1594 void* pvDestContext, DWORD mshlflags)
1596 MonikerMarshal *This = impl_from_IMarshal(iface);
1598 TRACE("(%p, %s, %p, %x, %p, %x)\n", pStm, debugstr_guid(riid), pv,
1599 dwDestContext, pvDestContext, mshlflags);
1601 return IMoniker_Save(This->moniker, pStm, FALSE);
1604 static HRESULT WINAPI MonikerMarshal_UnmarshalInterface(LPMARSHAL iface, IStream *pStm, REFIID riid, void **ppv)
1606 MonikerMarshal *This = impl_from_IMarshal(iface);
1607 HRESULT hr;
1609 TRACE("(%p, %s, %p)\n", pStm, debugstr_guid(riid), ppv);
1611 hr = IMoniker_Load(This->moniker, pStm);
1612 if (hr == S_OK)
1613 hr = IMoniker_QueryInterface(This->moniker, riid, ppv);
1614 return hr;
1617 static HRESULT WINAPI MonikerMarshal_ReleaseMarshalData(LPMARSHAL iface, IStream *pStm)
1619 TRACE("()\n");
1620 /* can't release a state-based marshal as nothing on server side to
1621 * release */
1622 return S_OK;
1625 static HRESULT WINAPI MonikerMarshal_DisconnectObject(LPMARSHAL iface, DWORD dwReserved)
1627 TRACE("()\n");
1628 /* can't disconnect a state-based marshal as nothing on server side to
1629 * disconnect from */
1630 return S_OK;
1633 static const IMarshalVtbl VT_MonikerMarshal =
1635 MonikerMarshal_QueryInterface,
1636 MonikerMarshal_AddRef,
1637 MonikerMarshal_Release,
1638 MonikerMarshal_GetUnmarshalClass,
1639 MonikerMarshal_GetMarshalSizeMax,
1640 MonikerMarshal_MarshalInterface,
1641 MonikerMarshal_UnmarshalInterface,
1642 MonikerMarshal_ReleaseMarshalData,
1643 MonikerMarshal_DisconnectObject
1646 HRESULT MonikerMarshal_Create(IMoniker *inner, IUnknown **outer)
1648 MonikerMarshal *This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
1649 if (!This) return E_OUTOFMEMORY;
1651 This->lpVtbl = &VT_MonikerMarshalInner;
1652 This->lpVtblMarshal = &VT_MonikerMarshal;
1653 This->ref = 1;
1654 This->moniker = inner;
1656 *outer = (IUnknown *)&This->lpVtbl;
1657 return S_OK;
1660 void * __RPC_USER MIDL_user_allocate(SIZE_T size)
1662 return HeapAlloc(GetProcessHeap(), 0, size);
1665 void __RPC_USER MIDL_user_free(void *p)
1667 HeapFree(GetProcessHeap(), 0, p);