Don't reregister ProgIds over and over, also write out the main key
[wine.git] / dlls / ole32 / stg_stream.c
blob984b43be8762d5e90d8569cbb3217ea4ed0c6535
1 /*
2 * Compound Storage (32 bit version)
3 * Stream implementation
5 * This file contains the implementation of the stream interface
6 * for streams contained in a compound storage.
8 * Copyright 1999 Francis Beaudet
9 * Copyright 1999 Thuy Nguyen
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.
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.
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
26 #include <assert.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <string.h>
32 #define COBJMACROS
33 #define NONAMELESSUNION
34 #define NONAMELESSSTRUCT
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"
43 #include "storage32.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(storage);
49 * Virtual function table for the StgStreamImpl class.
51 static IStreamVtbl StgStreamImpl_Vtbl =
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
69 /******************************************************************************
70 ** StgStreamImpl implementation
73 /***
74 * This is the constructor for the StgStreamImpl class.
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.
80 StgStreamImpl* StgStreamImpl_Construct(
81 StorageBaseImpl* parentStorage,
82 DWORD grfMode,
83 ULONG ownerProperty)
85 StgStreamImpl* newStream;
87 newStream = HeapAlloc(GetProcessHeap(), 0, sizeof(StgStreamImpl));
89 if (newStream!=0)
92 * Set-up the virtual function table and reference count.
94 newStream->lpVtbl = &StgStreamImpl_Vtbl;
95 newStream->ref = 0;
98 * We want to nail-down the reference to the storage in case the
99 * stream out-lives the storage in the client application.
101 newStream->parentStorage = parentStorage;
102 IStorage_AddRef((IStorage*)newStream->parentStorage);
104 newStream->grfMode = grfMode;
105 newStream->ownerProperty = ownerProperty;
108 * Start the stream at the beginning.
110 newStream->currentPosition.u.HighPart = 0;
111 newStream->currentPosition.u.LowPart = 0;
114 * Initialize the rest of the data.
116 newStream->streamSize.u.HighPart = 0;
117 newStream->streamSize.u.LowPart = 0;
118 newStream->bigBlockChain = 0;
119 newStream->smallBlockChain = 0;
122 * Read the size from the property and determine if the blocks forming
123 * this stream are large or small.
125 StgStreamImpl_OpenBlockChain(newStream);
128 return newStream;
131 /***
132 * This is the destructor of the StgStreamImpl class.
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.
138 void StgStreamImpl_Destroy(StgStreamImpl* This)
140 TRACE("(%p)\n", This);
143 * Release the reference we are holding on the parent storage.
145 IStorage_Release((IStorage*)This->parentStorage);
146 This->parentStorage = 0;
149 * Make sure we clean-up the block chain stream objects that we were using.
151 if (This->bigBlockChain != 0)
153 BlockChainStream_Destroy(This->bigBlockChain);
154 This->bigBlockChain = 0;
157 if (This->smallBlockChain != 0)
159 SmallBlockChainStream_Destroy(This->smallBlockChain);
160 This->smallBlockChain = 0;
164 * Finally, free the memory used-up by the class.
166 HeapFree(GetProcessHeap(), 0, This);
169 /***
170 * This implements the IUnknown method QueryInterface for this
171 * class
173 HRESULT WINAPI StgStreamImpl_QueryInterface(
174 IStream* iface,
175 REFIID riid, /* [in] */
176 void** ppvObject) /* [iid_is][out] */
178 StgStreamImpl* const This=(StgStreamImpl*)iface;
181 * Perform a sanity check on the parameters.
183 if (ppvObject==0)
184 return E_INVALIDARG;
187 * Initialize the return parameter.
189 *ppvObject = 0;
192 * Compare the riid with the interface IDs implemented by this object.
194 if (memcmp(&IID_IUnknown, riid, sizeof(IID_IUnknown)) == 0)
196 *ppvObject = (IStream*)This;
198 else if (memcmp(&IID_IStream, riid, sizeof(IID_IStream)) == 0)
200 *ppvObject = (IStream*)This;
204 * Check that we obtained an interface.
206 if ((*ppvObject)==0)
207 return E_NOINTERFACE;
210 * Query Interface always increases the reference count by one when it is
211 * successful
213 StgStreamImpl_AddRef(iface);
215 return S_OK;
218 /***
219 * This implements the IUnknown method AddRef for this
220 * class
222 ULONG WINAPI StgStreamImpl_AddRef(
223 IStream* iface)
225 StgStreamImpl* const This=(StgStreamImpl*)iface;
226 return InterlockedIncrement(&This->ref);
229 /***
230 * This implements the IUnknown method Release for this
231 * class
233 ULONG WINAPI StgStreamImpl_Release(
234 IStream* iface)
236 StgStreamImpl* const This=(StgStreamImpl*)iface;
238 ULONG ref;
240 ref = InterlockedDecrement(&This->ref);
243 * If the reference count goes down to 0, perform suicide.
245 if (ref==0)
247 StgStreamImpl_Destroy(This);
250 return ref;
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.
258 void StgStreamImpl_OpenBlockChain(
259 StgStreamImpl* This)
261 StgProperty curProperty;
262 BOOL readSucessful;
265 * Make sure no old object is left over.
267 if (This->smallBlockChain != 0)
269 SmallBlockChainStream_Destroy(This->smallBlockChain);
270 This->smallBlockChain = 0;
273 if (This->bigBlockChain != 0)
275 BlockChainStream_Destroy(This->bigBlockChain);
276 This->bigBlockChain = 0;
280 * Read the information from the property.
282 readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
283 This->ownerProperty,
284 &curProperty);
286 if (readSucessful)
288 This->streamSize = curProperty.size;
291 * This code supports only streams that are <32 bits in size.
293 assert(This->streamSize.u.HighPart == 0);
295 if(curProperty.startingBlock == BLOCK_END_OF_CHAIN)
297 assert( (This->streamSize.u.HighPart == 0) && (This->streamSize.u.LowPart == 0) );
299 else
301 if ( (This->streamSize.u.HighPart == 0) &&
302 (This->streamSize.u.LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
304 This->smallBlockChain = SmallBlockChainStream_Construct(
305 This->parentStorage->ancestorStorage,
306 This->ownerProperty);
308 else
310 This->bigBlockChain = BlockChainStream_Construct(
311 This->parentStorage->ancestorStorage,
312 NULL,
313 This->ownerProperty);
319 /***
320 * This method is part of the ISequentialStream interface.
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
326 * See the documentation of ISequentialStream for more info.
328 HRESULT WINAPI StgStreamImpl_Read(
329 IStream* iface,
330 void* pv, /* [length_is][size_is][out] */
331 ULONG cb, /* [in] */
332 ULONG* pcbRead) /* [out] */
334 StgStreamImpl* const This=(StgStreamImpl*)iface;
336 ULONG bytesReadBuffer;
337 ULONG bytesToReadFromBuffer;
338 HRESULT res = S_FALSE;
340 TRACE("(%p, %p, %ld, %p)\n",
341 iface, pv, cb, pcbRead);
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.
347 if (pcbRead==0)
348 pcbRead = &bytesReadBuffer;
351 * Using the known size of the stream, calculate the number of bytes
352 * to read from the block chain
354 bytesToReadFromBuffer = min( This->streamSize.u.LowPart - This->currentPosition.u.LowPart, cb);
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.
360 if (This->smallBlockChain!=0)
362 SmallBlockChainStream_ReadAt(This->smallBlockChain,
363 This->currentPosition,
364 bytesToReadFromBuffer,
366 pcbRead);
369 else if (This->bigBlockChain!=0)
371 BlockChainStream_ReadAt(This->bigBlockChain,
372 This->currentPosition,
373 bytesToReadFromBuffer,
375 pcbRead);
377 else
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.
384 *pcbRead = 0;
385 res = S_OK;
386 goto end;
390 * We should always be able to read the proper amount of data from the
391 * chain.
393 assert(bytesToReadFromBuffer == *pcbRead);
396 * Advance the pointer for the number of positions read.
398 This->currentPosition.u.LowPart += *pcbRead;
400 if(*pcbRead != cb)
402 WARN("read %ld instead of the required %ld bytes !\n", *pcbRead, cb);
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.
409 res = S_OK;
411 else
412 res = S_OK;
414 end:
415 TRACE("<-- %08lx\n", res);
416 return res;
419 /***
420 * This method is part of the ISequentialStream interface.
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.
427 * See the documentation of ISequentialStream for more info.
429 HRESULT WINAPI StgStreamImpl_Write(
430 IStream* iface,
431 const void* pv, /* [size_is][in] */
432 ULONG cb, /* [in] */
433 ULONG* pcbWritten) /* [out] */
435 StgStreamImpl* const This=(StgStreamImpl*)iface;
437 ULARGE_INTEGER newSize;
438 ULONG bytesWritten = 0;
440 TRACE("(%p, %p, %ld, %p)\n",
441 iface, pv, cb, pcbWritten);
444 * Do we have permission to write to this stream?
446 if (!(This->grfMode & (STGM_WRITE | STGM_READWRITE))) {
447 return STG_E_ACCESSDENIED;
451 * If the caller is not interested in the number of bytes written,
452 * we use another buffer to avoid "if" statements in the code.
454 if (pcbWritten == 0)
455 pcbWritten = &bytesWritten;
458 * Initialize the out parameter
460 *pcbWritten = 0;
462 if (cb == 0)
464 return S_OK;
466 else
468 newSize.u.HighPart = 0;
469 newSize.u.LowPart = This->currentPosition.u.LowPart + cb;
473 * Verify if we need to grow the stream
475 if (newSize.u.LowPart > This->streamSize.u.LowPart)
477 /* grow stream */
478 IStream_SetSize(iface, newSize);
482 * Depending on the type of chain that was opened when the stream was constructed,
483 * we delegate the work to the method that readwrites to the block chains.
485 if (This->smallBlockChain!=0)
487 SmallBlockChainStream_WriteAt(This->smallBlockChain,
488 This->currentPosition,
491 pcbWritten);
494 else if (This->bigBlockChain!=0)
496 BlockChainStream_WriteAt(This->bigBlockChain,
497 This->currentPosition,
500 pcbWritten);
502 else
503 assert(FALSE);
506 * Advance the position pointer for the number of positions written.
508 This->currentPosition.u.LowPart += *pcbWritten;
510 return S_OK;
513 /***
514 * This method is part of the IStream interface.
516 * It will move the current stream pointer according to the parameters
517 * given.
519 * See the documentation of IStream for more info.
521 HRESULT WINAPI StgStreamImpl_Seek(
522 IStream* iface,
523 LARGE_INTEGER dlibMove, /* [in] */
524 DWORD dwOrigin, /* [in] */
525 ULARGE_INTEGER* plibNewPosition) /* [out] */
527 StgStreamImpl* const This=(StgStreamImpl*)iface;
529 ULARGE_INTEGER newPosition;
531 TRACE("(%p, %ld, %ld, %p)\n",
532 iface, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
535 * The caller is allowed to pass in NULL as the new position return value.
536 * If it happens, we assign it to a dynamic variable to avoid special cases
537 * in the code below.
539 if (plibNewPosition == 0)
541 plibNewPosition = &newPosition;
545 * The file pointer is moved depending on the given "function"
546 * parameter.
548 switch (dwOrigin)
550 case STREAM_SEEK_SET:
551 plibNewPosition->u.HighPart = 0;
552 plibNewPosition->u.LowPart = 0;
553 break;
554 case STREAM_SEEK_CUR:
555 *plibNewPosition = This->currentPosition;
556 break;
557 case STREAM_SEEK_END:
558 *plibNewPosition = This->streamSize;
559 break;
560 default:
561 return STG_E_INVALIDFUNCTION;
564 plibNewPosition->QuadPart = RtlLargeIntegerAdd( plibNewPosition->QuadPart, dlibMove.QuadPart );
567 * tell the caller what we calculated
569 This->currentPosition = *plibNewPosition;
571 return S_OK;
574 /***
575 * This method is part of the IStream interface.
577 * It will change the size of a stream.
579 * TODO: Switch from small blocks to big blocks and vice versa.
581 * See the documentation of IStream for more info.
583 HRESULT WINAPI StgStreamImpl_SetSize(
584 IStream* iface,
585 ULARGE_INTEGER libNewSize) /* [in] */
587 StgStreamImpl* const This=(StgStreamImpl*)iface;
589 StgProperty curProperty;
590 BOOL Success;
592 TRACE("(%p, %ld)\n", iface, libNewSize.u.LowPart);
595 * As documented.
597 if (libNewSize.u.HighPart != 0)
598 return STG_E_INVALIDFUNCTION;
601 * Do we have permission?
603 if (!(This->grfMode & (STGM_WRITE | STGM_READWRITE)))
604 return STG_E_ACCESSDENIED;
606 if (This->streamSize.u.LowPart == libNewSize.u.LowPart)
607 return S_OK;
610 * This will happen if we're creating a stream
612 if ((This->smallBlockChain == 0) && (This->bigBlockChain == 0))
614 if (libNewSize.u.LowPart < LIMIT_TO_USE_SMALL_BLOCK)
616 This->smallBlockChain = SmallBlockChainStream_Construct(
617 This->parentStorage->ancestorStorage,
618 This->ownerProperty);
620 else
622 This->bigBlockChain = BlockChainStream_Construct(
623 This->parentStorage->ancestorStorage,
624 NULL,
625 This->ownerProperty);
630 * Read this stream's property to see if it's small blocks or big blocks
632 Success = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
633 This->ownerProperty,
634 &curProperty);
636 * Determine if we have to switch from small to big blocks or vice versa
638 if ( (This->smallBlockChain!=0) &&
639 (curProperty.size.u.LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
641 if (libNewSize.u.LowPart >= LIMIT_TO_USE_SMALL_BLOCK)
644 * Transform the small block chain into a big block chain
646 This->bigBlockChain = Storage32Impl_SmallBlocksToBigBlocks(
647 This->parentStorage->ancestorStorage,
648 &This->smallBlockChain);
652 if (This->smallBlockChain!=0)
654 Success = SmallBlockChainStream_SetSize(This->smallBlockChain, libNewSize);
656 else
658 Success = BlockChainStream_SetSize(This->bigBlockChain, libNewSize);
662 * Write the new information about this stream to the property
664 Success = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
665 This->ownerProperty,
666 &curProperty);
668 curProperty.size.u.HighPart = libNewSize.u.HighPart;
669 curProperty.size.u.LowPart = libNewSize.u.LowPart;
671 if (Success)
673 StorageImpl_WriteProperty(This->parentStorage->ancestorStorage,
674 This->ownerProperty,
675 &curProperty);
678 This->streamSize = libNewSize;
680 return S_OK;
683 /***
684 * This method is part of the IStream interface.
686 * It will copy the 'cb' Bytes to 'pstm' IStream.
688 * See the documentation of IStream for more info.
690 HRESULT WINAPI StgStreamImpl_CopyTo(
691 IStream* iface,
692 IStream* pstm, /* [unique][in] */
693 ULARGE_INTEGER cb, /* [in] */
694 ULARGE_INTEGER* pcbRead, /* [out] */
695 ULARGE_INTEGER* pcbWritten) /* [out] */
697 HRESULT hr = S_OK;
698 BYTE tmpBuffer[128];
699 ULONG bytesRead, bytesWritten, copySize;
700 ULARGE_INTEGER totalBytesRead;
701 ULARGE_INTEGER totalBytesWritten;
703 TRACE("(%p, %p, %ld, %p, %p)\n",
704 iface, pstm, cb.u.LowPart, pcbRead, pcbWritten);
707 * Sanity check
709 if ( pstm == 0 )
710 return STG_E_INVALIDPOINTER;
712 totalBytesRead.u.LowPart = totalBytesRead.u.HighPart = 0;
713 totalBytesWritten.u.LowPart = totalBytesWritten.u.HighPart = 0;
716 * use stack to store data temporarily
717 * there is surely a more performant way of doing it, for now this basic
718 * implementation will do the job
720 while ( cb.u.LowPart > 0 )
722 if ( cb.u.LowPart >= 128 )
723 copySize = 128;
724 else
725 copySize = cb.u.LowPart;
727 IStream_Read(iface, tmpBuffer, copySize, &bytesRead);
729 totalBytesRead.u.LowPart += bytesRead;
731 IStream_Write(pstm, tmpBuffer, bytesRead, &bytesWritten);
733 totalBytesWritten.u.LowPart += bytesWritten;
736 * Check that read & write operations were successful
738 if (bytesRead != bytesWritten)
740 hr = STG_E_MEDIUMFULL;
741 break;
744 if (bytesRead!=copySize)
745 cb.u.LowPart = 0;
746 else
747 cb.u.LowPart -= bytesRead;
751 * Update number of bytes read and written
753 if (pcbRead)
755 pcbRead->u.LowPart = totalBytesRead.u.LowPart;
756 pcbRead->u.HighPart = totalBytesRead.u.HighPart;
759 if (pcbWritten)
761 pcbWritten->u.LowPart = totalBytesWritten.u.LowPart;
762 pcbWritten->u.HighPart = totalBytesWritten.u.HighPart;
764 return hr;
767 /***
768 * This method is part of the IStream interface.
770 * For streams contained in structured storages, this method
771 * does nothing. This is what the documentation tells us.
773 * See the documentation of IStream for more info.
775 HRESULT WINAPI StgStreamImpl_Commit(
776 IStream* iface,
777 DWORD grfCommitFlags) /* [in] */
779 return S_OK;
782 /***
783 * This method is part of the IStream interface.
785 * For streams contained in structured storages, this method
786 * does nothing. This is what the documentation tells us.
788 * See the documentation of IStream for more info.
790 HRESULT WINAPI StgStreamImpl_Revert(
791 IStream* iface)
793 return S_OK;
796 HRESULT WINAPI StgStreamImpl_LockRegion(
797 IStream* iface,
798 ULARGE_INTEGER libOffset, /* [in] */
799 ULARGE_INTEGER cb, /* [in] */
800 DWORD dwLockType) /* [in] */
802 FIXME("not implemented!\n");
803 return E_NOTIMPL;
806 HRESULT WINAPI StgStreamImpl_UnlockRegion(
807 IStream* iface,
808 ULARGE_INTEGER libOffset, /* [in] */
809 ULARGE_INTEGER cb, /* [in] */
810 DWORD dwLockType) /* [in] */
812 FIXME("not implemented!\n");
813 return E_NOTIMPL;
816 /***
817 * This method is part of the IStream interface.
819 * This method returns information about the current
820 * stream.
822 * See the documentation of IStream for more info.
824 HRESULT WINAPI StgStreamImpl_Stat(
825 IStream* iface,
826 STATSTG* pstatstg, /* [out] */
827 DWORD grfStatFlag) /* [in] */
829 StgStreamImpl* const This=(StgStreamImpl*)iface;
831 StgProperty curProperty;
832 BOOL readSucessful;
835 * Read the information from the property.
837 readSucessful = StorageImpl_ReadProperty(This->parentStorage->ancestorStorage,
838 This->ownerProperty,
839 &curProperty);
841 if (readSucessful)
843 StorageUtl_CopyPropertyToSTATSTG(pstatstg,
844 &curProperty,
845 grfStatFlag);
847 pstatstg->grfMode = This->grfMode;
849 return S_OK;
852 return E_FAIL;
855 /***
856 * This method is part of the IStream interface.
858 * This method returns a clone of the interface that allows for
859 * another seek pointer
861 * See the documentation of IStream for more info.
863 * I am not totally sure what I am doing here but I presume that this
864 * should be basically as simple as creating a new stream with the same
865 * parent etc and positioning its seek cursor.
867 HRESULT WINAPI StgStreamImpl_Clone(
868 IStream* iface,
869 IStream** ppstm) /* [out] */
871 StgStreamImpl* const This=(StgStreamImpl*)iface;
872 HRESULT hres;
873 StgStreamImpl* new_stream;
874 LARGE_INTEGER seek_pos;
877 * Sanity check
879 if ( ppstm == 0 )
880 return STG_E_INVALIDPOINTER;
882 new_stream = StgStreamImpl_Construct (This->parentStorage, This->grfMode, This->ownerProperty);
884 if (!new_stream)
885 return STG_E_INSUFFICIENTMEMORY; /* Currently the only reason for new_stream=0 */
887 *ppstm = (IStream*) new_stream;
888 seek_pos.QuadPart = This->currentPosition.QuadPart;
890 hres=StgStreamImpl_Seek (*ppstm, seek_pos, STREAM_SEEK_SET, NULL);
892 assert (SUCCEEDED(hres));
894 return S_OK;