2 * String Table Functions
4 * Copyright 2002-2004, Mike McCormack for CodeWeavers
5 * Copyright 2007 Robert Shearman for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/debug.h"
31 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(msidb);
43 #define LONG_STR_BYTES 3
45 typedef struct _msistring
47 USHORT persistent_refcount;
48 USHORT nonpersistent_refcount;
54 UINT maxcount; /* the number of strings */
58 msistring *strings; /* an array of strings */
59 UINT *sorted; /* index */
62 static string_table *init_stringtable( int entries, UINT codepage )
66 if (codepage != CP_ACP && !IsValidCodePage(codepage))
68 ERR("invalid codepage %d\n", codepage);
72 st = msi_alloc( sizeof (string_table) );
78 st->strings = msi_alloc_zero( sizeof (msistring) * entries );
85 st->sorted = msi_alloc( sizeof (UINT) * entries );
88 msi_free( st->strings );
93 st->maxcount = entries;
95 st->codepage = codepage;
101 VOID msi_destroy_stringtable( string_table *st )
105 for( i=0; i<st->maxcount; i++ )
107 if( st->strings[i].persistent_refcount ||
108 st->strings[i].nonpersistent_refcount )
109 msi_free( st->strings[i].str );
111 msi_free( st->strings );
112 msi_free( st->sorted );
116 static int st_find_free_entry( string_table *st )
125 for( i = st->freeslot; i < st->maxcount; i++ )
126 if( !st->strings[i].persistent_refcount &&
127 !st->strings[i].nonpersistent_refcount )
130 for( i = 1; i < st->maxcount; i++ )
131 if( !st->strings[i].persistent_refcount &&
132 !st->strings[i].nonpersistent_refcount )
135 /* dynamically resize */
136 sz = st->maxcount + 1 + st->maxcount/2;
137 p = msi_realloc_zero( st->strings, sz*sizeof(msistring) );
141 s = msi_realloc( st->sorted, sz*sizeof(UINT) );
151 st->freeslot = st->maxcount;
153 if( st->strings[st->freeslot].persistent_refcount ||
154 st->strings[st->freeslot].nonpersistent_refcount )
155 ERR("oops. expected freeslot to be free...\n");
159 static int find_insert_index( const string_table *st, UINT string_id )
161 int i, c, low = 0, high = st->sortcount - 1;
165 i = (low + high) / 2;
166 c = lstrcmpW( st->strings[string_id].str, st->strings[st->sorted[i]].str );
173 return -1; /* already exists */
178 static void insert_string_sorted( string_table *st, UINT string_id )
182 i = find_insert_index( st, string_id );
186 memmove( &st->sorted[i] + 1, &st->sorted[i], (st->sortcount - i) * sizeof(UINT) );
187 st->sorted[i] = string_id;
191 static void set_st_entry( string_table *st, UINT n, LPWSTR str, USHORT refcount, enum StringPersistence persistence )
193 if (persistence == StringPersistent)
195 st->strings[n].persistent_refcount = refcount;
196 st->strings[n].nonpersistent_refcount = 0;
200 st->strings[n].persistent_refcount = 0;
201 st->strings[n].nonpersistent_refcount = refcount;
204 st->strings[n].str = str;
206 insert_string_sorted( st, n );
208 if( n < st->maxcount )
209 st->freeslot = n + 1;
212 static UINT msi_string2idA( const string_table *st, LPCSTR buffer, UINT *id )
215 UINT r = ERROR_INVALID_PARAMETER;
218 TRACE("Finding string %s in string table\n", debugstr_a(buffer) );
223 return ERROR_SUCCESS;
226 sz = MultiByteToWideChar( st->codepage, 0, buffer, -1, NULL, 0 );
229 str = msi_alloc( sz*sizeof(WCHAR) );
231 return ERROR_NOT_ENOUGH_MEMORY;
232 MultiByteToWideChar( st->codepage, 0, buffer, -1, str, sz );
234 r = msi_string2idW( st, str, id );
240 static int msi_addstring( string_table *st, UINT n, const CHAR *data, int len, USHORT refcount, enum StringPersistence persistence )
251 if( st->strings[n].persistent_refcount ||
252 st->strings[n].nonpersistent_refcount )
257 if( ERROR_SUCCESS == msi_string2idA( st, data, &n ) )
259 if (persistence == StringPersistent)
260 st->strings[n].persistent_refcount += refcount;
262 st->strings[n].nonpersistent_refcount += refcount;
265 n = st_find_free_entry( st );
272 ERR("invalid index adding %s (%d)\n", debugstr_a( data ), n );
276 /* allocate a new string */
279 sz = MultiByteToWideChar( st->codepage, 0, data, len, NULL, 0 );
280 str = msi_alloc( (sz+1)*sizeof(WCHAR) );
283 MultiByteToWideChar( st->codepage, 0, data, len, str, sz );
286 set_st_entry( st, n, str, refcount, persistence );
291 int msi_addstringW( string_table *st, UINT n, const WCHAR *data, int len, USHORT refcount, enum StringPersistence persistence )
295 /* TRACE("[%2d] = %s\n", string_no, debugstr_an(data,len) ); */
303 if( st->strings[n].persistent_refcount ||
304 st->strings[n].nonpersistent_refcount )
309 if( ERROR_SUCCESS == msi_string2idW( st, data, &n ) )
311 if (persistence == StringPersistent)
312 st->strings[n].persistent_refcount += refcount;
314 st->strings[n].nonpersistent_refcount += refcount;
317 n = st_find_free_entry( st );
324 ERR("invalid index adding %s (%d)\n", debugstr_w( data ), n );
328 /* allocate a new string */
331 TRACE("%s, n = %d len = %d\n", debugstr_w(data), n, len );
333 str = msi_alloc( (len+1)*sizeof(WCHAR) );
336 memcpy( str, data, len*sizeof(WCHAR) );
339 set_st_entry( st, n, str, refcount, persistence );
344 /* find the string identified by an id - return null if there's none */
345 const WCHAR *msi_string_lookup_id( const string_table *st, UINT id )
350 if( id >= st->maxcount )
353 if( id && !st->strings[id].persistent_refcount && !st->strings[id].nonpersistent_refcount)
356 return st->strings[id].str;
362 * [in] st - pointer to the string table
363 * [in] id - id of the string to retrieve
364 * [out] buffer - destination of the UTF8 string
365 * [in/out] sz - number of bytes available in the buffer on input
366 * number of bytes used on output
368 * The size includes the terminating nul character. Short buffers
369 * will be filled, but not nul terminated.
371 static UINT msi_id2stringA( const string_table *st, UINT id, LPSTR buffer, UINT *sz )
377 TRACE("Finding string %d of %d\n", id, st->maxcount);
379 str = msi_string_lookup_id( st, id );
381 return ERROR_FUNCTION_FAILED;
383 len = WideCharToMultiByte( st->codepage, 0, str, -1, NULL, 0, NULL, NULL );
388 return ERROR_SUCCESS;
393 n = strlenW( str ) + 1;
394 while( n && (len > *sz) )
395 len = WideCharToMultiByte( st->codepage, 0,
396 str, --n, NULL, 0, NULL, NULL );
401 *sz = WideCharToMultiByte( st->codepage, 0, str, n, buffer, len, NULL, NULL );
403 return ERROR_SUCCESS;
409 * [in] st - pointer to the string table
410 * [in] str - string to find in the string table
411 * [out] id - id of the string, if found
413 UINT msi_string2idW( const string_table *st, LPCWSTR str, UINT *id )
415 int i, c, low = 0, high = st->sortcount - 1;
419 i = (low + high) / 2;
420 c = lstrcmpW( str, st->strings[st->sorted[i]].str );
429 return ERROR_SUCCESS;
433 return ERROR_INVALID_PARAMETER;
436 static void string_totalsize( const string_table *st, UINT *datasize, UINT *poolsize )
438 UINT i, len, holesize;
440 if( st->strings[0].str || st->strings[0].persistent_refcount || st->strings[0].nonpersistent_refcount)
441 ERR("oops. element 0 has a string\n");
446 for( i=1; i<st->maxcount; i++ )
448 if( !st->strings[i].persistent_refcount )
450 TRACE("[%u] nonpersistent = %s\n", i, debugstr_w(st->strings[i].str));
453 else if( st->strings[i].str )
455 TRACE("[%u] = %s\n", i, debugstr_w(st->strings[i].str));
456 len = WideCharToMultiByte( st->codepage, 0,
457 st->strings[i].str, -1, NULL, 0, NULL, NULL);
463 (*poolsize) += holesize + 4;
469 TRACE("data %u pool %u codepage %x\n", *datasize, *poolsize, st->codepage );
472 static const WCHAR szStringData[] = {
473 '_','S','t','r','i','n','g','D','a','t','a',0 };
474 static const WCHAR szStringPool[] = {
475 '_','S','t','r','i','n','g','P','o','o','l',0 };
477 HRESULT msi_init_string_table( IStorage *stg )
479 USHORT zero[2] = { 0, 0 };
482 /* create the StringPool stream... add the zero string to it*/
483 ret = write_stream_data(stg, szStringPool, zero, sizeof zero, TRUE);
484 if (ret != ERROR_SUCCESS)
487 /* create the StringData stream... make it zero length */
488 ret = write_stream_data(stg, szStringData, NULL, 0, TRUE);
489 if (ret != ERROR_SUCCESS)
495 string_table *msi_load_string_table( IStorage *stg, UINT *bytes_per_strref )
497 string_table *st = NULL;
500 UINT r, datasize = 0, poolsize = 0, codepage;
501 DWORD i, count, offset, len, n, refs;
503 r = read_stream_data( stg, szStringPool, TRUE, (BYTE **)&pool, &poolsize );
504 if( r != ERROR_SUCCESS)
506 r = read_stream_data( stg, szStringData, TRUE, (BYTE **)&data, &datasize );
507 if( r != ERROR_SUCCESS)
510 if ( (poolsize > 4) && (pool[1] & 0x8000) )
511 *bytes_per_strref = LONG_STR_BYTES;
513 *bytes_per_strref = sizeof(USHORT);
517 codepage = pool[0] | ( (pool[1] & ~0x8000) << 16 );
520 st = init_stringtable( count, codepage );
529 /* the string reference count is always the second word */
532 /* empty entries have two zeros, still have a string id */
533 if (pool[i*2] == 0 && refs == 0)
541 * If a string is over 64k, the previous string entry is made null
542 * and its the high word of the length is inserted in the null string's
543 * reference count field.
547 len = (pool[i*2+3] << 16) + pool[i*2+2];
556 if ( (offset + len) > datasize )
558 ERR("string table corrupt?\n");
562 r = msi_addstring( st, n, data+offset, len, refs, StringPersistent );
564 ERR("Failed to add string %d\n", n );
569 if ( datasize != offset )
570 ERR("string table load failed! (%08x != %08x), please report\n", datasize, offset );
572 TRACE("Loaded %d strings\n", count);
581 UINT msi_save_string_table( const string_table *st, IStorage *storage )
583 UINT i, datasize = 0, poolsize = 0, sz, used, r, codepage, n;
584 UINT ret = ERROR_FUNCTION_FAILED;
590 /* construct the new table in memory first */
591 string_totalsize( st, &datasize, &poolsize );
593 TRACE("%u %u %u\n", st->maxcount, datasize, poolsize );
595 pool = msi_alloc( poolsize );
598 WARN("Failed to alloc pool %d bytes\n", poolsize );
601 data = msi_alloc( datasize );
604 WARN("Failed to alloc data %d bytes\n", poolsize );
609 codepage = st->codepage;
610 pool[0]=codepage&0xffff;
611 pool[1]=(codepage>>16);
613 for( i=1; i<st->maxcount; i++ )
615 if( !st->strings[i].persistent_refcount )
623 sz = datasize - used;
624 r = msi_id2stringA( st, i, data+used, &sz );
625 if( r != ERROR_SUCCESS )
627 ERR("failed to fetch string\n");
630 if( sz && (sz < (datasize - used ) ) )
634 pool[ n*2 + 1 ] = st->strings[i].persistent_refcount;
645 pool[ n*2 + 2 ] = sz&0xffff;
646 pool[ n*2 + 3 ] = (sz>>16);
650 if( used > datasize )
652 ERR("oops overran %d >= %d\n", used, datasize);
657 if( used != datasize )
659 ERR("oops used %d != datasize %d\n", used, datasize);
663 /* write the streams */
664 r = write_stream_data( storage, szStringData, data, datasize, TRUE );
665 TRACE("Wrote StringData r=%08x\n", r);
668 r = write_stream_data( storage, szStringPool, pool, poolsize, TRUE );
669 TRACE("Wrote StringPool r=%08x\n", r);