4 * Copyright 2002 Lionel Ulmer
5 * Copyright 2004 Mike McCormack
7 * see http://bonedaddy.net/pabs3/hhm/#chmspec
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
38 #include "wine/debug.h"
43 #include "wine/itss.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(itss
);
47 static HRESULT
ITSS_create(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
50 static HINSTANCE hInst
;
52 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
55 case DLL_PROCESS_ATTACH
:
56 DisableThreadLibraryCalls(hInstDLL
);
63 /******************************************************************************
67 IClassFactory IClassFactory_iface
;
68 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
71 static inline IClassFactoryImpl
*impl_from_IClassFactory(IClassFactory
*iface
)
73 return CONTAINING_RECORD(iface
, IClassFactoryImpl
, IClassFactory_iface
);
77 ITSSCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
)
79 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
81 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
82 IsEqualGUID(riid
, &IID_IClassFactory
))
84 IClassFactory_AddRef(iface
);
85 *ppobj
= &This
->IClassFactory_iface
;
89 WARN("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppobj
);
93 static ULONG WINAPI
ITSSCF_AddRef(LPCLASSFACTORY iface
)
99 static ULONG WINAPI
ITSSCF_Release(LPCLASSFACTORY iface
)
106 static HRESULT WINAPI
ITSSCF_CreateInstance(IClassFactory
*iface
, IUnknown
*outer
,
107 REFIID riid
, void **ppv
)
109 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
113 TRACE("(%p)->(%p %s %p)\n", This
, outer
, debugstr_guid(riid
), ppv
);
115 if(outer
&& !IsEqualGUID(riid
, &IID_IUnknown
)) {
117 return CLASS_E_NOAGGREGATION
;
120 hres
= This
->pfnCreateInstance(outer
, (void**)&unk
);
126 if(!IsEqualGUID(riid
, &IID_IUnknown
)) {
127 hres
= IUnknown_QueryInterface(unk
, riid
, ppv
);
128 IUnknown_Release(unk
);
135 static HRESULT WINAPI
ITSSCF_LockServer(LPCLASSFACTORY iface
, BOOL dolock
)
137 TRACE("(%p)->(%d)\n", iface
, dolock
);
147 static const IClassFactoryVtbl ITSSCF_Vtbl
=
149 ITSSCF_QueryInterface
,
152 ITSSCF_CreateInstance
,
156 static const IClassFactoryImpl ITStorage_factory
= { { &ITSSCF_Vtbl
}, ITSS_create
};
157 static const IClassFactoryImpl MSITStore_factory
= { { &ITSSCF_Vtbl
}, ITS_IParseDisplayName_create
};
158 static const IClassFactoryImpl ITSProtocol_factory
= { { &ITSSCF_Vtbl
}, ITSProtocol_create
};
160 /***********************************************************************
161 * DllGetClassObject (ITSS.@)
163 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
)
165 const IClassFactoryImpl
*factory
;
167 TRACE("%s %s %p\n", debugstr_guid(rclsid
), debugstr_guid(iid
), ppv
);
169 if (IsEqualGUID(&CLSID_ITStorage
, rclsid
))
170 factory
= &ITStorage_factory
;
171 else if (IsEqualGUID(&CLSID_MSITStore
, rclsid
))
172 factory
= &MSITStore_factory
;
173 else if (IsEqualGUID(&CLSID_ITSProtocol
, rclsid
))
174 factory
= &ITSProtocol_factory
;
177 FIXME("%s: no class found.\n", debugstr_guid(rclsid
));
178 return CLASS_E_CLASSNOTAVAILABLE
;
181 return IUnknown_QueryInterface( (IUnknown
*) factory
, iid
, ppv
);
184 /*****************************************************************************/
187 IITStorage IITStorage_iface
;
191 static inline ITStorageImpl
*impl_from_IITStorage(IITStorage
*iface
)
193 return CONTAINING_RECORD(iface
, ITStorageImpl
, IITStorage_iface
);
197 static HRESULT WINAPI
ITStorageImpl_QueryInterface(
202 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
203 if (IsEqualGUID(riid
, &IID_IUnknown
)
204 || IsEqualGUID(riid
, &IID_IITStorage
))
206 IITStorage_AddRef(iface
);
211 WARN("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppvObject
);
212 return E_NOINTERFACE
;
215 static ULONG WINAPI
ITStorageImpl_AddRef(
218 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
220 return InterlockedIncrement(&This
->ref
);
223 static ULONG WINAPI
ITStorageImpl_Release(
226 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
227 ULONG ref
= InterlockedDecrement(&This
->ref
);
230 HeapFree(GetProcessHeap(), 0, This
);
237 static HRESULT WINAPI
ITStorageImpl_StgCreateDocfile(
239 const WCHAR
* pwcsName
,
242 IStorage
** ppstgOpen
)
244 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
246 TRACE("%p %s %u %u %p\n", This
,
247 debugstr_w(pwcsName
), grfMode
, reserved
, ppstgOpen
);
249 return ITSS_StgOpenStorage( pwcsName
, NULL
, grfMode
,
250 0, reserved
, ppstgOpen
);
253 static HRESULT WINAPI
ITStorageImpl_StgCreateDocfileOnILockBytes(
258 IStorage
** ppstgOpen
)
260 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
265 static HRESULT WINAPI
ITStorageImpl_StgIsStorageFile(
267 const WCHAR
* pwcsName
)
269 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
274 static HRESULT WINAPI
ITStorageImpl_StgIsStorageILockBytes(
278 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
283 static HRESULT WINAPI
ITStorageImpl_StgOpenStorage(
285 const WCHAR
* pwcsName
,
286 IStorage
* pstgPriority
,
290 IStorage
** ppstgOpen
)
292 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
294 TRACE("%p %s %p %d %p\n", This
, debugstr_w( pwcsName
),
295 pstgPriority
, grfMode
, snbExclude
);
297 return ITSS_StgOpenStorage( pwcsName
, pstgPriority
, grfMode
,
298 snbExclude
, reserved
, ppstgOpen
);
301 static HRESULT WINAPI
ITStorageImpl_StgOpenStorageOnILockBytes(
304 IStorage
* pStgPriority
,
308 IStorage
** ppstgOpen
)
310 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
315 static HRESULT WINAPI
ITStorageImpl_StgSetTimes(
317 const WCHAR
* lpszName
,
318 const FILETIME
* pctime
,
319 const FILETIME
* patime
,
320 const FILETIME
* pmtime
)
322 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
327 static HRESULT WINAPI
ITStorageImpl_SetControlData(
329 PITS_Control_Data pControlData
)
331 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
336 static HRESULT WINAPI
ITStorageImpl_DefaultControlData(
338 PITS_Control_Data
* ppControlData
)
340 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
345 static HRESULT WINAPI
ITStorageImpl_Compact(
347 const WCHAR
* pwcsName
,
350 ITStorageImpl
*This
= impl_from_IITStorage(iface
);
355 static const IITStorageVtbl ITStorageImpl_Vtbl
=
357 ITStorageImpl_QueryInterface
,
358 ITStorageImpl_AddRef
,
359 ITStorageImpl_Release
,
360 ITStorageImpl_StgCreateDocfile
,
361 ITStorageImpl_StgCreateDocfileOnILockBytes
,
362 ITStorageImpl_StgIsStorageFile
,
363 ITStorageImpl_StgIsStorageILockBytes
,
364 ITStorageImpl_StgOpenStorage
,
365 ITStorageImpl_StgOpenStorageOnILockBytes
,
366 ITStorageImpl_StgSetTimes
,
367 ITStorageImpl_SetControlData
,
368 ITStorageImpl_DefaultControlData
,
369 ITStorageImpl_Compact
,
372 static HRESULT
ITSS_create(IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
377 return CLASS_E_NOAGGREGATION
;
379 its
= HeapAlloc( GetProcessHeap(), 0, sizeof(ITStorageImpl
) );
380 its
->IITStorage_iface
.lpVtbl
= &ITStorageImpl_Vtbl
;
383 TRACE("-> %p\n", its
);
390 /*****************************************************************************/
392 HRESULT WINAPI
DllCanUnloadNow(void)
394 TRACE("dll_count = %u\n", dll_count
);
395 return dll_count
? S_FALSE
: S_OK
;
398 /***********************************************************************
399 * DllRegisterServer (ITSS.@)
401 HRESULT WINAPI
DllRegisterServer(void)
403 return __wine_register_resources( hInst
);
406 /***********************************************************************
407 * DllUnregisterServer (ITSS.@)
409 HRESULT WINAPI
DllUnregisterServer(void)
411 return __wine_unregister_resources( hInst
);