blob: 932b6240149c0b33189909c8a83dd9521b8a3e86 [file] [log] [blame]
Mike McCormackf5e1c132004-03-17 20:49:59 +00001/*
Rob Shearmane261d602007-04-23 08:18:27 +01002 * String Table Functions
Mike McCormackf5e1c132004-03-17 20:49:59 +00003 *
Mike McCormack068b4ec2004-03-19 01:16:36 +00004 * Copyright 2002-2004, Mike McCormack for CodeWeavers
Rob Shearmane261d602007-04-23 08:18:27 +01005 * Copyright 2007 Robert Shearman for CodeWeavers
Mike McCormackf5e1c132004-03-17 20:49:59 +00006 *
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.
11 *
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.
16 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Mike McCormackf5e1c132004-03-17 20:49:59 +000020 */
21
Rob Shearman37b11ba2007-04-23 08:17:40 +010022#define COBJMACROS
23
Mike McCormackf5e1c132004-03-17 20:49:59 +000024#include <stdarg.h>
25#include <assert.h>
26
27#include "windef.h"
28#include "winbase.h"
29#include "winerror.h"
30#include "wine/debug.h"
Mike McCormackab519f22004-06-30 18:18:27 +000031#include "wine/unicode.h"
Mike McCormackf5e1c132004-03-17 20:49:59 +000032#include "msi.h"
33#include "msiquery.h"
34#include "objbase.h"
35#include "objidl.h"
36#include "msipriv.h"
37#include "winnls.h"
38
39#include "query.h"
40
Mike McCormack50684c12005-11-02 14:24:21 +000041WINE_DEFAULT_DEBUG_CHANNEL(msidb);
Mike McCormackf5e1c132004-03-17 20:49:59 +000042
Mike McCormack4f9cae82006-09-08 16:20:56 +090043#define HASH_SIZE 0x101
James Hawkinsa05613a2007-06-07 16:41:51 -070044#define LONG_STR_BYTES 3
Mike McCormackf537eb22006-04-03 18:48:52 +090045
Mike McCormackf5e1c132004-03-17 20:49:59 +000046typedef struct _msistring
47{
Mike McCormackf537eb22006-04-03 18:48:52 +090048 int hash_next;
Rob Shearman2e3289c2007-04-23 08:17:00 +010049 UINT persistent_refcount;
50 UINT nonpersistent_refcount;
Mike McCormackab519f22004-06-30 18:18:27 +000051 LPWSTR str;
Mike McCormackf5e1c132004-03-17 20:49:59 +000052} msistring;
53
54struct string_table
55{
Mike McCormackabd259f2004-06-30 18:24:33 +000056 UINT maxcount; /* the number of strings */
Mike McCormackf5e1c132004-03-17 20:49:59 +000057 UINT freeslot;
Mike McCormackc0523aa2004-06-26 00:18:36 +000058 UINT codepage;
Mike McCormackf537eb22006-04-03 18:48:52 +090059 int hash[HASH_SIZE];
Mike McCormackf5e1c132004-03-17 20:49:59 +000060 msistring *strings; /* an array of strings (in the tree) */
61};
62
Mike McCormack4604e662004-08-06 17:30:20 +000063static UINT msistring_makehash( const WCHAR *str )
Mike McCormackf5e1c132004-03-17 20:49:59 +000064{
Mike McCormack4604e662004-08-06 17:30:20 +000065 UINT hash = 0;
Mike McCormackf5e1c132004-03-17 20:49:59 +000066
Aric Stewart8d81d672004-07-29 23:59:15 +000067 if (str==NULL)
68 return hash;
69
Mike McCormackf5e1c132004-03-17 20:49:59 +000070 while( *str )
71 {
72 hash ^= *str++;
73 hash *= 53;
Aric Stewart8d81d672004-07-29 23:59:15 +000074 hash = (hash<<5) | (hash>>27);
Mike McCormackf5e1c132004-03-17 20:49:59 +000075 }
Mike McCormackf537eb22006-04-03 18:48:52 +090076 return hash % HASH_SIZE;
Mike McCormackf5e1c132004-03-17 20:49:59 +000077}
78
Rob Shearmane261d602007-04-23 08:18:27 +010079static string_table *init_stringtable( int entries, UINT codepage )
Mike McCormackf5e1c132004-03-17 20:49:59 +000080{
81 string_table *st;
Mike McCormackf537eb22006-04-03 18:48:52 +090082 int i;
Mike McCormackf5e1c132004-03-17 20:49:59 +000083
Mike McCormack8dc28d52005-09-20 11:57:19 +000084 st = msi_alloc( sizeof (string_table) );
Mike McCormackf5e1c132004-03-17 20:49:59 +000085 if( !st )
86 return NULL;
Mike McCormackde71dbb2005-09-26 09:54:56 +000087 if( entries < 1 )
88 entries = 1;
Mike McCormack8dc28d52005-09-20 11:57:19 +000089 st->strings = msi_alloc_zero( sizeof (msistring) * entries );
Mike McCormacked9745b2006-04-07 13:30:40 +090090 if( !st->strings )
Mike McCormackf5e1c132004-03-17 20:49:59 +000091 {
Mike McCormack8dc28d52005-09-20 11:57:19 +000092 msi_free( st );
Mike McCormackf5e1c132004-03-17 20:49:59 +000093 return NULL;
94 }
Mike McCormackabd259f2004-06-30 18:24:33 +000095 st->maxcount = entries;
Mike McCormack068b4ec2004-03-19 01:16:36 +000096 st->freeslot = 1;
Mike McCormackc0523aa2004-06-26 00:18:36 +000097 st->codepage = codepage;
Mike McCormackf5e1c132004-03-17 20:49:59 +000098
Mike McCormackf537eb22006-04-03 18:48:52 +090099 for( i=0; i<HASH_SIZE; i++ )
100 st->hash[i] = -1;
101
Mike McCormackf5e1c132004-03-17 20:49:59 +0000102 return st;
103}
104
105VOID msi_destroy_stringtable( string_table *st )
106{
107 UINT i;
108
Mike McCormackabd259f2004-06-30 18:24:33 +0000109 for( i=0; i<st->maxcount; i++ )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000110 {
Rob Shearman2e3289c2007-04-23 08:17:00 +0100111 if( st->strings[i].persistent_refcount ||
112 st->strings[i].nonpersistent_refcount )
Mike McCormack8dc28d52005-09-20 11:57:19 +0000113 msi_free( st->strings[i].str );
Mike McCormackf5e1c132004-03-17 20:49:59 +0000114 }
Mike McCormack8dc28d52005-09-20 11:57:19 +0000115 msi_free( st->strings );
116 msi_free( st );
Mike McCormackf5e1c132004-03-17 20:49:59 +0000117}
118
119static int st_find_free_entry( string_table *st )
120{
Mike McCormack4604e662004-08-06 17:30:20 +0000121 UINT i, sz;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000122 msistring *p;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000123
Mike McCormackab519f22004-06-30 18:18:27 +0000124 TRACE("%p\n", st);
125
Mike McCormackabd259f2004-06-30 18:24:33 +0000126 if( st->freeslot )
127 {
128 for( i = st->freeslot; i < st->maxcount; i++ )
Rob Shearman2e3289c2007-04-23 08:17:00 +0100129 if( !st->strings[i].persistent_refcount &&
130 !st->strings[i].nonpersistent_refcount )
Mike McCormackabd259f2004-06-30 18:24:33 +0000131 return i;
132 }
133 for( i = 1; i < st->maxcount; i++ )
Rob Shearman2e3289c2007-04-23 08:17:00 +0100134 if( !st->strings[i].persistent_refcount &&
135 !st->strings[i].nonpersistent_refcount )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000136 return i;
137
Mike McCormack068b4ec2004-03-19 01:16:36 +0000138 /* dynamically resize */
Mike McCormackabd259f2004-06-30 18:24:33 +0000139 sz = st->maxcount + 1 + st->maxcount/2;
Mike McCormack8dc28d52005-09-20 11:57:19 +0000140 p = msi_realloc_zero( st->strings, sz*sizeof(msistring) );
Mike McCormack068b4ec2004-03-19 01:16:36 +0000141 if( !p )
142 return -1;
143 st->strings = p;
Mike McCormackabd259f2004-06-30 18:24:33 +0000144 st->freeslot = st->maxcount;
145 st->maxcount = sz;
Rob Shearman2e3289c2007-04-23 08:17:00 +0100146 if( st->strings[st->freeslot].persistent_refcount ||
147 st->strings[st->freeslot].nonpersistent_refcount )
Mike McCormack068b4ec2004-03-19 01:16:36 +0000148 ERR("oops. expected freeslot to be free...\n");
149 return st->freeslot;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000150}
151
Rob Shearman2e3289c2007-04-23 08:17:00 +0100152static void set_st_entry( string_table *st, UINT n, LPWSTR str, UINT refcount, enum StringPersistence persistence )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000153{
Mike McCormackf537eb22006-04-03 18:48:52 +0900154 UINT hash = msistring_makehash( str );
155
Rob Shearman2e3289c2007-04-23 08:17:00 +0100156 if (persistence == StringPersistent)
157 {
158 st->strings[n].persistent_refcount = refcount;
159 st->strings[n].nonpersistent_refcount = 0;
160 }
161 else
162 {
163 st->strings[n].persistent_refcount = 0;
164 st->strings[n].nonpersistent_refcount = refcount;
165 }
166
Mike McCormackf537eb22006-04-03 18:48:52 +0900167 st->strings[n].str = str;
168
169 st->strings[n].hash_next = st->hash[hash];
170 st->hash[hash] = n;
171
172 if( n < st->maxcount )
173 st->freeslot = n + 1;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000174}
175
Rob Shearmane261d602007-04-23 08:18:27 +0100176static int msi_addstring( string_table *st, UINT n, const CHAR *data, int len, UINT refcount, enum StringPersistence persistence )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000177{
Mike McCormackf537eb22006-04-03 18:48:52 +0900178 LPWSTR str;
Mike McCormackab519f22004-06-30 18:18:27 +0000179 int sz;
180
Mike McCormackde8674e2004-06-30 18:42:02 +0000181 if( !data )
182 return 0;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000183 if( !data[0] )
184 return 0;
185 if( n > 0 )
186 {
Rob Shearman2e3289c2007-04-23 08:17:00 +0100187 if( st->strings[n].persistent_refcount ||
188 st->strings[n].nonpersistent_refcount )
Mike McCormack068b4ec2004-03-19 01:16:36 +0000189 return -1;
190 }
191 else
192 {
193 if( ERROR_SUCCESS == msi_string2idA( st, data, &n ) )
194 {
Rob Shearman2e3289c2007-04-23 08:17:00 +0100195 if (persistence == StringPersistent)
196 st->strings[n].persistent_refcount += refcount;
197 else
198 st->strings[n].nonpersistent_refcount += refcount;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000199 return n;
200 }
201 n = st_find_free_entry( st );
202 if( n < 0 )
203 return -1;
204 }
Mike McCormackf5e1c132004-03-17 20:49:59 +0000205
Mike McCormackabd259f2004-06-30 18:24:33 +0000206 if( n < 1 )
207 {
208 ERR("invalid index adding %s (%d)\n", debugstr_a( data ), n );
209 return -1;
210 }
211
Mike McCormackf5e1c132004-03-17 20:49:59 +0000212 /* allocate a new string */
213 if( len < 0 )
Mike McCormackab519f22004-06-30 18:18:27 +0000214 len = strlen(data);
215 sz = MultiByteToWideChar( st->codepage, 0, data, len, NULL, 0 );
Mike McCormackf537eb22006-04-03 18:48:52 +0900216 str = msi_alloc( (sz+1)*sizeof(WCHAR) );
217 if( !str )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000218 return -1;
Mike McCormackf537eb22006-04-03 18:48:52 +0900219 MultiByteToWideChar( st->codepage, 0, data, len, str, sz );
220 str[sz] = 0;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000221
Rob Shearman2e3289c2007-04-23 08:17:00 +0100222 set_st_entry( st, n, str, refcount, persistence );
Mike McCormackf5e1c132004-03-17 20:49:59 +0000223
224 return n;
225}
226
Rob Shearman2e3289c2007-04-23 08:17:00 +0100227int msi_addstringW( string_table *st, UINT n, const WCHAR *data, int len, UINT refcount, enum StringPersistence persistence )
Mike McCormack068b4ec2004-03-19 01:16:36 +0000228{
Mike McCormackf537eb22006-04-03 18:48:52 +0900229 LPWSTR str;
230
Mike McCormack068b4ec2004-03-19 01:16:36 +0000231 /* TRACE("[%2d] = %s\n", string_no, debugstr_an(data,len) ); */
232
Mike McCormackde8674e2004-06-30 18:42:02 +0000233 if( !data )
234 return 0;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000235 if( !data[0] )
236 return 0;
237 if( n > 0 )
238 {
Rob Shearman2e3289c2007-04-23 08:17:00 +0100239 if( st->strings[n].persistent_refcount ||
240 st->strings[n].nonpersistent_refcount )
Mike McCormack068b4ec2004-03-19 01:16:36 +0000241 return -1;
242 }
243 else
244 {
Mike McCormackab519f22004-06-30 18:18:27 +0000245 if( ERROR_SUCCESS == msi_string2idW( st, data, &n ) )
Mike McCormack068b4ec2004-03-19 01:16:36 +0000246 {
Rob Shearman2e3289c2007-04-23 08:17:00 +0100247 if (persistence == StringPersistent)
248 st->strings[n].persistent_refcount += refcount;
249 else
250 st->strings[n].nonpersistent_refcount += refcount;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000251 return n;
252 }
253 n = st_find_free_entry( st );
254 if( n < 0 )
255 return -1;
256 }
257
Mike McCormackabd259f2004-06-30 18:24:33 +0000258 if( n < 1 )
259 {
260 ERR("invalid index adding %s (%d)\n", debugstr_w( data ), n );
261 return -1;
262 }
263
Mike McCormack068b4ec2004-03-19 01:16:36 +0000264 /* allocate a new string */
Mike McCormackab519f22004-06-30 18:18:27 +0000265 if(len<0)
266 len = strlenW(data);
267 TRACE("%s, n = %d len = %d\n", debugstr_w(data), n, len );
268
Mike McCormackf537eb22006-04-03 18:48:52 +0900269 str = msi_alloc( (len+1)*sizeof(WCHAR) );
270 if( !str )
Mike McCormack068b4ec2004-03-19 01:16:36 +0000271 return -1;
Mike McCormackab519f22004-06-30 18:18:27 +0000272 TRACE("%d\n",__LINE__);
Mike McCormackf537eb22006-04-03 18:48:52 +0900273 memcpy( str, data, len*sizeof(WCHAR) );
274 str[len] = 0;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000275
Rob Shearman2e3289c2007-04-23 08:17:00 +0100276 set_st_entry( st, n, str, refcount, persistence );
Mike McCormack068b4ec2004-03-19 01:16:36 +0000277
278 return n;
279}
280
Mike McCormack943a71e2004-03-19 19:14:12 +0000281/* find the string identified by an id - return null if there's none */
Andrew Talbot8b362f72007-06-12 21:51:36 +0100282const WCHAR *msi_string_lookup_id( const string_table *st, UINT id )
Mike McCormackb040e4b2004-03-18 04:04:08 +0000283{
Mike McCormackab519f22004-06-30 18:18:27 +0000284 static const WCHAR zero[] = { 0 };
Mike McCormack943a71e2004-03-19 19:14:12 +0000285 if( id == 0 )
Mike McCormackab519f22004-06-30 18:18:27 +0000286 return zero;
Mike McCormackb040e4b2004-03-18 04:04:08 +0000287
Mike McCormackabd259f2004-06-30 18:24:33 +0000288 if( id >= st->maxcount )
Mike McCormack943a71e2004-03-19 19:14:12 +0000289 return NULL;
Mike McCormackb040e4b2004-03-18 04:04:08 +0000290
Rob Shearman2e3289c2007-04-23 08:17:00 +0100291 if( id && !st->strings[id].persistent_refcount && !st->strings[id].nonpersistent_refcount)
Mike McCormack943a71e2004-03-19 19:14:12 +0000292 return NULL;
Mike McCormackb040e4b2004-03-18 04:04:08 +0000293
Mike McCormack943a71e2004-03-19 19:14:12 +0000294 return st->strings[id].str;
Mike McCormackb040e4b2004-03-18 04:04:08 +0000295}
296
Mike McCormack943a71e2004-03-19 19:14:12 +0000297/*
298 * msi_id2stringW
299 *
300 * [in] st - pointer to the string table
Francois Gouget497709b2004-06-15 20:26:45 +0000301 * [in] id - id of the string to retrieve
Mike McCormack943a71e2004-03-19 19:14:12 +0000302 * [out] buffer - destination of the string
303 * [in/out] sz - number of bytes available in the buffer on input
304 * number of bytes used on output
305 *
306 * The size includes the terminating nul character. Short buffers
307 * will be filled, but not nul terminated.
308 */
Andrew Talbot8b362f72007-06-12 21:51:36 +0100309UINT msi_id2stringW( const string_table *st, UINT id, LPWSTR buffer, UINT *sz )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000310{
311 UINT len;
Mike McCormackab519f22004-06-30 18:18:27 +0000312 const WCHAR *str;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000313
Mike McCormackabd259f2004-06-30 18:24:33 +0000314 TRACE("Finding string %d of %d\n", id, st->maxcount);
Mike McCormack943a71e2004-03-19 19:14:12 +0000315
Mike McCormack9d66d942004-06-26 00:11:08 +0000316 str = msi_string_lookup_id( st, id );
Mike McCormack943a71e2004-03-19 19:14:12 +0000317 if( !str )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000318 return ERROR_FUNCTION_FAILED;
319
Mike McCormackab519f22004-06-30 18:18:27 +0000320 len = strlenW( str ) + 1;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000321
322 if( !buffer )
323 {
324 *sz = len;
325 return ERROR_SUCCESS;
326 }
327
Mike McCormackab519f22004-06-30 18:18:27 +0000328 if( *sz < len )
329 *sz = len;
330 memcpy( buffer, str, (*sz)*sizeof(WCHAR) );
331 *sz = len;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000332
333 return ERROR_SUCCESS;
334}
335
Mike McCormack943a71e2004-03-19 19:14:12 +0000336/*
337 * msi_id2stringA
338 *
339 * [in] st - pointer to the string table
Francois Gouget497709b2004-06-15 20:26:45 +0000340 * [in] id - id of the string to retrieve
Mike McCormack943a71e2004-03-19 19:14:12 +0000341 * [out] buffer - destination of the UTF8 string
342 * [in/out] sz - number of bytes available in the buffer on input
343 * number of bytes used on output
344 *
345 * The size includes the terminating nul character. Short buffers
346 * will be filled, but not nul terminated.
347 */
Andrew Talbot8b362f72007-06-12 21:51:36 +0100348UINT msi_id2stringA( const string_table *st, UINT id, LPSTR buffer, UINT *sz )
Mike McCormack943a71e2004-03-19 19:14:12 +0000349{
350 UINT len;
Mike McCormackab519f22004-06-30 18:18:27 +0000351 const WCHAR *str;
Mike McCormackabd259f2004-06-30 18:24:33 +0000352 int n;
Mike McCormack943a71e2004-03-19 19:14:12 +0000353
Mike McCormackabd259f2004-06-30 18:24:33 +0000354 TRACE("Finding string %d of %d\n", id, st->maxcount);
Mike McCormack943a71e2004-03-19 19:14:12 +0000355
Mike McCormack9d66d942004-06-26 00:11:08 +0000356 str = msi_string_lookup_id( st, id );
Mike McCormack943a71e2004-03-19 19:14:12 +0000357 if( !str )
358 return ERROR_FUNCTION_FAILED;
359
Mike McCormackab519f22004-06-30 18:18:27 +0000360 len = WideCharToMultiByte( st->codepage, 0, str, -1, NULL, 0, NULL, NULL );
Mike McCormack943a71e2004-03-19 19:14:12 +0000361
362 if( !buffer )
363 {
364 *sz = len;
365 return ERROR_SUCCESS;
366 }
367
Mike McCormackabd259f2004-06-30 18:24:33 +0000368 if( len > *sz )
369 {
370 n = strlenW( str ) + 1;
371 while( n && (len > *sz) )
372 len = WideCharToMultiByte( st->codepage, 0,
373 str, --n, NULL, 0, NULL, NULL );
374 }
375 else
376 n = -1;
377
378 *sz = WideCharToMultiByte( st->codepage, 0, str, n, buffer, len, NULL, NULL );
Mike McCormack943a71e2004-03-19 19:14:12 +0000379
380 return ERROR_SUCCESS;
381}
382
383/*
Mike McCormackab519f22004-06-30 18:18:27 +0000384 * msi_string2idW
Mike McCormack943a71e2004-03-19 19:14:12 +0000385 *
386 * [in] st - pointer to the string table
Mike McCormackab519f22004-06-30 18:18:27 +0000387 * [in] str - string to find in the string table
Mike McCormack943a71e2004-03-19 19:14:12 +0000388 * [out] id - id of the string, if found
389 */
Andrew Talbot8b362f72007-06-12 21:51:36 +0100390UINT msi_string2idW( const string_table *st, LPCWSTR str, UINT *id )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000391{
Mike McCormackf537eb22006-04-03 18:48:52 +0900392 UINT n, hash = msistring_makehash( str );
393 msistring *se = st->strings;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000394
Mike McCormackf537eb22006-04-03 18:48:52 +0900395 for (n = st->hash[hash]; n != -1; n = st->strings[n].hash_next )
Mike McCormackf5e1c132004-03-17 20:49:59 +0000396 {
Mike McCormackf537eb22006-04-03 18:48:52 +0900397 if ((str == se[n].str) || !lstrcmpW(str, se[n].str))
Mike McCormackf5e1c132004-03-17 20:49:59 +0000398 {
Mike McCormackf537eb22006-04-03 18:48:52 +0900399 *id = n;
400 return ERROR_SUCCESS;
Mike McCormackf5e1c132004-03-17 20:49:59 +0000401 }
402 }
403
Mike McCormackf537eb22006-04-03 18:48:52 +0900404 return ERROR_INVALID_PARAMETER;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000405}
406
Andrew Talbot8b362f72007-06-12 21:51:36 +0100407UINT msi_string2idA( const string_table *st, LPCSTR buffer, UINT *id )
Mike McCormack068b4ec2004-03-19 01:16:36 +0000408{
409 DWORD sz;
410 UINT r = ERROR_INVALID_PARAMETER;
Mike McCormackab519f22004-06-30 18:18:27 +0000411 LPWSTR str;
Mike McCormack068b4ec2004-03-19 01:16:36 +0000412
Mike McCormackab519f22004-06-30 18:18:27 +0000413 TRACE("Finding string %s in string table\n", debugstr_a(buffer) );
Mike McCormack068b4ec2004-03-19 01:16:36 +0000414
Mike McCormack943a71e2004-03-19 19:14:12 +0000415 if( buffer[0] == 0 )
416 {
417 *id = 0;
418 return ERROR_SUCCESS;
419 }
420
Mike McCormackab519f22004-06-30 18:18:27 +0000421 sz = MultiByteToWideChar( st->codepage, 0, buffer, -1, NULL, 0 );
Mike McCormack068b4ec2004-03-19 01:16:36 +0000422 if( sz <= 0 )
423 return r;
Mike McCormack8dc28d52005-09-20 11:57:19 +0000424 str = msi_alloc( sz*sizeof(WCHAR) );
Mike McCormack068b4ec2004-03-19 01:16:36 +0000425 if( !str )
426 return ERROR_NOT_ENOUGH_MEMORY;
Mike McCormackab519f22004-06-30 18:18:27 +0000427 MultiByteToWideChar( st->codepage, 0, buffer, -1, str, sz );
Mike McCormack068b4ec2004-03-19 01:16:36 +0000428
Mike McCormackab519f22004-06-30 18:18:27 +0000429 r = msi_string2idW( st, str, id );
Mike McCormack8dc28d52005-09-20 11:57:19 +0000430 msi_free( str );
Mike McCormackf5e1c132004-03-17 20:49:59 +0000431
432 return r;
433}
Mike McCormackb040e4b2004-03-18 04:04:08 +0000434
Andrew Talbot8b362f72007-06-12 21:51:36 +0100435UINT msi_strcmp( const string_table *st, UINT lval, UINT rval, UINT *res )
Mike McCormack9d66d942004-06-26 00:11:08 +0000436{
Mike McCormackab519f22004-06-30 18:18:27 +0000437 const WCHAR *l_str, *r_str;
Mike McCormack9d66d942004-06-26 00:11:08 +0000438
439 l_str = msi_string_lookup_id( st, lval );
440 if( !l_str )
441 return ERROR_INVALID_PARAMETER;
442
443 r_str = msi_string_lookup_id( st, rval );
444 if( !r_str )
445 return ERROR_INVALID_PARAMETER;
446
447 /* does this do the right thing for all UTF-8 strings? */
Mike McCormackab519f22004-06-30 18:18:27 +0000448 *res = strcmpW( l_str, r_str );
Mike McCormack9d66d942004-06-26 00:11:08 +0000449
450 return ERROR_SUCCESS;
451}
Mike McCormack068b4ec2004-03-19 01:16:36 +0000452
Andrew Talbot8b362f72007-06-12 21:51:36 +0100453static void string_totalsize( const string_table *st, UINT *datasize, UINT *poolsize )
Mike McCormackb040e4b2004-03-18 04:04:08 +0000454{
Mike McCormack5f832b22006-08-28 16:51:41 +0900455 UINT i, len, max, holesize;
Mike McCormackb040e4b2004-03-18 04:04:08 +0000456
Rob Shearman2e3289c2007-04-23 08:17:00 +0100457 if( st->strings[0].str || st->strings[0].persistent_refcount || st->strings[0].nonpersistent_refcount)
Mike McCormackabd259f2004-06-30 18:24:33 +0000458 ERR("oops. element 0 has a string\n");
Mike McCormack5f832b22006-08-28 16:51:41 +0900459
460 *poolsize = 4;
461 *datasize = 0;
462 max = 1;
463 holesize = 0;
Mike McCormackabd259f2004-06-30 18:24:33 +0000464 for( i=1; i<st->maxcount; i++ )
Mike McCormackb040e4b2004-03-18 04:04:08 +0000465 {
Rob Shearman2e3289c2007-04-23 08:17:00 +0100466 if( !st->strings[i].persistent_refcount )
467 continue;
Mike McCormackb040e4b2004-03-18 04:04:08 +0000468 if( st->strings[i].str )
Mike McCormackab519f22004-06-30 18:18:27 +0000469 {
Mike McCormackabd259f2004-06-30 18:24:33 +0000470 TRACE("[%u] = %s\n", i, debugstr_w(st->strings[i].str));
Mike McCormackab519f22004-06-30 18:18:27 +0000471 len = WideCharToMultiByte( st->codepage, 0,
472 st->strings[i].str, -1, NULL, 0, NULL, NULL);
473 if( len )
474 len--;
Mike McCormack5f832b22006-08-28 16:51:41 +0900475 (*datasize) += len;
476 if (len>0xffff)
477 (*poolsize) += 4;
478 max = i + 1;
479 (*poolsize) += holesize + 4;
480 holesize = 0;
Mike McCormackab519f22004-06-30 18:18:27 +0000481 }
Mike McCormack5f832b22006-08-28 16:51:41 +0900482 else
483 holesize += 4;
Mike McCormackb040e4b2004-03-18 04:04:08 +0000484 }
Mike McCormack5f832b22006-08-28 16:51:41 +0900485 TRACE("data %u pool %u codepage %x\n", *datasize, *poolsize, st->codepage );
Mike McCormackabd259f2004-06-30 18:24:33 +0000486}
Rob Shearman37b11ba2007-04-23 08:17:40 +0100487
488static const WCHAR szStringData[] = {
489 '_','S','t','r','i','n','g','D','a','t','a',0 };
490static const WCHAR szStringPool[] = {
491 '_','S','t','r','i','n','g','P','o','o','l',0 };
492
493HRESULT msi_init_string_table( IStorage *stg )
494{
495 USHORT zero[2] = { 0, 0 };
496 UINT ret;
497
498 /* create the StringPool stream... add the zero string to it*/
James Hawkinsda552852007-04-25 05:22:01 -0500499 ret = write_stream_data(stg, szStringPool, zero, sizeof zero, TRUE);
Rob Shearman37b11ba2007-04-23 08:17:40 +0100500 if (ret != ERROR_SUCCESS)
501 return E_FAIL;
502
503 /* create the StringData stream... make it zero length */
James Hawkinsda552852007-04-25 05:22:01 -0500504 ret = write_stream_data(stg, szStringData, NULL, 0, TRUE);
Rob Shearman37b11ba2007-04-23 08:17:40 +0100505 if (ret != ERROR_SUCCESS)
506 return E_FAIL;
507
508 return S_OK;
509}
510
James Hawkinsa05613a2007-06-07 16:41:51 -0700511string_table *msi_load_string_table( IStorage *stg, UINT *bytes_per_strref )
Rob Shearman37b11ba2007-04-23 08:17:40 +0100512{
513 string_table *st = NULL;
514 CHAR *data = NULL;
515 USHORT *pool = NULL;
516 UINT r, datasize = 0, poolsize = 0, codepage;
517 DWORD i, count, offset, len, n, refs;
518
James Hawkinsa05613a2007-06-07 16:41:51 -0700519 static const USHORT large_str_sig[] = { 0x0000, 0x8000 };
520
Rob Shearman37b11ba2007-04-23 08:17:40 +0100521 r = read_stream_data( stg, szStringPool, &pool, &poolsize );
522 if( r != ERROR_SUCCESS)
523 goto end;
524 r = read_stream_data( stg, szStringData, (USHORT**)&data, &datasize );
525 if( r != ERROR_SUCCESS)
526 goto end;
527
James Hawkinsa05613a2007-06-07 16:41:51 -0700528 if ( !memcmp(pool, large_str_sig, sizeof(large_str_sig)) )
529 *bytes_per_strref = LONG_STR_BYTES;
530 else
531 *bytes_per_strref = sizeof(USHORT);
532
533 /* FIXME: don't know where the codepage is in large str tables */
Rob Shearman37b11ba2007-04-23 08:17:40 +0100534 count = poolsize/4;
James Hawkinsa05613a2007-06-07 16:41:51 -0700535 if( poolsize > 4 && *bytes_per_strref != LONG_STR_BYTES )
Rob Shearman37b11ba2007-04-23 08:17:40 +0100536 codepage = pool[0] | ( pool[1] << 16 );
537 else
538 codepage = CP_ACP;
Rob Shearmane261d602007-04-23 08:18:27 +0100539 st = init_stringtable( count, codepage );
Rob Shearman37b11ba2007-04-23 08:17:40 +0100540
541 offset = 0;
542 n = 1;
543 i = 1;
544 while( i<count )
545 {
546 /* the string reference count is always the second word */
547 refs = pool[i*2+1];
548
549 /* empty entries have two zeros, still have a string id */
550 if (pool[i*2] == 0 && refs == 0)
551 {
552 i++;
553 n++;
554 continue;
555 }
556
557 /*
558 * If a string is over 64k, the previous string entry is made null
559 * and its the high word of the length is inserted in the null string's
560 * reference count field.
561 */
562 if( pool[i*2] == 0)
563 {
564 len = (pool[i*2+3] << 16) + pool[i*2+2];
565 i += 2;
566 }
567 else
568 {
569 len = pool[i*2];
570 i += 1;
571 }
572
573 if ( (offset + len) > datasize )
574 {
575 ERR("string table corrupt?\n");
576 break;
577 }
578
579 r = msi_addstring( st, n, data+offset, len, refs, StringPersistent );
580 if( r != n )
581 ERR("Failed to add string %d\n", n );
582 n++;
583 offset += len;
584 }
585
586 if ( datasize != offset )
587 ERR("string table load failed! (%08x != %08x), please report\n", datasize, offset );
588
589 TRACE("Loaded %d strings\n", count);
590
591end:
592 msi_free( pool );
593 msi_free( data );
594
595 return st;
596}
597
Andrew Talbot8b362f72007-06-12 21:51:36 +0100598UINT msi_save_string_table( const string_table *st, IStorage *storage )
Rob Shearman37b11ba2007-04-23 08:17:40 +0100599{
Rob Shearmane261d602007-04-23 08:18:27 +0100600 UINT i, datasize = 0, poolsize = 0, sz, used, r, codepage, n;
Rob Shearman37b11ba2007-04-23 08:17:40 +0100601 UINT ret = ERROR_FUNCTION_FAILED;
602 CHAR *data = NULL;
603 USHORT *pool = NULL;
604
605 TRACE("\n");
606
607 /* construct the new table in memory first */
Rob Shearmane261d602007-04-23 08:18:27 +0100608 string_totalsize( st, &datasize, &poolsize );
Rob Shearman37b11ba2007-04-23 08:17:40 +0100609
Rob Shearmane261d602007-04-23 08:18:27 +0100610 TRACE("%u %u %u\n", st->maxcount, datasize, poolsize );
Rob Shearman37b11ba2007-04-23 08:17:40 +0100611
612 pool = msi_alloc( poolsize );
613 if( ! pool )
614 {
615 WARN("Failed to alloc pool %d bytes\n", poolsize );
616 goto err;
617 }
618 data = msi_alloc( datasize );
619 if( ! data )
620 {
621 WARN("Failed to alloc data %d bytes\n", poolsize );
622 goto err;
623 }
624
625 used = 0;
Rob Shearmane261d602007-04-23 08:18:27 +0100626 codepage = st->codepage;
Rob Shearman37b11ba2007-04-23 08:17:40 +0100627 pool[0]=codepage&0xffff;
628 pool[1]=(codepage>>16);
629 n = 1;
Rob Shearmane261d602007-04-23 08:18:27 +0100630 for( i=1; i<st->maxcount; i++ )
Rob Shearman37b11ba2007-04-23 08:17:40 +0100631 {
Rob Shearmane261d602007-04-23 08:18:27 +0100632 if( !st->strings[i].persistent_refcount )
Rob Shearman37b11ba2007-04-23 08:17:40 +0100633 continue;
634 sz = datasize - used;
635 r = msi_id2stringA( st, i, data+used, &sz );
636 if( r != ERROR_SUCCESS )
637 {
638 ERR("failed to fetch string\n");
639 sz = 0;
640 }
641 if( sz && (sz < (datasize - used ) ) )
642 sz--;
643
644 if (sz)
Rob Shearmane261d602007-04-23 08:18:27 +0100645 pool[ n*2 + 1 ] = st->strings[i].persistent_refcount;
Rob Shearman37b11ba2007-04-23 08:17:40 +0100646 else
647 pool[ n*2 + 1 ] = 0;
648 if (sz < 0x10000)
649 {
650 pool[ n*2 ] = sz;
651 n++;
652 }
653 else
654 {
655 pool[ n*2 ] = 0;
656 pool[ n*2 + 2 ] = sz&0xffff;
657 pool[ n*2 + 3 ] = (sz>>16);
658 n += 2;
659 }
660 used += sz;
661 if( used > datasize )
662 {
663 ERR("oops overran %d >= %d\n", used, datasize);
664 goto err;
665 }
666 }
667
668 if( used != datasize )
669 {
670 ERR("oops used %d != datasize %d\n", used, datasize);
671 goto err;
672 }
673
674 /* write the streams */
James Hawkinsda552852007-04-25 05:22:01 -0500675 r = write_stream_data( storage, szStringData, data, datasize, TRUE );
Rob Shearman37b11ba2007-04-23 08:17:40 +0100676 TRACE("Wrote StringData r=%08x\n", r);
677 if( r )
678 goto err;
James Hawkinsda552852007-04-25 05:22:01 -0500679 r = write_stream_data( storage, szStringPool, pool, poolsize, TRUE );
Rob Shearman37b11ba2007-04-23 08:17:40 +0100680 TRACE("Wrote StringPool r=%08x\n", r);
681 if( r )
682 goto err;
683
684 ret = ERROR_SUCCESS;
685
686err:
687 msi_free( data );
688 msi_free( pool );
689
690 return ret;
691}