Don't crash on close from window manager.
[wine/multimedia.git] / dlls / shell32 / memorystream.c
blob7e85ccdedc2016cedf61359d38c7153be32f5040
1 /*
2 * this class implements a pure IStream object
3 * and can be used for many purposes
5 * the main reason for implementing this was
6 * a cleaner implementation of IShellLink which
7 * needs to be able to load lnk's from a IStream
8 * interface so it was obvious to capsule the file
9 * access in a IStream to.
12 #include <string.h>
14 #include "winbase.h"
15 #include "winerror.h"
16 #include "shlobj.h"
17 #include "debugtools.h"
18 #include "heap.h"
19 #include "shell32_main.h"
21 DEFAULT_DEBUG_CHANNEL(shell);
23 static HRESULT WINAPI IStream_fnQueryInterface(IStream *iface, REFIID riid, LPVOID *ppvObj);
24 static ULONG WINAPI IStream_fnAddRef(IStream *iface);
25 static ULONG WINAPI IStream_fnRelease(IStream *iface);
26 static HRESULT WINAPI IStream_fnRead (IStream * iface, void* pv, ULONG cb, ULONG* pcbRead);
27 static HRESULT WINAPI IStream_fnWrite (IStream * iface, const void* pv, ULONG cb, ULONG* pcbWritten);
28 static HRESULT WINAPI IStream_fnSeek (IStream * iface, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER* plibNewPosition);
29 static HRESULT WINAPI IStream_fnSetSize (IStream * iface, ULARGE_INTEGER libNewSize);
30 static HRESULT WINAPI IStream_fnCopyTo (IStream * iface, IStream* pstm, ULARGE_INTEGER cb, ULARGE_INTEGER* pcbRead, ULARGE_INTEGER* pcbWritten);
31 static HRESULT WINAPI IStream_fnCommit (IStream * iface, DWORD grfCommitFlags);
32 static HRESULT WINAPI IStream_fnRevert (IStream * iface);
33 static HRESULT WINAPI IStream_fnLockRegion (IStream * iface, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType);
34 static HRESULT WINAPI IStream_fnUnlockRegion (IStream * iface, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType);
35 static HRESULT WINAPI IStream_fnStat (IStream * iface, STATSTG* pstatstg, DWORD grfStatFlag);
36 static HRESULT WINAPI IStream_fnClone (IStream * iface, IStream** ppstm);
38 static ICOM_VTABLE(IStream) stvt =
40 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
41 IStream_fnQueryInterface,
42 IStream_fnAddRef,
43 IStream_fnRelease,
44 IStream_fnRead,
45 IStream_fnWrite,
46 IStream_fnSeek,
47 IStream_fnSetSize,
48 IStream_fnCopyTo,
49 IStream_fnCommit,
50 IStream_fnRevert,
51 IStream_fnLockRegion,
52 IStream_fnUnlockRegion,
53 IStream_fnStat,
54 IStream_fnClone
58 typedef struct
59 { ICOM_VTABLE(IStream) *lpvtst;
60 DWORD ref;
61 LPBYTE pImage;
62 HANDLE hMapping;
63 DWORD dwLength;
64 DWORD dwPos;
65 } ISHFileStream;
67 /**************************************************************************
68 * CreateStreamOnFile()
70 * similar to CreateStreamOnHGlobal
72 HRESULT CreateStreamOnFile (LPCSTR pszFilename, IStream ** ppstm)
74 ISHFileStream* fstr;
75 OFSTRUCT ofs;
76 HFILE hFile = OpenFile( pszFilename, &ofs, OF_READ );
77 HRESULT ret = E_FAIL;
79 fstr = (ISHFileStream*)HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(ISHFileStream));
80 fstr->lpvtst=&stvt;
81 fstr->ref = 1;
82 fstr->dwLength = GetFileSize (hFile, NULL);
84 shell32_ObjCount++;
86 if (!(fstr->hMapping = CreateFileMappingA(hFile,NULL,PAGE_READONLY|SEC_COMMIT,0,0,NULL)))
88 WARN("failed to create filemap.\n");
89 goto end_2;
92 if (!(fstr->pImage = MapViewOfFile(fstr->hMapping,FILE_MAP_READ,0,0,0)))
94 WARN("failed to mmap filemap.\n");
95 goto end_3;
98 ret = S_OK;
99 goto end_1;
101 end_3: CloseHandle(fstr->hMapping);
102 end_2: HeapFree(GetProcessHeap(), 0, fstr);
103 fstr = NULL;
105 end_1: _lclose(hFile);
106 (*ppstm) = (IStream*)fstr;
107 return ret;
110 /**************************************************************************
111 * IStream_fnQueryInterface
113 static HRESULT WINAPI IStream_fnQueryInterface(IStream *iface, REFIID riid, LPVOID *ppvObj)
115 ICOM_THIS(ISHFileStream, iface);
117 TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This,debugstr_guid(riid),ppvObj);
119 *ppvObj = NULL;
121 if(IsEqualIID(riid, &IID_IUnknown) ||
122 IsEqualIID(riid, &IID_IStream))
124 *ppvObj = This;
127 if(*ppvObj)
129 IStream_AddRef((IStream*)*ppvObj);
130 TRACE("-- Interface: (%p)->(%p)\n",ppvObj,*ppvObj);
131 return S_OK;
133 TRACE("-- Interface: E_NOINTERFACE\n");
134 return E_NOINTERFACE;
137 /**************************************************************************
138 * IStream_fnAddRef
140 static ULONG WINAPI IStream_fnAddRef(IStream *iface)
142 ICOM_THIS(ISHFileStream, iface);
144 TRACE("(%p)->(count=%lu)\n",This, This->ref);
146 shell32_ObjCount++;
147 return ++(This->ref);
150 /**************************************************************************
151 * IStream_fnRelease
153 static ULONG WINAPI IStream_fnRelease(IStream *iface)
155 ICOM_THIS(ISHFileStream, iface);
157 TRACE("(%p)->()\n",This);
159 shell32_ObjCount--;
161 if (!--(This->ref))
162 { TRACE(" destroying SHFileStream (%p)\n",This);
164 UnmapViewOfFile(This->pImage);
165 CloseHandle(This->hMapping);
167 HeapFree(GetProcessHeap(),0,This);
168 return 0;
170 return This->ref;
173 static HRESULT WINAPI IStream_fnRead (IStream * iface, void* pv, ULONG cb, ULONG* pcbRead)
175 ICOM_THIS(ISHFileStream, iface);
177 DWORD dwBytesToRead, dwBytesLeft;
179 TRACE("(%p)->(%p,0x%08lx,%p)\n",This, pv, cb, pcbRead);
181 if ( !pv )
182 return STG_E_INVALIDPOINTER;
184 dwBytesLeft = This->dwLength - This->dwPos;
186 if ( 0 >= dwBytesLeft ) /* end of buffer */
187 return S_FALSE;
189 dwBytesToRead = ( cb > dwBytesLeft) ? dwBytesLeft : cb;
191 memmove ( pv, (This->pImage) + (This->dwPos), dwBytesToRead);
193 This->dwPos += dwBytesToRead; /* adjust pointer */
195 if (pcbRead)
196 *pcbRead = dwBytesToRead;
198 return S_OK;
200 static HRESULT WINAPI IStream_fnWrite (IStream * iface, const void* pv, ULONG cb, ULONG* pcbWritten)
202 ICOM_THIS(ISHFileStream, iface);
204 TRACE("(%p)\n",This);
206 return E_NOTIMPL;
208 static HRESULT WINAPI IStream_fnSeek (IStream * iface, LARGE_INTEGER dlibMove, DWORD dwOrigin, ULARGE_INTEGER* plibNewPosition)
210 ICOM_THIS(ISHFileStream, iface);
212 TRACE("(%p)\n",This);
214 return E_NOTIMPL;
216 static HRESULT WINAPI IStream_fnSetSize (IStream * iface, ULARGE_INTEGER libNewSize)
218 ICOM_THIS(ISHFileStream, iface);
220 TRACE("(%p)\n",This);
222 return E_NOTIMPL;
224 static HRESULT WINAPI IStream_fnCopyTo (IStream * iface, IStream* pstm, ULARGE_INTEGER cb, ULARGE_INTEGER* pcbRead, ULARGE_INTEGER* pcbWritten)
226 ICOM_THIS(ISHFileStream, iface);
228 TRACE("(%p)\n",This);
230 return E_NOTIMPL;
232 static HRESULT WINAPI IStream_fnCommit (IStream * iface, DWORD grfCommitFlags)
234 ICOM_THIS(ISHFileStream, iface);
236 TRACE("(%p)\n",This);
238 return E_NOTIMPL;
240 static HRESULT WINAPI IStream_fnRevert (IStream * iface)
242 ICOM_THIS(ISHFileStream, iface);
244 TRACE("(%p)\n",This);
246 return E_NOTIMPL;
248 static HRESULT WINAPI IStream_fnLockRegion (IStream * iface, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType)
250 ICOM_THIS(ISHFileStream, iface);
252 TRACE("(%p)\n",This);
254 return E_NOTIMPL;
256 static HRESULT WINAPI IStream_fnUnlockRegion (IStream * iface, ULARGE_INTEGER libOffset, ULARGE_INTEGER cb, DWORD dwLockType)
258 ICOM_THIS(ISHFileStream, iface);
260 TRACE("(%p)\n",This);
262 return E_NOTIMPL;
264 static HRESULT WINAPI IStream_fnStat (IStream * iface, STATSTG* pstatstg, DWORD grfStatFlag)
266 ICOM_THIS(ISHFileStream, iface);
268 TRACE("(%p)\n",This);
270 return E_NOTIMPL;
272 static HRESULT WINAPI IStream_fnClone (IStream * iface, IStream** ppstm)
274 ICOM_THIS(ISHFileStream, iface);
276 TRACE("(%p)\n",This);
278 return E_NOTIMPL;