You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
256 lines
6.7 KiB
256 lines
6.7 KiB
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
growlist.h
|
|
|
|
Abstract:
|
|
|
|
Implements a dynamic array-indexed list of binary objects. Typically,
|
|
the binary objects are strings. The list uses a GROWBUF for the array,
|
|
and a pool for the binary data of each list item.
|
|
|
|
Author:
|
|
|
|
Jim Schmidt (jimschm) 08-Aug-1997
|
|
|
|
Revision History:
|
|
|
|
<alias> <date> <comments>
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
//
|
|
// Types
|
|
//
|
|
|
|
typedef struct {
|
|
GROWBUFFER ListArray;
|
|
} GROWLIST, *PGROWLIST;
|
|
|
|
#ifdef DEBUG
|
|
#define INIT_GROWLIST {NULL,0,0,0,0,0, NULL}
|
|
#else
|
|
#define INIT_GROWLIST {NULL,0,0,0,0, NULL}
|
|
#endif
|
|
|
|
//
|
|
// Function Prototypes
|
|
//
|
|
|
|
#define GlGetPtrArray(listptr) ((PVOID *) ((listptr)->ListArray.Buf))
|
|
#define GlGetStringPtrArrayA(listptr) ((PCSTR *) ((listptr)->ListArray.Buf))
|
|
#define GlGetStringPtrArrayW(listptr) ((PCWSTR *) ((listptr)->ListArray.Buf))
|
|
|
|
PBYTE
|
|
RealGlAppend (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN PBYTE DataToAppend, OPTIONAL
|
|
IN UINT SizeOfData
|
|
);
|
|
|
|
#define GlAppend(list,data,size) DBGTRACK(PBYTE, GlAppend, (list,data,size))
|
|
|
|
PBYTE
|
|
RealGlAppendAddNul (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN PBYTE DataToAppend, OPTIONAL
|
|
IN UINT SizeOfData
|
|
);
|
|
|
|
#define GlAppendAddNul(list,data,size) DBGTRACK(PBYTE, GlAppendAddNul, (list,data,size))
|
|
|
|
VOID
|
|
GlFree (
|
|
IN PGROWLIST GrowList
|
|
);
|
|
|
|
VOID
|
|
GlReset (
|
|
IN OUT PGROWLIST GrowList
|
|
);
|
|
|
|
PBYTE
|
|
GlGetItem (
|
|
IN PGROWLIST GrowList,
|
|
IN UINT Index
|
|
);
|
|
|
|
UINT
|
|
GlGetSize (
|
|
IN PGROWLIST GrowList
|
|
);
|
|
|
|
PBYTE
|
|
RealGlInsert (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN UINT Index,
|
|
IN PBYTE DataToAppend, OPTIONAL
|
|
IN UINT SizeOfData
|
|
);
|
|
|
|
#define GlInsert(list,index,data,size) DBGTRACK(PBYTE, GlInsert, (list,index,data,size))
|
|
|
|
|
|
PBYTE
|
|
RealGlInsertAddNul (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN UINT Index,
|
|
IN PBYTE DataToAppend, OPTIONAL
|
|
IN UINT SizeOfData
|
|
);
|
|
|
|
#define GlInsertAddNul(list,index,data,size) DBGTRACK(PBYTE, GlInsertAddNul, (list,index,data,size))
|
|
|
|
|
|
BOOL
|
|
GlDeleteItem (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN UINT Index
|
|
);
|
|
|
|
BOOL
|
|
GlResetItem (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN UINT Index
|
|
);
|
|
|
|
PBYTE
|
|
RealGlSetItem (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN UINT Index,
|
|
IN PCBYTE DataToSet, OPTIONAL
|
|
IN UINT SizeOfData
|
|
);
|
|
|
|
#define GlSetItem(list,index,data,size) DBGTRACK(PBYTE, GlSetItem, (list,index,data,size))
|
|
|
|
__inline
|
|
PCSTR
|
|
RealGlAppendStringABA (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN PCSTR String,
|
|
IN PCSTR End
|
|
)
|
|
{
|
|
MYASSERT_F(String < End, "Start is greater than End in GrowListAppendStringABA");
|
|
|
|
return (PCSTR) GlAppendAddNul (
|
|
GrowList,
|
|
(PBYTE) String,
|
|
String < End ? SzByteCountABA (String, End) : 0
|
|
);
|
|
}
|
|
|
|
__inline
|
|
PCWSTR
|
|
RealGlAppendStringABW (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN PCWSTR String,
|
|
IN PCWSTR End
|
|
)
|
|
{
|
|
MYASSERT_F(String < End, "Start is greater than End in GrowListAppendStringABW");
|
|
|
|
return (PCWSTR) GlAppendAddNul (
|
|
GrowList,
|
|
(PBYTE) String,
|
|
String < End ? SzByteCountABW (String, End) : 0
|
|
);
|
|
}
|
|
|
|
__inline
|
|
PCSTR
|
|
RealGlInsertStringABA (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN UINT Index,
|
|
IN PCSTR String,
|
|
IN PCSTR End
|
|
)
|
|
{
|
|
MYASSERT_F(String < End, "Start is greater than End in GrowListInsertStringABA");
|
|
|
|
return (PCSTR) GlInsertAddNul (
|
|
GrowList,
|
|
Index,
|
|
(PBYTE) String,
|
|
String < End ? SzByteCountABA (String, End) : 0
|
|
);
|
|
}
|
|
|
|
__inline
|
|
PCWSTR
|
|
RealGlInsertStringABW (
|
|
IN OUT PGROWLIST GrowList,
|
|
IN UINT Index,
|
|
IN PCWSTR String,
|
|
IN PCWSTR End
|
|
)
|
|
{
|
|
MYASSERT_F(String < End, "Start is greater than End in GrowListInsertStringABW");
|
|
|
|
return (PCWSTR) GlInsertAddNul (
|
|
GrowList,
|
|
Index,
|
|
(PBYTE) String,
|
|
String < End ? SzByteCountABW (String, End) : 0
|
|
);
|
|
}
|
|
|
|
#define GlAppendStringABA(list,a,b) DBGTRACK(PCSTR, GlAppendStringABA, (list,a,b))
|
|
#define GlAppendStringABW(list,a,b) DBGTRACK(PCWSTR, GlAppendStringABW, (list,a,b))
|
|
#define GlInsertStringABA(list,index,a,b) DBGTRACK(PCSTR, GlInsertStringABA, (list,index,a,b))
|
|
#define GlInsertStringABW(list,index,a,b) DBGTRACK(PCWSTR, GlInsertStringABW, (list,index,a,b))
|
|
|
|
|
|
|
|
#define GlAppendStringA(list,str) GlAppendStringABA(list,str,SzGetEndA(str))
|
|
#define GlAppendStringW(list,str) GlAppendStringABW(list,str,SzGetEndW(str))
|
|
|
|
#define GlInsertStringA(list,index,str) GlInsertStringABA(list,index,str,SzGetEndA(str))
|
|
#define GlInsertStringW(list,index,str) GlInsertStringABW(list,index,str,SzGetEndW(str))
|
|
|
|
#define GlAppendStringNA(list,str,len) GlAppendStringABA(list,str,SzTcharsToPointerA(str,len))
|
|
#define GlAppendStringNW(list,str,len) GlAppendStringABW(list,str,SzTcharsToPointerW(str,len))
|
|
|
|
#define GlInsertStringNA(list,index,str,len) GlInsertStringABA(list,index,str,SzTcharsToPointerA(str,len))
|
|
#define GlInsertStringNW(list,index,str,len) GlInsertStringABW(list,index,str,SzTcharsToPointerW(str,len))
|
|
|
|
#define GlGetStringA(list,index) (PCSTR)(GlGetItem(list,index))
|
|
#define GlGetStringW(list,index) (PCWSTR)(GlGetItem(list,index))
|
|
|
|
#define GlAppendEmptyItem(list) GlAppend (list,NULL,0)
|
|
#define GlInsertEmptyItem(list,index) GlInsert (list,index,NULL,0)
|
|
|
|
//
|
|
// A & W Macros
|
|
//
|
|
|
|
#ifdef UNICODE
|
|
|
|
#define GlAppendString GlAppendStringW
|
|
#define GlInsertString GlInsertStringW
|
|
#define GlAppendStringAB GlAppendStringABW
|
|
#define GlInsertStringAB GlInsertStringABW
|
|
#define GlAppendStringN GlAppendStringNW
|
|
#define GlInsertStringN GlInsertStringNW
|
|
#define GlGetString GlGetStringW
|
|
#define GlGetStringPtrArray GlGetStringPtrArrayW
|
|
|
|
#else
|
|
|
|
#define GlAppendString GlAppendStringA
|
|
#define GlInsertString GlInsertStringA
|
|
#define GlAppendStringAB GlAppendStringABA
|
|
#define GlInsertStringAB GlInsertStringABA
|
|
#define GlAppendStringN GlAppendStringNA
|
|
#define GlInsertStringN GlInsertStringNA
|
|
#define GlGetString GlGetStringA
|
|
#define GlGetStringPtrArray GlGetStringPtrArrayA
|
|
|
|
#endif
|
|
|