mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
404 lines
10 KiB
C
404 lines
10 KiB
C
/*
|
|
* Copyright 2010 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 "wine/port.h"
|
|
|
|
#include <stdarg.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifdef HAVE_TIFFIO_H
|
|
#include <tiffio.h>
|
|
#endif
|
|
|
|
#define COBJMACROS
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "objbase.h"
|
|
#include "wincodec.h"
|
|
|
|
#include "wincodecs_private.h"
|
|
|
|
#include "wine/debug.h"
|
|
#include "wine/library.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
|
|
|
|
#ifdef SONAME_LIBTIFF
|
|
|
|
static CRITICAL_SECTION init_tiff_cs;
|
|
static CRITICAL_SECTION_DEBUG init_tiff_cs_debug =
|
|
{
|
|
0, 0, &init_tiff_cs,
|
|
{ &init_tiff_cs_debug.ProcessLocksList,
|
|
&init_tiff_cs_debug.ProcessLocksList },
|
|
0, 0, { (DWORD_PTR)(__FILE__ ": init_tiff_cs") }
|
|
};
|
|
static CRITICAL_SECTION init_tiff_cs = { &init_tiff_cs_debug, -1, 0, 0, 0, 0 };
|
|
|
|
static void *libtiff_handle;
|
|
#define MAKE_FUNCPTR(f) static typeof(f) * p##f
|
|
MAKE_FUNCPTR(TIFFClientOpen);
|
|
MAKE_FUNCPTR(TIFFClose);
|
|
#undef MAKE_FUNCPTR
|
|
|
|
static void *load_libtiff(void)
|
|
{
|
|
void *result;
|
|
|
|
EnterCriticalSection(&init_tiff_cs);
|
|
|
|
if (!libtiff_handle &&
|
|
(libtiff_handle = wine_dlopen(SONAME_LIBTIFF, RTLD_NOW, NULL, 0)) != NULL)
|
|
{
|
|
|
|
#define LOAD_FUNCPTR(f) \
|
|
if((p##f = wine_dlsym(libtiff_handle, #f, NULL, 0)) == NULL) { \
|
|
ERR("failed to load symbol %s\n", #f); \
|
|
libtiff_handle = NULL; \
|
|
LeaveCriticalSection(&init_tiff_cs); \
|
|
return NULL; \
|
|
}
|
|
LOAD_FUNCPTR(TIFFClientOpen);
|
|
LOAD_FUNCPTR(TIFFClose);
|
|
#undef LOAD_FUNCPTR
|
|
|
|
}
|
|
|
|
result = libtiff_handle;
|
|
|
|
LeaveCriticalSection(&init_tiff_cs);
|
|
return result;
|
|
}
|
|
|
|
static tsize_t tiff_stream_read(thandle_t client_data, tdata_t data, tsize_t size)
|
|
{
|
|
IStream *stream = (IStream*)client_data;
|
|
ULONG bytes_read;
|
|
HRESULT hr;
|
|
|
|
hr = IStream_Read(stream, data, size, &bytes_read);
|
|
if (FAILED(hr)) bytes_read = 0;
|
|
return bytes_read;
|
|
}
|
|
|
|
static tsize_t tiff_stream_write(thandle_t client_data, tdata_t data, tsize_t size)
|
|
{
|
|
IStream *stream = (IStream*)client_data;
|
|
ULONG bytes_written;
|
|
HRESULT hr;
|
|
|
|
hr = IStream_Write(stream, data, size, &bytes_written);
|
|
if (FAILED(hr)) bytes_written = 0;
|
|
return bytes_written;
|
|
}
|
|
|
|
static toff_t tiff_stream_seek(thandle_t client_data, toff_t offset, int whence)
|
|
{
|
|
IStream *stream = (IStream*)client_data;
|
|
LARGE_INTEGER move;
|
|
DWORD origin;
|
|
ULARGE_INTEGER new_position;
|
|
HRESULT hr;
|
|
|
|
move.QuadPart = offset;
|
|
switch (whence)
|
|
{
|
|
case SEEK_SET:
|
|
origin = STREAM_SEEK_SET;
|
|
break;
|
|
case SEEK_CUR:
|
|
origin = STREAM_SEEK_CUR;
|
|
break;
|
|
case SEEK_END:
|
|
origin = STREAM_SEEK_END;
|
|
break;
|
|
default:
|
|
ERR("unknown whence value %i\n", whence);
|
|
return -1;
|
|
}
|
|
|
|
hr = IStream_Seek(stream, move, origin, &new_position);
|
|
if (SUCCEEDED(hr)) return new_position.QuadPart;
|
|
else return -1;
|
|
}
|
|
|
|
static int tiff_stream_close(thandle_t client_data)
|
|
{
|
|
/* Caller is responsible for releasing the stream object. */
|
|
return 0;
|
|
}
|
|
|
|
static toff_t tiff_stream_size(thandle_t client_data)
|
|
{
|
|
IStream *stream = (IStream*)client_data;
|
|
STATSTG statstg;
|
|
HRESULT hr;
|
|
|
|
hr = IStream_Stat(stream, &statstg, STATFLAG_NONAME);
|
|
|
|
if (SUCCEEDED(hr)) return statstg.cbSize.QuadPart;
|
|
else return -1;
|
|
}
|
|
|
|
static int tiff_stream_map(thandle_t client_data, tdata_t *addr, toff_t *size)
|
|
{
|
|
/* Cannot mmap streams */
|
|
return 0;
|
|
}
|
|
|
|
static void tiff_stream_unmap(thandle_t client_data, tdata_t addr, toff_t size)
|
|
{
|
|
/* No need to ever do this, since we can't map things. */
|
|
}
|
|
|
|
static TIFF* tiff_open_stream(IStream *stream, const char *mode)
|
|
{
|
|
return pTIFFClientOpen("<IStream object>", mode, stream, tiff_stream_read,
|
|
tiff_stream_write, tiff_stream_seek, tiff_stream_close,
|
|
tiff_stream_size, tiff_stream_map, tiff_stream_unmap);
|
|
}
|
|
|
|
typedef struct {
|
|
const IWICBitmapDecoderVtbl *lpVtbl;
|
|
LONG ref;
|
|
IStream *stream;
|
|
CRITICAL_SECTION lock; /* Must be held when tiff is used or initiailzed is set */
|
|
TIFF *tiff;
|
|
BOOL initialized;
|
|
} TiffDecoder;
|
|
|
|
static HRESULT WINAPI TiffDecoder_QueryInterface(IWICBitmapDecoder *iface, REFIID iid,
|
|
void **ppv)
|
|
{
|
|
TiffDecoder *This = (TiffDecoder*)iface;
|
|
TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
|
|
|
|
if (!ppv) return E_INVALIDARG;
|
|
|
|
if (IsEqualIID(&IID_IUnknown, iid) || IsEqualIID(&IID_IWICBitmapDecoder, iid))
|
|
{
|
|
*ppv = This;
|
|
}
|
|
else
|
|
{
|
|
*ppv = NULL;
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
return S_OK;
|
|
}
|
|
|
|
static ULONG WINAPI TiffDecoder_AddRef(IWICBitmapDecoder *iface)
|
|
{
|
|
TiffDecoder *This = (TiffDecoder*)iface;
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
TRACE("(%p) refcount=%u\n", iface, ref);
|
|
|
|
return ref;
|
|
}
|
|
|
|
static ULONG WINAPI TiffDecoder_Release(IWICBitmapDecoder *iface)
|
|
{
|
|
TiffDecoder *This = (TiffDecoder*)iface;
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
TRACE("(%p) refcount=%u\n", iface, ref);
|
|
|
|
if (ref == 0)
|
|
{
|
|
if (This->tiff) pTIFFClose(This->tiff);
|
|
if (This->stream) IStream_Release(This->stream);
|
|
This->lock.DebugInfo->Spare[0] = 0;
|
|
DeleteCriticalSection(&This->lock);
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
}
|
|
|
|
return ref;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_QueryCapability(IWICBitmapDecoder *iface, IStream *pIStream,
|
|
DWORD *pdwCapability)
|
|
{
|
|
FIXME("(%p,%p,%p): stub\n", iface, pIStream, pdwCapability);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_Initialize(IWICBitmapDecoder *iface, IStream *pIStream,
|
|
WICDecodeOptions cacheOptions)
|
|
{
|
|
TiffDecoder *This = (TiffDecoder*)iface;
|
|
TIFF *tiff;
|
|
HRESULT hr=S_OK;
|
|
|
|
TRACE("(%p,%p,%x): stub\n", iface, pIStream, cacheOptions);
|
|
|
|
EnterCriticalSection(&This->lock);
|
|
|
|
if (This->initialized)
|
|
{
|
|
hr = WINCODEC_ERR_WRONGSTATE;
|
|
goto exit;
|
|
}
|
|
|
|
tiff = tiff_open_stream(pIStream, "r");
|
|
|
|
if (!tiff)
|
|
{
|
|
hr = E_FAIL;
|
|
goto exit;
|
|
}
|
|
|
|
This->tiff = tiff;
|
|
This->stream = pIStream;
|
|
IStream_AddRef(pIStream);
|
|
This->initialized = TRUE;
|
|
|
|
exit:
|
|
LeaveCriticalSection(&This->lock);
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetContainerFormat(IWICBitmapDecoder *iface,
|
|
GUID *pguidContainerFormat)
|
|
{
|
|
memcpy(pguidContainerFormat, &GUID_ContainerFormatTiff, sizeof(GUID));
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetDecoderInfo(IWICBitmapDecoder *iface,
|
|
IWICBitmapDecoderInfo **ppIDecoderInfo)
|
|
{
|
|
FIXME("(%p,%p): stub\n", iface, ppIDecoderInfo);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_CopyPalette(IWICBitmapDecoder *iface,
|
|
IWICPalette *pIPalette)
|
|
{
|
|
FIXME("(%p,%p): stub\n", iface, pIPalette);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetMetadataQueryReader(IWICBitmapDecoder *iface,
|
|
IWICMetadataQueryReader **ppIMetadataQueryReader)
|
|
{
|
|
FIXME("(%p,%p): stub\n", iface, ppIMetadataQueryReader);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetPreview(IWICBitmapDecoder *iface,
|
|
IWICBitmapSource **ppIBitmapSource)
|
|
{
|
|
FIXME("(%p,%p): stub\n", iface, ppIBitmapSource);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetColorContexts(IWICBitmapDecoder *iface,
|
|
UINT cCount, IWICColorContext **ppIColorContexts, UINT *pcActualCount)
|
|
{
|
|
FIXME("(%p,%u,%p,%p)\n", iface, cCount, ppIColorContexts, pcActualCount);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetThumbnail(IWICBitmapDecoder *iface,
|
|
IWICBitmapSource **ppIThumbnail)
|
|
{
|
|
TRACE("(%p,%p)\n", iface, ppIThumbnail);
|
|
return WINCODEC_ERR_CODECNOTHUMBNAIL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetFrameCount(IWICBitmapDecoder *iface,
|
|
UINT *pCount)
|
|
{
|
|
FIXME("(%p,%p)\n", iface, pCount);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI TiffDecoder_GetFrame(IWICBitmapDecoder *iface,
|
|
UINT index, IWICBitmapFrameDecode **ppIBitmapFrame)
|
|
{
|
|
FIXME("(%p,%u,%p)\n", iface, index, ppIBitmapFrame);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const IWICBitmapDecoderVtbl TiffDecoder_Vtbl = {
|
|
TiffDecoder_QueryInterface,
|
|
TiffDecoder_AddRef,
|
|
TiffDecoder_Release,
|
|
TiffDecoder_QueryCapability,
|
|
TiffDecoder_Initialize,
|
|
TiffDecoder_GetContainerFormat,
|
|
TiffDecoder_GetDecoderInfo,
|
|
TiffDecoder_CopyPalette,
|
|
TiffDecoder_GetMetadataQueryReader,
|
|
TiffDecoder_GetPreview,
|
|
TiffDecoder_GetColorContexts,
|
|
TiffDecoder_GetThumbnail,
|
|
TiffDecoder_GetFrameCount,
|
|
TiffDecoder_GetFrame
|
|
};
|
|
|
|
HRESULT TiffDecoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
|
|
{
|
|
HRESULT ret;
|
|
TiffDecoder *This;
|
|
|
|
TRACE("(%p,%s,%p)\n", pUnkOuter, debugstr_guid(iid), ppv);
|
|
|
|
*ppv = NULL;
|
|
|
|
if (pUnkOuter) return CLASS_E_NOAGGREGATION;
|
|
|
|
if (!load_libtiff())
|
|
{
|
|
ERR("Failed reading TIFF because unable to load %s\n",SONAME_LIBTIFF);
|
|
return E_FAIL;
|
|
}
|
|
|
|
This = HeapAlloc(GetProcessHeap(), 0, sizeof(TiffDecoder));
|
|
if (!This) return E_OUTOFMEMORY;
|
|
|
|
This->lpVtbl = &TiffDecoder_Vtbl;
|
|
This->ref = 1;
|
|
This->stream = NULL;
|
|
InitializeCriticalSection(&This->lock);
|
|
This->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": TiffDecoder.lock");
|
|
This->tiff = NULL;
|
|
This->initialized = FALSE;
|
|
|
|
ret = IUnknown_QueryInterface((IUnknown*)This, iid, ppv);
|
|
IUnknown_Release((IUnknown*)This);
|
|
|
|
return ret;
|
|
}
|
|
|
|
#else /* !SONAME_LIBTIFF */
|
|
|
|
HRESULT TiffDecoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
|
|
{
|
|
ERR("Trying to load TIFF picture, but Wine was compiled without TIFF support.\n");
|
|
return E_FAIL;
|
|
}
|
|
|
|
#endif
|