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