Implement StgCreatePropSetStg.
[wine] / dlls / ole32 / stg_stream.c
1 /*
2  * Compound Storage (32 bit version)
3  * Stream implementation
4  *
5  * This file contains the implementation of the stream interface
6  * for streams contained in a compound storage.
7  *
8  * Copyright 1999 Francis Beaudet
9  * Copyright 1999 Thuy Nguyen
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with this library; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24  */
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 "winerror.h"
39 #include "winreg.h"
40 #include "winternl.h"
41 #include "wine/debug.h"
42
43 #include "storage32.h"
44
45 WINE_DEFAULT_DEBUG_CHANNEL(storage);
46
47
48 /*
49  * Virtual function table for the StgStreamImpl class.
50  */
51 static IStreamVtbl StgStreamImpl_Vtbl =
52 {
53     StgStreamImpl_QueryInterface,
54     StgStreamImpl_AddRef,
55     StgStreamImpl_Release,
56     StgStreamImpl_Read,
57     StgStreamImpl_Write,
58     StgStreamImpl_Seek,
59     StgStreamImpl_SetSize,
60     StgStreamImpl_CopyTo,
61     StgStreamImpl_Commit,
62     StgStreamImpl_Revert,
63     StgStreamImpl_LockRegion,
64     StgStreamImpl_UnlockRegion,
65     StgStreamImpl_Stat,
66     StgStreamImpl_Clone
67 };
68
69 /******************************************************************************
70 ** StgStreamImpl implementation
71 */
72
73 /***
74  * This is the constructor for the StgStreamImpl class.
75  *
76  * Params:
77  *    parentStorage - Pointer to the storage that contains the stream to open
78  *    ownerProperty - Index of the property that points to this stream.
79  */
80 StgStreamImpl* StgStreamImpl_Construct(
81                 StorageBaseImpl* parentStorage,
82     DWORD            grfMode,
83     ULONG            ownerProperty)
84 {
85   StgStreamImpl* newStream;
86
87   newStream = HeapAlloc(GetProcessHeap(), 0, sizeof(StgStreamImpl));
88
89   if (newStream!=0)
90   {
91     /*
92      * Set-up the virtual function table and reference count.
93      */
94     newStream->lpVtbl    = &StgStreamImpl_Vtbl;
95     newStream->ref       = 0;
96
97     /*
98      * We want to nail-down the reference to the storage in case the
99      * stream out-lives the storage in the client application.
100      */
101     newStream->parentStorage = parentStorage;
102     IStorage_AddRef((IStorage*)newStream->parentStorage);
103
104     newStream->grfMode = grfMode;
105     newStream->ownerProperty = ownerProperty;
106
107     /*
108      * Start the stream at the beginning.
109      */
110     newStream->currentPosition.u.HighPart = 0;
111     newStream->currentPosition.u.LowPart = 0;
112
113     /*
114      * Initialize the rest of the data.
115      */
116     newStream->streamSize.u.HighPart = 0;
117     newStream->streamSize.u.LowPart  = 0;
118     newStream->bigBlockChain       = 0;
119     newStream->smallBlockChain     = 0;
120
121     /*
122      * Read the size from the property and determine if the blocks forming
123      * this stream are large or small.
124      */
125     StgStreamImpl_OpenBlockChain(newStream);
126   }
127
128   return newStream;
129 }
130
131 /***
132  * This is the destructor of the StgStreamImpl class.
133  *
134  * This method will clean-up all the resources used-up by the given StgStreamImpl
135  * class. The pointer passed-in to this function will be freed and will not
136  * be valid anymore.
137  */
138 void StgStreamImpl_Destroy(StgStreamImpl* This)
139 {
140   TRACE("(%p)\n", This);
141
142   /*
143    * Release the reference we are holding on the parent storage.
144    */
145   IStorage_Release((IStorage*)This->parentStorage);
146   This->parentStorage = 0;
147
148   /*
149    * Make sure we clean-up the block chain stream objects that we were using.
150    */
151   if (This->bigBlockChain != 0)
152   {
153     BlockChainStream_Destroy(This->bigBlockChain);
154     This->bigBlockChain = 0;
155   }
156
157   if (This->smallBlockChain != 0)
158   {
159     SmallBlockChainStream_Destroy(This->smallBlockChain);
160     This->smallBlockChain = 0;
161   }
162
163   /*
164    * Finally, free the memory used-up by the class.
165    */
166   HeapFree(GetProcessHeap(), 0, This);
167 }
168
169 /***
170  * This implements the IUnknown method QueryInterface for this
171  * class
172  */
173 HRESULT WINAPI StgStreamImpl_QueryInterface(
174                   IStream*     iface,
175                   REFIID         riid,        /* [in] */
176                   void**         ppvObject)   /* [iid_is][out] */
177 {
178   StgStreamImpl* const This=(StgStreamImpl*)iface;
179
180   /*
181    * Perform a sanity check on the parameters.
182    */
183   if (ppvObject==0)
184     return E_INVALIDARG;
185
186   /*
187    * Initialize the return parameter.
188    */
189   *ppvObject = 0;
190
191   /*
192    * Compare the riid with the interface IDs implemented by this object.
193    */
194   if (memcmp(&IID_IUnknown, riid, sizeof(IID_IUnknown)) == 0)
195   {
196     *ppvObject = (IStream*)This;
197   }
198   else if (memcmp(&IID_IStream, riid, sizeof(IID_IStream)) == 0)
199   {
200     *ppvObject = (IStream*)This;
201   }
202
203   /*
204    * Check that we obtained an interface.
205    */
206   if ((*ppvObject)==0)
207     return E_NOINTERFACE;
208
209   /*
210    * Query Interface always increases the reference count by one when it is
211    * successful
212    */
213   StgStreamImpl_AddRef(iface);
214
215   return S_OK;
216 }
217
218 /***
219  * This implements the IUnknown method AddRef for this
220  * class
221  */
222 ULONG WINAPI StgStreamImpl_AddRef(
223                 IStream* iface)
224 {
225   StgStreamImpl* const This=(StgStreamImpl*)iface;
226   return InterlockedIncrement(&This->ref);
227 }
228
229 /***
230  * This implements the IUnknown method Release for this
231  * class
232  */
233 ULONG WINAPI StgStreamImpl_Release(
234                 IStream* iface)
235 {
236   StgStreamImpl* const This=(StgStreamImpl*)iface;
237
238   ULONG ref;
239
240   ref = InterlockedDecrement(&This->ref);
241
242   /*
243    * If the reference count goes down to 0, perform suicide.
244    */
245   if (ref==0)
246   {
247     StgStreamImpl_Destroy(This);
248   }
249
250   return ref;
251 }
252
253 /***
254  * This method will open the block chain pointed by the property
255  * that describes the stream.
256  * If the stream's size is null, no chain is opened.
257  */
258 void StgStreamImpl_OpenBlockChain(
259         StgStreamImpl* This)
260 {
261   StgProperty    curProperty;
262   BOOL         readSucessful;
263
264   /*
265    * Make sure no old object is left over.
266    */
267   if (This->smallBlockChain != 0)
268   {
269     SmallBlockChainStream_Destroy(This->smallBlockChain);
270     This->smallBlockChain = 0;
271   }
272
273   if (This->bigBlockChain != 0)
274   {
275     BlockChainStream_Destroy(This->bigBlockChain);
276     This->bigBlockChain = 0;
277   }
278
279   /*
280    * Read the information from the property.
281    */
282   readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
283                                              This->ownerProperty,
284                                              &curProperty);
285
286   if (readSucessful)
287   {
288     This->streamSize = curProperty.size;
289
290     /*
291      * This code supports only streams that are <32 bits in size.
292      */
293     assert(This->streamSize.u.HighPart == 0);
294
295     if(curProperty.startingBlock == BLOCK_END_OF_CHAIN)
296     {
297       assert( (This->streamSize.u.HighPart == 0) && (This->streamSize.u.LowPart == 0) );
298     }
299     else
300     {
301       if ( (This->streamSize.u.HighPart == 0) &&
302            (This->streamSize.u.LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
303       {
304         This->smallBlockChain = SmallBlockChainStream_Construct(
305                                                                 This->parentStorage->ancestorStorage,
306                                                                 This->ownerProperty);
307       }
308       else
309       {
310         This->bigBlockChain = BlockChainStream_Construct(
311                                                          This->parentStorage->ancestorStorage,
312                                                          NULL,
313                                                          This->ownerProperty);
314       }
315     }
316   }
317 }
318
319 /***
320  * This method is part of the ISequentialStream interface.
321  *
322  * It reads a block of information from the stream at the current
323  * position. It then moves the current position at the end of the
324  * read block
325  *
326  * See the documentation of ISequentialStream for more info.
327  */
328 HRESULT WINAPI StgStreamImpl_Read(
329                   IStream*     iface,
330                   void*          pv,        /* [length_is][size_is][out] */
331                   ULONG          cb,        /* [in] */
332                   ULONG*         pcbRead)   /* [out] */
333 {
334   StgStreamImpl* const This=(StgStreamImpl*)iface;
335
336   ULONG bytesReadBuffer;
337   ULONG bytesToReadFromBuffer;
338   HRESULT res = S_FALSE;
339
340   TRACE("(%p, %p, %ld, %p)\n",
341         iface, pv, cb, pcbRead);
342
343   /*
344    * If the caller is not interested in the number of bytes read,
345    * we use another buffer to avoid "if" statements in the code.
346    */
347   if (pcbRead==0)
348     pcbRead = &bytesReadBuffer;
349
350   /*
351    * Using the known size of the stream, calculate the number of bytes
352    * to read from the block chain
353    */
354   bytesToReadFromBuffer = min( This->streamSize.u.LowPart - This->currentPosition.u.LowPart, cb);
355
356   /*
357    * Depending on the type of chain that was opened when the stream was constructed,
358    * we delegate the work to the method that reads the block chains.
359    */
360   if (This->smallBlockChain!=0)
361   {
362     SmallBlockChainStream_ReadAt(This->smallBlockChain,
363                                  This->currentPosition,
364                                  bytesToReadFromBuffer,
365                                  pv,
366                                  pcbRead);
367
368   }
369   else if (This->bigBlockChain!=0)
370   {
371     BlockChainStream_ReadAt(This->bigBlockChain,
372                             This->currentPosition,
373                             bytesToReadFromBuffer,
374                             pv,
375                             pcbRead);
376   }
377   else
378   {
379     /*
380      * Small and big block chains are both NULL. This case will happen
381      * when a stream starts with BLOCK_END_OF_CHAIN and has size zero.
382      */
383
384     *pcbRead = 0;
385     res = S_OK;
386     goto end;
387   }
388
389   /*
390    * We should always be able to read the proper amount of data from the
391    * chain.
392    */
393   assert(bytesToReadFromBuffer == *pcbRead);
394
395   /*
396    * Advance the pointer for the number of positions read.
397    */
398   This->currentPosition.u.LowPart += *pcbRead;
399
400   if(*pcbRead != cb)
401   {
402     WARN("read %ld instead of the required %ld bytes !\n", *pcbRead, cb);
403     /*
404      * this used to return S_FALSE, however MSDN docu says that an app should
405      * be prepared to handle error in case of stream end reached, as *some*
406      * implementations *might* return an error (IOW: most do *not*).
407      * As some program fails on returning S_FALSE, I better use S_OK here.
408      */
409     res = S_OK;
410   }
411   else
412     res = S_OK;
413
414 end:
415   TRACE("<-- %08lx\n", res);
416   return res;
417 }
418
419 /***
420  * This method is part of the ISequentialStream interface.
421  *
422  * It writes a block of information to the stream at the current
423  * position. It then moves the current position at the end of the
424  * written block. If the stream is too small to fit the block,
425  * the stream is grown to fit.
426  *
427  * See the documentation of ISequentialStream for more info.
428  */
429 HRESULT WINAPI StgStreamImpl_Write(
430                   IStream*     iface,
431                   const void*    pv,          /* [size_is][in] */
432                   ULONG          cb,          /* [in] */
433                   ULONG*         pcbWritten)  /* [out] */
434 {
435   StgStreamImpl* const This=(StgStreamImpl*)iface;
436
437   ULARGE_INTEGER newSize;
438   ULONG bytesWritten = 0;
439
440   TRACE("(%p, %p, %ld, %p)\n",
441         iface, pv, cb, pcbWritten);
442
443   /*
444    * Do we have permission to write to this stream?
445    */
446   if (!(This->grfMode & (STGM_WRITE | STGM_READWRITE))) {
447       return STG_E_ACCESSDENIED;
448   }
449
450   if (!pv)
451     return STG_E_INVALIDPOINTER;
452
453   /*
454    * If the caller is not interested in the number of bytes written,
455    * we use another buffer to avoid "if" statements in the code.
456    */
457   if (pcbWritten == 0)
458     pcbWritten = &bytesWritten;
459
460   /*
461    * Initialize the out parameter
462    */
463   *pcbWritten = 0;
464
465   if (cb == 0)
466   {
467     return S_OK;
468   }
469   else
470   {
471     newSize.u.HighPart = 0;
472     newSize.u.LowPart = This->currentPosition.u.LowPart + cb;
473   }
474
475   /*
476    * Verify if we need to grow the stream
477    */
478   if (newSize.u.LowPart > This->streamSize.u.LowPart)
479   {
480     /* grow stream */
481     IStream_SetSize(iface, newSize);
482   }
483
484   /*
485    * Depending on the type of chain that was opened when the stream was constructed,
486    * we delegate the work to the method that readwrites to the block chains.
487    */
488   if (This->smallBlockChain!=0)
489   {
490     SmallBlockChainStream_WriteAt(This->smallBlockChain,
491                                   This->currentPosition,
492                                   cb,
493                                   pv,
494                                   pcbWritten);
495
496   }
497   else if (This->bigBlockChain!=0)
498   {
499     BlockChainStream_WriteAt(This->bigBlockChain,
500                              This->currentPosition,
501                              cb,
502                              pv,
503                              pcbWritten);
504   }
505   else
506     assert(FALSE);
507
508   /*
509    * Advance the position pointer for the number of positions written.
510    */
511   This->currentPosition.u.LowPart += *pcbWritten;
512
513   return S_OK;
514 }
515
516 /***
517  * This method is part of the IStream interface.
518  *
519  * It will move the current stream pointer according to the parameters
520  * given.
521  *
522  * See the documentation of IStream for more info.
523  */
524 HRESULT WINAPI StgStreamImpl_Seek(
525                   IStream*      iface,
526                   LARGE_INTEGER   dlibMove,         /* [in] */
527                   DWORD           dwOrigin,         /* [in] */
528                   ULARGE_INTEGER* plibNewPosition) /* [out] */
529 {
530   StgStreamImpl* const This=(StgStreamImpl*)iface;
531
532   ULARGE_INTEGER newPosition;
533
534   TRACE("(%p, %ld, %ld, %p)\n",
535         iface, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
536
537   /*
538    * The caller is allowed to pass in NULL as the new position return value.
539    * If it happens, we assign it to a dynamic variable to avoid special cases
540    * in the code below.
541    */
542   if (plibNewPosition == 0)
543   {
544     plibNewPosition = &newPosition;
545   }
546
547   /*
548    * The file pointer is moved depending on the given "function"
549    * parameter.
550    */
551   switch (dwOrigin)
552   {
553     case STREAM_SEEK_SET:
554       plibNewPosition->u.HighPart = 0;
555       plibNewPosition->u.LowPart  = 0;
556       break;
557     case STREAM_SEEK_CUR:
558       *plibNewPosition = This->currentPosition;
559       break;
560     case STREAM_SEEK_END:
561       *plibNewPosition = This->streamSize;
562       break;
563     default:
564       return STG_E_INVALIDFUNCTION;
565   }
566
567   plibNewPosition->QuadPart = RtlLargeIntegerAdd( plibNewPosition->QuadPart, dlibMove.QuadPart );
568
569   /*
570    * tell the caller what we calculated
571    */
572   This->currentPosition = *plibNewPosition;
573
574   return S_OK;
575 }
576
577 /***
578  * This method is part of the IStream interface.
579  *
580  * It will change the size of a stream.
581  *
582  * TODO: Switch from small blocks to big blocks and vice versa.
583  *
584  * See the documentation of IStream for more info.
585  */
586 HRESULT WINAPI StgStreamImpl_SetSize(
587                                      IStream*      iface,
588                                      ULARGE_INTEGER  libNewSize)   /* [in] */
589 {
590   StgStreamImpl* const This=(StgStreamImpl*)iface;
591
592   StgProperty    curProperty;
593   BOOL         Success;
594
595   TRACE("(%p, %ld)\n", iface, libNewSize.u.LowPart);
596
597   /*
598    * As documented.
599    */
600   if (libNewSize.u.HighPart != 0)
601     return STG_E_INVALIDFUNCTION;
602
603   /*
604    * Do we have permission?
605    */
606   if (!(This->grfMode & (STGM_WRITE | STGM_READWRITE)))
607     return STG_E_ACCESSDENIED;
608
609   if (This->streamSize.u.LowPart == libNewSize.u.LowPart)
610     return S_OK;
611
612   /*
613    * This will happen if we're creating a stream
614    */
615   if ((This->smallBlockChain == 0) && (This->bigBlockChain == 0))
616   {
617     if (libNewSize.u.LowPart < LIMIT_TO_USE_SMALL_BLOCK)
618     {
619       This->smallBlockChain = SmallBlockChainStream_Construct(
620                                     This->parentStorage->ancestorStorage,
621                                     This->ownerProperty);
622     }
623     else
624     {
625       This->bigBlockChain = BlockChainStream_Construct(
626                                 This->parentStorage->ancestorStorage,
627                                 NULL,
628                                 This->ownerProperty);
629     }
630   }
631
632   /*
633    * Read this stream's property to see if it's small blocks or big blocks
634    */
635   Success = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
636                                        This->ownerProperty,
637                                        &curProperty);
638   /*
639    * Determine if we have to switch from small to big blocks or vice versa
640    */
641   if ( (This->smallBlockChain!=0) &&
642        (curProperty.size.u.LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
643   {
644     if (libNewSize.u.LowPart >= LIMIT_TO_USE_SMALL_BLOCK)
645     {
646       /*
647        * Transform the small block chain into a big block chain
648        */
649       This->bigBlockChain = Storage32Impl_SmallBlocksToBigBlocks(
650                                 This->parentStorage->ancestorStorage,
651                                 &This->smallBlockChain);
652     }
653   }
654
655   if (This->smallBlockChain!=0)
656   {
657     Success = SmallBlockChainStream_SetSize(This->smallBlockChain, libNewSize);
658   }
659   else
660   {
661     Success = BlockChainStream_SetSize(This->bigBlockChain, libNewSize);
662   }
663
664   /*
665    * Write the new information about this stream to the property
666    */
667   Success = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
668                                        This->ownerProperty,
669                                        &curProperty);
670
671   curProperty.size.u.HighPart = libNewSize.u.HighPart;
672   curProperty.size.u.LowPart = libNewSize.u.LowPart;
673
674   if (Success)
675   {
676     StorageImpl_WriteProperty(This->parentStorage->ancestorStorage,
677                                 This->ownerProperty,
678                                 &curProperty);
679   }
680
681   This->streamSize = libNewSize;
682
683   return S_OK;
684 }
685
686 /***
687  * This method is part of the IStream interface.
688  *
689  * It will copy the 'cb' Bytes to 'pstm' IStream.
690  *
691  * See the documentation of IStream for more info.
692  */
693 HRESULT WINAPI StgStreamImpl_CopyTo(
694                                     IStream*      iface,
695                                     IStream*      pstm,         /* [unique][in] */
696                                     ULARGE_INTEGER  cb,           /* [in] */
697                                     ULARGE_INTEGER* pcbRead,      /* [out] */
698                                     ULARGE_INTEGER* pcbWritten)   /* [out] */
699 {
700   HRESULT        hr = S_OK;
701   BYTE           tmpBuffer[128];
702   ULONG          bytesRead, bytesWritten, copySize;
703   ULARGE_INTEGER totalBytesRead;
704   ULARGE_INTEGER totalBytesWritten;
705
706   TRACE("(%p, %p, %ld, %p, %p)\n",
707         iface, pstm, cb.u.LowPart, pcbRead, pcbWritten);
708
709   /*
710    * Sanity check
711    */
712   if ( pstm == 0 )
713     return STG_E_INVALIDPOINTER;
714
715   totalBytesRead.u.LowPart = totalBytesRead.u.HighPart = 0;
716   totalBytesWritten.u.LowPart = totalBytesWritten.u.HighPart = 0;
717
718   /*
719    * use stack to store data temporarily
720    * there is surely a more performant way of doing it, for now this basic
721    * implementation will do the job
722    */
723   while ( cb.u.LowPart > 0 )
724   {
725     if ( cb.u.LowPart >= 128 )
726       copySize = 128;
727     else
728       copySize = cb.u.LowPart;
729
730     IStream_Read(iface, tmpBuffer, copySize, &bytesRead);
731
732     totalBytesRead.u.LowPart += bytesRead;
733
734     IStream_Write(pstm, tmpBuffer, bytesRead, &bytesWritten);
735
736     totalBytesWritten.u.LowPart += bytesWritten;
737
738     /*
739      * Check that read & write operations were successful
740      */
741     if (bytesRead != bytesWritten)
742     {
743       hr = STG_E_MEDIUMFULL;
744       break;
745     }
746
747     if (bytesRead!=copySize)
748       cb.u.LowPart = 0;
749     else
750       cb.u.LowPart -= bytesRead;
751   }
752
753   /*
754    * Update number of bytes read and written
755    */
756   if (pcbRead)
757   {
758     pcbRead->u.LowPart = totalBytesRead.u.LowPart;
759     pcbRead->u.HighPart = totalBytesRead.u.HighPart;
760   }
761
762   if (pcbWritten)
763   {
764     pcbWritten->u.LowPart = totalBytesWritten.u.LowPart;
765     pcbWritten->u.HighPart = totalBytesWritten.u.HighPart;
766   }
767   return hr;
768 }
769
770 /***
771  * This method is part of the IStream interface.
772  *
773  * For streams contained in structured storages, this method
774  * does nothing. This is what the documentation tells us.
775  *
776  * See the documentation of IStream for more info.
777  */
778 HRESULT WINAPI StgStreamImpl_Commit(
779                   IStream*      iface,
780                   DWORD           grfCommitFlags)  /* [in] */
781 {
782   return S_OK;
783 }
784
785 /***
786  * This method is part of the IStream interface.
787  *
788  * For streams contained in structured storages, this method
789  * does nothing. This is what the documentation tells us.
790  *
791  * See the documentation of IStream for more info.
792  */
793 HRESULT WINAPI StgStreamImpl_Revert(
794                   IStream* iface)
795 {
796   return S_OK;
797 }
798
799 HRESULT WINAPI StgStreamImpl_LockRegion(
800                                         IStream*     iface,
801                                         ULARGE_INTEGER libOffset,   /* [in] */
802                                         ULARGE_INTEGER cb,          /* [in] */
803                                         DWORD          dwLockType)  /* [in] */
804 {
805   FIXME("not implemented!\n");
806   return E_NOTIMPL;
807 }
808
809 HRESULT WINAPI StgStreamImpl_UnlockRegion(
810                                           IStream*     iface,
811                                           ULARGE_INTEGER libOffset,   /* [in] */
812                                           ULARGE_INTEGER cb,          /* [in] */
813                                           DWORD          dwLockType)  /* [in] */
814 {
815   FIXME("not implemented!\n");
816   return E_NOTIMPL;
817 }
818
819 /***
820  * This method is part of the IStream interface.
821  *
822  * This method returns information about the current
823  * stream.
824  *
825  * See the documentation of IStream for more info.
826  */
827 HRESULT WINAPI StgStreamImpl_Stat(
828                   IStream*     iface,
829                   STATSTG*       pstatstg,     /* [out] */
830                   DWORD          grfStatFlag)  /* [in] */
831 {
832   StgStreamImpl* const This=(StgStreamImpl*)iface;
833
834   StgProperty    curProperty;
835   BOOL         readSucessful;
836
837   /*
838    * Read the information from the property.
839    */
840   readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
841                                              This->ownerProperty,
842                                              &curProperty);
843
844   if (readSucessful)
845   {
846     StorageUtl_CopyPropertyToSTATSTG(pstatstg,
847                                      &curProperty,
848                                      grfStatFlag);
849
850     pstatstg->grfMode = This->grfMode;
851
852     return S_OK;
853   }
854
855   return E_FAIL;
856 }
857
858 /***
859  * This method is part of the IStream interface.
860  *
861  * This method returns a clone of the interface that allows for
862  * another seek pointer
863  *
864  * See the documentation of IStream for more info.
865  *
866  * I am not totally sure what I am doing here but I presume that this
867  * should be basically as simple as creating a new stream with the same
868  * parent etc and positioning its seek cursor.
869  */
870 HRESULT WINAPI StgStreamImpl_Clone(
871                                    IStream*     iface,
872                                    IStream**    ppstm) /* [out] */
873 {
874   StgStreamImpl* const This=(StgStreamImpl*)iface;
875   HRESULT hres;
876   StgStreamImpl* new_stream;
877   LARGE_INTEGER seek_pos;
878
879   /*
880    * Sanity check
881    */
882   if ( ppstm == 0 )
883     return STG_E_INVALIDPOINTER;
884
885   new_stream = StgStreamImpl_Construct (This->parentStorage, This->grfMode, This->ownerProperty);
886
887   if (!new_stream)
888     return STG_E_INSUFFICIENTMEMORY; /* Currently the only reason for new_stream=0 */
889
890   *ppstm = (IStream*) new_stream;
891   seek_pos.QuadPart = This->currentPosition.QuadPart;
892
893   hres=StgStreamImpl_Seek (*ppstm, seek_pos, STREAM_SEEK_SET, NULL);
894
895   assert (SUCCEEDED(hres));
896
897   return S_OK;
898 }