ole32: Fix the return value of the HGLOBAL stream IStream_LockRegion function.
[wine] / dlls / ole32 / hglobalstream.c
1 /*
2  * HGLOBAL Stream implementation
3  *
4  * This file contains the implementation of the stream interface
5  * for streams contained supported by an HGLOBAL pointer.
6  *
7  * Copyright 1999 Francis Beaudet
8  *
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.
13  *
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.
18  *
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
22  */
23
24 #include "config.h"
25
26 #include <assert.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <string.h>
31
32 #define COBJMACROS
33 #define NONAMELESSUNION
34 #define NONAMELESSSTRUCT
35
36 #include "windef.h"
37 #include "winbase.h"
38 #include "winuser.h"
39 #include "objbase.h"
40 #include "ole2.h"
41 #include "winerror.h"
42 #include "winreg.h"
43 #include "winternl.h"
44
45 #include "wine/debug.h"
46
47 WINE_DEFAULT_DEBUG_CHANNEL(storage);
48
49 /****************************************************************************
50  * HGLOBALStreamImpl definition.
51  *
52  * This class imlements the IStream inteface and represents a stream
53  * supported by an HGLOBAL pointer.
54  */
55 struct HGLOBALStreamImpl
56 {
57   const IStreamVtbl *lpVtbl;   /* Needs to be the first item in the struct
58                           * since we want to cast this in an IStream pointer */
59
60   /*
61    * Reference count
62    */
63   LONG               ref;
64
65   /*
66    * Support for the stream
67    */
68   HGLOBAL supportHandle;
69
70   /*
71    * This flag is TRUE if the HGLOBAL is destroyed when the stream
72    * is finally released.
73    */
74   BOOL    deleteOnRelease;
75
76   /*
77    * Helper variable that contains the size of the stream
78    */
79   ULARGE_INTEGER     streamSize;
80
81   /*
82    * This is the current position of the cursor in the stream
83    */
84   ULARGE_INTEGER     currentPosition;
85 };
86
87 typedef struct HGLOBALStreamImpl HGLOBALStreamImpl;
88
89 /***
90  * This is the destructor of the HGLOBALStreamImpl class.
91  *
92  * This method will clean-up all the resources used-up by the given HGLOBALStreamImpl
93  * class. The pointer passed-in to this function will be freed and will not
94  * be valid anymore.
95  */
96 static void HGLOBALStreamImpl_Destroy(HGLOBALStreamImpl* This)
97 {
98   TRACE("(%p)\n", This);
99
100   /*
101    * Release the HGlobal if the constructor asked for that.
102    */
103   if (This->deleteOnRelease)
104   {
105     GlobalFree(This->supportHandle);
106     This->supportHandle=0;
107   }
108
109   /*
110    * Finally, free the memory used-up by the class.
111    */
112   HeapFree(GetProcessHeap(), 0, This);
113 }
114
115 /***
116  * This implements the IUnknown method AddRef for this
117  * class
118  */
119 static ULONG WINAPI HGLOBALStreamImpl_AddRef(
120                 IStream* iface)
121 {
122   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
123   return InterlockedIncrement(&This->ref);
124 }
125
126 /***
127  * This implements the IUnknown method QueryInterface for this
128  * class
129  */
130 static HRESULT WINAPI HGLOBALStreamImpl_QueryInterface(
131                   IStream*     iface,
132                   REFIID         riid,        /* [in] */
133                   void**         ppvObject)   /* [iid_is][out] */
134 {
135   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
136
137   /*
138    * Perform a sanity check on the parameters.
139    */
140   if (ppvObject==0)
141     return E_INVALIDARG;
142
143   /*
144    * Initialize the return parameter.
145    */
146   *ppvObject = 0;
147
148   /*
149    * Compare the riid with the interface IDs implemented by this object.
150    */
151   if (memcmp(&IID_IUnknown, riid, sizeof(IID_IUnknown)) == 0)
152   {
153     *ppvObject = (IStream*)This;
154   }
155   else if (memcmp(&IID_IStream, riid, sizeof(IID_IStream)) == 0)
156   {
157     *ppvObject = (IStream*)This;
158   }
159
160   /*
161    * Check that we obtained an interface.
162    */
163   if ((*ppvObject)==0)
164     return E_NOINTERFACE;
165
166   /*
167    * Query Interface always increases the reference count by one when it is
168    * successful
169    */
170   HGLOBALStreamImpl_AddRef(iface);
171
172   return S_OK;
173 }
174
175 /***
176  * This implements the IUnknown method Release for this
177  * class
178  */
179 static ULONG WINAPI HGLOBALStreamImpl_Release(
180                 IStream* iface)
181 {
182   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
183   ULONG newRef;
184
185   newRef = InterlockedDecrement(&This->ref);
186
187   /*
188    * If the reference count goes down to 0, perform suicide.
189    */
190   if (newRef==0)
191   {
192     HGLOBALStreamImpl_Destroy(This);
193   }
194
195   return newRef;
196 }
197
198 /***
199  * This method is part of the ISequentialStream interface.
200  *
201  * If reads a block of information from the stream at the current
202  * position. It then moves the current position at the end of the
203  * read block
204  *
205  * See the documentation of ISequentialStream for more info.
206  */
207 static HRESULT WINAPI HGLOBALStreamImpl_Read(
208                   IStream*     iface,
209                   void*          pv,        /* [length_is][size_is][out] */
210                   ULONG          cb,        /* [in] */
211                   ULONG*         pcbRead)   /* [out] */
212 {
213   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
214
215   void* supportBuffer;
216   ULONG bytesReadBuffer;
217   ULONG bytesToReadFromBuffer;
218
219   TRACE("(%p, %p, %ld, %p)\n", iface,
220         pv, cb, pcbRead);
221
222   /*
223    * If the caller is not interested in the nubmer of bytes read,
224    * we use another buffer to avoid "if" statements in the code.
225    */
226   if (pcbRead==0)
227     pcbRead = &bytesReadBuffer;
228
229   /*
230    * Using the known size of the stream, calculate the number of bytes
231    * to read from the block chain
232    */
233   bytesToReadFromBuffer = min( This->streamSize.u.LowPart - This->currentPosition.u.LowPart, cb);
234
235   /*
236    * Lock the buffer in position and copy the data.
237    */
238   supportBuffer = GlobalLock(This->supportHandle);
239
240   memcpy(pv, (char *) supportBuffer+This->currentPosition.u.LowPart, bytesToReadFromBuffer);
241
242   /*
243    * Move the current position to the new position
244    */
245   This->currentPosition.u.LowPart+=bytesToReadFromBuffer;
246
247   /*
248    * Return the number of bytes read.
249    */
250   *pcbRead = bytesToReadFromBuffer;
251
252   /*
253    * Cleanup
254    */
255   GlobalUnlock(This->supportHandle);
256
257   /*
258    * Always returns S_OK even if the end of the stream is reached before the
259    * buffer is filled
260    */
261
262   return S_OK;
263 }
264
265 /***
266  * This method is part of the ISequentialStream interface.
267  *
268  * It writes a block of information to the stream at the current
269  * position. It then moves the current position at the end of the
270  * written block. If the stream is too small to fit the block,
271  * the stream is grown to fit.
272  *
273  * See the documentation of ISequentialStream for more info.
274  */
275 static HRESULT WINAPI HGLOBALStreamImpl_Write(
276                   IStream*     iface,
277                   const void*    pv,          /* [size_is][in] */
278                   ULONG          cb,          /* [in] */
279                   ULONG*         pcbWritten)  /* [out] */
280 {
281   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
282
283   void*          supportBuffer;
284   ULARGE_INTEGER newSize;
285   ULONG          bytesWritten = 0;
286
287   TRACE("(%p, %p, %ld, %p)\n", iface, pv, cb, pcbWritten);
288
289   /*
290    * If the caller is not interested in the number of bytes written,
291    * we use another buffer to avoid "if" statements in the code.
292    */
293   if (pcbWritten == 0)
294     pcbWritten = &bytesWritten;
295
296   if (cb == 0)
297     goto out;
298
299   newSize.u.HighPart = 0;
300   newSize.u.LowPart = This->currentPosition.u.LowPart + cb;
301
302   /*
303    * Verify if we need to grow the stream
304    */
305   if (newSize.u.LowPart > This->streamSize.u.LowPart)
306   {
307     /* grow stream */
308     HRESULT hr = IStream_SetSize(iface, newSize);
309     if (FAILED(hr))
310     {
311       ERR("IStream_SetSize failed with error 0x%08lx\n", hr);
312       return hr;
313     }
314   }
315
316   /*
317    * Lock the buffer in position and copy the data.
318    */
319   supportBuffer = GlobalLock(This->supportHandle);
320
321   memcpy((char *) supportBuffer+This->currentPosition.u.LowPart, pv, cb);
322
323   /*
324    * Move the current position to the new position
325    */
326   This->currentPosition.u.LowPart+=cb;
327
328   /*
329    * Cleanup
330    */
331   GlobalUnlock(This->supportHandle);
332
333 out:
334   /*
335    * Return the number of bytes read.
336    */
337   *pcbWritten = cb;
338
339   return S_OK;
340 }
341
342 /***
343  * This method is part of the IStream interface.
344  *
345  * It will move the current stream pointer according to the parameters
346  * given.
347  *
348  * See the documentation of IStream for more info.
349  */
350 static HRESULT WINAPI HGLOBALStreamImpl_Seek(
351                   IStream*      iface,
352                   LARGE_INTEGER   dlibMove,         /* [in] */
353                   DWORD           dwOrigin,         /* [in] */
354                   ULARGE_INTEGER* plibNewPosition) /* [out] */
355 {
356   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
357
358   ULARGE_INTEGER newPosition;
359
360   TRACE("(%p, %lx%08lx, %ld, %p)\n", iface, dlibMove.u.HighPart,
361         dlibMove.u.LowPart, dwOrigin, plibNewPosition);
362
363   /*
364    * The file pointer is moved depending on the given "function"
365    * parameter.
366    */
367   switch (dwOrigin)
368   {
369     case STREAM_SEEK_SET:
370       newPosition.u.HighPart = 0;
371       newPosition.u.LowPart = 0;
372       break;
373     case STREAM_SEEK_CUR:
374       newPosition = This->currentPosition;
375       break;
376     case STREAM_SEEK_END:
377       newPosition = This->streamSize;
378       break;
379     default:
380       return STG_E_INVALIDFUNCTION;
381   }
382
383   /*
384    * Move the actual file pointer
385    * If the file pointer ends-up after the end of the stream, the next Write operation will
386    * make the file larger. This is how it is documented.
387    */
388   if (dlibMove.QuadPart < 0 && newPosition.QuadPart < -dlibMove.QuadPart) return STG_E_INVALIDFUNCTION;
389
390   newPosition.QuadPart = RtlLargeIntegerAdd(newPosition.QuadPart, dlibMove.QuadPart);
391
392   if (plibNewPosition) *plibNewPosition = newPosition;
393   This->currentPosition = newPosition;
394
395   return S_OK;
396 }
397
398 /***
399  * This method is part of the IStream interface.
400  *
401  * It will change the size of a stream.
402  *
403  * TODO: Switch from small blocks to big blocks and vice versa.
404  *
405  * See the documentation of IStream for more info.
406  */
407 static HRESULT WINAPI HGLOBALStreamImpl_SetSize(
408                                      IStream*      iface,
409                                      ULARGE_INTEGER  libNewSize)   /* [in] */
410 {
411   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
412   HGLOBAL supportHandle;
413
414   TRACE("(%p, %ld)\n", iface, libNewSize.u.LowPart);
415
416   /*
417    * As documented.
418    */
419   if (libNewSize.u.HighPart != 0)
420     return STG_E_INVALIDFUNCTION;
421
422   if (This->streamSize.u.LowPart == libNewSize.u.LowPart)
423     return S_OK;
424
425   /*
426    * Re allocate the HGlobal to fit the new size of the stream.
427    */
428   supportHandle = GlobalReAlloc(This->supportHandle, libNewSize.u.LowPart, 0);
429
430   if (supportHandle == 0)
431     return STG_E_MEDIUMFULL;
432
433   This->supportHandle = supportHandle;
434   This->streamSize.u.LowPart = libNewSize.u.LowPart;
435
436   return S_OK;
437 }
438
439 /***
440  * This method is part of the IStream interface.
441  *
442  * It will copy the 'cb' Bytes to 'pstm' IStream.
443  *
444  * See the documentation of IStream for more info.
445  */
446 static HRESULT WINAPI HGLOBALStreamImpl_CopyTo(
447                                     IStream*      iface,
448                                     IStream*      pstm,         /* [unique][in] */
449                                     ULARGE_INTEGER  cb,           /* [in] */
450                                     ULARGE_INTEGER* pcbRead,      /* [out] */
451                                     ULARGE_INTEGER* pcbWritten)   /* [out] */
452 {
453   HRESULT        hr = S_OK;
454   BYTE           tmpBuffer[128];
455   ULONG          bytesRead, bytesWritten, copySize;
456   ULARGE_INTEGER totalBytesRead;
457   ULARGE_INTEGER totalBytesWritten;
458
459   TRACE("(%p, %p, %ld, %p, %p)\n", iface, pstm,
460         cb.u.LowPart, pcbRead, pcbWritten);
461
462   /*
463    * Sanity check
464    */
465   if ( pstm == 0 )
466     return STG_E_INVALIDPOINTER;
467
468   totalBytesRead.u.LowPart = totalBytesRead.u.HighPart = 0;
469   totalBytesWritten.u.LowPart = totalBytesWritten.u.HighPart = 0;
470
471   /*
472    * use stack to store data temporarly
473    * there is surely more performant way of doing it, for now this basic
474    * implementation will do the job
475    */
476   while ( cb.u.LowPart > 0 )
477   {
478     if ( cb.u.LowPart >= 128 )
479       copySize = 128;
480     else
481       copySize = cb.u.LowPart;
482
483     IStream_Read(iface, tmpBuffer, copySize, &bytesRead);
484
485     totalBytesRead.u.LowPart += bytesRead;
486
487     IStream_Write(pstm, tmpBuffer, bytesRead, &bytesWritten);
488
489     totalBytesWritten.u.LowPart += bytesWritten;
490
491     /*
492      * Check that read & write operations were succesfull
493      */
494     if (bytesRead != bytesWritten)
495     {
496       hr = STG_E_MEDIUMFULL;
497       break;
498     }
499
500     if (bytesRead!=copySize)
501       cb.u.LowPart = 0;
502     else
503       cb.u.LowPart -= bytesRead;
504   }
505
506   /*
507    * Update number of bytes read and written
508    */
509   if (pcbRead)
510   {
511     pcbRead->u.LowPart = totalBytesRead.u.LowPart;
512     pcbRead->u.HighPart = totalBytesRead.u.HighPart;
513   }
514
515   if (pcbWritten)
516   {
517     pcbWritten->u.LowPart = totalBytesWritten.u.LowPart;
518     pcbWritten->u.HighPart = totalBytesWritten.u.HighPart;
519   }
520   return hr;
521 }
522
523 /***
524  * This method is part of the IStream interface.
525  *
526  * For streams supported by HGLOBALS, this function does nothing.
527  * This is what the documentation tells us.
528  *
529  * See the documentation of IStream for more info.
530  */
531 static HRESULT WINAPI HGLOBALStreamImpl_Commit(
532                   IStream*      iface,
533                   DWORD         grfCommitFlags)  /* [in] */
534 {
535   return S_OK;
536 }
537
538 /***
539  * This method is part of the IStream interface.
540  *
541  * For streams supported by HGLOBALS, this function does nothing.
542  * This is what the documentation tells us.
543  *
544  * See the documentation of IStream for more info.
545  */
546 static HRESULT WINAPI HGLOBALStreamImpl_Revert(
547                   IStream* iface)
548 {
549   return S_OK;
550 }
551
552 /***
553  * This method is part of the IStream interface.
554  *
555  * For streams supported by HGLOBALS, this function does nothing.
556  * This is what the documentation tells us.
557  *
558  * See the documentation of IStream for more info.
559  */
560 static HRESULT WINAPI HGLOBALStreamImpl_LockRegion(
561                   IStream*       iface,
562                   ULARGE_INTEGER libOffset,   /* [in] */
563                   ULARGE_INTEGER cb,          /* [in] */
564                   DWORD          dwLockType)  /* [in] */
565 {
566   return STG_E_INVALIDFUNCTION;
567 }
568
569 /*
570  * This method is part of the IStream interface.
571  *
572  * For streams supported by HGLOBALS, this function does nothing.
573  * This is what the documentation tells us.
574  *
575  * See the documentation of IStream for more info.
576  */
577 static HRESULT WINAPI HGLOBALStreamImpl_UnlockRegion(
578                   IStream*       iface,
579                   ULARGE_INTEGER libOffset,   /* [in] */
580                   ULARGE_INTEGER cb,          /* [in] */
581                   DWORD          dwLockType)  /* [in] */
582 {
583   return S_OK;
584 }
585
586 /***
587  * This method is part of the IStream interface.
588  *
589  * This method returns information about the current
590  * stream.
591  *
592  * See the documentation of IStream for more info.
593  */
594 static HRESULT WINAPI HGLOBALStreamImpl_Stat(
595                   IStream*     iface,
596                   STATSTG*     pstatstg,     /* [out] */
597                   DWORD        grfStatFlag)  /* [in] */
598 {
599   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
600
601   memset(pstatstg, 0, sizeof(STATSTG));
602
603   pstatstg->pwcsName = NULL;
604   pstatstg->type     = STGTY_STREAM;
605   pstatstg->cbSize   = This->streamSize;
606
607   return S_OK;
608 }
609
610 static HRESULT WINAPI HGLOBALStreamImpl_Clone(
611                   IStream*     iface,
612                   IStream**    ppstm) /* [out] */
613 {
614   ULARGE_INTEGER dummy;
615   LARGE_INTEGER offset;
616   HRESULT hr;
617   HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
618   TRACE(" Cloning %p (deleteOnRelease=%d seek position=%ld)\n",iface,This->deleteOnRelease,(long)This->currentPosition.QuadPart);
619   hr=CreateStreamOnHGlobal(This->supportHandle, FALSE, ppstm);
620   if(FAILED(hr))
621     return hr;
622   offset.QuadPart=(LONGLONG)This->currentPosition.QuadPart;
623   HGLOBALStreamImpl_Seek(*ppstm,offset,STREAM_SEEK_SET,&dummy);
624   return S_OK;
625 }
626
627 /*
628  * Virtual function table for the HGLOBALStreamImpl class.
629  */
630 static const IStreamVtbl HGLOBALStreamImpl_Vtbl =
631 {
632     HGLOBALStreamImpl_QueryInterface,
633     HGLOBALStreamImpl_AddRef,
634     HGLOBALStreamImpl_Release,
635     HGLOBALStreamImpl_Read,
636     HGLOBALStreamImpl_Write,
637     HGLOBALStreamImpl_Seek,
638     HGLOBALStreamImpl_SetSize,
639     HGLOBALStreamImpl_CopyTo,
640     HGLOBALStreamImpl_Commit,
641     HGLOBALStreamImpl_Revert,
642     HGLOBALStreamImpl_LockRegion,
643     HGLOBALStreamImpl_UnlockRegion,
644     HGLOBALStreamImpl_Stat,
645     HGLOBALStreamImpl_Clone
646 };
647
648 /******************************************************************************
649 ** HGLOBALStreamImpl implementation
650 */
651
652 /***
653  * This is the constructor for the HGLOBALStreamImpl class.
654  *
655  * Params:
656  *    hGlobal          - Handle that will support the stream. can be NULL.
657  *    fDeleteOnRelease - Flag set to TRUE if the HGLOBAL will be released
658  *                       when the IStream object is destroyed.
659  */
660 HGLOBALStreamImpl* HGLOBALStreamImpl_Construct(
661                 HGLOBAL  hGlobal,
662                 BOOL     fDeleteOnRelease)
663 {
664   HGLOBALStreamImpl* newStream;
665
666   newStream = HeapAlloc(GetProcessHeap(), 0, sizeof(HGLOBALStreamImpl));
667
668   if (newStream!=0)
669   {
670     /*
671      * Set-up the virtual function table and reference count.
672      */
673     newStream->lpVtbl = &HGLOBALStreamImpl_Vtbl;
674     newStream->ref    = 0;
675
676     /*
677      * Initialize the support.
678      */
679     newStream->supportHandle = hGlobal;
680     newStream->deleteOnRelease = fDeleteOnRelease;
681
682     /*
683      * This method will allocate a handle if one is not supplied.
684      */
685     if (!newStream->supportHandle)
686     {
687       newStream->supportHandle = GlobalAlloc(GMEM_MOVEABLE | GMEM_NODISCARD |
688                                              GMEM_SHARE, 0);
689     }
690
691     /*
692      * Start the stream at the beginning.
693      */
694     newStream->currentPosition.u.HighPart = 0;
695     newStream->currentPosition.u.LowPart = 0;
696
697     /*
698      * Initialize the size of the stream to the size of the handle.
699      */
700     newStream->streamSize.u.HighPart = 0;
701     newStream->streamSize.u.LowPart  = GlobalSize(newStream->supportHandle);
702   }
703
704   return newStream;
705 }
706
707
708 /***********************************************************************
709  *           CreateStreamOnHGlobal     [OLE32.@]
710  */
711 HRESULT WINAPI CreateStreamOnHGlobal(
712                 HGLOBAL   hGlobal,
713                 BOOL      fDeleteOnRelease,
714                 LPSTREAM* ppstm)
715 {
716   HGLOBALStreamImpl* newStream;
717
718   newStream = HGLOBALStreamImpl_Construct(hGlobal,
719                                           fDeleteOnRelease);
720
721   if (newStream!=NULL)
722   {
723     return IUnknown_QueryInterface((IUnknown*)newStream,
724                                    &IID_IStream,
725                                    (void**)ppstm);
726   }
727
728   return E_OUTOFMEMORY;
729 }
730
731 /***********************************************************************
732  *           GetHGlobalFromStream     [OLE32.@]
733  */
734 HRESULT WINAPI GetHGlobalFromStream(IStream* pstm, HGLOBAL* phglobal)
735 {
736   HGLOBALStreamImpl* pStream;
737
738   if (pstm == NULL)
739     return E_INVALIDARG;
740
741   pStream = (HGLOBALStreamImpl*) pstm;
742
743   /*
744    * Verify that the stream object was created with CreateStreamOnHGlobal.
745    */
746   if (pStream->lpVtbl == &HGLOBALStreamImpl_Vtbl)
747     *phglobal = pStream->supportHandle;
748   else
749   {
750     *phglobal = 0;
751     return E_INVALIDARG;
752   }
753
754   return S_OK;
755 }