2 * Global memory implementation of ILockBytes.
4 * Copyright 1999 Thuy Nguyen
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
27 #define NONAMELESSUNION
31 #include "wine/winbase16.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
43 /******************************************************************************
44 * HGLOBALLockBytesImpl16 definition.
46 * This class implements the ILockBytes interface and represents a byte array
47 * object supported by an HGLOBAL pointer.
49 struct HGLOBALLockBytesImpl16
51 ILockBytes16 ILockBytes16_iface
;
55 * Support for the LockBytes object
57 HGLOBAL16 supportHandle
;
60 * This flag is TRUE if the HGLOBAL is destroyed when the object
61 * is finally released.
65 * Helper variable that contains the size of the byte array
67 ULARGE_INTEGER byteArraySize
;
70 typedef struct HGLOBALLockBytesImpl16 HGLOBALLockBytesImpl16
;
72 /******************************************************************************
74 * HGLOBALLockBytesImpl16 implementation
78 static inline HGLOBALLockBytesImpl16
*impl_from_ILockBytes16(ILockBytes16
*iface
)
80 return CONTAINING_RECORD(iface
, HGLOBALLockBytesImpl16
, ILockBytes16_iface
);
83 /******************************************************************************
84 * This is the constructor for the HGLOBALLockBytesImpl16 class.
87 * hGlobal - Handle that will support the stream. can be NULL.
88 * fDeleteOnRelease - Flag set to TRUE if the HGLOBAL16 will be released
89 * when the IStream object is destroyed.
91 static HGLOBALLockBytesImpl16
*
92 HGLOBALLockBytesImpl16_Construct(HGLOBAL16 hGlobal
,
93 BOOL16 fDeleteOnRelease
)
95 HGLOBALLockBytesImpl16
* newLockBytes
;
97 static ILockBytes16Vtbl vt16
;
98 static SEGPTR msegvt16
;
99 HMODULE16 hcomp
= GetModuleHandle16("OLE2");
102 TRACE("(%x,%d)\n",hGlobal
,fDeleteOnRelease
);
103 newLockBytes
= HeapAlloc(GetProcessHeap(), 0, sizeof(HGLOBALLockBytesImpl16
));
104 if (newLockBytes
== NULL
)
108 * Set up the virtual function table and reference count.
112 #define VTENT(x) vt16.x = (void*)GetProcAddress16(hcomp,"HGLOBALLockBytesImpl16_"#x);assert(vt16.x)
113 VTENT(QueryInterface
);
124 msegvt16
= MapLS( &vt16
);
126 newLockBytes
->ILockBytes16_iface
.lpVtbl
= (const ILockBytes16Vtbl
*)msegvt16
;
127 newLockBytes
->ref
= 0;
129 * Initialize the support.
131 newLockBytes
->supportHandle
= hGlobal
;
132 newLockBytes
->deleteOnRelease
= fDeleteOnRelease
;
135 * This method will allocate a handle if one is not supplied.
137 if (newLockBytes
->supportHandle
== 0)
138 newLockBytes
->supportHandle
= GlobalAlloc16(GMEM_MOVEABLE
| GMEM_NODISCARD
, 0);
141 * Initialize the size of the array to the size of the handle.
143 newLockBytes
->byteArraySize
.u
.HighPart
= 0;
144 newLockBytes
->byteArraySize
.u
.LowPart
= GlobalSize16(
145 newLockBytes
->supportHandle
);
147 return (HGLOBALLockBytesImpl16
*)MapLS(newLockBytes
);
150 /******************************************************************************
151 * This is the destructor of the HGLOBALStreamImpl class.
153 * This method will clean-up all the resources used-up by the given
154 * HGLOBALLockBytesImpl16 class. The pointer passed-in to this function will be
155 * freed and will not be valid anymore.
157 static void HGLOBALLockBytesImpl16_Destroy(HGLOBALLockBytesImpl16
* This
)
161 * Release the HGlobal if the constructor asked for that.
163 if (This
->deleteOnRelease
)
165 GlobalFree16(This
->supportHandle
);
166 This
->supportHandle
= 0;
170 * Finally, free the memory used-up by the class.
172 HeapFree(GetProcessHeap(), 0, This
);
175 /******************************************************************************
176 * This implements the IUnknown method AddRef for this
179 ULONG CDECL
HGLOBALLockBytesImpl16_AddRef(ILockBytes16
* iface
)
181 HGLOBALLockBytesImpl16
* const This
= impl_from_ILockBytes16(iface
);
183 TRACE("(%p)\n",This
);
185 return InterlockedIncrement(&This
->ref
);
189 /******************************************************************************
190 * This implements the IUnknown method QueryInterface for this
193 HRESULT CDECL
HGLOBALLockBytesImpl16_QueryInterface(
194 ILockBytes16
* iface
, /* [in] SEGPTR */
195 REFIID riid
, /* [in] */
196 void** ppvObject
) /* [out][iid_is] (ptr to SEGPTR!) */
198 HGLOBALLockBytesImpl16
* const This
= MapSL((SEGPTR
)iface
);
200 TRACE("(%p,%s,%p)\n",iface
,debugstr_guid(riid
),ppvObject
);
202 * Perform a sanity check on the parameters.
208 * Initialize the return parameter.
212 * Compare the riid with the interface IDs implemented by this object.
214 if ( !memcmp(&IID_IUnknown
, riid
, sizeof(IID_IUnknown
)) ||
215 !memcmp(&IID_ILockBytes
, riid
, sizeof(IID_ILockBytes
))
217 *ppvObject
= (void*)iface
;
220 * Check that we obtained an interface.
222 if ((*ppvObject
)==0) {
223 FIXME("Unknown IID %s\n", debugstr_guid(riid
));
224 return E_NOINTERFACE
;
228 * Query Interface always increases the reference count by one when it is
231 HGLOBALLockBytesImpl16_AddRef(&This
->ILockBytes16_iface
);
236 /******************************************************************************
237 * This implements the IUnknown method Release for this
240 ULONG CDECL
HGLOBALLockBytesImpl16_Release(ILockBytes16
* iface
)
242 HGLOBALLockBytesImpl16
* const This
= impl_from_ILockBytes16(iface
);
245 TRACE("(%p)\n",This
);
247 ref
= InterlockedDecrement(&This
->ref
);
250 * If the reference count goes down to 0, perform suicide.
253 HGLOBALLockBytesImpl16_Destroy(This
);
257 /******************************************************************************
258 * This method is part of the ILockBytes interface.
260 * It reads a block of information from the byte array at the specified
263 * See the documentation of ILockBytes for more info.
265 HRESULT CDECL
HGLOBALLockBytesImpl16_ReadAt(
267 ULARGE_INTEGER ulOffset
, /* [in] */
268 void* pv
, /* [out][length_is][size_is] */
270 ULONG
* pcbRead
) /* [out] */
272 HGLOBALLockBytesImpl16
* const This
= impl_from_ILockBytes16(iface
);
275 ULONG bytesReadBuffer
= 0;
276 ULONG bytesToReadFromBuffer
;
278 TRACE("(%p,%d,%p,%d,%p)\n",This
,ulOffset
.u
.LowPart
,pv
,cb
,pcbRead
);
280 * If the caller is not interested in the number of bytes read,
281 * we use another buffer to avoid "if" statements in the code.
284 pcbRead
= &bytesReadBuffer
;
287 * Make sure the offset is valid.
289 if (ulOffset
.u
.LowPart
> This
->byteArraySize
.u
.LowPart
)
293 * Using the known size of the array, calculate the number of bytes
296 bytesToReadFromBuffer
= min(This
->byteArraySize
.u
.LowPart
-
297 ulOffset
.u
.LowPart
, cb
);
300 * Lock the buffer in position and copy the data.
302 supportBuffer
= GlobalLock16(This
->supportHandle
);
305 (char *) supportBuffer
+ ulOffset
.u
.LowPart
,
306 bytesToReadFromBuffer
);
309 * Return the number of bytes read.
311 *pcbRead
= bytesToReadFromBuffer
;
316 GlobalUnlock16(This
->supportHandle
);
319 * The function returns S_OK if the specified number of bytes were read
320 * or the end of the array was reached.
321 * It returns STG_E_READFAULT if the number of bytes to read does not equal
322 * the number of bytes actually read.
327 return STG_E_READFAULT
;
330 /******************************************************************************
331 * This method is part of the ILockBytes interface.
333 * It will change the size of the byte array.
335 * See the documentation of ILockBytes for more info.
337 HRESULT CDECL
HGLOBALLockBytesImpl16_SetSize(
339 ULARGE_INTEGER libNewSize
) /* [in] */
341 HGLOBALLockBytesImpl16
* const This
= impl_from_ILockBytes16(iface
);
342 HGLOBAL16 supportHandle
;
344 TRACE("(%p,%d)\n",This
,libNewSize
.u
.LowPart
);
348 if (libNewSize
.u
.HighPart
!= 0)
349 return STG_E_INVALIDFUNCTION
;
351 if (This
->byteArraySize
.u
.LowPart
== libNewSize
.u
.LowPart
)
355 * Re allocate the HGlobal to fit the new size of the stream.
357 supportHandle
= GlobalReAlloc16(This
->supportHandle
, libNewSize
.u
.LowPart
, 0);
359 if (supportHandle
== 0)
360 return STG_E_MEDIUMFULL
;
362 This
->supportHandle
= supportHandle
;
363 This
->byteArraySize
.u
.LowPart
= libNewSize
.u
.LowPart
;
368 /******************************************************************************
369 * This method is part of the ILockBytes interface.
371 * It writes the specified bytes at the specified offset.
372 * position. If the array is too small, it will be resized.
374 * See the documentation of ILockBytes for more info.
376 HRESULT CDECL
HGLOBALLockBytesImpl16_WriteAt(
378 ULARGE_INTEGER ulOffset
, /* [in] */
379 const void* pv
, /* [in][size_is] */
381 ULONG
* pcbWritten
) /* [out] */
383 HGLOBALLockBytesImpl16
* const This
= impl_from_ILockBytes16(iface
);
386 ULARGE_INTEGER newSize
;
387 ULONG bytesWritten
= 0;
389 TRACE("(%p,%d,%p,%d,%p)\n",This
,ulOffset
.u
.LowPart
,pv
,cb
,pcbWritten
);
391 * If the caller is not interested in the number of bytes written,
392 * we use another buffer to avoid "if" statements in the code.
395 pcbWritten
= &bytesWritten
;
400 newSize
.u
.HighPart
= 0;
401 newSize
.u
.LowPart
= ulOffset
.u
.LowPart
+ cb
;
404 * Verify if we need to grow the stream
406 if (newSize
.u
.LowPart
> This
->byteArraySize
.u
.LowPart
)
409 if (HGLOBALLockBytesImpl16_SetSize(iface
, newSize
) == STG_E_MEDIUMFULL
)
410 return STG_E_MEDIUMFULL
;
414 * Lock the buffer in position and copy the data.
416 supportBuffer
= GlobalLock16(This
->supportHandle
);
418 memcpy((char *) supportBuffer
+ ulOffset
.u
.LowPart
, pv
, cb
);
421 * Return the number of bytes written.
428 GlobalUnlock16(This
->supportHandle
);
433 /******************************************************************************
434 * This method is part of the ILockBytes interface.
436 * See the documentation of ILockBytes for more info.
438 HRESULT CDECL
HGLOBALLockBytesImpl16_Flush(ILockBytes16
* iface
)
440 TRACE("(%p)\n",iface
);
444 /******************************************************************************
445 * This method is part of the ILockBytes interface.
447 * The global memory implementation of ILockBytes does not support locking.
449 * See the documentation of ILockBytes for more info.
451 HRESULT CDECL
HGLOBALLockBytesImpl16_LockRegion(
453 ULARGE_INTEGER libOffset
, /* [in] */
454 ULARGE_INTEGER cb
, /* [in] */
455 DWORD dwLockType
) /* [in] */
457 return STG_E_INVALIDFUNCTION
;
460 /******************************************************************************
461 * This method is part of the ILockBytes interface.
463 * The global memory implementation of ILockBytes does not support locking.
465 * See the documentation of ILockBytes for more info.
467 HRESULT CDECL
HGLOBALLockBytesImpl16_UnlockRegion(
469 ULARGE_INTEGER libOffset
, /* [in] */
470 ULARGE_INTEGER cb
, /* [in] */
471 DWORD dwLockType
) /* [in] */
473 return STG_E_INVALIDFUNCTION
;
476 /******************************************************************************
477 * This method is part of the ILockBytes interface.
479 * This method returns information about the current
482 * See the documentation of ILockBytes for more info.
484 HRESULT CDECL
HGLOBALLockBytesImpl16_Stat(
486 STATSTG16
* pstatstg
, /* [out] */
487 DWORD grfStatFlag
) /* [in] */
489 HGLOBALLockBytesImpl16
* const This
= impl_from_ILockBytes16(iface
);
491 memset(pstatstg
, 0, sizeof(STATSTG16
));
493 pstatstg
->pwcsName
= NULL
;
494 pstatstg
->type
= STGTY_LOCKBYTES
;
495 pstatstg
->cbSize
= This
->byteArraySize
;
500 /******************************************************************************
501 * CreateILockBytesOnHGlobal [OLE2.54]
503 * Creates an ILockBytes interface for a HGLOBAL handle.
506 * hGlobal the global handle (16bit)
507 * fDeleteOnRelease delete handle on release.
508 * ppLkbyt pointer to ILockBytes interface.
511 * Staddard OLE error return codes.
514 HRESULT WINAPI
CreateILockBytesOnHGlobal16(
515 HGLOBAL16 hGlobal
, /* [in] */
516 BOOL16 fDeleteOnRelease
, /* [in] */
517 LPLOCKBYTES16
*ppLkbyt
) /* [out] (ptr to SEGPTR!) */
519 HGLOBALLockBytesImpl16
* newLockBytes
; /* SEGPTR */
521 newLockBytes
= HGLOBALLockBytesImpl16_Construct(hGlobal
, fDeleteOnRelease
);
523 if (newLockBytes
!= NULL
)
524 return HGLOBALLockBytesImpl16_QueryInterface(&newLockBytes
->ILockBytes16_iface
,
525 &IID_ILockBytes
, (void**)ppLkbyt
);
526 return E_OUTOFMEMORY
;