4 * Copyright 2003 Robert Shearman
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define NONAMELESSUNION
22 #define NONAMELESSSTRUCT
24 #include "quartz_private.h"
26 #include "wine/debug.h"
27 #include "wine/unicode.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
38 static const WCHAR wszOutputPinName
[] = { 'O','u','t','p','u','t',0 };
40 typedef struct AsyncReader
42 const IBaseFilterVtbl
* lpVtbl
;
43 const IFileSourceFilterVtbl
* lpVtblFSF
;
46 FILTER_INFO filterInfo
;
48 CRITICAL_SECTION csFilter
;
56 static const IBaseFilterVtbl AsyncReader_Vtbl
;
57 static const IFileSourceFilterVtbl FileSource_Vtbl
;
58 static const IAsyncReaderVtbl FileAsyncReader_Vtbl
;
60 static HRESULT
FileAsyncReader_Construct(HANDLE hFile
, IBaseFilter
* pBaseFilter
, LPCRITICAL_SECTION pCritSec
, IPin
** ppPin
);
62 static inline AsyncReader
*impl_from_IFileSourceFilter( IFileSourceFilter
*iface
)
64 return (AsyncReader
*)((char*)iface
- FIELD_OFFSET(AsyncReader
, lpVtblFSF
));
67 static WCHAR
const mediatype_name
[11] = {
68 'M', 'e', 'd', 'i', 'a', ' ', 'T', 'y', 'p', 'e', 0 };
69 static WCHAR
const subtype_name
[8] = {
70 'S', 'u', 'b', 't', 'y', 'p', 'e', 0 };
72 static HRESULT
process_extensions(HKEY hkeyExtensions
, LPCOLESTR pszFileName
, GUID
* majorType
, GUID
* minorType
)
83 /* Get the part of the name that matters */
84 extension
= PathFindExtensionW(pszFileName
);
85 if (*extension
!= '.')
88 l
= RegOpenKeyExW(hkeyExtensions
, extension
, 0, KEY_READ
, &hsub
);
92 size
= sizeof(keying
);
93 l
= RegQueryValueExW(hsub
, mediatype_name
, NULL
, NULL
, (LPBYTE
)keying
, &size
);
95 CLSIDFromString(keying
, majorType
);
97 size
= sizeof(keying
);
99 l
= RegQueryValueExW(hsub
, subtype_name
, NULL
, NULL
, (LPBYTE
)keying
, &size
);
102 CLSIDFromString(keying
, minorType
);
111 static unsigned char byte_from_hex_char(WCHAR wHex
)
113 switch (tolowerW(wHex
))
125 return (wHex
- '0') & 0xf;
132 return (wHex
- 'a' + 10) & 0xf;
138 static HRESULT
process_pattern_string(LPCWSTR wszPatternString
, IAsyncReader
* pReader
)
148 TRACE("\t\tPattern string: %s\n", debugstr_w(wszPatternString
));
150 /* format: "offset, bytestocompare, mask, value" */
152 ulOffset
= strtolW(wszPatternString
, NULL
, 10);
154 if (!(wszPatternString
= strchrW(wszPatternString
, ',')))
157 wszPatternString
++; /* skip ',' */
159 ulBytes
= strtolW(wszPatternString
, NULL
, 10);
161 pbMask
= HeapAlloc(GetProcessHeap(), 0, ulBytes
);
162 pbValue
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, ulBytes
);
163 pbFile
= HeapAlloc(GetProcessHeap(), 0, ulBytes
);
165 /* default mask is match everything */
166 memset(pbMask
, 0xFF, ulBytes
);
168 if (!(wszPatternString
= strchrW(wszPatternString
, ',')))
173 wszPatternString
++; /* skip ',' */
174 while (!isxdigitW(*wszPatternString
) && (*wszPatternString
!= ',')) wszPatternString
++;
176 for (strpos
= 0; isxdigitW(*wszPatternString
) && (strpos
/2 < ulBytes
); wszPatternString
++, strpos
++)
178 if ((strpos
% 2) == 1) /* odd numbered position */
179 pbMask
[strpos
/ 2] |= byte_from_hex_char(*wszPatternString
);
181 pbMask
[strpos
/ 2] = byte_from_hex_char(*wszPatternString
) << 4;
184 if (!(wszPatternString
= strchrW(wszPatternString
, ',')))
187 wszPatternString
++; /* skip ',' */
192 for ( ; !isxdigitW(*wszPatternString
) && (*wszPatternString
!= ','); wszPatternString
++)
195 for (strpos
= 0; isxdigitW(*wszPatternString
) && (strpos
/2 < ulBytes
); wszPatternString
++, strpos
++)
197 if ((strpos
% 2) == 1) /* odd numbered position */
198 pbValue
[strpos
/ 2] |= byte_from_hex_char(*wszPatternString
);
200 pbValue
[strpos
/ 2] = byte_from_hex_char(*wszPatternString
) << 4;
205 hr
= IAsyncReader_SyncRead(pReader
, ulOffset
, ulBytes
, pbFile
);
210 for (i
= 0; i
< ulBytes
; i
++)
211 if ((pbFile
[i
] & pbMask
[i
]) != pbValue
[i
])
218 HeapFree(GetProcessHeap(), 0, pbMask
);
219 HeapFree(GetProcessHeap(), 0, pbValue
);
220 HeapFree(GetProcessHeap(), 0, pbFile
);
222 /* if we encountered no errors with this string, and there is a following tuple, then we
223 * have to match that as well to succeed */
224 if ((hr
== S_OK
) && (wszPatternString
= strchrW(wszPatternString
, ',')))
225 return process_pattern_string(wszPatternString
+ 1, pReader
);
230 static HRESULT
GetClassMediaFile(IAsyncReader
* pReader
, LPCOLESTR pszFileName
, GUID
* majorType
, GUID
* minorType
)
232 HKEY hkeyMediaType
= NULL
;
236 static const WCHAR wszMediaType
[] = {'M','e','d','i','a',' ','T','y','p','e',0};
238 TRACE("(%p, %s, %p, %p)\n", pReader
, debugstr_w(pszFileName
), majorType
, minorType
);
240 *majorType
= GUID_NULL
;
241 *minorType
= GUID_NULL
;
243 lRet
= RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszMediaType
, 0, KEY_READ
, &hkeyMediaType
);
244 hr
= HRESULT_FROM_WIN32(lRet
);
250 for (indexMajor
= 0; !bFound
; indexMajor
++)
253 WCHAR wszMajorKeyName
[CHARS_IN_GUID
];
254 DWORD dwKeyNameLength
= sizeof(wszMajorKeyName
) / sizeof(wszMajorKeyName
[0]);
255 static const WCHAR wszExtensions
[] = {'E','x','t','e','n','s','i','o','n','s',0};
257 if (RegEnumKeyExW(hkeyMediaType
, indexMajor
, wszMajorKeyName
, &dwKeyNameLength
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
)
259 if (RegOpenKeyExW(hkeyMediaType
, wszMajorKeyName
, 0, KEY_READ
, &hkeyMajor
) != ERROR_SUCCESS
)
261 TRACE("%s\n", debugstr_w(wszMajorKeyName
));
262 if (!strcmpW(wszExtensions
, wszMajorKeyName
))
264 if (process_extensions(hkeyMajor
, pszFileName
, majorType
, minorType
) == S_OK
)
271 for (indexMinor
= 0; !bFound
; indexMinor
++)
274 WCHAR wszMinorKeyName
[CHARS_IN_GUID
];
275 DWORD dwMinorKeyNameLen
= sizeof(wszMinorKeyName
) / sizeof(wszMinorKeyName
[0]);
279 if (RegEnumKeyExW(hkeyMajor
, indexMinor
, wszMinorKeyName
, &dwMinorKeyNameLen
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
)
282 if (RegOpenKeyExW(hkeyMajor
, wszMinorKeyName
, 0, KEY_READ
, &hkeyMinor
) != ERROR_SUCCESS
)
285 TRACE("\t%s\n", debugstr_w(wszMinorKeyName
));
287 if (RegQueryInfoKeyW(hkeyMinor
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, &maxValueLen
, NULL
, NULL
) != ERROR_SUCCESS
)
290 for (indexValue
= 0; !bFound
; indexValue
++)
293 WCHAR wszValueName
[14]; /* longest name we should encounter will be "Source Filter" */
294 LPWSTR wszPatternString
= HeapAlloc(GetProcessHeap(), 0, maxValueLen
);
295 DWORD dwValueNameLen
= sizeof(wszValueName
) / sizeof(wszValueName
[0]); /* remember this is in chars */
296 DWORD dwDataLen
= maxValueLen
; /* remember this is in bytes */
297 static const WCHAR wszSourceFilter
[] = {'S','o','u','r','c','e',' ','F','i','l','t','e','r',0};
300 if ((temp
= RegEnumValueW(hkeyMinor
, indexValue
, wszValueName
, &dwValueNameLen
, NULL
, &dwType
, (LPBYTE
)wszPatternString
, &dwDataLen
)) != ERROR_SUCCESS
)
302 HeapFree(GetProcessHeap(), 0, wszPatternString
);
306 /* if it is not the source filter value */
307 if (strcmpW(wszValueName
, wszSourceFilter
))
309 if (process_pattern_string(wszPatternString
, pReader
) == S_OK
)
311 if (SUCCEEDED(CLSIDFromString(wszMajorKeyName
, majorType
)) &&
312 SUCCEEDED(CLSIDFromString(wszMinorKeyName
, minorType
)))
316 HeapFree(GetProcessHeap(), 0, wszPatternString
);
318 CloseHandle(hkeyMinor
);
321 CloseHandle(hkeyMajor
);
324 CloseHandle(hkeyMediaType
);
326 if (SUCCEEDED(hr
) && !bFound
)
328 ERR("Media class not found\n");
332 TRACE("Found file's class: major = %s, subtype = %s\n", qzdebugstr_guid(majorType
), qzdebugstr_guid(minorType
));
337 HRESULT
AsyncReader_create(IUnknown
* pUnkOuter
, LPVOID
* ppv
)
339 AsyncReader
*pAsyncRead
;
342 return CLASS_E_NOAGGREGATION
;
344 pAsyncRead
= CoTaskMemAlloc(sizeof(AsyncReader
));
347 return E_OUTOFMEMORY
;
349 pAsyncRead
->lpVtbl
= &AsyncReader_Vtbl
;
350 pAsyncRead
->lpVtblFSF
= &FileSource_Vtbl
;
351 pAsyncRead
->refCount
= 1;
352 pAsyncRead
->filterInfo
.achName
[0] = '\0';
353 pAsyncRead
->filterInfo
.pGraph
= NULL
;
354 pAsyncRead
->pOutputPin
= NULL
;
355 pAsyncRead
->lastpinchange
= GetTickCount();
356 pAsyncRead
->state
= State_Stopped
;
358 InitializeCriticalSection(&pAsyncRead
->csFilter
);
359 pAsyncRead
->csFilter
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": AsyncReader.csFilter");
361 pAsyncRead
->pszFileName
= NULL
;
362 pAsyncRead
->pmt
= NULL
;
366 TRACE("-- created at %p\n", pAsyncRead
);
371 /** IUnknown methods **/
373 static HRESULT WINAPI
AsyncReader_QueryInterface(IBaseFilter
* iface
, REFIID riid
, LPVOID
* ppv
)
375 AsyncReader
*This
= (AsyncReader
*)iface
;
377 TRACE("(%s, %p)\n", qzdebugstr_guid(riid
), ppv
);
381 if (IsEqualIID(riid
, &IID_IUnknown
))
383 else if (IsEqualIID(riid
, &IID_IPersist
))
385 else if (IsEqualIID(riid
, &IID_IMediaFilter
))
387 else if (IsEqualIID(riid
, &IID_IBaseFilter
))
389 else if (IsEqualIID(riid
, &IID_IFileSourceFilter
))
390 *ppv
= &This
->lpVtblFSF
;
394 IUnknown_AddRef((IUnknown
*)(*ppv
));
398 if (!IsEqualIID(riid
, &IID_IPin
) && !IsEqualIID(riid
, &IID_IMediaSeeking
) && !IsEqualIID(riid
, &IID_IVideoWindow
))
399 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
401 return E_NOINTERFACE
;
404 static ULONG WINAPI
AsyncReader_AddRef(IBaseFilter
* iface
)
406 AsyncReader
*This
= (AsyncReader
*)iface
;
407 ULONG refCount
= InterlockedIncrement(&This
->refCount
);
409 TRACE("(%p)->() AddRef from %d\n", This
, refCount
- 1);
414 static ULONG WINAPI
AsyncReader_Release(IBaseFilter
* iface
)
416 AsyncReader
*This
= (AsyncReader
*)iface
;
417 ULONG refCount
= InterlockedDecrement(&This
->refCount
);
419 TRACE("(%p)->() Release from %d\n", This
, refCount
+ 1);
423 if (This
->pOutputPin
)
426 if(SUCCEEDED(IPin_ConnectedTo(This
->pOutputPin
, &pConnectedTo
)))
428 IPin_Disconnect(pConnectedTo
);
429 IPin_Release(pConnectedTo
);
431 IPin_Disconnect(This
->pOutputPin
);
432 IPin_Release(This
->pOutputPin
);
434 This
->csFilter
.DebugInfo
->Spare
[0] = 0;
435 DeleteCriticalSection(&This
->csFilter
);
437 CoTaskMemFree(This
->pszFileName
);
439 FreeMediaType(This
->pmt
);
447 /** IPersist methods **/
449 static HRESULT WINAPI
AsyncReader_GetClassID(IBaseFilter
* iface
, CLSID
* pClsid
)
451 TRACE("(%p)\n", pClsid
);
453 *pClsid
= CLSID_AsyncReader
;
458 /** IMediaFilter methods **/
460 static HRESULT WINAPI
AsyncReader_Stop(IBaseFilter
* iface
)
462 AsyncReader
*This
= (AsyncReader
*)iface
;
466 This
->state
= State_Stopped
;
471 static HRESULT WINAPI
AsyncReader_Pause(IBaseFilter
* iface
)
473 AsyncReader
*This
= (AsyncReader
*)iface
;
477 This
->state
= State_Paused
;
482 static HRESULT WINAPI
AsyncReader_Run(IBaseFilter
* iface
, REFERENCE_TIME tStart
)
484 AsyncReader
*This
= (AsyncReader
*)iface
;
486 TRACE("(%x%08x)\n", (ULONG
)(tStart
>> 32), (ULONG
)tStart
);
488 This
->state
= State_Running
;
493 static HRESULT WINAPI
AsyncReader_GetState(IBaseFilter
* iface
, DWORD dwMilliSecsTimeout
, FILTER_STATE
*pState
)
495 AsyncReader
*This
= (AsyncReader
*)iface
;
497 TRACE("(%u, %p)\n", dwMilliSecsTimeout
, pState
);
499 *pState
= This
->state
;
504 static HRESULT WINAPI
AsyncReader_SetSyncSource(IBaseFilter
* iface
, IReferenceClock
*pClock
)
506 /* AsyncReader *This = (AsyncReader *)iface;*/
508 TRACE("(%p)\n", pClock
);
513 static HRESULT WINAPI
AsyncReader_GetSyncSource(IBaseFilter
* iface
, IReferenceClock
**ppClock
)
515 /* AsyncReader *This = (AsyncReader *)iface;*/
517 TRACE("(%p)\n", ppClock
);
522 /** IBaseFilter methods **/
524 static HRESULT
AsyncReader_GetPin(IBaseFilter
*iface
, ULONG pos
, IPin
**pin
, DWORD
*lastsynctick
)
526 AsyncReader
*This
= (AsyncReader
*)iface
;
528 /* Our pins are almost static, not changing so setting static tick count is ok */
529 *lastsynctick
= This
->lastpinchange
;
531 if (pos
>= 1 || !This
->pOutputPin
)
534 *pin
= This
->pOutputPin
;
539 static HRESULT WINAPI
AsyncReader_EnumPins(IBaseFilter
* iface
, IEnumPins
**ppEnum
)
541 AsyncReader
*This
= (AsyncReader
*)iface
;
543 TRACE("(%p/%p)->(%p)\n", This
, iface
, ppEnum
);
545 return IEnumPinsImpl_Construct(ppEnum
, AsyncReader_GetPin
, iface
);
548 static HRESULT WINAPI
AsyncReader_FindPin(IBaseFilter
* iface
, LPCWSTR Id
, IPin
**ppPin
)
550 FIXME("(%s, %p)\n", debugstr_w(Id
), ppPin
);
555 static HRESULT WINAPI
AsyncReader_QueryFilterInfo(IBaseFilter
* iface
, FILTER_INFO
*pInfo
)
557 AsyncReader
*This
= (AsyncReader
*)iface
;
559 TRACE("(%p)\n", pInfo
);
561 strcpyW(pInfo
->achName
, This
->filterInfo
.achName
);
562 pInfo
->pGraph
= This
->filterInfo
.pGraph
;
565 IFilterGraph_AddRef(pInfo
->pGraph
);
570 static HRESULT WINAPI
AsyncReader_JoinFilterGraph(IBaseFilter
* iface
, IFilterGraph
*pGraph
, LPCWSTR pName
)
572 AsyncReader
*This
= (AsyncReader
*)iface
;
574 TRACE("(%p, %s)\n", pGraph
, debugstr_w(pName
));
577 strcpyW(This
->filterInfo
.achName
, pName
);
579 *This
->filterInfo
.achName
= 0;
580 This
->filterInfo
.pGraph
= pGraph
; /* NOTE: do NOT increase ref. count */
585 static HRESULT WINAPI
AsyncReader_QueryVendorInfo(IBaseFilter
* iface
, LPWSTR
*pVendorInfo
)
587 FIXME("(%p)\n", pVendorInfo
);
592 static const IBaseFilterVtbl AsyncReader_Vtbl
=
594 AsyncReader_QueryInterface
,
597 AsyncReader_GetClassID
,
601 AsyncReader_GetState
,
602 AsyncReader_SetSyncSource
,
603 AsyncReader_GetSyncSource
,
604 AsyncReader_EnumPins
,
606 AsyncReader_QueryFilterInfo
,
607 AsyncReader_JoinFilterGraph
,
608 AsyncReader_QueryVendorInfo
611 static HRESULT WINAPI
FileSource_QueryInterface(IFileSourceFilter
* iface
, REFIID riid
, LPVOID
* ppv
)
613 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
615 return IBaseFilter_QueryInterface((IFileSourceFilter
*)&This
->lpVtbl
, riid
, ppv
);
618 static ULONG WINAPI
FileSource_AddRef(IFileSourceFilter
* iface
)
620 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
622 return IBaseFilter_AddRef((IFileSourceFilter
*)&This
->lpVtbl
);
625 static ULONG WINAPI
FileSource_Release(IFileSourceFilter
* iface
)
627 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
629 return IBaseFilter_Release((IFileSourceFilter
*)&This
->lpVtbl
);
632 static HRESULT WINAPI
FileSource_Load(IFileSourceFilter
* iface
, LPCOLESTR pszFileName
, const AM_MEDIA_TYPE
* pmt
)
636 IAsyncReader
* pReader
= NULL
;
637 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
639 TRACE("(%s, %p)\n", debugstr_w(pszFileName
), pmt
);
642 /* FIXME: check the sharing values that native uses */
643 hFile
= CreateFileW(pszFileName
, GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, NULL
);
645 if (hFile
== INVALID_HANDLE_VALUE
)
647 return HRESULT_FROM_WIN32(GetLastError());
651 hr
= FileAsyncReader_Construct(hFile
, (IBaseFilter
*)&This
->lpVtbl
, &This
->csFilter
, &This
->pOutputPin
);
652 This
->lastpinchange
= GetTickCount();
655 hr
= IPin_QueryInterface(This
->pOutputPin
, &IID_IAsyncReader
, (LPVOID
*)&pReader
);
657 /* store file name & media type */
660 CoTaskMemFree(This
->pszFileName
);
662 FreeMediaType(This
->pmt
);
664 This
->pszFileName
= CoTaskMemAlloc((strlenW(pszFileName
) + 1) * sizeof(WCHAR
));
665 strcpyW(This
->pszFileName
, pszFileName
);
667 This
->pmt
= CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE
));
670 This
->pmt
->bFixedSizeSamples
= TRUE
;
671 This
->pmt
->bTemporalCompression
= FALSE
;
672 This
->pmt
->cbFormat
= 0;
673 This
->pmt
->pbFormat
= NULL
;
674 This
->pmt
->pUnk
= NULL
;
675 This
->pmt
->lSampleSize
= 0;
676 This
->pmt
->formattype
= FORMAT_None
;
677 hr
= GetClassMediaFile(pReader
, pszFileName
, &This
->pmt
->majortype
, &This
->pmt
->subtype
);
680 CoTaskMemFree(This
->pmt
);
685 CopyMediaType(This
->pmt
, pmt
);
689 IAsyncReader_Release(pReader
);
693 if (This
->pOutputPin
)
695 IPin_Release(This
->pOutputPin
);
696 This
->pOutputPin
= NULL
;
699 CoTaskMemFree(This
->pszFileName
);
701 FreeMediaType(This
->pmt
);
702 This
->pszFileName
= NULL
;
708 /* FIXME: check return codes */
712 static HRESULT WINAPI
FileSource_GetCurFile(IFileSourceFilter
* iface
, LPOLESTR
* ppszFileName
, AM_MEDIA_TYPE
* pmt
)
714 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
716 TRACE("(%p, %p)\n", ppszFileName
, pmt
);
721 /* copy file name & media type if available, otherwise clear the outputs */
722 if (This
->pszFileName
)
724 *ppszFileName
= CoTaskMemAlloc((strlenW(This
->pszFileName
) + 1) * sizeof(WCHAR
));
725 strcpyW(*ppszFileName
, This
->pszFileName
);
728 *ppszFileName
= NULL
;
733 CopyMediaType(pmt
, This
->pmt
);
735 ZeroMemory(pmt
, sizeof(*pmt
));
741 static const IFileSourceFilterVtbl FileSource_Vtbl
=
743 FileSource_QueryInterface
,
747 FileSource_GetCurFile
751 /* the dwUserData passed back to user */
752 typedef struct DATAREQUEST
754 IMediaSample
* pSample
; /* sample passed to us by user */
755 DWORD_PTR dwUserData
; /* user data passed to us */
756 OVERLAPPED ovl
; /* our overlapped structure */
759 typedef struct FileAsyncReader
762 const struct IAsyncReaderVtbl
* lpVtblAR
;
766 /* Why would you need more? Every sample has its own handle */
770 CRITICAL_SECTION csList
; /* critical section to prevent concurrency issues */
771 DATAREQUEST
*sample_list
;
773 /* Have a handle for every sample, and then one more as flushing handle */
777 static inline FileAsyncReader
*impl_from_IAsyncReader( IAsyncReader
*iface
)
779 return (FileAsyncReader
*)((char*)iface
- FIELD_OFFSET(FileAsyncReader
, lpVtblAR
));
782 static HRESULT
AcceptProcAFR(LPVOID iface
, const AM_MEDIA_TYPE
*pmt
)
784 AsyncReader
*This
= iface
;
786 FIXME("(%p, %p)\n", iface
, pmt
);
788 if (IsEqualGUID(&pmt
->majortype
, &This
->pmt
->majortype
) &&
789 IsEqualGUID(&pmt
->subtype
, &This
->pmt
->subtype
) &&
790 IsEqualGUID(&pmt
->formattype
, &FORMAT_None
))
796 /* overridden pin functions */
798 static HRESULT WINAPI
FileAsyncReaderPin_QueryInterface(IPin
* iface
, REFIID riid
, LPVOID
* ppv
)
800 FileAsyncReader
*This
= (FileAsyncReader
*)iface
;
801 TRACE("(%s, %p)\n", qzdebugstr_guid(riid
), ppv
);
805 if (IsEqualIID(riid
, &IID_IUnknown
))
807 else if (IsEqualIID(riid
, &IID_IPin
))
809 else if (IsEqualIID(riid
, &IID_IAsyncReader
))
810 *ppv
= &This
->lpVtblAR
;
814 IUnknown_AddRef((IUnknown
*)(*ppv
));
818 if (!IsEqualIID(riid
, &IID_IPin
) && !IsEqualIID(riid
, &IID_IMediaSeeking
))
819 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
821 return E_NOINTERFACE
;
824 static ULONG WINAPI
FileAsyncReaderPin_Release(IPin
* iface
)
826 FileAsyncReader
*This
= (FileAsyncReader
*)iface
;
827 ULONG refCount
= InterlockedDecrement(&This
->pin
.pin
.refCount
);
830 TRACE("(%p)->() Release from %d\n", This
, refCount
+ 1);
834 CoTaskMemFree(This
->sample_list
);
835 if (This
->handle_list
)
837 for (x
= 0; x
<= This
->samples
; ++x
)
838 CloseHandle(This
->handle_list
[x
]);
839 CoTaskMemFree(This
->handle_list
);
841 CloseHandle(This
->hFile
);
842 This
->csList
.DebugInfo
->Spare
[0] = 0;
843 DeleteCriticalSection(&This
->csList
);
850 static HRESULT WINAPI
FileAsyncReaderPin_EnumMediaTypes(IPin
* iface
, IEnumMediaTypes
** ppEnum
)
852 ENUMMEDIADETAILS emd
;
853 FileAsyncReader
*This
= (FileAsyncReader
*)iface
;
855 TRACE("(%p)\n", ppEnum
);
858 emd
.pMediaTypes
= ((AsyncReader
*)This
->pin
.pin
.pinInfo
.pFilter
)->pmt
;
860 return IEnumMediaTypesImpl_Construct(&emd
, ppEnum
);
863 static const IPinVtbl FileAsyncReaderPin_Vtbl
=
865 FileAsyncReaderPin_QueryInterface
,
867 FileAsyncReaderPin_Release
,
869 OutputPin_ReceiveConnection
,
871 IPinImpl_ConnectedTo
,
872 IPinImpl_ConnectionMediaType
,
873 IPinImpl_QueryPinInfo
,
874 IPinImpl_QueryDirection
,
876 IPinImpl_QueryAccept
,
877 FileAsyncReaderPin_EnumMediaTypes
,
878 IPinImpl_QueryInternalConnections
,
879 OutputPin_EndOfStream
,
880 OutputPin_BeginFlush
,
885 /* Function called as a helper to IPin_Connect */
886 /* specific AM_MEDIA_TYPE - it cannot be NULL */
887 /* this differs from standard OutputPin_ConnectSpecific only in that it
888 * doesn't need the IMemInputPin interface on the receiving pin */
889 static HRESULT
FileAsyncReaderPin_ConnectSpecific(IPin
* iface
, IPin
* pReceivePin
, const AM_MEDIA_TYPE
* pmt
)
891 OutputPin
*This
= (OutputPin
*)iface
;
894 TRACE("(%p, %p)\n", pReceivePin
, pmt
);
895 dump_AM_MEDIA_TYPE(pmt
);
897 /* FIXME: call queryacceptproc */
899 This
->pin
.pConnectedTo
= pReceivePin
;
900 IPin_AddRef(pReceivePin
);
901 CopyMediaType(&This
->pin
.mtCurrent
, pmt
);
903 hr
= IPin_ReceiveConnection(pReceivePin
, iface
, pmt
);
907 IPin_Release(This
->pin
.pConnectedTo
);
908 This
->pin
.pConnectedTo
= NULL
;
909 FreeMediaType(&This
->pin
.mtCurrent
);
912 TRACE(" -- %x\n", hr
);
916 static HRESULT
FileAsyncReader_Construct(HANDLE hFile
, IBaseFilter
* pBaseFilter
, LPCRITICAL_SECTION pCritSec
, IPin
** ppPin
)
922 piOutput
.dir
= PINDIR_OUTPUT
;
923 piOutput
.pFilter
= pBaseFilter
;
924 strcpyW(piOutput
.achName
, wszOutputPinName
);
925 hr
= OutputPin_Construct(&FileAsyncReaderPin_Vtbl
, sizeof(FileAsyncReader
), &piOutput
, NULL
, pBaseFilter
, AcceptProcAFR
, pCritSec
, ppPin
);
929 FileAsyncReader
*pPinImpl
= (FileAsyncReader
*)*ppPin
;
930 pPinImpl
->lpVtblAR
= &FileAsyncReader_Vtbl
;
931 pPinImpl
->hFile
= hFile
;
932 pPinImpl
->bFlushing
= FALSE
;
933 pPinImpl
->sample_list
= NULL
;
934 pPinImpl
->handle_list
= NULL
;
935 pPinImpl
->queued_number
= 0;
936 pPinImpl
->pin
.pConnectSpecific
= FileAsyncReaderPin_ConnectSpecific
;
937 InitializeCriticalSection(&pPinImpl
->csList
);
938 pPinImpl
->csList
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": FileAsyncReader.csList");
945 static HRESULT WINAPI
FileAsyncReader_QueryInterface(IAsyncReader
* iface
, REFIID riid
, LPVOID
* ppv
)
947 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
949 return IPin_QueryInterface((IPin
*)This
, riid
, ppv
);
952 static ULONG WINAPI
FileAsyncReader_AddRef(IAsyncReader
* iface
)
954 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
956 return IPin_AddRef((IPin
*)This
);
959 static ULONG WINAPI
FileAsyncReader_Release(IAsyncReader
* iface
)
961 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
963 return IPin_Release((IPin
*)This
);
966 #define DEF_ALIGNMENT 1
968 static HRESULT WINAPI
FileAsyncReader_RequestAllocator(IAsyncReader
* iface
, IMemAllocator
* pPreferred
, ALLOCATOR_PROPERTIES
* pProps
, IMemAllocator
** ppActual
)
970 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
974 TRACE("(%p, %p, %p)\n", pPreferred
, pProps
, ppActual
);
976 if (!pProps
->cbAlign
|| (pProps
->cbAlign
% DEF_ALIGNMENT
) != 0)
977 pProps
->cbAlign
= DEF_ALIGNMENT
;
981 hr
= IMemAllocator_SetProperties(pPreferred
, pProps
, pProps
);
982 /* FIXME: check we are still aligned */
985 IMemAllocator_AddRef(pPreferred
);
986 *ppActual
= pPreferred
;
987 TRACE("FileAsyncReader_RequestAllocator -- %x\n", hr
);
994 hr
= CoCreateInstance(&CLSID_MemoryAllocator
, NULL
, CLSCTX_INPROC
, &IID_IMemAllocator
, (LPVOID
*)&pPreferred
);
998 hr
= IMemAllocator_SetProperties(pPreferred
, pProps
, pProps
);
999 /* FIXME: check we are still aligned */
1002 *ppActual
= pPreferred
;
1003 TRACE("FileAsyncReader_RequestAllocator -- %x\n", hr
);
1010 CoTaskMemFree(This
->sample_list
);
1011 if (This
->handle_list
)
1014 for (x
= 0; x
<= This
->samples
; ++x
)
1015 CloseHandle(This
->handle_list
[x
]);
1016 CoTaskMemFree(This
->handle_list
);
1019 This
->samples
= pProps
->cBuffers
;
1020 This
->oldest_sample
= 0;
1021 TRACE("Samples: %u\n", This
->samples
);
1022 This
->sample_list
= CoTaskMemAlloc(sizeof(This
->sample_list
[0]) * pProps
->cBuffers
);
1023 This
->handle_list
= CoTaskMemAlloc(sizeof(HANDLE
) * pProps
->cBuffers
* 2);
1025 if (This
->sample_list
&& This
->handle_list
)
1028 ZeroMemory(This
->sample_list
, sizeof(This
->sample_list
[0]) * pProps
->cBuffers
);
1029 for (x
= 0; x
< This
->samples
; ++x
)
1031 This
->sample_list
[x
].ovl
.hEvent
= This
->handle_list
[x
] = CreateEventW(NULL
, 0, 0, NULL
);
1032 if (x
+ 1 < This
->samples
)
1033 This
->handle_list
[This
->samples
+ 1 + x
] = This
->handle_list
[x
];
1035 This
->handle_list
[This
->samples
] = CreateEventW(NULL
, 1, 0, NULL
);
1036 This
->pin
.allocProps
= *pProps
;
1041 CoTaskMemFree(This
->sample_list
);
1042 CoTaskMemFree(This
->handle_list
);
1044 This
->sample_list
= NULL
;
1045 This
->handle_list
= NULL
;
1053 IMemAllocator_Release(pPreferred
);
1056 TRACE("-- %x\n", hr
);
1060 /* we could improve the Request/WaitForNext mechanism by allowing out of order samples.
1061 * however, this would be quite complicated to do and may be a bit error prone */
1062 static HRESULT WINAPI
FileAsyncReader_Request(IAsyncReader
* iface
, IMediaSample
* pSample
, DWORD_PTR dwUser
)
1065 REFERENCE_TIME Start
;
1066 REFERENCE_TIME Stop
;
1067 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1068 LPBYTE pBuffer
= NULL
;
1070 TRACE("(%p, %lx)\n", pSample
, dwUser
);
1075 /* get start and stop positions in bytes */
1077 hr
= IMediaSample_GetTime(pSample
, &Start
, &Stop
);
1080 hr
= IMediaSample_GetPointer(pSample
, &pBuffer
);
1082 EnterCriticalSection(&This
->csList
);
1083 if (This
->bFlushing
)
1085 LeaveCriticalSection(&This
->csList
);
1086 return VFW_E_WRONG_STATE
;
1091 DWORD dwLength
= (DWORD
) BYTES_FROM_MEDIATIME(Stop
- Start
);
1092 DATAREQUEST
*pDataRq
;
1095 /* Try to insert above the waiting sample if possible */
1096 for (x
= This
->oldest_sample
; x
< This
->samples
; ++x
)
1098 if (!This
->sample_list
[x
].pSample
)
1102 if (x
>= This
->samples
)
1103 for (x
= 0; x
< This
->oldest_sample
; ++x
)
1105 if (!This
->sample_list
[x
].pSample
)
1109 /* There must be a sample we have found */
1110 assert(x
< This
->samples
);
1111 ++This
->queued_number
;
1113 pDataRq
= This
->sample_list
+ x
;
1115 pDataRq
->ovl
.u
.s
.Offset
= (DWORD
) BYTES_FROM_MEDIATIME(Start
);
1116 pDataRq
->ovl
.u
.s
.OffsetHigh
= (DWORD
)(BYTES_FROM_MEDIATIME(Start
) >> (sizeof(DWORD
) * 8));
1117 pDataRq
->dwUserData
= dwUser
;
1119 /* we violate traditional COM rules here by maintaining
1120 * a reference to the sample, but not calling AddRef, but
1121 * that's what MSDN says to do */
1122 pDataRq
->pSample
= pSample
;
1124 /* this is definitely not how it is implemented on Win9x
1125 * as they do not support async reads on files, but it is
1126 * sooo much easier to use this than messing around with threads!
1128 if (!ReadFile(This
->hFile
, pBuffer
, dwLength
, NULL
, &pDataRq
->ovl
))
1129 hr
= HRESULT_FROM_WIN32(GetLastError());
1131 /* ERROR_IO_PENDING is not actually an error since this is what we want! */
1132 if (hr
== HRESULT_FROM_WIN32(ERROR_IO_PENDING
))
1136 LeaveCriticalSection(&This
->csList
);
1138 TRACE("-- %x\n", hr
);
1142 static HRESULT WINAPI
FileAsyncReader_WaitForNext(IAsyncReader
* iface
, DWORD dwTimeout
, IMediaSample
** ppSample
, DWORD_PTR
* pdwUser
)
1145 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1148 TRACE("(%u, %p, %p)\n", dwTimeout
, ppSample
, pdwUser
);
1153 EnterCriticalSection(&This
->csList
);
1154 if (!This
->bFlushing
)
1156 LONG oldest
= This
->oldest_sample
;
1158 if (!This
->queued_number
)
1160 /* It could be that nothing is queued right now, but that can be fixed */
1161 WARN("Called without samples in queue and not flushing!!\n");
1163 LeaveCriticalSection(&This
->csList
);
1165 /* wait for an object to read, or time out */
1166 buffer
= WaitForMultipleObjectsEx(This
->samples
+1, This
->handle_list
+ oldest
, FALSE
, dwTimeout
, TRUE
);
1168 EnterCriticalSection(&This
->csList
);
1169 if (buffer
<= This
->samples
)
1171 /* Re-scale the buffer back to normal */
1174 /* Uh oh, we overshot the flusher handle, renormalize it back to 0..Samples-1 */
1175 if (buffer
> This
->samples
)
1176 buffer
-= This
->samples
+ 1;
1177 assert(buffer
<= This
->samples
);
1180 if (buffer
>= This
->samples
)
1182 if (buffer
!= This
->samples
)
1184 FIXME("Returned: %u (%08x)\n", buffer
, GetLastError());
1188 hr
= VFW_E_WRONG_STATE
;
1192 --This
->queued_number
;
1195 if (This
->bFlushing
&& buffer
== ~0)
1197 for (buffer
= 0; buffer
< This
->samples
; ++buffer
)
1199 if (This
->sample_list
[buffer
].pSample
)
1201 ResetEvent(This
->handle_list
[buffer
]);
1205 if (buffer
== This
->samples
)
1207 assert(!This
->queued_number
);
1212 --This
->queued_number
;
1219 REFERENCE_TIME rtStart
, rtStop
;
1220 REFERENCE_TIME rtSampleStart
, rtSampleStop
;
1221 DATAREQUEST
*pDataRq
= This
->sample_list
+ buffer
;
1224 /* get any errors */
1225 if (!This
->bFlushing
&& !GetOverlappedResult(This
->hFile
, &pDataRq
->ovl
, &dwBytes
, FALSE
))
1226 hr
= HRESULT_FROM_WIN32(GetLastError());
1228 /* Return the sample no matter what so it can be destroyed */
1229 *ppSample
= pDataRq
->pSample
;
1230 *pdwUser
= pDataRq
->dwUserData
;
1232 if (This
->bFlushing
)
1233 hr
= VFW_E_WRONG_STATE
;
1238 /* Set the time on the sample */
1239 IMediaSample_SetActualDataLength(pDataRq
->pSample
, dwBytes
);
1241 rtStart
= (DWORD64
)pDataRq
->ovl
.u
.s
.Offset
+ ((DWORD64
)pDataRq
->ovl
.u
.s
.OffsetHigh
<< 32);
1242 rtStart
= MEDIATIME_FROM_BYTES(rtStart
);
1243 rtStop
= rtStart
+ MEDIATIME_FROM_BYTES(dwBytes
);
1245 IMediaSample_GetTime(pDataRq
->pSample
, &rtSampleStart
, &rtSampleStop
);
1246 assert(rtStart
== rtSampleStart
);
1247 assert(rtStop
<= rtSampleStop
);
1249 IMediaSample_SetTime(pDataRq
->pSample
, &rtStart
, &rtStop
);
1250 assert(rtStart
== rtSampleStart
);
1252 assert(rtStop
== rtSampleStop
);
1254 assert(rtStop
== rtStart
);
1256 This
->sample_list
[buffer
].pSample
= NULL
;
1257 assert(This
->oldest_sample
< This
->samples
);
1259 if (buffer
== This
->oldest_sample
)
1262 for (x
= This
->oldest_sample
+ 1; x
< This
->samples
; ++x
)
1263 if (This
->sample_list
[x
].pSample
)
1265 if (x
>= This
->samples
)
1266 for (x
= 0; x
< This
->oldest_sample
; ++x
)
1267 if (This
->sample_list
[x
].pSample
)
1269 if (This
->oldest_sample
== x
)
1270 /* No samples found, reset to 0 */
1272 This
->oldest_sample
= x
;
1275 LeaveCriticalSection(&This
->csList
);
1277 TRACE("-- %x\n", hr
);
1281 static HRESULT WINAPI
FileAsyncReader_SyncRead(IAsyncReader
* iface
, LONGLONG llPosition
, LONG lLength
, BYTE
* pBuffer
);
1283 static HRESULT WINAPI
FileAsyncReader_SyncReadAligned(IAsyncReader
* iface
, IMediaSample
* pSample
)
1286 REFERENCE_TIME tStart
;
1287 REFERENCE_TIME tStop
;
1290 TRACE("(%p)\n", pSample
);
1292 hr
= IMediaSample_GetTime(pSample
, &tStart
, &tStop
);
1295 hr
= IMediaSample_GetPointer(pSample
, &pBuffer
);
1298 hr
= FileAsyncReader_SyncRead(iface
,
1299 BYTES_FROM_MEDIATIME(tStart
),
1300 (LONG
) BYTES_FROM_MEDIATIME(tStop
- tStart
),
1303 TRACE("-- %x\n", hr
);
1307 static HRESULT WINAPI
FileAsyncReader_SyncRead(IAsyncReader
* iface
, LONGLONG llPosition
, LONG lLength
, BYTE
* pBuffer
)
1311 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1313 TRACE("(%x%08x, %d, %p)\n", (ULONG
)(llPosition
>> 32), (ULONG
)llPosition
, lLength
, pBuffer
);
1315 ZeroMemory(&ovl
, sizeof(ovl
));
1317 ovl
.hEvent
= CreateEventW(NULL
, 0, 0, NULL
);
1318 /* NOTE: llPosition is the actual byte position to start reading from */
1319 ovl
.u
.s
.Offset
= (DWORD
) llPosition
;
1320 ovl
.u
.s
.OffsetHigh
= (DWORD
) (llPosition
>> (sizeof(DWORD
) * 8));
1322 if (!ReadFile(This
->hFile
, pBuffer
, lLength
, NULL
, &ovl
))
1323 hr
= HRESULT_FROM_WIN32(GetLastError());
1325 if (hr
== HRESULT_FROM_WIN32(ERROR_IO_PENDING
))
1332 if (!GetOverlappedResult(This
->hFile
, &ovl
, &dwBytesRead
, TRUE
))
1333 hr
= HRESULT_FROM_WIN32(GetLastError());
1336 CloseHandle(ovl
.hEvent
);
1338 TRACE("-- %x\n", hr
);
1342 static HRESULT WINAPI
FileAsyncReader_Length(IAsyncReader
* iface
, LONGLONG
* pTotal
, LONGLONG
* pAvailable
)
1346 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1348 TRACE("(%p, %p)\n", pTotal
, pAvailable
);
1350 if (((dwSizeLow
= GetFileSize(This
->hFile
, &dwSizeHigh
)) == -1) &&
1351 (GetLastError() != NO_ERROR
))
1352 return HRESULT_FROM_WIN32(GetLastError());
1354 *pTotal
= (LONGLONG
)dwSizeLow
| (LONGLONG
)dwSizeHigh
<< (sizeof(DWORD
) * 8);
1356 *pAvailable
= *pTotal
;
1361 static HRESULT WINAPI
FileAsyncReader_BeginFlush(IAsyncReader
* iface
)
1363 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1367 EnterCriticalSection(&This
->csList
);
1368 This
->bFlushing
= TRUE
;
1369 CancelIo(This
->hFile
);
1370 SetEvent(This
->handle_list
[This
->samples
]);
1371 LeaveCriticalSection(&This
->csList
);
1376 static HRESULT WINAPI
FileAsyncReader_EndFlush(IAsyncReader
* iface
)
1378 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1383 EnterCriticalSection(&This
->csList
);
1384 ResetEvent(This
->handle_list
[This
->samples
]);
1385 This
->bFlushing
= FALSE
;
1386 for (x
= 0; x
< This
->samples
; ++x
)
1387 assert(!This
->sample_list
[x
].pSample
);
1389 LeaveCriticalSection(&This
->csList
);
1394 static const IAsyncReaderVtbl FileAsyncReader_Vtbl
=
1396 FileAsyncReader_QueryInterface
,
1397 FileAsyncReader_AddRef
,
1398 FileAsyncReader_Release
,
1399 FileAsyncReader_RequestAllocator
,
1400 FileAsyncReader_Request
,
1401 FileAsyncReader_WaitForNext
,
1402 FileAsyncReader_SyncReadAligned
,
1403 FileAsyncReader_SyncRead
,
1404 FileAsyncReader_Length
,
1405 FileAsyncReader_BeginFlush
,
1406 FileAsyncReader_EndFlush
,