2009-06-01 20:32:41 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Vincent Povirk for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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 for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
#include "ocidl.h"
|
|
|
|
#include "initguid.h"
|
|
|
|
#include "wincodec.h"
|
|
|
|
|
|
|
|
#include "wincodecs_private.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
|
|
|
|
|
2010-10-22 15:14:40 +02:00
|
|
|
extern HRESULT WINAPI WIC_DllGetClassObject(REFCLSID, REFIID, LPVOID *) DECLSPEC_HIDDEN;
|
|
|
|
|
2009-06-01 20:32:41 +02:00
|
|
|
typedef struct {
|
|
|
|
REFCLSID classid;
|
|
|
|
HRESULT (*constructor)(IUnknown*,REFIID,void**);
|
|
|
|
} classinfo;
|
|
|
|
|
|
|
|
static classinfo wic_classes[] = {
|
|
|
|
{&CLSID_WICImagingFactory, ImagingFactory_CreateInstance},
|
2009-06-10 22:40:27 +02:00
|
|
|
{&CLSID_WICBmpDecoder, BmpDecoder_CreateInstance},
|
2009-08-09 01:49:33 +02:00
|
|
|
{&CLSID_WICPngDecoder, PngDecoder_CreateInstance},
|
2009-09-23 20:54:39 +02:00
|
|
|
{&CLSID_WICPngEncoder, PngEncoder_CreateInstance},
|
2009-08-11 20:47:29 +02:00
|
|
|
{&CLSID_WICBmpEncoder, BmpEncoder_CreateInstance},
|
2009-08-17 16:45:28 +02:00
|
|
|
{&CLSID_WICGifDecoder, GifDecoder_CreateInstance},
|
2009-08-20 16:22:16 +02:00
|
|
|
{&CLSID_WICIcoDecoder, IcoDecoder_CreateInstance},
|
2009-08-24 17:19:37 +02:00
|
|
|
{&CLSID_WICJpegDecoder, JpegDecoder_CreateInstance},
|
2010-03-09 00:07:29 +01:00
|
|
|
{&CLSID_WICTiffDecoder, TiffDecoder_CreateInstance},
|
2010-08-24 09:43:54 +02:00
|
|
|
{&CLSID_WICIcnsEncoder, IcnsEncoder_CreateInstance},
|
2009-08-06 03:49:37 +02:00
|
|
|
{&CLSID_WICDefaultFormatConverter, FormatConverter_CreateInstance},
|
2010-06-07 21:36:35 +02:00
|
|
|
{&CLSID_WineTgaDecoder, TgaDecoder_CreateInstance},
|
2009-06-01 20:32:41 +02:00
|
|
|
{0}};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const IClassFactoryVtbl *lpIClassFactoryVtbl;
|
|
|
|
LONG ref;
|
|
|
|
classinfo *info;
|
|
|
|
} ClassFactoryImpl;
|
|
|
|
|
|
|
|
static HRESULT WINAPI ClassFactoryImpl_QueryInterface(IClassFactory *iface,
|
|
|
|
REFIID iid, void **ppv)
|
|
|
|
{
|
|
|
|
ClassFactoryImpl *This = (ClassFactoryImpl*)iface;
|
|
|
|
TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
|
|
|
|
|
|
|
|
if (!ppv) return E_INVALIDARG;
|
|
|
|
|
|
|
|
if (IsEqualIID(&IID_IUnknown, iid) || IsEqualIID(&IID_IClassFactory, iid))
|
|
|
|
{
|
|
|
|
*ppv = This;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*ppv = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ClassFactoryImpl_AddRef(IClassFactory *iface)
|
|
|
|
{
|
|
|
|
ClassFactoryImpl *This = (ClassFactoryImpl*)iface;
|
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) refcount=%u\n", iface, ref);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ClassFactoryImpl_Release(IClassFactory *iface)
|
|
|
|
{
|
|
|
|
ClassFactoryImpl *This = (ClassFactoryImpl*)iface;
|
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) refcount=%u\n", iface, ref);
|
|
|
|
|
|
|
|
if (ref == 0)
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ClassFactoryImpl_CreateInstance(IClassFactory *iface,
|
|
|
|
IUnknown *pUnkOuter, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
ClassFactoryImpl *This = (ClassFactoryImpl*)iface;
|
|
|
|
|
|
|
|
return This->info->constructor(pUnkOuter, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ClassFactoryImpl_LockServer(IClassFactory *iface, BOOL lock)
|
|
|
|
{
|
|
|
|
TRACE("(%p, %i): stub\n", iface, lock);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IClassFactoryVtbl ClassFactoryImpl_Vtbl = {
|
|
|
|
ClassFactoryImpl_QueryInterface,
|
|
|
|
ClassFactoryImpl_AddRef,
|
|
|
|
ClassFactoryImpl_Release,
|
|
|
|
ClassFactoryImpl_CreateInstance,
|
|
|
|
ClassFactoryImpl_LockServer
|
|
|
|
};
|
|
|
|
|
|
|
|
static HRESULT ClassFactoryImpl_Constructor(classinfo *info, REFIID riid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
ClassFactoryImpl *This;
|
|
|
|
HRESULT ret;
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
This = HeapAlloc(GetProcessHeap(), 0, sizeof(ClassFactoryImpl));
|
|
|
|
if (!This) return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
This->lpIClassFactoryVtbl = &ClassFactoryImpl_Vtbl;
|
|
|
|
This->ref = 1;
|
|
|
|
This->info = info;
|
|
|
|
|
|
|
|
ret = IClassFactory_QueryInterface((IClassFactory*)This, riid, ppv);
|
|
|
|
IClassFactory_Release((IClassFactory*)This);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
HRESULT ret;
|
|
|
|
classinfo *info=NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
|
|
|
|
|
|
|
|
if (!rclsid || !iid || !ppv)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
for (i=0; wic_classes[i].classid; i++)
|
|
|
|
{
|
|
|
|
if (IsEqualCLSID(wic_classes[i].classid, rclsid))
|
|
|
|
{
|
|
|
|
info = &wic_classes[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info)
|
|
|
|
ret = ClassFactoryImpl_Constructor(info, iid, ppv);
|
|
|
|
else
|
2010-10-22 15:14:40 +02:00
|
|
|
ret = WIC_DllGetClassObject(rclsid, iid, ppv);
|
2009-06-01 20:32:41 +02:00
|
|
|
|
|
|
|
TRACE("<-- %08X\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|