2 * SHLWAPI DataBlock List functions
4 * Copyright 2002 Jon Griffiths
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
23 /* dwSignature for contained DATABLOCK_HEADER items */
24 #define CLIST_ID_CONTAINER (~0U)
26 /*************************************************************************
29 * Internal helper: move a DataBlock pointer to the next item.
31 static inline LPDATABLOCK_HEADER
NextItem(LPDBLIST lpList
)
33 char* address
= (char*)lpList
;
34 address
+= lpList
->cbSize
;
35 return (LPDATABLOCK_HEADER
)address
;
38 /*************************************************************************
41 * Insert a new item into a DataBlock list.
44 * lppList [0] Pointer to the List
45 * lpNewItem [I] The new item to add to the list
49 * Success: S_OK. The item is added to the list.
50 * Failure: An HRESULT error code.
52 * Success: TRUE. The item is added to the list.
57 * If the size of the element to be inserted is less than the size of a
58 * DATABLOCK_HEADER node, or the Id for the item is CLIST_ID_CONTAINER,
59 * the call returns S_OK but does not actually add the element.
60 * See SHWriteDataBlockList.
67 WINAPI
SHAddDataBlock(LPDBLIST
* lppList
, const DATABLOCK_HEADER
*lpNewItem
)
69 LPDATABLOCK_HEADER lpInsertAt
= NULL
;
72 TRACE("(%p,%p)\n", lppList
, lpNewItem
);
74 if(!lppList
|| !lpNewItem
)
81 if (lpNewItem
->cbSize
< sizeof(DATABLOCK_HEADER
) ||
82 lpNewItem
->dwSignature
== CLIST_ID_CONTAINER
)
89 ulSize
= lpNewItem
->cbSize
;
93 /* Tune size to a ULONG boundary, add space for container element */
94 ulSize
= ((ulSize
+ 0x3) & 0xFFFFFFFC) + sizeof(DATABLOCK_HEADER
);
95 TRACE("Creating container item, new size = %d\n", ulSize
);
100 /* An empty list. Allocate space for terminal ulSize also */
101 *lppList
= LocalAlloc(LMEM_ZEROINIT
, ulSize
+ sizeof(ULONG
));
102 lpInsertAt
= *lppList
;
106 /* Append to the end of the list */
107 ULONG ulTotalSize
= 0;
108 LPDATABLOCK_HEADER lpIter
= *lppList
;
110 /* Iterate to the end of the list, calculating the total size */
111 while (lpIter
->cbSize
)
113 ulTotalSize
+= lpIter
->cbSize
;
114 lpIter
= NextItem(lpIter
);
117 /* Increase the size of the list */
118 lpIter
= LocalReAlloc(*lppList
, ulTotalSize
+ ulSize
+sizeof(ULONG
),
119 LMEM_ZEROINIT
| LMEM_MOVEABLE
);
123 lpInsertAt
= (LPDATABLOCK_HEADER
)((char*)lpIter
+ ulTotalSize
); /* At end */
129 /* Copy in the new item */
130 LPDATABLOCK_HEADER lpDest
= lpInsertAt
;
132 if(ulSize
!= lpNewItem
->cbSize
)
134 lpInsertAt
->cbSize
= ulSize
;
135 lpInsertAt
->dwSignature
= CLIST_ID_CONTAINER
;
138 memcpy(lpDest
, lpNewItem
, lpNewItem
->cbSize
);
140 /* Terminate the list */
141 lpInsertAt
= NextItem(lpInsertAt
);
142 lpInsertAt
->cbSize
= 0;
145 return lpNewItem
->cbSize
;
157 /*************************************************************************
160 * Write a DataBlock list to an IStream object.
163 * lpStream [I] IStream object to write the list to
164 * lpList [I] List of items to write
167 * Success: S_OK. The object is written to the stream.
168 * Failure: An HRESULT error code
171 * Ordinals 17,18,19,20,21 and 22 are related and together provide a compact
172 * list structure (a "DataBlock List"), which may be stored and retrieved from
175 * The exposed API consists of:
177 * - SHWriteDataBlockList() - Write a DataBlock list to a stream,
178 * - SHReadDataBlockList() - Read and create a list from a stream,
179 * - SHFreeDataBlockList() - Free a list,
180 * - SHAddDataBlock() - Insert a new item into a list,
181 * - SHRemoveDataBlock() - Remove an item from a list,
182 * - SHFindDataBlock() - Find an item in a list.
184 * The DataBlock list is stored packed into a memory array. Each element has a
185 * size and an associated ID. Elements must be less than 64k if the list is
186 * to be subsequently read from a stream.
188 * Elements are aligned on DWORD boundaries. If an elements data size is not
189 * a DWORD size multiple, the element is wrapped by inserting a surrounding
190 * element with an Id of 0xFFFFFFFF, and size sufficient to pad to a DWORD boundary.
192 * These functions are slow for large objects and long lists.
194 HRESULT WINAPI
SHWriteDataBlockList(IStream
* lpStream
, LPDBLIST lpList
)
199 TRACE("(%p,%p)\n", lpStream
, lpList
);
203 while (lpList
->cbSize
)
205 LPDATABLOCK_HEADER lpItem
= lpList
;
207 if(lpList
->dwSignature
== CLIST_ID_CONTAINER
)
210 hRet
= IStream_Write(lpStream
,lpItem
,lpItem
->cbSize
,&ulSize
);
214 if(lpItem
->cbSize
!= ulSize
)
215 return STG_E_MEDIUMFULL
;
217 lpList
= NextItem(lpList
);
226 /* Write a terminating list entry with zero size */
227 hRet
= IStream_Write(lpStream
, &ulSize
,sizeof(ulSize
),&ulDummy
);
233 /*************************************************************************
236 * Read and create a DataBlock list from an IStream object.
239 * lpStream [I] Stream to read the list from
240 * lppList [0] Pointer to receive the new List
244 * Failure: An HRESULT error code
247 * When read from a file, list objects are limited in size to 64k.
248 * See SHWriteDataBlockList.
250 HRESULT WINAPI
SHReadDataBlockList(IStream
* lpStream
, LPDBLIST
* lppList
)
252 DATABLOCK_HEADER bBuff
[128]; /* Temporary storage for new list item */
253 ULONG ulBuffSize
= sizeof(bBuff
);
254 LPDATABLOCK_HEADER pItem
= bBuff
;
255 ULONG ulRead
, ulSize
;
258 TRACE("(%p,%p)\n", lpStream
, lppList
);
262 /* Free any existing list */
269 /* Read the size of the next item */
270 hRet
= IStream_Read(lpStream
, &ulSize
,sizeof(ulSize
),&ulRead
);
272 if(FAILED(hRet
) || ulRead
!= sizeof(ulSize
) || !ulSize
)
273 break; /* Read failed or read zero size (the end of the list) */
277 LARGE_INTEGER liZero
;
278 ULARGE_INTEGER ulPos
;
282 /* Back the stream up; this object is too big for the list */
283 if(SUCCEEDED(IStream_Seek(lpStream
, liZero
, STREAM_SEEK_CUR
, &ulPos
)))
285 liZero
.QuadPart
= ulPos
.QuadPart
- sizeof(ULONG
);
286 IStream_Seek(lpStream
, liZero
, STREAM_SEEK_SET
, NULL
);
290 else if (ulSize
>= sizeof(DATABLOCK_HEADER
))
292 /* Add this new item to the list */
293 if(ulSize
> ulBuffSize
)
295 /* We need more buffer space, allocate it */
296 LPDATABLOCK_HEADER lpTemp
;
299 lpTemp
= LocalAlloc(LMEM_ZEROINIT
, ulSize
);
301 lpTemp
= LocalReAlloc(pItem
, ulSize
, LMEM_ZEROINIT
|LMEM_MOVEABLE
);
305 hRet
= E_OUTOFMEMORY
;
312 pItem
->cbSize
= ulSize
;
313 ulSize
-= sizeof(pItem
->cbSize
); /* already read this member */
315 /* Read the item Id and data */
316 hRet
= IStream_Read(lpStream
, &pItem
->dwSignature
, ulSize
, &ulRead
);
318 if(FAILED(hRet
) || ulRead
!= ulSize
)
321 SHAddDataBlock(lppList
, pItem
); /* Insert Item */
325 /* If we allocated space, free it */
332 /*************************************************************************
335 * Free a DataBlock list.
338 * lpList [I] List to free
344 * See SHWriteDataBlockList.
346 VOID WINAPI
SHFreeDataBlockList(LPDBLIST lpList
)
348 TRACE("(%p)\n", lpList
);
354 /*************************************************************************
357 * Remove an item from a DataBlock list.
360 * lppList [O] List to remove the item from
361 * dwSignature [I] Id of item to remove
365 * Failure: FALSE, If any parameters are invalid, or the item was not found.
368 * See SHWriteDataBlockList.
370 BOOL WINAPI
SHRemoveDataBlock(LPDBLIST
* lppList
, DWORD dwSignature
)
373 LPDATABLOCK_HEADER lpList
= 0;
375 LPDATABLOCK_HEADER lpList
= NULL
;
377 LPDATABLOCK_HEADER lpItem
= NULL
;
378 LPDATABLOCK_HEADER lpNext
;
381 TRACE("(%p,%d)\n", lppList
, dwSignature
);
383 if(lppList
&& (lpList
= *lppList
))
385 /* Search for item in list */
386 while (lpList
->cbSize
)
388 if(lpList
->dwSignature
== dwSignature
||
389 (lpList
->dwSignature
== CLIST_ID_CONTAINER
&& lpList
[1].dwSignature
== dwSignature
))
391 lpItem
= lpList
; /* Found */
394 lpList
= NextItem(lpList
);
401 lpList
= lpNext
= NextItem(lpItem
);
403 /* Locate the end of the list */
404 while (lpList
->cbSize
)
405 lpList
= NextItem(lpList
);
407 /* Resize the list */
408 ulNewSize
= LocalSize(*lppList
) - lpItem
->cbSize
;
410 /* Copy following elements over lpItem */
411 memmove(lpItem
, lpNext
, (char *)lpList
- (char *)lpNext
+ sizeof(ULONG
));
413 if(ulNewSize
<= sizeof(ULONG
))
416 *lppList
= NULL
; /* Removed the last element */
420 lpList
= LocalReAlloc(*lppList
, ulNewSize
, LMEM_ZEROINIT
|LMEM_MOVEABLE
);
427 /*************************************************************************
430 * Find an item in a DataBlock list.
433 * lpList [I] List to search
434 * dwSignature [I] Id of item to find
437 * Success: A pointer to the list item found
441 * See SHWriteDataBlockList.
443 DATABLOCK_HEADER
* WINAPI
SHFindDataBlock(LPDBLIST lpList
, DWORD dwSignature
)
445 TRACE("(%p,%d)\n", lpList
, dwSignature
);
449 while(lpList
->cbSize
)
451 if(lpList
->dwSignature
== dwSignature
)
452 return lpList
; /* Matched */
453 else if(lpList
->dwSignature
== CLIST_ID_CONTAINER
&& lpList
[1].dwSignature
== dwSignature
)
454 return lpList
+ 1; /* Contained item matches */
456 lpList
= NextItem(lpList
);