user32/tests: Fix the listbox delete test on NT4.
[wine] / dlls / msi / table.c
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2002-2005 Mike McCormack for CodeWeavers
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include <stdarg.h>
22 #include <assert.h>
23
24 #define COBJMACROS
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
27
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winerror.h"
31 #include "msi.h"
32 #include "msiquery.h"
33 #include "objbase.h"
34 #include "objidl.h"
35 #include "winnls.h"
36 #include "msipriv.h"
37 #include "query.h"
38
39 #include "wine/debug.h"
40 #include "wine/unicode.h"
41
42 WINE_DEFAULT_DEBUG_CHANNEL(msidb);
43
44 #define MSITABLE_HASH_TABLE_SIZE 37
45 #define LONG_STR_BYTES 3
46
47 typedef struct tagMSICOLUMNHASHENTRY
48 {
49     struct tagMSICOLUMNHASHENTRY *next;
50     UINT value;
51     UINT row;
52 } MSICOLUMNHASHENTRY;
53
54 typedef struct tagMSICOLUMNINFO
55 {
56     LPWSTR tablename;
57     UINT   number;
58     LPWSTR colname;
59     UINT   type;
60     UINT   offset;
61     INT    ref_count;
62     BOOL   temporary;
63     MSICOLUMNHASHENTRY **hash_table;
64 } MSICOLUMNINFO;
65
66 typedef struct tagMSIORDERINFO
67 {
68     UINT *reorder;
69     UINT num_cols;
70     UINT cols[1];
71 } MSIORDERINFO;
72
73 struct tagMSITABLE
74 {
75     BYTE **data;
76     UINT row_count;
77     BYTE **nonpersistent_data;
78     UINT nonpersistent_row_count;
79     struct list entry;
80     MSICOLUMNINFO *colinfo;
81     UINT col_count;
82     MSICONDITION persistent;
83     INT ref_count;
84     WCHAR name[1];
85 };
86
87 typedef struct tagMSITRANSFORM {
88     struct list entry;
89     IStorage *stg;
90 } MSITRANSFORM;
91
92 static const WCHAR szStringData[] = {
93     '_','S','t','r','i','n','g','D','a','t','a',0 };
94 static const WCHAR szStringPool[] = {
95     '_','S','t','r','i','n','g','P','o','o','l',0 };
96
97 /* information for default tables */
98 static WCHAR szTables[]  = { '_','T','a','b','l','e','s',0 };
99 static WCHAR szTable[]  = { 'T','a','b','l','e',0 };
100 static WCHAR szName[]    = { 'N','a','m','e',0 };
101 static WCHAR szColumns[] = { '_','C','o','l','u','m','n','s',0 };
102 static WCHAR szNumber[]  = { 'N','u','m','b','e','r',0 };
103 static WCHAR szType[]    = { 'T','y','p','e',0 };
104
105 static const MSICOLUMNINFO _Columns_cols[4] = {
106     { szColumns, 1, szTable,  MSITYPE_VALID | MSITYPE_STRING | MSITYPE_KEY | 64, 0, 0, 0, NULL },
107     { szColumns, 2, szNumber, MSITYPE_VALID | MSITYPE_KEY | 2,     2, 0, 0, NULL },
108     { szColumns, 3, szName,   MSITYPE_VALID | MSITYPE_STRING | 64, 4, 0, 0, NULL },
109     { szColumns, 4, szType,   MSITYPE_VALID | 2,                   6, 0, 0, NULL },
110 };
111
112 static const MSICOLUMNINFO _Tables_cols[1] = {
113     { szTables,  1, szName,   MSITYPE_VALID | MSITYPE_STRING | MSITYPE_KEY | 64, 0, 0, 0, NULL },
114 };
115
116 #define MAX_STREAM_NAME 0x1f
117
118 static UINT table_get_column_info( MSIDATABASE *db, LPCWSTR name,
119        MSICOLUMNINFO **pcols, UINT *pcount );
120 static void table_calc_column_offsets( MSIDATABASE *db, MSICOLUMNINFO *colinfo,
121        DWORD count );
122 static UINT get_tablecolumns( MSIDATABASE *db,
123        LPCWSTR szTableName, MSICOLUMNINFO *colinfo, UINT *sz);
124 static void msi_free_colinfo( MSICOLUMNINFO *colinfo, UINT count );
125
126 static inline UINT bytes_per_column( MSIDATABASE *db, const MSICOLUMNINFO *col )
127 {
128     if( MSITYPE_IS_BINARY(col->type) )
129         return 2;
130     if( col->type & MSITYPE_STRING )
131         return db->bytes_per_strref;
132     if( (col->type & 0xff) > 4 )
133         ERR("Invalid column size!\n");
134     return col->type & 0xff;
135 }
136
137 static int utf2mime(int x)
138 {
139     if( (x>='0') && (x<='9') )
140         return x-'0';
141     if( (x>='A') && (x<='Z') )
142         return x-'A'+10;
143     if( (x>='a') && (x<='z') )
144         return x-'a'+10+26;
145     if( x=='.' )
146         return 10+26+26;
147     if( x=='_' )
148         return 10+26+26+1;
149     return -1;
150 }
151
152 static LPWSTR encode_streamname(BOOL bTable, LPCWSTR in)
153 {
154     DWORD count = MAX_STREAM_NAME;
155     DWORD ch, next;
156     LPWSTR out, p;
157
158     if( !bTable )
159         count = lstrlenW( in )+2;
160     out = msi_alloc( count*sizeof(WCHAR) );
161     p = out;
162
163     if( bTable )
164     {
165          *p++ = 0x4840;
166          count --;
167     }
168     while( count -- ) 
169     {
170         ch = *in++;
171         if( !ch )
172         {
173             *p = ch;
174             return out;
175         }
176         if( ( ch < 0x80 ) && ( utf2mime(ch) >= 0 ) )
177         {
178             ch = utf2mime(ch) + 0x4800;
179             next = *in;
180             if( next && (next<0x80) )
181             {
182                 next = utf2mime(next);
183                 if( next != -1 )
184                 {
185                      next += 0x3ffffc0;
186                      ch += (next<<6);
187                      in++;
188                 }
189             }
190         }
191         *p++ = ch;
192     }
193     ERR("Failed to encode stream name (%s)\n",debugstr_w(in));
194     msi_free( out );
195     return NULL;
196 }
197
198 static int mime2utf(int x)
199 {
200     if( x<10 )
201         return x + '0';
202     if( x<(10+26))
203         return x - 10 + 'A';
204     if( x<(10+26+26))
205         return x - 10 - 26 + 'a';
206     if( x == (10+26+26) )
207         return '.';
208     return '_';
209 }
210
211 BOOL decode_streamname(LPCWSTR in, LPWSTR out)
212 {
213     WCHAR ch;
214     DWORD count = 0;
215
216     while ( (ch = *in++) )
217     {
218         if( (ch >= 0x3800 ) && (ch < 0x4840 ) )
219         {
220             if( ch >= 0x4800 )
221                 ch = mime2utf(ch-0x4800);
222             else
223             {
224                 ch -= 0x3800;
225                 *out++ = mime2utf(ch&0x3f);
226                 count++;
227                 ch = mime2utf((ch>>6)&0x3f);
228             }
229         }
230         *out++ = ch;
231         count++;
232     }
233     *out = 0;
234     return count;
235 }
236
237 void enum_stream_names( IStorage *stg )
238 {
239     IEnumSTATSTG *stgenum = NULL;
240     HRESULT r;
241     STATSTG stat;
242     ULONG n, count;
243     WCHAR name[0x40];
244
245     r = IStorage_EnumElements( stg, 0, NULL, 0, &stgenum );
246     if( FAILED( r ) )
247         return;
248
249     n = 0;
250     while( 1 )
251     {
252         count = 0;
253         r = IEnumSTATSTG_Next( stgenum, 1, &stat, &count );
254         if( FAILED( r ) || !count )
255             break;
256         decode_streamname( stat.pwcsName, name );
257         TRACE("stream %2d -> %s %s\n", n,
258               debugstr_w(stat.pwcsName), debugstr_w(name) );
259         CoTaskMemFree( stat.pwcsName );
260         n++;
261     }
262
263     IEnumSTATSTG_Release( stgenum );
264 }
265
266 UINT read_stream_data( IStorage *stg, LPCWSTR stname, BOOL table,
267                        BYTE **pdata, UINT *psz )
268 {
269     HRESULT r;
270     UINT ret = ERROR_FUNCTION_FAILED;
271     VOID *data;
272     ULONG sz, count;
273     IStream *stm = NULL;
274     STATSTG stat;
275     LPWSTR encname;
276
277     encname = encode_streamname(table, stname);
278
279     TRACE("%s -> %s\n",debugstr_w(stname),debugstr_w(encname));
280
281     r = IStorage_OpenStream(stg, encname, NULL, 
282             STGM_READ | STGM_SHARE_EXCLUSIVE, 0, &stm);
283     msi_free( encname );
284     if( FAILED( r ) )
285     {
286         WARN("open stream failed r = %08x - empty table?\n", r);
287         return ret;
288     }
289
290     r = IStream_Stat(stm, &stat, STATFLAG_NONAME );
291     if( FAILED( r ) )
292     {
293         WARN("open stream failed r = %08x!\n", r);
294         goto end;
295     }
296
297     if( stat.cbSize.QuadPart >> 32 )
298     {
299         WARN("Too big!\n");
300         goto end;
301     }
302         
303     sz = stat.cbSize.QuadPart;
304     data = msi_alloc( sz );
305     if( !data )
306     {
307         WARN("couldn't allocate memory r=%08x!\n", r);
308         ret = ERROR_NOT_ENOUGH_MEMORY;
309         goto end;
310     }
311         
312     r = IStream_Read(stm, data, sz, &count );
313     if( FAILED( r ) || ( count != sz ) )
314     {
315         msi_free( data );
316         WARN("read stream failed r = %08x!\n", r);
317         goto end;
318     }
319
320     *pdata = data;
321     *psz = sz;
322     ret = ERROR_SUCCESS;
323
324 end:
325     IStream_Release( stm );
326
327     return ret;
328 }
329
330 static UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm )
331 {
332     LPWSTR encname;
333     HRESULT r;
334
335     encname = encode_streamname(FALSE, stname);
336
337     TRACE("%s -> %s\n",debugstr_w(stname),debugstr_w(encname));
338
339     r = IStorage_OpenStream(db->storage, encname, NULL, 
340             STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm);
341     if( FAILED( r ) )
342     {
343         MSITRANSFORM *transform;
344
345         LIST_FOR_EACH_ENTRY( transform, &db->transforms, MSITRANSFORM, entry )
346         {
347             TRACE("looking for %s in transform storage\n", debugstr_w(stname) );
348             r = IStorage_OpenStream( transform->stg, encname, NULL, 
349                     STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm );
350             if (SUCCEEDED(r))
351                 break;
352         }
353     }
354
355     msi_free( encname );
356
357     return SUCCEEDED(r) ? ERROR_SUCCESS : ERROR_FUNCTION_FAILED;
358 }
359
360 UINT read_raw_stream_data( MSIDATABASE *db, LPCWSTR stname,
361                               USHORT **pdata, UINT *psz )
362 {
363     HRESULT r;
364     UINT ret = ERROR_FUNCTION_FAILED;
365     VOID *data;
366     ULONG sz, count;
367     IStream *stm = NULL;
368     STATSTG stat;
369
370     r = db_get_raw_stream( db, stname, &stm );
371     if( r != ERROR_SUCCESS)
372         return ret;
373     r = IStream_Stat(stm, &stat, STATFLAG_NONAME );
374     if( FAILED( r ) )
375     {
376         WARN("open stream failed r = %08x!\n", r);
377         goto end;
378     }
379
380     if( stat.cbSize.QuadPart >> 32 )
381     {
382         WARN("Too big!\n");
383         goto end;
384     }
385         
386     sz = stat.cbSize.QuadPart;
387     data = msi_alloc( sz );
388     if( !data )
389     {
390         WARN("couldn't allocate memory r=%08x!\n", r);
391         ret = ERROR_NOT_ENOUGH_MEMORY;
392         goto end;
393     }
394         
395     r = IStream_Read(stm, data, sz, &count );
396     if( FAILED( r ) || ( count != sz ) )
397     {
398         msi_free( data );
399         WARN("read stream failed r = %08x!\n", r);
400         goto end;
401     }
402
403     *pdata = data;
404     *psz = sz;
405     ret = ERROR_SUCCESS;
406
407 end:
408     IStream_Release( stm );
409
410     return ret;
411 }
412
413 UINT write_stream_data( IStorage *stg, LPCWSTR stname,
414                         LPCVOID data, UINT sz, BOOL bTable )
415 {
416     HRESULT r;
417     UINT ret = ERROR_FUNCTION_FAILED;
418     ULONG count;
419     IStream *stm = NULL;
420     ULARGE_INTEGER size;
421     LARGE_INTEGER pos;
422     LPWSTR encname;
423
424     encname = encode_streamname(bTable, stname );
425     r = IStorage_OpenStream( stg, encname, NULL, 
426             STGM_WRITE | STGM_SHARE_EXCLUSIVE, 0, &stm);
427     if( FAILED(r) )
428     {
429         r = IStorage_CreateStream( stg, encname,
430                 STGM_WRITE | STGM_SHARE_EXCLUSIVE, 0, 0, &stm);
431     }
432     msi_free( encname );
433     if( FAILED( r ) )
434     {
435         WARN("open stream failed r = %08x\n", r);
436         return ret;
437     }
438
439     size.QuadPart = sz;
440     r = IStream_SetSize( stm, size );
441     if( FAILED( r ) )
442     {
443         WARN("Failed to SetSize\n");
444         goto end;
445     }
446
447     pos.QuadPart = 0;
448     r = IStream_Seek( stm, pos, STREAM_SEEK_SET, NULL );
449     if( FAILED( r ) )
450     {
451         WARN("Failed to Seek\n");
452         goto end;
453     }
454
455     if (sz)
456     {
457         r = IStream_Write(stm, data, sz, &count );
458         if( FAILED( r ) || ( count != sz ) )
459         {
460             WARN("Failed to Write\n");
461             goto end;
462         }
463     }
464
465     ret = ERROR_SUCCESS;
466
467 end:
468     IStream_Release( stm );
469
470     return ret;
471 }
472
473 static void free_table( MSITABLE *table )
474 {
475     UINT i;
476     for( i=0; i<table->row_count; i++ )
477         msi_free( table->data[i] );
478     msi_free( table->data );
479     for( i=0; i<table->nonpersistent_row_count; i++ )
480         msi_free( table->nonpersistent_data[i] );
481     msi_free( table->nonpersistent_data );
482     msi_free_colinfo( table->colinfo, table->col_count );
483     msi_free( table->colinfo );
484     msi_free( table );
485 }
486
487 static UINT msi_table_get_row_size( MSIDATABASE *db,const MSICOLUMNINFO *cols,
488                                     UINT count )
489 {
490     const MSICOLUMNINFO *last_col = &cols[count-1];
491     if (!count)
492         return 0;
493     return last_col->offset + bytes_per_column( db, last_col );
494 }
495
496 /* add this table to the list of cached tables in the database */
497 static UINT read_table_from_storage( MSIDATABASE *db, MSITABLE *t, IStorage *stg )
498 {
499     BYTE *rawdata = NULL;
500     UINT rawsize = 0, i, j, row_size = 0;
501
502     TRACE("%s\n",debugstr_w(t->name));
503
504     row_size = msi_table_get_row_size( db, t->colinfo, t->col_count );
505
506     /* if we can't read the table, just assume that it's empty */
507     read_stream_data( stg, t->name, TRUE, &rawdata, &rawsize );
508     if( !rawdata )
509         return ERROR_SUCCESS;
510
511     TRACE("Read %d bytes\n", rawsize );
512
513     if( rawsize % row_size )
514     {
515         WARN("Table size is invalid %d/%d\n", rawsize, row_size );
516         goto err;
517     }
518
519     t->row_count = rawsize / row_size;
520     t->data = msi_alloc_zero( t->row_count * sizeof (USHORT*) );
521     if( !t->data )
522         goto err;
523
524     /* transpose all the data */
525     TRACE("Transposing data from %d rows\n", t->row_count );
526     for( i=0; i<t->row_count; i++ )
527     {
528         t->data[i] = msi_alloc( row_size );
529         if( !t->data[i] )
530             goto err;
531
532         for( j=0; j<t->col_count; j++ )
533         {
534             UINT ofs = t->colinfo[j].offset;
535             UINT n = bytes_per_column( db, &t->colinfo[j] );
536             UINT k;
537
538             if ( n != 2 && n != 3 && n != 4 )
539             {
540                 ERR("oops - unknown column width %d\n", n);
541                 goto err;
542             }
543
544             for ( k = 0; k < n; k++ )
545                 t->data[i][ofs + k] = rawdata[ofs*t->row_count + i * n + k];
546         }
547     }
548
549     msi_free( rawdata );
550     return ERROR_SUCCESS;
551 err:
552     msi_free( rawdata );
553     return ERROR_FUNCTION_FAILED;
554 }
555
556 void free_cached_tables( MSIDATABASE *db )
557 {
558     while( !list_empty( &db->tables ) )
559     {
560         MSITABLE *t = LIST_ENTRY( list_head( &db->tables ), MSITABLE, entry );
561
562         list_remove( &t->entry );
563         free_table( t );
564     }
565 }
566
567 static MSITABLE *find_cached_table( MSIDATABASE *db, LPCWSTR name )
568 {
569     MSITABLE *t;
570
571     LIST_FOR_EACH_ENTRY( t, &db->tables, MSITABLE, entry )
572         if( !lstrcmpW( name, t->name ) )
573             return t;
574
575     return NULL;
576 }
577
578 static UINT table_get_column_info( MSIDATABASE *db, LPCWSTR name, MSICOLUMNINFO **pcols, UINT *pcount )
579 {
580     UINT r, column_count = 0;
581     MSICOLUMNINFO *columns;
582
583     /* get the number of columns in this table */
584     column_count = 0;
585     r = get_tablecolumns( db, name, NULL, &column_count );
586     if( r != ERROR_SUCCESS )
587         return r;
588
589     *pcount = column_count;
590
591     /* if there's no columns, there's no table */
592     if( column_count == 0 )
593         return ERROR_INVALID_PARAMETER;
594
595     TRACE("Table %s found\n", debugstr_w(name) );
596
597     columns = msi_alloc( column_count*sizeof (MSICOLUMNINFO) );
598     if( !columns )
599         return ERROR_FUNCTION_FAILED;
600
601     r = get_tablecolumns( db, name, columns, &column_count );
602     if( r != ERROR_SUCCESS )
603     {
604         msi_free( columns );
605         return ERROR_FUNCTION_FAILED;
606     }
607
608     *pcols = columns;
609
610     return r;
611 }
612
613 UINT msi_create_table( MSIDATABASE *db, LPCWSTR name, column_info *col_info,
614                        MSICONDITION persistent, MSITABLE **table_ret)
615 {
616     UINT r, nField;
617     MSIVIEW *tv = NULL;
618     MSIRECORD *rec = NULL;
619     column_info *col;
620     MSITABLE *table;
621     UINT i;
622
623     /* only add tables that don't exist already */
624     if( TABLE_Exists(db, name ) )
625     {
626         WARN("table %s exists\n", debugstr_w(name));
627         return ERROR_BAD_QUERY_SYNTAX;
628     }
629
630     table = msi_alloc( sizeof (MSITABLE) + lstrlenW(name)*sizeof (WCHAR) );
631     if( !table )
632         return ERROR_FUNCTION_FAILED;
633
634     table->ref_count = 1;
635     table->row_count = 0;
636     table->data = NULL;
637     table->nonpersistent_row_count = 0;
638     table->nonpersistent_data = NULL;
639     table->colinfo = NULL;
640     table->col_count = 0;
641     table->persistent = persistent;
642     lstrcpyW( table->name, name );
643
644     for( col = col_info; col; col = col->next )
645         table->col_count++;
646
647     table->colinfo = msi_alloc( table->col_count * sizeof(MSICOLUMNINFO) );
648     if (!table->colinfo)
649     {
650         free_table( table );
651         return ERROR_FUNCTION_FAILED;
652     }
653
654     for( i = 0, col = col_info; col; i++, col = col->next )
655     {
656         table->colinfo[ i ].tablename = strdupW( col->table );
657         table->colinfo[ i ].number = i + 1;
658         table->colinfo[ i ].colname = strdupW( col->column );
659         table->colinfo[ i ].type = col->type;
660         table->colinfo[ i ].offset = 0;
661         table->colinfo[ i ].ref_count = 0;
662         table->colinfo[ i ].hash_table = NULL;
663         table->colinfo[ i ].temporary = col->temporary;
664     }
665     table_calc_column_offsets( db, table->colinfo, table->col_count);
666
667     r = TABLE_CreateView( db, szTables, &tv );
668     TRACE("CreateView returned %x\n", r);
669     if( r )
670     {
671         free_table( table );
672         return r;
673     }
674
675     r = tv->ops->execute( tv, 0 );
676     TRACE("tv execute returned %x\n", r);
677     if( r )
678         goto err;
679
680     rec = MSI_CreateRecord( 1 );
681     if( !rec )
682         goto err;
683
684     r = MSI_RecordSetStringW( rec, 1, name );
685     if( r )
686         goto err;
687
688     r = tv->ops->insert_row( tv, rec, -1, persistent == MSICONDITION_FALSE );
689     TRACE("insert_row returned %x\n", r);
690     if( r )
691         goto err;
692
693     tv->ops->delete( tv );
694     tv = NULL;
695
696     msiobj_release( &rec->hdr );
697     rec = NULL;
698
699     if( persistent != MSICONDITION_FALSE )
700     {
701         /* add each column to the _Columns table */
702         r = TABLE_CreateView( db, szColumns, &tv );
703         if( r )
704             return r;
705
706         r = tv->ops->execute( tv, 0 );
707         TRACE("tv execute returned %x\n", r);
708         if( r )
709             goto err;
710
711         rec = MSI_CreateRecord( 4 );
712         if( !rec )
713             goto err;
714
715         r = MSI_RecordSetStringW( rec, 1, name );
716         if( r )
717             goto err;
718
719         /*
720          * need to set the table, column number, col name and type
721          * for each column we enter in the table
722          */
723         nField = 1;
724         for( col = col_info; col; col = col->next )
725         {
726             r = MSI_RecordSetInteger( rec, 2, nField );
727             if( r )
728                 goto err;
729
730             r = MSI_RecordSetStringW( rec, 3, col->column );
731             if( r )
732                 goto err;
733
734             r = MSI_RecordSetInteger( rec, 4, col->type );
735             if( r )
736                 goto err;
737
738             r = tv->ops->insert_row( tv, rec, -1, FALSE );
739             if( r )
740                 goto err;
741
742             nField++;
743         }
744         if( !col )
745             r = ERROR_SUCCESS;
746     }
747
748 err:
749     if (rec)
750         msiobj_release( &rec->hdr );
751     /* FIXME: remove values from the string table on error */
752     if( tv )
753         tv->ops->delete( tv );
754
755     if (r == ERROR_SUCCESS)
756     {
757         list_add_head( &db->tables, &table->entry );
758         *table_ret = table;
759     }
760     else
761         free_table( table );
762
763     return r;
764 }
765
766 static UINT get_table( MSIDATABASE *db, LPCWSTR name, MSITABLE **table_ret )
767 {
768     MSITABLE *table;
769     UINT r;
770
771     /* first, see if the table is cached */
772     table = find_cached_table( db, name );
773     if( table )
774     {
775         *table_ret = table;
776         return ERROR_SUCCESS;
777     }
778
779     /* nonexistent tables should be interpreted as empty tables */
780     table = msi_alloc( sizeof (MSITABLE) + lstrlenW(name)*sizeof (WCHAR) );
781     if( !table )
782         return ERROR_FUNCTION_FAILED;
783
784     table->row_count = 0;
785     table->data = NULL;
786     table->nonpersistent_row_count = 0;
787     table->nonpersistent_data = NULL;
788     table->colinfo = NULL;
789     table->col_count = 0;
790     table->persistent = MSICONDITION_TRUE;
791     lstrcpyW( table->name, name );
792
793     if ( !lstrcmpW(name, szTables) || !lstrcmpW(name, szColumns) )
794         table->persistent = MSICONDITION_NONE;
795
796     r = table_get_column_info( db, name, &table->colinfo, &table->col_count);
797     if (r != ERROR_SUCCESS)
798     {
799         free_table ( table );
800         return r;
801     }
802
803     r = read_table_from_storage( db, table, db->storage );
804     if( r != ERROR_SUCCESS )
805     {
806         free_table( table );
807         return r;
808     }
809
810     list_add_head( &db->tables, &table->entry );
811     *table_ret = table;
812     return ERROR_SUCCESS;
813 }
814
815 static UINT save_table( MSIDATABASE *db, const MSITABLE *t )
816 {
817     BYTE *rawdata = NULL, *p;
818     UINT rawsize, r, i, j, row_size;
819
820     /* Nothing to do for non-persistent tables */
821     if( t->persistent == MSICONDITION_FALSE )
822         return ERROR_SUCCESS;
823
824     TRACE("Saving %s\n", debugstr_w( t->name ) );
825
826     row_size = msi_table_get_row_size( db, t->colinfo, t->col_count );
827
828     rawsize = t->row_count * row_size;
829     rawdata = msi_alloc_zero( rawsize );
830     if( !rawdata )
831     {
832         r = ERROR_NOT_ENOUGH_MEMORY;
833         goto err;
834     }
835
836     p = rawdata;
837     for( i=0; i<t->col_count; i++ )
838     {
839         for( j=0; j<t->row_count; j++ )
840         {
841             UINT offset = t->colinfo[i].offset;
842
843             *p++ = t->data[j][offset];
844             *p++ = t->data[j][offset + 1];
845             if( 4 == bytes_per_column( db, &t->colinfo[i] ) )
846             {
847                 *p++ = t->data[j][offset + 2];
848                 *p++ = t->data[j][offset + 3];
849             }
850         }
851     }
852
853     TRACE("writing %d bytes\n", rawsize);
854     r = write_stream_data( db->storage, t->name, rawdata, rawsize, TRUE );
855
856 err:
857     msi_free( rawdata );
858
859     return r;
860 }
861
862 static void table_calc_column_offsets( MSIDATABASE *db, MSICOLUMNINFO *colinfo,
863                                        DWORD count )
864 {
865     DWORD i;
866
867     for( i=0; colinfo && (i<count); i++ )
868     {
869          assert( (i+1) == colinfo[ i ].number );
870          if (i)
871              colinfo[i].offset = colinfo[ i - 1 ].offset
872                                + bytes_per_column( db, &colinfo[ i - 1 ] );
873          else
874              colinfo[i].offset = 0;
875          TRACE("column %d is [%s] with type %08x ofs %d\n",
876                colinfo[i].number, debugstr_w(colinfo[i].colname),
877                colinfo[i].type, colinfo[i].offset);
878     }
879 }
880
881 static UINT get_defaulttablecolumns( MSIDATABASE *db, LPCWSTR name,
882                                      MSICOLUMNINFO *colinfo, UINT *sz)
883 {
884     const MSICOLUMNINFO *p;
885     DWORD i, n;
886
887     TRACE("%s\n", debugstr_w(name));
888
889     if (!lstrcmpW( name, szTables ))
890     {
891         p = _Tables_cols;
892         n = 1;
893     }
894     else if (!lstrcmpW( name, szColumns ))
895     {
896         p = _Columns_cols;
897         n = 4;
898     }
899     else
900         return ERROR_FUNCTION_FAILED;
901
902     /* duplicate the string data so we can free it in msi_free_colinfo */
903     for (i=0; i<n; i++)
904     {
905         if (colinfo && (i < *sz) )
906         {
907             colinfo[i] = p[i];
908             colinfo[i].tablename = strdupW( p[i].tablename );
909             colinfo[i].colname = strdupW( p[i].colname );
910         }
911         if( colinfo && (i >= *sz) )
912             break;
913     }
914     table_calc_column_offsets( db, colinfo, n );
915     *sz = n;
916     return ERROR_SUCCESS;
917 }
918
919 static void msi_free_colinfo( MSICOLUMNINFO *colinfo, UINT count )
920 {
921     UINT i;
922
923     for( i=0; i<count; i++ )
924     {
925         msi_free( colinfo[i].tablename );
926         msi_free( colinfo[i].colname );
927         msi_free( colinfo[i].hash_table );
928     }
929 }
930
931 static LPWSTR msi_makestring( const MSIDATABASE *db, UINT stringid)
932 {
933     return strdupW(msi_string_lookup_id( db->strings, stringid ));
934 }
935
936 static UINT read_table_int(BYTE *const *data, UINT row, UINT col, UINT bytes)
937 {
938     UINT ret = 0, i;
939
940     for (i = 0; i < bytes; i++)
941         ret += (data[row][col + i] << i * 8);
942
943     return ret;
944 }
945
946 static UINT get_tablecolumns( MSIDATABASE *db,
947        LPCWSTR szTableName, MSICOLUMNINFO *colinfo, UINT *sz)
948 {
949     UINT r, i, n=0, table_id, count, maxcount = *sz;
950     MSITABLE *table = NULL;
951
952     TRACE("%s\n", debugstr_w(szTableName));
953
954     /* first check if there is a default table with that name */
955     r = get_defaulttablecolumns( db, szTableName, colinfo, sz );
956     if( ( r == ERROR_SUCCESS ) && *sz )
957         return r;
958
959     r = get_table( db, szColumns, &table );
960     if( r != ERROR_SUCCESS )
961     {
962         ERR("couldn't load _Columns table\n");
963         return ERROR_FUNCTION_FAILED;
964     }
965
966     /* convert table and column names to IDs from the string table */
967     r = msi_string2idW( db->strings, szTableName, &table_id );
968     if( r != ERROR_SUCCESS )
969     {
970         WARN("Couldn't find id for %s\n", debugstr_w(szTableName));
971         return r;
972     }
973
974     TRACE("Table id is %d, row count is %d\n", table_id, table->row_count);
975
976     /* Note: _Columns table doesn't have non-persistent data */
977
978     /* if maxcount is non-zero, assume it's exactly right for this table */
979     memset( colinfo, 0, maxcount*sizeof(*colinfo) );
980     count = table->row_count;
981     for( i=0; i<count; i++ )
982     {
983         if( read_table_int(table->data, i, 0, db->bytes_per_strref) != table_id )
984             continue;
985         if( colinfo )
986         {
987             UINT id = read_table_int(table->data, i, table->colinfo[2].offset, db->bytes_per_strref);
988             UINT col = read_table_int(table->data, i, table->colinfo[1].offset, sizeof(USHORT)) - (1<<15);
989
990             /* check the column number is in range */
991             if (col<1 || col>maxcount)
992             {
993                 ERR("column %d out of range\n", col);
994                 continue;
995             }
996
997             /* check if this column was already set */
998             if (colinfo[ col - 1 ].number)
999             {
1000                 ERR("duplicate column %d\n", col);
1001                 continue;
1002             }
1003
1004             colinfo[ col - 1 ].tablename = msi_makestring( db, table_id );
1005             colinfo[ col - 1 ].number = col;
1006             colinfo[ col - 1 ].colname = msi_makestring( db, id );
1007             colinfo[ col - 1 ].type = read_table_int(table->data, i,
1008                                                      table->colinfo[3].offset,
1009                                                      sizeof(USHORT)) - (1<<15);
1010             colinfo[ col - 1 ].offset = 0;
1011             colinfo[ col - 1 ].ref_count = 0;
1012             colinfo[ col - 1 ].hash_table = NULL;
1013         }
1014         n++;
1015     }
1016
1017     TRACE("%s has %d columns\n", debugstr_w(szTableName), n);
1018
1019     if (colinfo && n != maxcount)
1020     {
1021         ERR("missing column in table %s\n", debugstr_w(szTableName));
1022         msi_free_colinfo(colinfo, maxcount );
1023         return ERROR_FUNCTION_FAILED;
1024     }
1025
1026     table_calc_column_offsets( db, colinfo, n );
1027     *sz = n;
1028
1029     return ERROR_SUCCESS;
1030 }
1031
1032 static void msi_update_table_columns( MSIDATABASE *db, LPCWSTR name )
1033 {
1034     MSITABLE *table;
1035     UINT size, offset, old_count;
1036     UINT n;
1037
1038     table = find_cached_table( db, name );
1039     old_count = table->col_count;
1040     msi_free( table->colinfo );
1041     table->colinfo = NULL;
1042
1043     table_get_column_info( db, name, &table->colinfo, &table->col_count );
1044     if (!table->col_count)
1045         return;
1046
1047     size = msi_table_get_row_size( db, table->colinfo, table->col_count );
1048     offset = table->colinfo[table->col_count - 1].offset;
1049
1050     for ( n = 0; n < table->row_count; n++ )
1051     {
1052         table->data[n] = msi_realloc( table->data[n], size );
1053         if (old_count < table->col_count)
1054             memset( &table->data[n][offset], 0, size - offset );
1055     }
1056 }
1057
1058 /* try to find the table name in the _Tables table */
1059 BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name )
1060 {
1061     UINT r, table_id = 0, i, count;
1062     MSITABLE *table = NULL;
1063
1064     static const WCHAR szStreams[] = {'_','S','t','r','e','a','m','s',0};
1065     static const WCHAR szStorages[] = {'_','S','t','o','r','a','g','e','s',0};
1066
1067     if( !lstrcmpW( name, szTables ) || !lstrcmpW( name, szColumns ) ||
1068         !lstrcmpW( name, szStreams ) || !lstrcmpW( name, szStorages ) )
1069         return TRUE;
1070
1071     r = msi_string2idW( db->strings, name, &table_id );
1072     if( r != ERROR_SUCCESS )
1073     {
1074         TRACE("Couldn't find id for %s\n", debugstr_w(name));
1075         return FALSE;
1076     }
1077
1078     r = get_table( db, szTables, &table );
1079     if( r != ERROR_SUCCESS )
1080     {
1081         ERR("table %s not available\n", debugstr_w(szTables));
1082         return FALSE;
1083     }
1084
1085     count = table->row_count;
1086     for( i=0; i<count; i++ )
1087         if( table->data[ i ][ 0 ] == table_id )
1088             return TRUE;
1089
1090     count = table->nonpersistent_row_count;
1091     for( i=0; i<count; i++ )
1092         if( table->nonpersistent_data[ i ][ 0 ] == table_id )
1093             return TRUE;
1094
1095     return FALSE;
1096 }
1097
1098 /* below is the query interface to a table */
1099
1100 typedef struct tagMSITABLEVIEW
1101 {
1102     MSIVIEW        view;
1103     MSIDATABASE   *db;
1104     MSITABLE      *table;
1105     MSICOLUMNINFO *columns;
1106     MSIORDERINFO  *order;
1107     UINT           num_cols;
1108     UINT           row_size;
1109     WCHAR          name[1];
1110 } MSITABLEVIEW;
1111
1112 static UINT TABLE_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
1113 {
1114     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1115     UINT offset, n;
1116     BYTE **data;
1117
1118     if( !tv->table )
1119         return ERROR_INVALID_PARAMETER;
1120
1121     if( (col==0) || (col>tv->num_cols) )
1122         return ERROR_INVALID_PARAMETER;
1123
1124     /* how many rows are there ? */
1125     if( row >= tv->table->row_count + tv->table->nonpersistent_row_count )
1126         return ERROR_NO_MORE_ITEMS;
1127
1128     if( tv->columns[col-1].offset >= tv->row_size )
1129     {
1130         ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1131         ERR("%p %p\n", tv, tv->columns );
1132         return ERROR_FUNCTION_FAILED;
1133     }
1134
1135     if (tv->order)
1136         row = tv->order->reorder[row];
1137
1138     if (row >= tv->table->row_count)
1139     {
1140         row -= tv->table->row_count;
1141         data = tv->table->nonpersistent_data;
1142     }
1143     else
1144         data = tv->table->data;
1145
1146     n = bytes_per_column( tv->db, &tv->columns[col-1] );
1147     if (n != 2 && n != 3 && n != 4)
1148     {
1149         ERR("oops! what is %d bytes per column?\n", n );
1150         return ERROR_FUNCTION_FAILED;
1151     }
1152
1153     offset = tv->columns[col-1].offset;
1154     *val = read_table_int(data, row, offset, n);
1155
1156     /* TRACE("Data [%d][%d] = %d\n", row, col, *val ); */
1157
1158     return ERROR_SUCCESS;
1159 }
1160
1161 static UINT msi_stream_name( const MSITABLEVIEW *tv, UINT row, LPWSTR *pstname )
1162 {
1163     LPWSTR p, stname = NULL;
1164     UINT i, r, type, ival;
1165     DWORD len;
1166     LPCWSTR sval;
1167     MSIVIEW *view = (MSIVIEW *) tv;
1168
1169     TRACE("%p %d\n", tv, row);
1170
1171     len = lstrlenW( tv->name ) + 1;
1172     stname = msi_alloc( len*sizeof(WCHAR) );
1173     if ( !stname )
1174     {
1175        r = ERROR_OUTOFMEMORY;
1176        goto err;
1177     }
1178
1179     lstrcpyW( stname, tv->name );
1180
1181     for ( i = 0; i < tv->num_cols; i++ )
1182     {
1183         type = tv->columns[i].type;
1184         if ( type & MSITYPE_KEY )
1185         {
1186             static const WCHAR szDot[] = { '.', 0 };
1187
1188             r = TABLE_fetch_int( view, row, i+1, &ival );
1189             if ( r != ERROR_SUCCESS )
1190                 goto err;
1191
1192             if ( tv->columns[i].type & MSITYPE_STRING )
1193             {
1194                 sval = msi_string_lookup_id( tv->db->strings, ival );
1195                 if ( !sval )
1196                 {
1197                     r = ERROR_INVALID_PARAMETER;
1198                     goto err;
1199                 }
1200             }
1201             else
1202             {
1203                 static const WCHAR fmt[] = { '%','d',0 };
1204                 WCHAR number[0x20];
1205                 UINT n = bytes_per_column( tv->db, &tv->columns[i] );
1206
1207                 switch( n )
1208                 {
1209                 case 2:
1210                     sprintfW( number, fmt, ival^0x8000 );
1211                     break;
1212                 case 4:
1213                     sprintfW( number, fmt, ival^0x80000000 );
1214                     break;
1215                 default:
1216                     ERR( "oops - unknown column width %d\n", n );
1217                     r = ERROR_FUNCTION_FAILED;
1218                     goto err;
1219                 }
1220                 sval = number;
1221             }
1222
1223             len += lstrlenW( szDot ) + lstrlenW( sval );
1224             p = msi_realloc ( stname, len*sizeof(WCHAR) );
1225             if ( !p )
1226             {
1227                 r = ERROR_OUTOFMEMORY;
1228                 goto err;
1229             }
1230             stname = p;
1231
1232             lstrcatW( stname, szDot );
1233             lstrcatW( stname, sval );
1234         }
1235         else
1236            continue;
1237     }
1238
1239     *pstname = stname;
1240     return ERROR_SUCCESS;
1241
1242 err:
1243     msi_free( stname );
1244     *pstname = NULL;
1245     return r;
1246 }
1247
1248 /*
1249  * We need a special case for streams, as we need to reference column with
1250  * the name of the stream in the same table, and the table name
1251  * which may not be available at higher levels of the query
1252  */
1253 static UINT TABLE_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm )
1254 {
1255     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1256     UINT r;
1257     LPWSTR full_name = NULL;
1258
1259     if( !view->ops->fetch_int )
1260         return ERROR_INVALID_PARAMETER;
1261
1262     r = msi_stream_name( tv, row, &full_name );
1263     if ( r != ERROR_SUCCESS )
1264     {
1265         ERR("fetching stream, error = %d\n", r);
1266         return r;
1267     }
1268
1269     r = db_get_raw_stream( tv->db, full_name, stm );
1270     if( r )
1271         ERR("fetching stream %s, error = %d\n",debugstr_w(full_name), r);
1272     msi_free( full_name );
1273
1274     return r;
1275 }
1276
1277 static UINT TABLE_set_int( MSITABLEVIEW *tv, UINT row, UINT col, UINT val )
1278 {
1279     UINT offset, n, i;
1280     BYTE **data;
1281
1282     if( !tv->table )
1283         return ERROR_INVALID_PARAMETER;
1284
1285     if( (col==0) || (col>tv->num_cols) )
1286         return ERROR_INVALID_PARAMETER;
1287
1288     if( row >= tv->table->row_count + tv->table->nonpersistent_row_count )
1289         return ERROR_INVALID_PARAMETER;
1290
1291     if( tv->columns[col-1].offset >= tv->row_size )
1292     {
1293         ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1294         ERR("%p %p\n", tv, tv->columns );
1295         return ERROR_FUNCTION_FAILED;
1296     }
1297
1298     msi_free( tv->columns[col-1].hash_table );
1299     tv->columns[col-1].hash_table = NULL;
1300
1301     if (row >= tv->table->row_count)
1302     {
1303         row -= tv->table->row_count;
1304         data = tv->table->nonpersistent_data;
1305     }
1306     else
1307         data = tv->table->data;
1308
1309     n = bytes_per_column( tv->db, &tv->columns[col-1] );
1310     if ( n != 2 && n != 3 && n != 4 )
1311     {
1312         ERR("oops! what is %d bytes per column?\n", n );
1313         return ERROR_FUNCTION_FAILED;
1314     }
1315
1316     offset = tv->columns[col-1].offset;
1317     for ( i = 0; i < n; i++ )
1318         data[row][offset + i] = (val >> i * 8) & 0xff;
1319
1320     return ERROR_SUCCESS;
1321 }
1322
1323 static UINT TABLE_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
1324 {
1325     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1326
1327     if (!tv->table)
1328         return ERROR_INVALID_PARAMETER;
1329
1330     if (tv->order)
1331         row = tv->order->reorder[row];
1332
1333     return msi_view_get_row(tv->db, view, row, rec);
1334 }
1335
1336 static UINT msi_addstreamW( MSIDATABASE *db, LPCWSTR name, IStream *data )
1337 {
1338     UINT r;
1339     MSIQUERY *query = NULL;
1340     MSIRECORD *rec = NULL;
1341
1342     static const WCHAR insert[] = {
1343        'I','N','S','E','R','T',' ','I','N','T','O',' ',
1344           '`','_','S','t','r','e','a','m','s','`',' ',
1345          '(','`','N','a','m','e','`',',',
1346              '`','D','a','t','a','`',')',' ',
1347          'V','A','L','U','E','S',' ','(','?',',','?',')',0};
1348
1349     TRACE("%p %s %p\n", db, debugstr_w(name), data);
1350
1351     rec = MSI_CreateRecord( 2 );
1352     if ( !rec )
1353         return ERROR_OUTOFMEMORY;
1354
1355     r = MSI_RecordSetStringW( rec, 1, name );
1356     if ( r != ERROR_SUCCESS )
1357        goto err;
1358
1359     r = MSI_RecordSetIStream( rec, 2, data );
1360     if ( r != ERROR_SUCCESS )
1361        goto err;
1362
1363     r = MSI_DatabaseOpenViewW( db, insert, &query );
1364     if ( r != ERROR_SUCCESS )
1365        goto err;
1366
1367     r = MSI_ViewExecute( query, rec );
1368
1369 err:
1370     msiobj_release( &query->hdr );
1371     msiobj_release( &rec->hdr );
1372
1373     return r;
1374 }
1375
1376 static UINT TABLE_set_row( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask )
1377 {
1378     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1379     UINT i, val, r = ERROR_SUCCESS;
1380
1381     if ( !tv->table )
1382         return ERROR_INVALID_PARAMETER;
1383
1384     /* test if any of the mask bits are invalid */
1385     if ( mask >= (1<<tv->num_cols) )
1386         return ERROR_INVALID_PARAMETER;
1387
1388     for ( i = 0; i < tv->num_cols; i++ )
1389     {
1390         BOOL persistent;
1391
1392         /* only update the fields specified in the mask */
1393         if ( !(mask&(1<<i)) )
1394             continue;
1395
1396         /* if row >= tv->table->row_count then it is a non-persistent row */
1397         persistent = (tv->table->persistent != MSICONDITION_FALSE) &&
1398                      (row < tv->table->row_count);
1399         /* FIXME: should we allow updating keys? */
1400
1401         val = 0;
1402         if ( !MSI_RecordIsNull( rec, i + 1 ) )
1403         {
1404             if ( MSITYPE_IS_BINARY(tv->columns[ i ].type) )
1405             {
1406                 IStream *stm;
1407                 LPWSTR stname;
1408
1409                 r = MSI_RecordGetIStream( rec, i + 1, &stm );
1410                 if ( r != ERROR_SUCCESS )
1411                     return r;
1412
1413                 r = msi_stream_name( tv, row, &stname );
1414                 if ( r != ERROR_SUCCESS )
1415                 {
1416                     IStream_Release( stm );
1417                     return r;
1418                 }
1419
1420                 r = msi_addstreamW( tv->db, stname, stm );
1421                 IStream_Release( stm );
1422                 msi_free ( stname );
1423
1424                 if ( r != ERROR_SUCCESS )
1425                     return r;
1426
1427                 val = 1; /* refers to the first key column */
1428             }
1429             else if ( tv->columns[i].type & MSITYPE_STRING )
1430             {
1431                 LPCWSTR sval = MSI_RecordGetString( rec, i + 1 );
1432                 UINT ival, x;
1433
1434                 r = msi_string2idW(tv->db->strings, sval, &ival);
1435                 if (r == ERROR_SUCCESS)
1436                 {
1437                     TABLE_fetch_int(&tv->view, row, i + 1, &x);
1438                     if (ival == x)
1439                         continue;
1440                 }
1441
1442                 val = msi_addstringW( tv->db->strings, 0, sval, -1, 1,
1443                                       persistent ? StringPersistent : StringNonPersistent );
1444             }
1445             else if ( 2 == bytes_per_column( tv->db, &tv->columns[ i ] ) )
1446             {
1447                 val = 0x8000 + MSI_RecordGetInteger( rec, i + 1 );
1448                 if ( val & 0xffff0000 )
1449                 {
1450                     ERR("field %u value %d out of range\n", i+1, val - 0x8000 );
1451                     return ERROR_FUNCTION_FAILED;
1452                 }
1453             }
1454             else
1455             {
1456                 INT ival = MSI_RecordGetInteger( rec, i + 1 );
1457                 val = ival ^ 0x80000000;
1458             }
1459         }
1460
1461         r = TABLE_set_int( tv, row, i+1, val );
1462         if ( r != ERROR_SUCCESS )
1463             break;
1464     }
1465     return r;
1466 }
1467
1468 static UINT table_create_new_row( struct tagMSIVIEW *view, UINT *num, BOOL temporary )
1469 {
1470     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1471     BYTE **p, *row;
1472     UINT sz;
1473     BYTE ***data_ptr;
1474     UINT *row_count;
1475
1476     TRACE("%p %s\n", view, temporary ? "TRUE" : "FALSE");
1477
1478     if( !tv->table )
1479         return ERROR_INVALID_PARAMETER;
1480
1481     row = msi_alloc_zero( tv->row_size );
1482     if( !row )
1483         return ERROR_NOT_ENOUGH_MEMORY;
1484
1485     if( temporary )
1486     {
1487         row_count = &tv->table->nonpersistent_row_count;
1488         data_ptr = &tv->table->nonpersistent_data;
1489         if (*num == -1)
1490             *num = tv->table->row_count + tv->table->nonpersistent_row_count;
1491     }
1492     else
1493     {
1494         row_count = &tv->table->row_count;
1495         data_ptr = &tv->table->data;
1496         if (*num == -1)
1497             *num = tv->table->row_count;
1498     }
1499
1500     sz = (*row_count + 1) * sizeof (BYTE*);
1501     if( *data_ptr )
1502         p = msi_realloc( *data_ptr, sz );
1503     else
1504         p = msi_alloc( sz );
1505     if( !p )
1506     {
1507         msi_free( row );
1508         return ERROR_NOT_ENOUGH_MEMORY;
1509     }
1510
1511     *data_ptr = p;
1512     (*data_ptr)[*row_count] = row;
1513     (*row_count)++;
1514
1515     return ERROR_SUCCESS;
1516 }
1517
1518 static UINT TABLE_execute( struct tagMSIVIEW *view, MSIRECORD *record )
1519 {
1520     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1521
1522     TRACE("%p %p\n", tv, record);
1523
1524     TRACE("There are %d columns\n", tv->num_cols );
1525
1526     return ERROR_SUCCESS;
1527 }
1528
1529 static UINT TABLE_close( struct tagMSIVIEW *view )
1530 {
1531     TRACE("%p\n", view );
1532     
1533     return ERROR_SUCCESS;
1534 }
1535
1536 static UINT TABLE_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols)
1537 {
1538     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1539
1540     TRACE("%p %p %p\n", view, rows, cols );
1541
1542     if( cols )
1543         *cols = tv->num_cols;
1544     if( rows )
1545     {
1546         if( !tv->table )
1547             return ERROR_INVALID_PARAMETER;
1548         *rows = tv->table->row_count + tv->table->nonpersistent_row_count;
1549     }
1550
1551     return ERROR_SUCCESS;
1552 }
1553
1554 static UINT TABLE_get_column_info( struct tagMSIVIEW *view,
1555                 UINT n, LPWSTR *name, UINT *type, BOOL *temporary )
1556 {
1557     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1558
1559     TRACE("%p %d %p %p\n", tv, n, name, type );
1560
1561     if( ( n == 0 ) || ( n > tv->num_cols ) )
1562         return ERROR_INVALID_PARAMETER;
1563
1564     if( name )
1565     {
1566         *name = strdupW( tv->columns[n-1].colname );
1567         if( !*name )
1568             return ERROR_FUNCTION_FAILED;
1569     }
1570
1571     if( type )
1572         *type = tv->columns[n-1].type;
1573
1574     if( temporary )
1575         *temporary = tv->columns[n-1].temporary;
1576
1577     return ERROR_SUCCESS;
1578 }
1579
1580 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row );
1581
1582 static UINT table_validate_new( MSITABLEVIEW *tv, MSIRECORD *rec )
1583 {
1584     UINT r, row, i;
1585
1586     /* check there's no null values where they're not allowed */
1587     for( i = 0; i < tv->num_cols; i++ )
1588     {
1589         if ( tv->columns[i].type & MSITYPE_NULLABLE )
1590             continue;
1591
1592         if ( MSITYPE_IS_BINARY(tv->columns[i].type) )
1593             TRACE("skipping binary column\n");
1594         else if ( tv->columns[i].type & MSITYPE_STRING )
1595         {
1596             LPCWSTR str;
1597
1598             str = MSI_RecordGetString( rec, i+1 );
1599             if (str == NULL || str[0] == 0)
1600                 return ERROR_INVALID_DATA;
1601         }
1602         else
1603         {
1604             UINT n;
1605
1606             n = MSI_RecordGetInteger( rec, i+1 );
1607             if (n == MSI_NULL_INTEGER)
1608                 return ERROR_INVALID_DATA;
1609         }
1610     }
1611
1612     /* check there's no duplicate keys */
1613     r = msi_table_find_row( tv, rec, &row );
1614     if (r == ERROR_SUCCESS)
1615         return ERROR_FUNCTION_FAILED;
1616
1617     return ERROR_SUCCESS;
1618 }
1619
1620 static UINT TABLE_insert_row( struct tagMSIVIEW *view, MSIRECORD *rec, UINT row, BOOL temporary )
1621 {
1622     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1623     UINT i, r, idx, size;
1624     BYTE **data;
1625
1626     TRACE("%p %p %s\n", tv, rec, temporary ? "TRUE" : "FALSE" );
1627
1628     /* check that the key is unique - can we find a matching row? */
1629     r = table_validate_new( tv, rec );
1630     if( r != ERROR_SUCCESS )
1631         return ERROR_FUNCTION_FAILED;
1632
1633     r = table_create_new_row( view, &row, temporary );
1634     TRACE("insert_row returned %08x\n", r);
1635     if( r != ERROR_SUCCESS )
1636         return r;
1637
1638     idx = row;
1639     if( temporary )
1640     {
1641         data = tv->table->nonpersistent_data;
1642         size = tv->table->nonpersistent_row_count;
1643         idx -= tv->table->row_count;
1644     }
1645     else
1646     {
1647         data = tv->table->data;
1648         size = tv->table->row_count;
1649     }
1650
1651     /* shift the rows to make room for the new row */
1652     if( idx != size - 1 )
1653     {
1654         for (i = 1; i < size - idx; i++)
1655             memmove(&(data[size - i][0]),
1656                     &(data[size - i - 1][0]), tv->row_size);
1657     }
1658
1659     return TABLE_set_row( view, row, rec, (1<<tv->num_cols) - 1 );
1660 }
1661
1662 static UINT TABLE_delete_row( struct tagMSIVIEW *view, UINT row )
1663 {
1664     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1665     UINT r, num_rows, num_cols, i;
1666     BYTE **data;
1667
1668     TRACE("%p %d\n", tv, row);
1669
1670     if ( !tv->table )
1671         return ERROR_INVALID_PARAMETER;
1672
1673     r = TABLE_get_dimensions( view, &num_rows, &num_cols );
1674     if ( r != ERROR_SUCCESS )
1675         return r;
1676
1677     if ( row >= num_rows )
1678         return ERROR_FUNCTION_FAILED;
1679
1680     if ( row < tv->table->row_count )
1681     {
1682         num_rows = tv->table->row_count;
1683         tv->table->row_count--;
1684         data = tv->table->data;
1685     }
1686     else
1687     {
1688         num_rows = tv->table->nonpersistent_row_count;
1689         row -= tv->table->row_count;
1690         tv->table->nonpersistent_row_count--;
1691         data = tv->table->nonpersistent_data;
1692     }
1693
1694     /* reset the hash tables */
1695     for (i = 0; i < tv->num_cols; i++)
1696     {
1697         msi_free( tv->columns[i].hash_table );
1698         tv->columns[i].hash_table = NULL;
1699     }
1700
1701     if ( row == num_rows - 1 )
1702         return ERROR_SUCCESS;
1703
1704     for (i = row + 1; i < num_rows; i++)
1705         memcpy(data[i - 1], data[i], tv->row_size);
1706
1707     return ERROR_SUCCESS;
1708 }
1709
1710 static UINT msi_table_update(struct tagMSIVIEW *view, MSIRECORD *rec, UINT row)
1711 {
1712     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1713     UINT r, new_row;
1714
1715     /* FIXME: MsiViewFetch should set rec index 0 to some ID that
1716      * sets the fetched record apart from other records
1717      */
1718
1719     if (!tv->table)
1720         return ERROR_INVALID_PARAMETER;
1721
1722     r = msi_table_find_row(tv, rec, &new_row);
1723     if (r != ERROR_SUCCESS)
1724     {
1725         ERR("can't find row to modify\n");
1726         return ERROR_FUNCTION_FAILED;
1727     }
1728
1729     /* the row cannot be changed */
1730     if (row != new_row + 1)
1731         return ERROR_FUNCTION_FAILED;
1732
1733     return TABLE_set_row(view, new_row, rec, (1 << tv->num_cols) - 1);
1734 }
1735
1736 static UINT modify_delete_row( struct tagMSIVIEW *view, MSIRECORD *rec )
1737 {
1738     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1739     UINT row, r;
1740
1741     r = msi_table_find_row(tv, rec, &row);
1742     if (r != ERROR_SUCCESS)
1743         return r;
1744
1745     return TABLE_delete_row(view, row);
1746 }
1747
1748 static UINT msi_refresh_record( struct tagMSIVIEW *view, MSIRECORD *rec, UINT row )
1749 {
1750     MSIRECORD *curr;
1751     UINT r, i, count;
1752
1753     r = TABLE_get_row(view, row - 1, &curr);
1754     if (r != ERROR_SUCCESS)
1755         return r;
1756
1757     count = MSI_RecordGetFieldCount(rec);
1758     for (i = 0; i < count; i++)
1759         MSI_RecordCopyField(curr, i + 1, rec, i + 1);
1760
1761     msiobj_release(&curr->hdr);
1762     return ERROR_SUCCESS;
1763 }
1764
1765 static UINT TABLE_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
1766                           MSIRECORD *rec, UINT row)
1767 {
1768     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1769     UINT r;
1770
1771     TRACE("%p %d %p\n", view, eModifyMode, rec );
1772
1773     switch (eModifyMode)
1774     {
1775     case MSIMODIFY_DELETE:
1776         r = modify_delete_row( view, rec );
1777         break;
1778     case MSIMODIFY_VALIDATE_NEW:
1779         r = table_validate_new( tv, rec );
1780         break;
1781
1782     case MSIMODIFY_INSERT:
1783         r = table_validate_new( tv, rec );
1784         if (r != ERROR_SUCCESS)
1785             break;
1786         r = TABLE_insert_row( view, rec, -1, FALSE );
1787         break;
1788
1789     case MSIMODIFY_INSERT_TEMPORARY:
1790         r = table_validate_new( tv, rec );
1791         if (r != ERROR_SUCCESS)
1792             break;
1793         r = TABLE_insert_row( view, rec, -1, TRUE );
1794         break;
1795
1796     case MSIMODIFY_REFRESH:
1797         r = msi_refresh_record( view, rec, row );
1798         break;
1799
1800     case MSIMODIFY_UPDATE:
1801         r = msi_table_update( view, rec, row );
1802         break;
1803
1804     case MSIMODIFY_ASSIGN:
1805     case MSIMODIFY_REPLACE:
1806     case MSIMODIFY_MERGE:
1807     case MSIMODIFY_VALIDATE:
1808     case MSIMODIFY_VALIDATE_FIELD:
1809     case MSIMODIFY_VALIDATE_DELETE:
1810         FIXME("%p %d %p - mode not implemented\n", view, eModifyMode, rec );
1811         r = ERROR_CALL_NOT_IMPLEMENTED;
1812         break;
1813
1814     default:
1815         r = ERROR_INVALID_DATA;
1816     }
1817
1818     return r;
1819 }
1820
1821 static UINT TABLE_delete( struct tagMSIVIEW *view )
1822 {
1823     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1824
1825     TRACE("%p\n", view );
1826
1827     tv->table = NULL;
1828     tv->columns = NULL;
1829
1830     if (tv->order)
1831     {
1832         msi_free( tv->order->reorder );
1833         msi_free( tv->order );
1834         tv->order = NULL;
1835     }
1836
1837     msi_free( tv );
1838
1839     return ERROR_SUCCESS;
1840 }
1841
1842 static UINT TABLE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
1843     UINT val, UINT *row, MSIITERHANDLE *handle )
1844 {
1845     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1846     const MSICOLUMNHASHENTRY *entry;
1847
1848     TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
1849
1850     if( !tv->table )
1851         return ERROR_INVALID_PARAMETER;
1852
1853     if( (col==0) || (col > tv->num_cols) )
1854         return ERROR_INVALID_PARAMETER;
1855
1856     if( !tv->columns[col-1].hash_table )
1857     {
1858         UINT i;
1859         UINT num_rows = tv->table->row_count + tv->table->nonpersistent_row_count;
1860         MSICOLUMNHASHENTRY **hash_table;
1861         MSICOLUMNHASHENTRY *new_entry;
1862
1863         if( tv->columns[col-1].offset >= tv->row_size )
1864         {
1865             ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1866             ERR("%p %p\n", tv, tv->columns );
1867             return ERROR_FUNCTION_FAILED;
1868         }
1869
1870         /* allocate contiguous memory for the table and its entries so we
1871          * don't have to do an expensive cleanup */
1872         hash_table = msi_alloc(MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*) +
1873             num_rows * sizeof(MSICOLUMNHASHENTRY));
1874         if (!hash_table)
1875             return ERROR_OUTOFMEMORY;
1876
1877         memset(hash_table, 0, MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*));
1878         tv->columns[col-1].hash_table = hash_table;
1879
1880         new_entry = (MSICOLUMNHASHENTRY *)(hash_table + MSITABLE_HASH_TABLE_SIZE);
1881
1882         for (i = 0; i < num_rows; i++, new_entry++)
1883         {
1884             UINT row_value;
1885
1886             if (view->ops->fetch_int( view, i, col, &row_value ) != ERROR_SUCCESS)
1887                 continue;
1888
1889             new_entry->next = NULL;
1890             new_entry->value = row_value;
1891             new_entry->row = i;
1892             if (hash_table[row_value % MSITABLE_HASH_TABLE_SIZE])
1893             {
1894                 MSICOLUMNHASHENTRY *prev_entry = hash_table[row_value % MSITABLE_HASH_TABLE_SIZE];
1895                 while (prev_entry->next)
1896                     prev_entry = prev_entry->next;
1897                 prev_entry->next = new_entry;
1898             }
1899             else
1900                 hash_table[row_value % MSITABLE_HASH_TABLE_SIZE] = new_entry;
1901         }
1902     }
1903
1904     if( !*handle )
1905         entry = tv->columns[col-1].hash_table[val % MSITABLE_HASH_TABLE_SIZE];
1906     else
1907         entry = (*handle)->next;
1908
1909     while (entry && entry->value != val)
1910         entry = entry->next;
1911
1912     *handle = entry;
1913     if (!entry)
1914         return ERROR_NO_MORE_ITEMS;
1915
1916     *row = entry->row;
1917
1918     return ERROR_SUCCESS;
1919 }
1920
1921 static UINT TABLE_add_ref(struct tagMSIVIEW *view)
1922 {
1923     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1924     UINT i;
1925
1926     TRACE("%p %d\n", view, tv->table->ref_count);
1927
1928     for (i = 0; i < tv->table->col_count; i++)
1929     {
1930         if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
1931             InterlockedIncrement(&tv->table->colinfo[i].ref_count);
1932     }
1933
1934     return InterlockedIncrement(&tv->table->ref_count);
1935 }
1936
1937 static UINT TABLE_remove_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number)
1938 {
1939     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1940     MSIRECORD *rec = NULL;
1941     MSIVIEW *columns = NULL;
1942     UINT row, r;
1943
1944     rec = MSI_CreateRecord(2);
1945     if (!rec)
1946         return ERROR_OUTOFMEMORY;
1947
1948     MSI_RecordSetStringW(rec, 1, table);
1949     MSI_RecordSetInteger(rec, 2, number);
1950
1951     r = TABLE_CreateView(tv->db, szColumns, &columns);
1952     if (r != ERROR_SUCCESS)
1953         return r;
1954
1955     r = msi_table_find_row((MSITABLEVIEW *)columns, rec, &row);
1956     if (r != ERROR_SUCCESS)
1957         goto done;
1958
1959     r = TABLE_delete_row(columns, row);
1960     if (r != ERROR_SUCCESS)
1961         goto done;
1962
1963     msi_update_table_columns(tv->db, table);
1964
1965 done:
1966     msiobj_release(&rec->hdr);
1967     columns->ops->delete(columns);
1968     return r;
1969 }
1970
1971 static UINT TABLE_release(struct tagMSIVIEW *view)
1972 {
1973     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1974     INT ref = tv->table->ref_count;
1975     UINT i, r;
1976
1977     TRACE("%p %d\n", view, ref);
1978
1979     for (i = 0; i < tv->table->col_count; i++)
1980     {
1981         if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
1982         {
1983             ref = InterlockedDecrement(&tv->table->colinfo[i].ref_count);
1984             if (ref == 0)
1985             {
1986                 r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
1987                                         tv->table->colinfo[i].number);
1988                 if (r != ERROR_SUCCESS)
1989                     break;
1990             }
1991         }
1992     }
1993
1994     ref = InterlockedDecrement(&tv->table->ref_count);
1995     if (ref == 0)
1996     {
1997         if (!tv->table->row_count)
1998         {
1999             list_remove(&tv->table->entry);
2000             free_table(tv->table);
2001             TABLE_delete(view);
2002         }
2003     }
2004
2005     return ref;
2006 }
2007
2008 static UINT TABLE_add_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number,
2009                              LPCWSTR column, UINT type, BOOL hold)
2010 {
2011     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2012     MSITABLE *msitable;
2013     MSIRECORD *rec;
2014     UINT r, i;
2015
2016     rec = MSI_CreateRecord(4);
2017     if (!rec)
2018         return ERROR_OUTOFMEMORY;
2019
2020     MSI_RecordSetStringW(rec, 1, table);
2021     MSI_RecordSetInteger(rec, 2, number);
2022     MSI_RecordSetStringW(rec, 3, column);
2023     MSI_RecordSetInteger(rec, 4, type);
2024
2025     r = TABLE_insert_row(&tv->view, rec, -1, FALSE);
2026     if (r != ERROR_SUCCESS)
2027         goto done;
2028
2029     msi_update_table_columns(tv->db, table);
2030
2031     if (!hold)
2032         goto done;
2033
2034     msitable = find_cached_table(tv->db, table);
2035     for (i = 0; i < msitable->col_count; i++)
2036     {
2037         if (!lstrcmpW(msitable->colinfo[i].colname, column))
2038         {
2039             InterlockedIncrement(&msitable->colinfo[i].ref_count);
2040             break;
2041         }
2042     }
2043
2044 done:
2045     msiobj_release(&rec->hdr);
2046     return r;
2047 }
2048
2049 static UINT order_add_column(struct tagMSIVIEW *view, MSIORDERINFO *order, LPCWSTR name)
2050 {
2051     UINT n, r, count;
2052
2053     r = TABLE_get_dimensions(view, NULL, &count);
2054     if (r != ERROR_SUCCESS)
2055         return r;
2056
2057     if (order->num_cols >= count)
2058         return ERROR_FUNCTION_FAILED;
2059
2060     r = VIEW_find_column(view, name, &n);
2061     if (r != ERROR_SUCCESS)
2062         return r;
2063
2064     order->cols[order->num_cols] = n;
2065     TRACE("Ordering by column %s (%d)\n", debugstr_w(name), n);
2066
2067     order->num_cols++;
2068
2069     return ERROR_SUCCESS;
2070 }
2071
2072 static UINT order_compare(struct tagMSIVIEW *view, MSIORDERINFO *order,
2073                           UINT a, UINT b, UINT *swap)
2074 {
2075     UINT r, i, a_val = 0, b_val = 0;
2076
2077     *swap = 0;
2078     for (i = 0; i < order->num_cols; i++)
2079     {
2080         r = TABLE_fetch_int(view, a, order->cols[i], &a_val);
2081         if (r != ERROR_SUCCESS)
2082             return r;
2083
2084         r = TABLE_fetch_int(view, b, order->cols[i], &b_val);
2085         if (r != ERROR_SUCCESS)
2086             return r;
2087
2088         if (a_val != b_val)
2089         {
2090             if (a_val > b_val)
2091                 *swap = 1;
2092             break;
2093         }
2094     }
2095
2096     return ERROR_SUCCESS;
2097 }
2098
2099 static UINT order_mergesort(struct tagMSIVIEW *view, MSIORDERINFO *order,
2100                             UINT left, UINT right)
2101 {
2102     UINT r, i, j, temp;
2103     UINT swap = 0, center = (left + right) / 2;
2104     UINT *array = order->reorder;
2105
2106     if (left == right)
2107         return ERROR_SUCCESS;
2108
2109     /* sort the left half */
2110     r = order_mergesort(view, order, left, center);
2111     if (r != ERROR_SUCCESS)
2112         return r;
2113
2114     /* sort the right half */
2115     r = order_mergesort(view, order, center + 1, right);
2116     if (r != ERROR_SUCCESS)
2117         return r;
2118
2119     for (i = left, j = center + 1; (i <= center) && (j <= right); i++)
2120     {
2121         r = order_compare(view, order, array[i], array[j], &swap);
2122         if (r != ERROR_SUCCESS)
2123             return r;
2124
2125         if (swap)
2126         {
2127             temp = array[j];
2128             memmove(&array[i + 1], &array[i], (j - i) * sizeof(UINT));
2129             array[i] = temp;
2130             j++;
2131             center++;
2132         }
2133     }
2134
2135     return ERROR_SUCCESS;
2136 }
2137
2138 static UINT order_verify(struct tagMSIVIEW *view, MSIORDERINFO *order, UINT num_rows)
2139 {
2140     UINT i, swap, r;
2141
2142     for (i = 1; i < num_rows; i++)
2143     {
2144         r = order_compare(view, order, order->reorder[i - 1],
2145                           order->reorder[i], &swap);
2146         if (r != ERROR_SUCCESS)
2147             return r;
2148
2149         if (!swap)
2150             continue;
2151
2152         ERR("Bad order! %d\n", i);
2153         return ERROR_FUNCTION_FAILED;
2154     }
2155
2156     return ERROR_SUCCESS;
2157 }
2158
2159 static UINT TABLE_sort(struct tagMSIVIEW *view, column_info *columns)
2160 {
2161     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
2162     MSIORDERINFO *order;
2163     column_info *ptr;
2164     UINT r, i;
2165     UINT rows, cols;
2166
2167     TRACE("sorting table %s\n", debugstr_w(tv->name));
2168
2169     r = TABLE_get_dimensions(view, &rows, &cols);
2170     if (r != ERROR_SUCCESS)
2171         return r;
2172
2173     if (rows == 0)
2174         return ERROR_SUCCESS;
2175
2176     order = msi_alloc_zero(sizeof(MSIORDERINFO) + sizeof(UINT) * cols);
2177     if (!order)
2178         return ERROR_OUTOFMEMORY;
2179
2180     for (ptr = columns; ptr; ptr = ptr->next)
2181         order_add_column(view, order, ptr->column);
2182
2183     order->reorder = msi_alloc(rows * sizeof(UINT));
2184     if (!order->reorder)
2185         return ERROR_OUTOFMEMORY;
2186
2187     for (i = 0; i < rows; i++)
2188         order->reorder[i] = i;
2189
2190     r = order_mergesort(view, order, 0, rows - 1);
2191     if (r != ERROR_SUCCESS)
2192         return r;
2193
2194     r = order_verify(view, order, rows);
2195     if (r != ERROR_SUCCESS)
2196         return r;
2197
2198     tv->order = order;
2199
2200     return ERROR_SUCCESS;
2201 }
2202
2203 static UINT TABLE_drop(struct tagMSIVIEW *view)
2204 {
2205     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2206     MSIVIEW *tables = NULL;
2207     MSIRECORD *rec = NULL;
2208     UINT r, row;
2209     INT i;
2210
2211     TRACE("dropping table %s\n", debugstr_w(tv->name));
2212
2213     for (i = tv->table->col_count - 1; i >= 0; i--)
2214     {
2215         r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
2216                                 tv->table->colinfo[i].number);
2217         if (r != ERROR_SUCCESS)
2218             return r;
2219     }
2220
2221     rec = MSI_CreateRecord(1);
2222     if (!rec)
2223         return ERROR_OUTOFMEMORY;
2224
2225     MSI_RecordSetStringW(rec, 1, tv->name);
2226
2227     r = TABLE_CreateView(tv->db, szTables, &tables);
2228     if (r != ERROR_SUCCESS)
2229         return r;
2230
2231     r = msi_table_find_row((MSITABLEVIEW *)tables, rec, &row);
2232     if (r != ERROR_SUCCESS)
2233         goto done;
2234
2235     r = TABLE_delete_row(tables, row);
2236     if (r != ERROR_SUCCESS)
2237         goto done;
2238
2239     list_remove(&tv->table->entry);
2240     free_table(tv->table);
2241     TABLE_delete(view);
2242
2243 done:
2244     msiobj_release(&rec->hdr);
2245     tables->ops->delete(tables);
2246
2247     return r;
2248 }
2249
2250 static const MSIVIEWOPS table_ops =
2251 {
2252     TABLE_fetch_int,
2253     TABLE_fetch_stream,
2254     TABLE_get_row,
2255     TABLE_set_row,
2256     TABLE_insert_row,
2257     TABLE_delete_row,
2258     TABLE_execute,
2259     TABLE_close,
2260     TABLE_get_dimensions,
2261     TABLE_get_column_info,
2262     TABLE_modify,
2263     TABLE_delete,
2264     TABLE_find_matching_rows,
2265     TABLE_add_ref,
2266     TABLE_release,
2267     TABLE_add_column,
2268     TABLE_remove_column,
2269     TABLE_sort,
2270     TABLE_drop,
2271 };
2272
2273 UINT TABLE_CreateView( MSIDATABASE *db, LPCWSTR name, MSIVIEW **view )
2274 {
2275     MSITABLEVIEW *tv ;
2276     UINT r, sz;
2277
2278     static const WCHAR Streams[] = {'_','S','t','r','e','a','m','s',0};
2279     static const WCHAR Storages[] = {'_','S','t','o','r','a','g','e','s',0};
2280
2281     TRACE("%p %s %p\n", db, debugstr_w(name), view );
2282
2283     if ( !lstrcmpW( name, Streams ) )
2284         return STREAMS_CreateView( db, view );
2285     else if ( !lstrcmpW( name, Storages ) )
2286         return STORAGES_CreateView( db, view );
2287
2288     sz = sizeof *tv + lstrlenW(name)*sizeof name[0] ;
2289     tv = msi_alloc_zero( sz );
2290     if( !tv )
2291         return ERROR_FUNCTION_FAILED;
2292
2293     r = get_table( db, name, &tv->table );
2294     if( r != ERROR_SUCCESS )
2295     {
2296         msi_free( tv );
2297         WARN("table not found\n");
2298         return r;
2299     }
2300
2301     TRACE("table %p found with %d columns\n", tv->table, tv->table->col_count);
2302
2303     /* fill the structure */
2304     tv->view.ops = &table_ops;
2305     tv->db = db;
2306     tv->columns = tv->table->colinfo;
2307     tv->num_cols = tv->table->col_count;
2308     tv->row_size = msi_table_get_row_size( db, tv->table->colinfo, tv->table->col_count );
2309
2310     TRACE("%s one row is %d bytes\n", debugstr_w(name), tv->row_size );
2311
2312     *view = (MSIVIEW*) tv;
2313     lstrcpyW( tv->name, name );
2314
2315     return ERROR_SUCCESS;
2316 }
2317
2318 UINT MSI_CommitTables( MSIDATABASE *db )
2319 {
2320     UINT r;
2321     MSITABLE *table = NULL;
2322
2323     TRACE("%p\n",db);
2324
2325     r = msi_save_string_table( db->strings, db->storage );
2326     if( r != ERROR_SUCCESS )
2327     {
2328         WARN("failed to save string table r=%08x\n",r);
2329         return r;
2330     }
2331
2332     LIST_FOR_EACH_ENTRY( table, &db->tables, MSITABLE, entry )
2333     {
2334         r = save_table( db, table );
2335         if( r != ERROR_SUCCESS )
2336         {
2337             WARN("failed to save table %s (r=%08x)\n",
2338                   debugstr_w(table->name), r);
2339             return r;
2340         }
2341     }
2342
2343     /* force everything to reload next time */
2344     free_cached_tables( db );
2345
2346     return ERROR_SUCCESS;
2347 }
2348
2349 MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table )
2350 {
2351     MSITABLE *t;
2352     UINT r;
2353
2354     TRACE("%p %s\n", db, debugstr_w(table));
2355
2356     if (!table)
2357         return MSICONDITION_ERROR;
2358
2359     r = get_table( db, table, &t );
2360     if (r != ERROR_SUCCESS)
2361         return MSICONDITION_NONE;
2362
2363     return t->persistent;
2364 }
2365
2366 static UINT read_raw_int(const BYTE *data, UINT col, UINT bytes)
2367 {
2368     UINT ret = 0, i;
2369
2370     for (i = 0; i < bytes; i++)
2371         ret += (data[col + i] << i * 8);
2372
2373     return ret;
2374 }
2375
2376 static UINT msi_record_encoded_stream_name( const MSITABLEVIEW *tv, MSIRECORD *rec, LPWSTR *pstname )
2377 {
2378     static const WCHAR szDot[] = { '.', 0 };
2379     LPWSTR stname = NULL, sval, p;
2380     DWORD len;
2381     UINT i, r;
2382
2383     TRACE("%p %p\n", tv, rec);
2384
2385     len = lstrlenW( tv->name ) + 1;
2386     stname = msi_alloc( len*sizeof(WCHAR) );
2387     if ( !stname )
2388     {
2389        r = ERROR_OUTOFMEMORY;
2390        goto err;
2391     }
2392
2393     lstrcpyW( stname, tv->name );
2394
2395     for ( i = 0; i < tv->num_cols; i++ )
2396     {
2397         if ( tv->columns[i].type & MSITYPE_KEY )
2398         {
2399             sval = msi_dup_record_field( rec, i + 1 );
2400             if ( !sval )
2401             {
2402                 r = ERROR_OUTOFMEMORY;
2403                 goto err;
2404             }
2405
2406             len += lstrlenW( szDot ) + lstrlenW ( sval );
2407             p = msi_realloc ( stname, len*sizeof(WCHAR) );
2408             if ( !p )
2409             {
2410                 r = ERROR_OUTOFMEMORY;
2411                 goto err;
2412             }
2413             stname = p;
2414
2415             lstrcatW( stname, szDot );
2416             lstrcatW( stname, sval );
2417
2418             msi_free( sval );
2419         }
2420         else
2421             continue;
2422     }
2423
2424     *pstname = encode_streamname( FALSE, stname );
2425     msi_free( stname );
2426
2427     return ERROR_SUCCESS;
2428
2429 err:
2430     msi_free ( stname );
2431     *pstname = NULL;
2432     return r;
2433 }
2434
2435 static MSIRECORD *msi_get_transform_record( const MSITABLEVIEW *tv, const string_table *st,
2436                                             IStorage *stg,
2437                                             const BYTE *rawdata, UINT bytes_per_strref )
2438 {
2439     UINT i, val, ofs = 0;
2440     USHORT mask;
2441     MSICOLUMNINFO *columns = tv->columns;
2442     MSIRECORD *rec;
2443
2444     mask = rawdata[0] | (rawdata[1] << 8);
2445     rawdata += 2;
2446
2447     rec = MSI_CreateRecord( tv->num_cols );
2448     if( !rec )
2449         return rec;
2450
2451     TRACE("row ->\n");
2452     for( i=0; i<tv->num_cols; i++ )
2453     {
2454         if ( (mask&1) && (i>=(mask>>8)) )
2455             break;
2456         /* all keys must be present */
2457         if ( (~mask&1) && (~columns[i].type & MSITYPE_KEY) && ((1<<i) & ~mask) )
2458             continue;
2459
2460         if( MSITYPE_IS_BINARY(tv->columns[i].type) )
2461         {
2462             LPWSTR encname;
2463             IStream *stm = NULL;
2464             UINT r;
2465
2466             ofs += bytes_per_column( tv->db, &columns[i] );
2467
2468             r = msi_record_encoded_stream_name( tv, rec, &encname );
2469             if ( r != ERROR_SUCCESS )
2470                 return NULL;
2471
2472             r = IStorage_OpenStream( stg, encname, NULL,
2473                      STGM_READ | STGM_SHARE_EXCLUSIVE, 0, &stm );
2474             msi_free( encname );
2475             if ( r != ERROR_SUCCESS )
2476                 return NULL;
2477
2478             MSI_RecordSetStream( rec, i+1, stm );
2479             TRACE(" field %d [%s]\n", i+1, debugstr_w(encname));
2480         }
2481         else if( columns[i].type & MSITYPE_STRING )
2482         {
2483             LPCWSTR sval;
2484
2485             val = read_raw_int(rawdata, ofs, bytes_per_strref);
2486             sval = msi_string_lookup_id( st, val );
2487             MSI_RecordSetStringW( rec, i+1, sval );
2488             TRACE(" field %d [%s]\n", i+1, debugstr_w(sval));
2489             ofs += bytes_per_strref;
2490         }
2491         else
2492         {
2493             UINT n = bytes_per_column( tv->db, &columns[i] );
2494             switch( n )
2495             {
2496             case 2:
2497                 val = read_raw_int(rawdata, ofs, n);
2498                 if (val)
2499                     MSI_RecordSetInteger( rec, i+1, val^0x8000 );
2500                 TRACE(" field %d [0x%04x]\n", i+1, val );
2501                 break;
2502             case 4:
2503                 val = read_raw_int(rawdata, ofs, n);
2504                 if (val)
2505                     MSI_RecordSetInteger( rec, i+1, val^0x80000000 );
2506                 TRACE(" field %d [0x%08x]\n", i+1, val );
2507                 break;
2508             default:
2509                 ERR("oops - unknown column width %d\n", n);
2510                 break;
2511             }
2512             ofs += n;
2513         }
2514     }
2515     return rec;
2516 }
2517
2518 static void dump_record( MSIRECORD *rec )
2519 {
2520     UINT i, n;
2521
2522     n = MSI_RecordGetFieldCount( rec );
2523     for( i=1; i<=n; i++ )
2524     {
2525         LPCWSTR sval = MSI_RecordGetString( rec, i );
2526
2527         if( MSI_RecordIsNull( rec, i ) )
2528             TRACE("row -> []\n");
2529         else if( (sval = MSI_RecordGetString( rec, i )) )
2530             TRACE("row -> [%s]\n", debugstr_w(sval));
2531         else
2532             TRACE("row -> [0x%08x]\n", MSI_RecordGetInteger( rec, i ) );
2533     }
2534 }
2535
2536 static void dump_table( const string_table *st, const USHORT *rawdata, UINT rawsize )
2537 {
2538     LPCWSTR sval;
2539     UINT i;
2540
2541     for( i=0; i<(rawsize/2); i++ )
2542     {
2543         sval = msi_string_lookup_id( st, rawdata[i] );
2544         MESSAGE(" %04x %s\n", rawdata[i], debugstr_w(sval) );
2545     }
2546 }
2547
2548 static UINT* msi_record_to_row( const MSITABLEVIEW *tv, MSIRECORD *rec )
2549 {
2550     LPCWSTR str;
2551     UINT i, r, *data;
2552
2553     data = msi_alloc( tv->num_cols *sizeof (UINT) );
2554     for( i=0; i<tv->num_cols; i++ )
2555     {
2556         data[i] = 0;
2557
2558         if ( ~tv->columns[i].type & MSITYPE_KEY )
2559             continue;
2560
2561         /* turn the transform column value into a row value */
2562         if ( ( tv->columns[i].type & MSITYPE_STRING ) &&
2563              ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2564         {
2565             str = MSI_RecordGetString( rec, i+1 );
2566             r = msi_string2idW( tv->db->strings, str, &data[i] );
2567
2568             /* if there's no matching string in the string table,
2569                these keys can't match any record, so fail now. */
2570             if( ERROR_SUCCESS != r )
2571             {
2572                 msi_free( data );
2573                 return NULL;
2574             }
2575         }
2576         else
2577         {
2578             data[i] = MSI_RecordGetInteger( rec, i+1 );
2579
2580             if (data[i] == MSI_NULL_INTEGER)
2581                 data[i] = 0;
2582             else if ((tv->columns[i].type&0xff) == 2)
2583                 data[i] += 0x8000;
2584             else
2585                 data[i] += 0x80000000;
2586         }
2587     }
2588     return data;
2589 }
2590
2591 static UINT msi_row_matches( MSITABLEVIEW *tv, UINT row, const UINT *data )
2592 {
2593     UINT i, r, x, ret = ERROR_FUNCTION_FAILED;
2594
2595     for( i=0; i<tv->num_cols; i++ )
2596     {
2597         if ( ~tv->columns[i].type & MSITYPE_KEY )
2598             continue;
2599
2600         /* turn the transform column value into a row value */
2601         r = TABLE_fetch_int( &tv->view, row, i+1, &x );
2602         if ( r != ERROR_SUCCESS )
2603         {
2604             ERR("TABLE_fetch_int shouldn't fail here\n");
2605             break;
2606         }
2607
2608         /* if this key matches, move to the next column */
2609         if ( x != data[i] )
2610         {
2611             ret = ERROR_FUNCTION_FAILED;
2612             break;
2613         }
2614
2615         ret = ERROR_SUCCESS;
2616     }
2617
2618     return ret;
2619 }
2620
2621 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row )
2622 {
2623     UINT i, r = ERROR_FUNCTION_FAILED, *data;
2624
2625     data = msi_record_to_row( tv, rec );
2626     if( !data )
2627         return r;
2628     for( i = 0; i < tv->table->row_count + tv->table->nonpersistent_row_count; i++ )
2629     {
2630         r = msi_row_matches( tv, i, data );
2631         if( r == ERROR_SUCCESS )
2632         {
2633             *row = i;
2634             break;
2635         }
2636     }
2637     msi_free( data );
2638     return r;
2639 }
2640
2641 typedef struct
2642 {
2643     struct list entry;
2644     LPWSTR name;
2645 } TRANSFORMDATA;
2646
2647 static UINT msi_table_load_transform( MSIDATABASE *db, IStorage *stg,
2648                                       string_table *st, TRANSFORMDATA *transform,
2649                                       UINT bytes_per_strref )
2650 {
2651     UINT rawsize = 0;
2652     BYTE *rawdata = NULL;
2653     MSITABLEVIEW *tv = NULL;
2654     UINT r, n, sz, i, mask;
2655     MSIRECORD *rec = NULL;
2656     UINT colcol = 0;
2657     WCHAR coltable[32];
2658     LPWSTR name;
2659
2660     if (!transform)
2661         return ERROR_SUCCESS;
2662
2663     name = transform->name;
2664
2665     coltable[0] = 0;
2666     TRACE("%p %p %p %s\n", db, stg, st, debugstr_w(name) );
2667
2668     /* read the transform data */
2669     read_stream_data( stg, name, TRUE, &rawdata, &rawsize );
2670     if ( !rawdata )
2671     {
2672         TRACE("table %s empty\n", debugstr_w(name) );
2673         return ERROR_INVALID_TABLE;
2674     }
2675
2676     /* create a table view */
2677     r = TABLE_CreateView( db, name, (MSIVIEW**) &tv );
2678     if( r != ERROR_SUCCESS )
2679         goto err;
2680
2681     r = tv->view.ops->execute( &tv->view, NULL );
2682     if( r != ERROR_SUCCESS )
2683         goto err;
2684
2685     TRACE("name = %s columns = %u row_size = %u raw size = %u\n",
2686           debugstr_w(name), tv->num_cols, tv->row_size, rawsize );
2687
2688     /* interpret the data */
2689     r = ERROR_SUCCESS;
2690     for( n=0; n < rawsize;  )
2691     {
2692         mask = rawdata[n] | (rawdata[n+1] << 8);
2693
2694         if (mask&1)
2695         {
2696             /*
2697              * if the low bit is set, columns are continuous and
2698              * the number of columns is specified in the high byte
2699              */
2700             sz = 2;
2701             for( i=0; i<tv->num_cols; i++ )
2702             {
2703                 if( (tv->columns[i].type & MSITYPE_STRING) &&
2704                     ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2705                     sz += bytes_per_strref;
2706                 else
2707                     sz += bytes_per_column( tv->db, &tv->columns[i] );
2708             }
2709         }
2710         else
2711         {
2712             /*
2713              * If the low bit is not set, mask is a bitmask.
2714              * Excepting for key fields, which are always present,
2715              *  each bit indicates that a field is present in the transform record.
2716              *
2717              * mask == 0 is a special case ... only the keys will be present
2718              * and it means that this row should be deleted.
2719              */
2720             sz = 2;
2721             for( i=0; i<tv->num_cols; i++ )
2722             {
2723                 if( (tv->columns[i].type & MSITYPE_KEY) || ((1<<i)&mask))
2724                 {
2725                     if( (tv->columns[i].type & MSITYPE_STRING) &&
2726                         ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2727                         sz += bytes_per_strref;
2728                     else
2729                         sz += bytes_per_column( tv->db, &tv->columns[i] );
2730                 }
2731             }
2732         }
2733
2734         /* check we didn't run of the end of the table */
2735         if ( (n+sz) > rawsize )
2736         {
2737             ERR("borked.\n");
2738             dump_table( st, (USHORT *)rawdata, rawsize );
2739             break;
2740         }
2741
2742         rec = msi_get_transform_record( tv, st, stg, &rawdata[n], bytes_per_strref );
2743         if (rec)
2744         {
2745             if ( mask & 1 )
2746             {
2747                 WCHAR table[32];
2748                 DWORD sz = 32;
2749                 UINT number = MSI_NULL_INTEGER;
2750
2751                 TRACE("inserting record\n");
2752
2753                 if (!lstrcmpW(name, szColumns))
2754                 {
2755                     MSI_RecordGetStringW( rec, 1, table, &sz );
2756                     number = MSI_RecordGetInteger( rec, 2 );
2757
2758                     /*
2759                      * Native msi seems writes nul into the Number (2nd) column of
2760                      * the _Columns table, only when the columns are from a new table
2761                      */
2762                     if ( number == MSI_NULL_INTEGER )
2763                     {
2764                         /* reset the column number on a new table */
2765                         if ( lstrcmpW(coltable, table) )
2766                         {
2767                             colcol = 0;
2768                             lstrcpyW( coltable, table );
2769                         }
2770
2771                         /* fix nul column numbers */
2772                         MSI_RecordSetInteger( rec, 2, ++colcol );
2773                     }
2774                 }
2775
2776                 r = TABLE_insert_row( &tv->view, rec, -1, FALSE );
2777                 if (r != ERROR_SUCCESS)
2778                     ERR("insert row failed\n");
2779
2780                 if ( number != MSI_NULL_INTEGER && !lstrcmpW(name, szColumns) )
2781                     msi_update_table_columns( db, table );
2782             }
2783             else
2784             {
2785                 UINT row = 0;
2786
2787                 r = msi_table_find_row( tv, rec, &row );
2788                 if (r != ERROR_SUCCESS)
2789                     ERR("no matching row to transform\n");
2790                 else if ( mask )
2791                 {
2792                     TRACE("modifying row [%d]:\n", row);
2793                     TABLE_set_row( &tv->view, row, rec, mask );
2794                 }
2795                 else
2796                 {
2797                     TRACE("deleting row [%d]:\n", row);
2798                     TABLE_delete_row( &tv->view, row );
2799                 }
2800             }
2801             if( TRACE_ON(msidb) ) dump_record( rec );
2802             msiobj_release( &rec->hdr );
2803         }
2804
2805         n += sz;
2806     }
2807
2808 err:
2809     /* no need to free the table, it's associated with the database */
2810     msi_free( rawdata );
2811     if( tv )
2812         tv->view.ops->delete( &tv->view );
2813
2814     return ERROR_SUCCESS;
2815 }
2816
2817 /*
2818  * msi_table_apply_transform
2819  *
2820  * Enumerate the table transforms in a transform storage and apply each one.
2821  */
2822 UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg )
2823 {
2824     struct list transforms;
2825     IEnumSTATSTG *stgenum = NULL;
2826     TRANSFORMDATA *transform;
2827     TRANSFORMDATA *tables = NULL, *columns = NULL;
2828     HRESULT r;
2829     STATSTG stat;
2830     string_table *strings;
2831     UINT ret = ERROR_FUNCTION_FAILED;
2832     UINT bytes_per_strref;
2833
2834     TRACE("%p %p\n", db, stg );
2835
2836     strings = msi_load_string_table( stg, &bytes_per_strref );
2837     if( !strings )
2838         goto end;
2839
2840     r = IStorage_EnumElements( stg, 0, NULL, 0, &stgenum );
2841     if( FAILED( r ) )
2842         goto end;
2843
2844     list_init(&transforms);
2845
2846     while ( TRUE )
2847     {
2848         MSITABLEVIEW *tv = NULL;
2849         WCHAR name[0x40];
2850         ULONG count = 0;
2851
2852         r = IEnumSTATSTG_Next( stgenum, 1, &stat, &count );
2853         if ( FAILED( r ) || !count )
2854             break;
2855
2856         decode_streamname( stat.pwcsName, name );
2857         CoTaskMemFree( stat.pwcsName );
2858         if ( name[0] != 0x4840 )
2859             continue;
2860
2861         if ( !lstrcmpW( name+1, szStringPool ) ||
2862              !lstrcmpW( name+1, szStringData ) )
2863             continue;
2864
2865         transform = msi_alloc_zero( sizeof(TRANSFORMDATA) );
2866         if ( !transform )
2867             break;
2868
2869         list_add_tail( &transforms, &transform->entry );
2870
2871         transform->name = strdupW( name + 1 );
2872
2873         if ( !lstrcmpW( transform->name, szTables ) )
2874             tables = transform;
2875         else if (!lstrcmpW( transform->name, szColumns ) )
2876             columns = transform;
2877
2878         TRACE("transform contains stream %s\n", debugstr_w(name));
2879
2880         /* load the table */
2881         r = TABLE_CreateView( db, transform->name, (MSIVIEW**) &tv );
2882         if( r != ERROR_SUCCESS )
2883             continue;
2884
2885         r = tv->view.ops->execute( &tv->view, NULL );
2886         if( r != ERROR_SUCCESS )
2887         {
2888             tv->view.ops->delete( &tv->view );
2889             continue;
2890         }
2891
2892         tv->view.ops->delete( &tv->view );
2893     }
2894
2895     /*
2896      * Apply _Tables and _Columns transforms first so that
2897      * the table metadata is correct, and empty tables exist.
2898      */
2899     ret = msi_table_load_transform( db, stg, strings, tables, bytes_per_strref );
2900     if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2901         goto end;
2902
2903     ret = msi_table_load_transform( db, stg, strings, columns, bytes_per_strref );
2904     if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2905         goto end;
2906
2907     ret = ERROR_SUCCESS;
2908
2909     while ( !list_empty( &transforms ) )
2910     {
2911         transform = LIST_ENTRY( list_head( &transforms ), TRANSFORMDATA, entry );
2912
2913         if ( lstrcmpW( transform->name, szColumns ) &&
2914              lstrcmpW( transform->name, szTables ) &&
2915              ret == ERROR_SUCCESS )
2916         {
2917             ret = msi_table_load_transform( db, stg, strings, transform, bytes_per_strref );
2918         }
2919
2920         list_remove( &transform->entry );
2921         msi_free( transform->name );
2922         msi_free( transform );
2923     }
2924
2925     if ( ret == ERROR_SUCCESS )
2926         append_storage_to_db( db, stg );
2927
2928 end:
2929     if ( stgenum )
2930         IEnumSTATSTG_Release( stgenum );
2931     if ( strings )
2932         msi_destroy_stringtable( strings );
2933
2934     return ret;
2935 }
2936
2937 void append_storage_to_db( MSIDATABASE *db, IStorage *stg )
2938 {
2939     MSITRANSFORM *t;
2940
2941     t = msi_alloc( sizeof *t );
2942     t->stg = stg;
2943     IStorage_AddRef( stg );
2944     list_add_tail( &db->transforms, &t->entry );
2945 }
2946
2947 void msi_free_transforms( MSIDATABASE *db )
2948 {
2949     while( !list_empty( &db->transforms ) )
2950     {
2951         MSITRANSFORM *t = LIST_ENTRY( list_head( &db->transforms ),
2952                                       MSITRANSFORM, entry );
2953         list_remove( &t->entry );
2954         IStorage_Release( t->stg );
2955         msi_free( t );
2956     }
2957 }