urlmon: Improved MapUrlToZone{Ex2} and GetSecurityId support.
[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 )
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         list_add_head( &db->tables, &table->entry );
874     else
875         free_table( table );
876
877     return r;
878 }
879
880 static UINT save_table( MSIDATABASE *db, const MSITABLE *t, UINT bytes_per_strref )
881 {
882     BYTE *rawdata = NULL;
883     UINT rawsize, i, j, row_size, row_count;
884     UINT r = ERROR_FUNCTION_FAILED;
885
886     /* Nothing to do for non-persistent tables */
887     if( t->persistent == MSICONDITION_FALSE )
888         return ERROR_SUCCESS;
889
890     TRACE("Saving %s\n", debugstr_w( t->name ) );
891
892     row_size = msi_table_get_row_size( db, t->colinfo, t->col_count, bytes_per_strref );
893     row_count = t->row_count;
894     for (i = 0; i < t->row_count; i++)
895     {
896         if (!t->data_persistent[i])
897         {
898             row_count = 1; /* yes, this is bizarre */
899             break;
900         }
901     }
902     rawsize = row_count * row_size;
903     rawdata = msi_alloc_zero( rawsize );
904     if( !rawdata )
905     {
906         r = ERROR_NOT_ENOUGH_MEMORY;
907         goto err;
908     }
909
910     rawsize = 0;
911     for (i = 0; i < t->row_count; i++)
912     {
913         UINT ofs = 0, ofs_mem = 0;
914
915         if (!t->data_persistent[i]) break;
916
917         for (j = 0; j < t->col_count; j++)
918         {
919             UINT m = bytes_per_column( db, &t->colinfo[j], LONG_STR_BYTES );
920             UINT n = bytes_per_column( db, &t->colinfo[j], bytes_per_strref );
921             UINT k;
922
923             if (n != 2 && n != 3 && n != 4)
924             {
925                 ERR("oops - unknown column width %d\n", n);
926                 goto err;
927             }
928             if (t->colinfo[j].type & MSITYPE_STRING && n < m)
929             {
930                 UINT id = read_table_int( t->data, i, ofs_mem, LONG_STR_BYTES );
931                 if (id > 1 << bytes_per_strref * 8)
932                 {
933                     ERR("string id %u out of range\n", id);
934                     goto err;
935                 }
936             }
937             for (k = 0; k < n; k++)
938             {
939                 rawdata[ofs * row_count + i * n + k] = t->data[i][ofs_mem + k];
940             }
941             ofs_mem += m;
942             ofs += n;
943         }
944         rawsize += row_size;
945     }
946
947     TRACE("writing %d bytes\n", rawsize);
948     r = write_stream_data( db->storage, t->name, rawdata, rawsize, TRUE );
949
950 err:
951     msi_free( rawdata );
952     return r;
953 }
954
955 static void msi_update_table_columns( MSIDATABASE *db, LPCWSTR name )
956 {
957     MSITABLE *table;
958     UINT size, offset, old_count;
959     UINT n;
960
961     table = find_cached_table( db, name );
962     old_count = table->col_count;
963     msi_free_colinfo( table->colinfo, table->col_count );
964     msi_free( table->colinfo );
965     table->colinfo = NULL;
966
967     table_get_column_info( db, name, &table->colinfo, &table->col_count );
968     if (!table->col_count) return;
969
970     size = msi_table_get_row_size( db, table->colinfo, table->col_count, LONG_STR_BYTES );
971     offset = table->colinfo[table->col_count - 1].offset;
972
973     for ( n = 0; n < table->row_count; n++ )
974     {
975         table->data[n] = msi_realloc( table->data[n], size );
976         if (old_count < table->col_count)
977             memset( &table->data[n][offset], 0, size - offset );
978     }
979 }
980
981 /* try to find the table name in the _Tables table */
982 BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name )
983 {
984     UINT r, table_id, i;
985     MSITABLE *table;
986
987     if( !strcmpW( name, szTables ) || !strcmpW( name, szColumns ) ||
988         !strcmpW( name, szStreams ) || !strcmpW( name, szStorages ) )
989         return TRUE;
990
991     r = msi_string2idW( db->strings, name, &table_id );
992     if( r != ERROR_SUCCESS )
993     {
994         TRACE("Couldn't find id for %s\n", debugstr_w(name));
995         return FALSE;
996     }
997
998     r = get_table( db, szTables, &table );
999     if( r != ERROR_SUCCESS )
1000     {
1001         ERR("table %s not available\n", debugstr_w(szTables));
1002         return FALSE;
1003     }
1004
1005     for( i = 0; i < table->row_count; i++ )
1006     {
1007         if( read_table_int( table->data, i, 0, LONG_STR_BYTES ) == table_id )
1008             return TRUE;
1009     }
1010
1011     return FALSE;
1012 }
1013
1014 /* below is the query interface to a table */
1015
1016 typedef struct tagMSITABLEVIEW
1017 {
1018     MSIVIEW        view;
1019     MSIDATABASE   *db;
1020     MSITABLE      *table;
1021     MSICOLUMNINFO *columns;
1022     MSIORDERINFO  *order;
1023     UINT           num_cols;
1024     UINT           row_size;
1025     WCHAR          name[1];
1026 } MSITABLEVIEW;
1027
1028 static UINT TABLE_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
1029 {
1030     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1031     UINT offset, n;
1032
1033     if( !tv->table )
1034         return ERROR_INVALID_PARAMETER;
1035
1036     if( (col==0) || (col>tv->num_cols) )
1037         return ERROR_INVALID_PARAMETER;
1038
1039     /* how many rows are there ? */
1040     if( row >= tv->table->row_count )
1041         return ERROR_NO_MORE_ITEMS;
1042
1043     if( tv->columns[col-1].offset >= tv->row_size )
1044     {
1045         ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1046         ERR("%p %p\n", tv, tv->columns );
1047         return ERROR_FUNCTION_FAILED;
1048     }
1049
1050     if (tv->order)
1051         row = tv->order->reorder[row];
1052
1053     n = bytes_per_column( tv->db, &tv->columns[col - 1], LONG_STR_BYTES );
1054     if (n != 2 && n != 3 && n != 4)
1055     {
1056         ERR("oops! what is %d bytes per column?\n", n );
1057         return ERROR_FUNCTION_FAILED;
1058     }
1059
1060     offset = tv->columns[col-1].offset;
1061     *val = read_table_int(tv->table->data, row, offset, n);
1062
1063     /* TRACE("Data [%d][%d] = %d\n", row, col, *val ); */
1064
1065     return ERROR_SUCCESS;
1066 }
1067
1068 static UINT msi_stream_name( const MSITABLEVIEW *tv, UINT row, LPWSTR *pstname )
1069 {
1070     LPWSTR p, stname = NULL;
1071     UINT i, r, type, ival;
1072     DWORD len;
1073     LPCWSTR sval;
1074     MSIVIEW *view = (MSIVIEW *) tv;
1075
1076     TRACE("%p %d\n", tv, row);
1077
1078     len = lstrlenW( tv->name ) + 1;
1079     stname = msi_alloc( len*sizeof(WCHAR) );
1080     if ( !stname )
1081     {
1082        r = ERROR_OUTOFMEMORY;
1083        goto err;
1084     }
1085
1086     lstrcpyW( stname, tv->name );
1087
1088     for ( i = 0; i < tv->num_cols; i++ )
1089     {
1090         type = tv->columns[i].type;
1091         if ( type & MSITYPE_KEY )
1092         {
1093             WCHAR number[0x20];
1094
1095             r = TABLE_fetch_int( view, row, i+1, &ival );
1096             if ( r != ERROR_SUCCESS )
1097                 goto err;
1098
1099             if ( tv->columns[i].type & MSITYPE_STRING )
1100             {
1101                 sval = msi_string_lookup_id( tv->db->strings, ival );
1102                 if ( !sval )
1103                 {
1104                     r = ERROR_INVALID_PARAMETER;
1105                     goto err;
1106                 }
1107             }
1108             else
1109             {
1110                 static const WCHAR fmt[] = { '%','d',0 };
1111                 UINT n = bytes_per_column( tv->db, &tv->columns[i], LONG_STR_BYTES );
1112
1113                 switch( n )
1114                 {
1115                 case 2:
1116                     sprintfW( number, fmt, ival-0x8000 );
1117                     break;
1118                 case 4:
1119                     sprintfW( number, fmt, ival^0x80000000 );
1120                     break;
1121                 default:
1122                     ERR( "oops - unknown column width %d\n", n );
1123                     r = ERROR_FUNCTION_FAILED;
1124                     goto err;
1125                 }
1126                 sval = number;
1127             }
1128
1129             len += lstrlenW( szDot ) + lstrlenW( sval );
1130             p = msi_realloc ( stname, len*sizeof(WCHAR) );
1131             if ( !p )
1132             {
1133                 r = ERROR_OUTOFMEMORY;
1134                 goto err;
1135             }
1136             stname = p;
1137
1138             lstrcatW( stname, szDot );
1139             lstrcatW( stname, sval );
1140         }
1141         else
1142            continue;
1143     }
1144
1145     *pstname = stname;
1146     return ERROR_SUCCESS;
1147
1148 err:
1149     msi_free( stname );
1150     *pstname = NULL;
1151     return r;
1152 }
1153
1154 /*
1155  * We need a special case for streams, as we need to reference column with
1156  * the name of the stream in the same table, and the table name
1157  * which may not be available at higher levels of the query
1158  */
1159 static UINT TABLE_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm )
1160 {
1161     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1162     UINT r;
1163     LPWSTR encname, full_name = NULL;
1164
1165     if( !view->ops->fetch_int )
1166         return ERROR_INVALID_PARAMETER;
1167
1168     r = msi_stream_name( tv, row, &full_name );
1169     if ( r != ERROR_SUCCESS )
1170     {
1171         ERR("fetching stream, error = %d\n", r);
1172         return r;
1173     }
1174
1175     encname = encode_streamname( FALSE, full_name );
1176     r = msi_get_raw_stream( tv->db, encname, stm );
1177     if( r )
1178         ERR("fetching stream %s, error = %d\n",debugstr_w(full_name), r);
1179
1180     msi_free( full_name );
1181     msi_free( encname );
1182     return r;
1183 }
1184
1185 static UINT TABLE_set_int( MSITABLEVIEW *tv, UINT row, UINT col, UINT val )
1186 {
1187     UINT offset, n, i;
1188
1189     if( !tv->table )
1190         return ERROR_INVALID_PARAMETER;
1191
1192     if( (col==0) || (col>tv->num_cols) )
1193         return ERROR_INVALID_PARAMETER;
1194
1195     if( row >= tv->table->row_count )
1196         return ERROR_INVALID_PARAMETER;
1197
1198     if( tv->columns[col-1].offset >= tv->row_size )
1199     {
1200         ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1201         ERR("%p %p\n", tv, tv->columns );
1202         return ERROR_FUNCTION_FAILED;
1203     }
1204
1205     msi_free( tv->columns[col-1].hash_table );
1206     tv->columns[col-1].hash_table = NULL;
1207
1208     n = bytes_per_column( tv->db, &tv->columns[col - 1], LONG_STR_BYTES );
1209     if ( n != 2 && n != 3 && n != 4 )
1210     {
1211         ERR("oops! what is %d bytes per column?\n", n );
1212         return ERROR_FUNCTION_FAILED;
1213     }
1214
1215     offset = tv->columns[col-1].offset;
1216     for ( i = 0; i < n; i++ )
1217         tv->table->data[row][offset + i] = (val >> i * 8) & 0xff;
1218
1219     return ERROR_SUCCESS;
1220 }
1221
1222 static UINT TABLE_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
1223 {
1224     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1225
1226     if (!tv->table)
1227         return ERROR_INVALID_PARAMETER;
1228
1229     if (tv->order)
1230         row = tv->order->reorder[row];
1231
1232     return msi_view_get_row(tv->db, view, row, rec);
1233 }
1234
1235 static UINT msi_addstreamW( MSIDATABASE *db, LPCWSTR name, IStream *data )
1236 {
1237     static const WCHAR insert[] = {
1238         'I','N','S','E','R','T',' ','I','N','T','O',' ',
1239         '`','_','S','t','r','e','a','m','s','`',' ',
1240         '(','`','N','a','m','e','`',',','`','D','a','t','a','`',')',' ',
1241         'V','A','L','U','E','S',' ','(','?',',','?',')',0};
1242     MSIQUERY *query = NULL;
1243     MSIRECORD *rec;
1244     UINT r;
1245
1246     TRACE("%p %s %p\n", db, debugstr_w(name), data);
1247
1248     rec = MSI_CreateRecord( 2 );
1249     if ( !rec )
1250         return ERROR_OUTOFMEMORY;
1251
1252     r = MSI_RecordSetStringW( rec, 1, name );
1253     if ( r != ERROR_SUCCESS )
1254        goto err;
1255
1256     r = MSI_RecordSetIStream( rec, 2, data );
1257     if ( r != ERROR_SUCCESS )
1258        goto err;
1259
1260     r = MSI_DatabaseOpenViewW( db, insert, &query );
1261     if ( r != ERROR_SUCCESS )
1262        goto err;
1263
1264     r = MSI_ViewExecute( query, rec );
1265
1266 err:
1267     msiobj_release( &query->hdr );
1268     msiobj_release( &rec->hdr );
1269     return r;
1270 }
1271
1272 static UINT get_table_value_from_record( MSITABLEVIEW *tv, MSIRECORD *rec, UINT iField, UINT *pvalue )
1273 {
1274     MSICOLUMNINFO columninfo;
1275     UINT r;
1276
1277     if ( (iField <= 0) ||
1278          (iField > tv->num_cols) ||
1279           MSI_RecordIsNull( rec, iField ) )
1280         return ERROR_FUNCTION_FAILED;
1281
1282     columninfo = tv->columns[ iField - 1 ];
1283
1284     if ( MSITYPE_IS_BINARY(columninfo.type) )
1285     {
1286         *pvalue = 1; /* refers to the first key column */
1287     }
1288     else if ( columninfo.type & MSITYPE_STRING )
1289     {
1290         LPCWSTR sval = MSI_RecordGetString( rec, iField );
1291         if (sval)
1292         {
1293             r = msi_string2idW(tv->db->strings, sval, pvalue);
1294             if (r != ERROR_SUCCESS)
1295                 return ERROR_NOT_FOUND;
1296         }
1297         else *pvalue = 0;
1298     }
1299     else if ( bytes_per_column( tv->db, &columninfo, LONG_STR_BYTES ) == 2 )
1300     {
1301         *pvalue = 0x8000 + MSI_RecordGetInteger( rec, iField );
1302         if ( *pvalue & 0xffff0000 )
1303         {
1304             ERR("field %u value %d out of range\n", iField, *pvalue - 0x8000);
1305             return ERROR_FUNCTION_FAILED;
1306         }
1307     }
1308     else
1309     {
1310         INT ival = MSI_RecordGetInteger( rec, iField );
1311         *pvalue = ival ^ 0x80000000;
1312     }
1313
1314     return ERROR_SUCCESS;
1315 }
1316
1317 static UINT TABLE_set_row( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask )
1318 {
1319     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1320     UINT i, val, r = ERROR_SUCCESS;
1321
1322     if ( !tv->table )
1323         return ERROR_INVALID_PARAMETER;
1324
1325     /* test if any of the mask bits are invalid */
1326     if ( mask >= (1<<tv->num_cols) )
1327         return ERROR_INVALID_PARAMETER;
1328
1329     for ( i = 0; i < tv->num_cols; i++ )
1330     {
1331         BOOL persistent;
1332
1333         /* only update the fields specified in the mask */
1334         if ( !(mask&(1<<i)) )
1335             continue;
1336
1337         persistent = (tv->table->persistent != MSICONDITION_FALSE) &&
1338                      (tv->table->data_persistent[row]);
1339         /* FIXME: should we allow updating keys? */
1340
1341         val = 0;
1342         if ( !MSI_RecordIsNull( rec, i + 1 ) )
1343         {
1344             r = get_table_value_from_record (tv, rec, i + 1, &val);
1345             if ( MSITYPE_IS_BINARY(tv->columns[ i ].type) )
1346             {
1347                 IStream *stm;
1348                 LPWSTR stname;
1349
1350                 if ( r != ERROR_SUCCESS )
1351                     return ERROR_FUNCTION_FAILED;
1352
1353                 r = MSI_RecordGetIStream( rec, i + 1, &stm );
1354                 if ( r != ERROR_SUCCESS )
1355                     return r;
1356
1357                 r = msi_stream_name( tv, row, &stname );
1358                 if ( r != ERROR_SUCCESS )
1359                 {
1360                     IStream_Release( stm );
1361                     return r;
1362                 }
1363
1364                 r = msi_addstreamW( tv->db, stname, stm );
1365                 IStream_Release( stm );
1366                 msi_free ( stname );
1367
1368                 if ( r != ERROR_SUCCESS )
1369                     return r;
1370             }
1371             else if ( tv->columns[i].type & MSITYPE_STRING )
1372             {
1373                 UINT x;
1374
1375                 if ( r != ERROR_SUCCESS )
1376                 {
1377                     LPCWSTR sval = MSI_RecordGetString( rec, i + 1 );
1378                     val = msi_addstringW( tv->db->strings, sval, -1, 1,
1379                       persistent ? StringPersistent : StringNonPersistent );
1380                 }
1381                 else
1382                 {
1383                     TABLE_fetch_int(&tv->view, row, i + 1, &x);
1384                     if (val == x)
1385                         continue;
1386                 }
1387             }
1388             else
1389             {
1390                 if ( r != ERROR_SUCCESS )
1391                     return ERROR_FUNCTION_FAILED;
1392             }
1393         }
1394
1395         r = TABLE_set_int( tv, row, i+1, val );
1396         if ( r != ERROR_SUCCESS )
1397             break;
1398     }
1399     return r;
1400 }
1401
1402 static UINT table_create_new_row( struct tagMSIVIEW *view, UINT *num, BOOL temporary )
1403 {
1404     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1405     BYTE **p, *row;
1406     BOOL *b;
1407     UINT sz;
1408     BYTE ***data_ptr;
1409     BOOL **data_persist_ptr;
1410     UINT *row_count;
1411
1412     TRACE("%p %s\n", view, temporary ? "TRUE" : "FALSE");
1413
1414     if( !tv->table )
1415         return ERROR_INVALID_PARAMETER;
1416
1417     row = msi_alloc_zero( tv->row_size );
1418     if( !row )
1419         return ERROR_NOT_ENOUGH_MEMORY;
1420
1421     row_count = &tv->table->row_count;
1422     data_ptr = &tv->table->data;
1423     data_persist_ptr = &tv->table->data_persistent;
1424     if (*num == -1)
1425         *num = tv->table->row_count;
1426
1427     sz = (*row_count + 1) * sizeof (BYTE*);
1428     if( *data_ptr )
1429         p = msi_realloc( *data_ptr, sz );
1430     else
1431         p = msi_alloc( sz );
1432     if( !p )
1433     {
1434         msi_free( row );
1435         return ERROR_NOT_ENOUGH_MEMORY;
1436     }
1437
1438     sz = (*row_count + 1) * sizeof (BOOL);
1439     if( *data_persist_ptr )
1440         b = msi_realloc( *data_persist_ptr, sz );
1441     else
1442         b = msi_alloc( sz );
1443     if( !b )
1444     {
1445         msi_free( row );
1446         msi_free( p );
1447         return ERROR_NOT_ENOUGH_MEMORY;
1448     }
1449
1450     *data_ptr = p;
1451     (*data_ptr)[*row_count] = row;
1452
1453     *data_persist_ptr = b;
1454     (*data_persist_ptr)[*row_count] = !temporary;
1455
1456     (*row_count)++;
1457
1458     return ERROR_SUCCESS;
1459 }
1460
1461 static UINT TABLE_execute( struct tagMSIVIEW *view, MSIRECORD *record )
1462 {
1463     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1464
1465     TRACE("%p %p\n", tv, record);
1466
1467     TRACE("There are %d columns\n", tv->num_cols );
1468
1469     return ERROR_SUCCESS;
1470 }
1471
1472 static UINT TABLE_close( struct tagMSIVIEW *view )
1473 {
1474     TRACE("%p\n", view );
1475     
1476     return ERROR_SUCCESS;
1477 }
1478
1479 static UINT TABLE_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols)
1480 {
1481     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1482
1483     TRACE("%p %p %p\n", view, rows, cols );
1484
1485     if( cols )
1486         *cols = tv->num_cols;
1487     if( rows )
1488     {
1489         if( !tv->table )
1490             return ERROR_INVALID_PARAMETER;
1491         *rows = tv->table->row_count;
1492     }
1493
1494     return ERROR_SUCCESS;
1495 }
1496
1497 static UINT TABLE_get_column_info( struct tagMSIVIEW *view,
1498                 UINT n, LPCWSTR *name, UINT *type, BOOL *temporary,
1499                 LPCWSTR *table_name )
1500 {
1501     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1502
1503     TRACE("%p %d %p %p\n", tv, n, name, type );
1504
1505     if( ( n == 0 ) || ( n > tv->num_cols ) )
1506         return ERROR_INVALID_PARAMETER;
1507
1508     if( name )
1509     {
1510         *name = tv->columns[n-1].colname;
1511         if( !*name )
1512             return ERROR_FUNCTION_FAILED;
1513     }
1514
1515     if( table_name )
1516     {
1517         *table_name = tv->columns[n-1].tablename;
1518         if( !*table_name )
1519             return ERROR_FUNCTION_FAILED;
1520     }
1521
1522     if( type )
1523         *type = tv->columns[n-1].type;
1524
1525     if( temporary )
1526         *temporary = tv->columns[n-1].temporary;
1527
1528     return ERROR_SUCCESS;
1529 }
1530
1531 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row, UINT *column );
1532
1533 static UINT table_validate_new( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *column )
1534 {
1535     UINT r, row, i;
1536
1537     /* check there's no null values where they're not allowed */
1538     for( i = 0; i < tv->num_cols; i++ )
1539     {
1540         if ( tv->columns[i].type & MSITYPE_NULLABLE )
1541             continue;
1542
1543         if ( MSITYPE_IS_BINARY(tv->columns[i].type) )
1544             TRACE("skipping binary column\n");
1545         else if ( tv->columns[i].type & MSITYPE_STRING )
1546         {
1547             LPCWSTR str;
1548
1549             str = MSI_RecordGetString( rec, i+1 );
1550             if (str == NULL || str[0] == 0)
1551             {
1552                 if (column) *column = i;
1553                 return ERROR_INVALID_DATA;
1554             }
1555         }
1556         else
1557         {
1558             UINT n;
1559
1560             n = MSI_RecordGetInteger( rec, i+1 );
1561             if (n == MSI_NULL_INTEGER)
1562             {
1563                 if (column) *column = i;
1564                 return ERROR_INVALID_DATA;
1565             }
1566         }
1567     }
1568
1569     /* check there's no duplicate keys */
1570     r = msi_table_find_row( tv, rec, &row, column );
1571     if (r == ERROR_SUCCESS)
1572         return ERROR_FUNCTION_FAILED;
1573
1574     return ERROR_SUCCESS;
1575 }
1576
1577 static int compare_record( MSITABLEVIEW *tv, UINT row, MSIRECORD *rec )
1578 {
1579     UINT r, i, ivalue, x;
1580
1581     for (i = 0; i < tv->num_cols; i++ )
1582     {
1583         if (!(tv->columns[i].type & MSITYPE_KEY)) continue;
1584
1585         r = get_table_value_from_record( tv, rec, i + 1, &ivalue );
1586         if (r != ERROR_SUCCESS)
1587             return 1;
1588
1589         r = TABLE_fetch_int( &tv->view, row, i + 1, &x );
1590         if (r != ERROR_SUCCESS)
1591         {
1592             WARN("TABLE_fetch_int should not fail here %u\n", r);
1593             return -1;
1594         }
1595         if (ivalue > x)
1596         {
1597             return 1;
1598         }
1599         else if (ivalue == x)
1600         {
1601             if (i < tv->num_cols - 1) continue;
1602             return 0;
1603         }
1604         else
1605             return -1;
1606     }
1607     return 1;
1608 }
1609
1610 static int find_insert_index( MSITABLEVIEW *tv, MSIRECORD *rec )
1611 {
1612     int idx, c, low = 0, high = tv->table->row_count - 1;
1613
1614     TRACE("%p %p\n", tv, rec);
1615
1616     while (low <= high)
1617     {
1618         idx = (low + high) / 2;
1619         c = compare_record( tv, idx, rec );
1620
1621         if (c < 0)
1622             high = idx - 1;
1623         else if (c > 0)
1624             low = idx + 1;
1625         else
1626         {
1627             TRACE("found %u\n", idx);
1628             return idx;
1629         }
1630     }
1631     TRACE("found %u\n", high + 1);
1632     return high + 1;
1633 }
1634
1635 static UINT TABLE_insert_row( struct tagMSIVIEW *view, MSIRECORD *rec, UINT row, BOOL temporary )
1636 {
1637     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1638     UINT i, r;
1639
1640     TRACE("%p %p %s\n", tv, rec, temporary ? "TRUE" : "FALSE" );
1641
1642     /* check that the key is unique - can we find a matching row? */
1643     r = table_validate_new( tv, rec, NULL );
1644     if( r != ERROR_SUCCESS )
1645         return ERROR_FUNCTION_FAILED;
1646
1647     if (row == -1)
1648         row = find_insert_index( tv, rec );
1649
1650     r = table_create_new_row( view, &row, temporary );
1651     TRACE("insert_row returned %08x\n", r);
1652     if( r != ERROR_SUCCESS )
1653         return r;
1654
1655     /* shift the rows to make room for the new row */
1656     for (i = tv->table->row_count - 1; i > row; i--)
1657     {
1658         memmove(&(tv->table->data[i][0]),
1659                 &(tv->table->data[i - 1][0]), tv->row_size);
1660         tv->table->data_persistent[i] = tv->table->data_persistent[i - 1];
1661     }
1662
1663     /* Re-set the persistence flag */
1664     tv->table->data_persistent[row] = !temporary;
1665     return TABLE_set_row( view, row, rec, (1<<tv->num_cols) - 1 );
1666 }
1667
1668 static UINT TABLE_delete_row( struct tagMSIVIEW *view, UINT row )
1669 {
1670     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1671     UINT r, num_rows, num_cols, i;
1672
1673     TRACE("%p %d\n", tv, row);
1674
1675     if ( !tv->table )
1676         return ERROR_INVALID_PARAMETER;
1677
1678     r = TABLE_get_dimensions( view, &num_rows, &num_cols );
1679     if ( r != ERROR_SUCCESS )
1680         return r;
1681
1682     if ( row >= num_rows )
1683         return ERROR_FUNCTION_FAILED;
1684
1685     num_rows = tv->table->row_count;
1686     tv->table->row_count--;
1687
1688     /* reset the hash tables */
1689     for (i = 0; i < tv->num_cols; i++)
1690     {
1691         msi_free( tv->columns[i].hash_table );
1692         tv->columns[i].hash_table = NULL;
1693     }
1694
1695     for (i = row + 1; i < num_rows; i++)
1696     {
1697         memcpy(tv->table->data[i - 1], tv->table->data[i], tv->row_size);
1698         tv->table->data_persistent[i - 1] = tv->table->data_persistent[i];
1699     }
1700
1701     msi_free(tv->table->data[num_rows - 1]);
1702
1703     return ERROR_SUCCESS;
1704 }
1705
1706 static UINT msi_table_update(struct tagMSIVIEW *view, MSIRECORD *rec, UINT row)
1707 {
1708     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1709     UINT r, new_row;
1710
1711     /* FIXME: MsiViewFetch should set rec index 0 to some ID that
1712      * sets the fetched record apart from other records
1713      */
1714
1715     if (!tv->table)
1716         return ERROR_INVALID_PARAMETER;
1717
1718     r = msi_table_find_row(tv, rec, &new_row, NULL);
1719     if (r != ERROR_SUCCESS)
1720     {
1721         ERR("can't find row to modify\n");
1722         return ERROR_FUNCTION_FAILED;
1723     }
1724
1725     /* the row cannot be changed */
1726     if (row != new_row + 1)
1727         return ERROR_FUNCTION_FAILED;
1728
1729     if(tv->order)
1730         new_row = tv->order->reorder[new_row];
1731
1732     return TABLE_set_row(view, new_row, rec, (1 << tv->num_cols) - 1);
1733 }
1734
1735 static UINT msi_table_assign(struct tagMSIVIEW *view, MSIRECORD *rec)
1736 {
1737     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1738     UINT r, row;
1739
1740     if (!tv->table)
1741         return ERROR_INVALID_PARAMETER;
1742
1743     r = msi_table_find_row(tv, rec, &row, NULL);
1744     if (r == ERROR_SUCCESS)
1745         return TABLE_set_row(view, row, rec, (1 << tv->num_cols) - 1);
1746     else
1747         return TABLE_insert_row( view, rec, -1, FALSE );
1748 }
1749
1750 static UINT modify_delete_row( struct tagMSIVIEW *view, MSIRECORD *rec )
1751 {
1752     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1753     UINT row, r;
1754
1755     r = msi_table_find_row(tv, rec, &row, NULL);
1756     if (r != ERROR_SUCCESS)
1757         return r;
1758
1759     return TABLE_delete_row(view, row);
1760 }
1761
1762 static UINT msi_refresh_record( struct tagMSIVIEW *view, MSIRECORD *rec, UINT row )
1763 {
1764     MSIRECORD *curr;
1765     UINT r, i, count;
1766
1767     r = TABLE_get_row(view, row - 1, &curr);
1768     if (r != ERROR_SUCCESS)
1769         return r;
1770
1771     /* Close the original record */
1772     MSI_CloseRecord(&rec->hdr);
1773
1774     count = MSI_RecordGetFieldCount(rec);
1775     for (i = 0; i < count; i++)
1776         MSI_RecordCopyField(curr, i + 1, rec, i + 1);
1777
1778     msiobj_release(&curr->hdr);
1779     return ERROR_SUCCESS;
1780 }
1781
1782 static UINT TABLE_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
1783                           MSIRECORD *rec, UINT row)
1784 {
1785     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1786     UINT r, column;
1787
1788     TRACE("%p %d %p\n", view, eModifyMode, rec );
1789
1790     switch (eModifyMode)
1791     {
1792     case MSIMODIFY_DELETE:
1793         r = modify_delete_row( view, rec );
1794         break;
1795     case MSIMODIFY_VALIDATE_NEW:
1796         r = table_validate_new( tv, rec, &column );
1797         if (r != ERROR_SUCCESS)
1798         {
1799             tv->view.error = MSIDBERROR_DUPLICATEKEY;
1800             tv->view.error_column = tv->columns[column].colname;
1801             r = ERROR_INVALID_DATA;
1802         }
1803         break;
1804
1805     case MSIMODIFY_INSERT:
1806         r = table_validate_new( tv, rec, NULL );
1807         if (r != ERROR_SUCCESS)
1808             break;
1809         r = TABLE_insert_row( view, rec, -1, FALSE );
1810         break;
1811
1812     case MSIMODIFY_INSERT_TEMPORARY:
1813         r = table_validate_new( tv, rec, NULL );
1814         if (r != ERROR_SUCCESS)
1815             break;
1816         r = TABLE_insert_row( view, rec, -1, TRUE );
1817         break;
1818
1819     case MSIMODIFY_REFRESH:
1820         r = msi_refresh_record( view, rec, row );
1821         break;
1822
1823     case MSIMODIFY_UPDATE:
1824         r = msi_table_update( view, rec, row );
1825         break;
1826
1827     case MSIMODIFY_ASSIGN:
1828         r = msi_table_assign( view, rec );
1829         break;
1830
1831     case MSIMODIFY_REPLACE:
1832     case MSIMODIFY_MERGE:
1833     case MSIMODIFY_VALIDATE:
1834     case MSIMODIFY_VALIDATE_FIELD:
1835     case MSIMODIFY_VALIDATE_DELETE:
1836         FIXME("%p %d %p - mode not implemented\n", view, eModifyMode, rec );
1837         r = ERROR_CALL_NOT_IMPLEMENTED;
1838         break;
1839
1840     default:
1841         r = ERROR_INVALID_DATA;
1842     }
1843
1844     return r;
1845 }
1846
1847 static UINT TABLE_delete( struct tagMSIVIEW *view )
1848 {
1849     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1850
1851     TRACE("%p\n", view );
1852
1853     tv->table = NULL;
1854     tv->columns = NULL;
1855
1856     if (tv->order)
1857     {
1858         msi_free( tv->order->reorder );
1859         msi_free( tv->order );
1860         tv->order = NULL;
1861     }
1862
1863     msi_free( tv );
1864
1865     return ERROR_SUCCESS;
1866 }
1867
1868 static UINT TABLE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
1869     UINT val, UINT *row, MSIITERHANDLE *handle )
1870 {
1871     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1872     const MSICOLUMNHASHENTRY *entry;
1873
1874     TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
1875
1876     if( !tv->table )
1877         return ERROR_INVALID_PARAMETER;
1878
1879     if( (col==0) || (col > tv->num_cols) )
1880         return ERROR_INVALID_PARAMETER;
1881
1882     if( !tv->columns[col-1].hash_table )
1883     {
1884         UINT i;
1885         UINT num_rows = tv->table->row_count;
1886         MSICOLUMNHASHENTRY **hash_table;
1887         MSICOLUMNHASHENTRY *new_entry;
1888
1889         if( tv->columns[col-1].offset >= tv->row_size )
1890         {
1891             ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1892             ERR("%p %p\n", tv, tv->columns );
1893             return ERROR_FUNCTION_FAILED;
1894         }
1895
1896         /* allocate contiguous memory for the table and its entries so we
1897          * don't have to do an expensive cleanup */
1898         hash_table = msi_alloc(MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*) +
1899             num_rows * sizeof(MSICOLUMNHASHENTRY));
1900         if (!hash_table)
1901             return ERROR_OUTOFMEMORY;
1902
1903         memset(hash_table, 0, MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*));
1904         tv->columns[col-1].hash_table = hash_table;
1905
1906         new_entry = (MSICOLUMNHASHENTRY *)(hash_table + MSITABLE_HASH_TABLE_SIZE);
1907
1908         for (i = 0; i < num_rows; i++, new_entry++)
1909         {
1910             UINT row_value;
1911
1912             if (view->ops->fetch_int( view, i, col, &row_value ) != ERROR_SUCCESS)
1913                 continue;
1914
1915             new_entry->next = NULL;
1916             new_entry->value = row_value;
1917             new_entry->row = i;
1918             if (hash_table[row_value % MSITABLE_HASH_TABLE_SIZE])
1919             {
1920                 MSICOLUMNHASHENTRY *prev_entry = hash_table[row_value % MSITABLE_HASH_TABLE_SIZE];
1921                 while (prev_entry->next)
1922                     prev_entry = prev_entry->next;
1923                 prev_entry->next = new_entry;
1924             }
1925             else
1926                 hash_table[row_value % MSITABLE_HASH_TABLE_SIZE] = new_entry;
1927         }
1928     }
1929
1930     if( !*handle )
1931         entry = tv->columns[col-1].hash_table[val % MSITABLE_HASH_TABLE_SIZE];
1932     else
1933         entry = (*handle)->next;
1934
1935     while (entry && entry->value != val)
1936         entry = entry->next;
1937
1938     *handle = entry;
1939     if (!entry)
1940         return ERROR_NO_MORE_ITEMS;
1941
1942     *row = entry->row;
1943
1944     return ERROR_SUCCESS;
1945 }
1946
1947 static UINT TABLE_add_ref(struct tagMSIVIEW *view)
1948 {
1949     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1950     UINT i;
1951
1952     TRACE("%p %d\n", view, tv->table->ref_count);
1953
1954     for (i = 0; i < tv->table->col_count; i++)
1955     {
1956         if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
1957             InterlockedIncrement(&tv->table->colinfo[i].ref_count);
1958     }
1959
1960     return InterlockedIncrement(&tv->table->ref_count);
1961 }
1962
1963 static UINT TABLE_remove_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number)
1964 {
1965     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1966     MSIRECORD *rec = NULL;
1967     MSIVIEW *columns = NULL;
1968     UINT row, r;
1969
1970     rec = MSI_CreateRecord(2);
1971     if (!rec)
1972         return ERROR_OUTOFMEMORY;
1973
1974     MSI_RecordSetStringW(rec, 1, table);
1975     MSI_RecordSetInteger(rec, 2, number);
1976
1977     r = TABLE_CreateView(tv->db, szColumns, &columns);
1978     if (r != ERROR_SUCCESS)
1979         return r;
1980
1981     r = msi_table_find_row((MSITABLEVIEW *)columns, rec, &row, NULL);
1982     if (r != ERROR_SUCCESS)
1983         goto done;
1984
1985     r = TABLE_delete_row(columns, row);
1986     if (r != ERROR_SUCCESS)
1987         goto done;
1988
1989     msi_update_table_columns(tv->db, table);
1990
1991 done:
1992     msiobj_release(&rec->hdr);
1993     columns->ops->delete(columns);
1994     return r;
1995 }
1996
1997 static UINT TABLE_release(struct tagMSIVIEW *view)
1998 {
1999     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2000     INT ref = tv->table->ref_count;
2001     UINT i, r;
2002
2003     TRACE("%p %d\n", view, ref);
2004
2005     for (i = 0; i < tv->table->col_count; i++)
2006     {
2007         if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
2008         {
2009             ref = InterlockedDecrement(&tv->table->colinfo[i].ref_count);
2010             if (ref == 0)
2011             {
2012                 r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
2013                                         tv->table->colinfo[i].number);
2014                 if (r != ERROR_SUCCESS)
2015                     break;
2016             }
2017         }
2018     }
2019
2020     ref = InterlockedDecrement(&tv->table->ref_count);
2021     if (ref == 0)
2022     {
2023         if (!tv->table->row_count)
2024         {
2025             list_remove(&tv->table->entry);
2026             free_table(tv->table);
2027             TABLE_delete(view);
2028         }
2029     }
2030
2031     return ref;
2032 }
2033
2034 static UINT TABLE_add_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number,
2035                              LPCWSTR column, UINT type, BOOL hold)
2036 {
2037     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2038     MSITABLE *msitable;
2039     MSIRECORD *rec;
2040     UINT r, i;
2041
2042     rec = MSI_CreateRecord(4);
2043     if (!rec)
2044         return ERROR_OUTOFMEMORY;
2045
2046     MSI_RecordSetStringW(rec, 1, table);
2047     MSI_RecordSetInteger(rec, 2, number);
2048     MSI_RecordSetStringW(rec, 3, column);
2049     MSI_RecordSetInteger(rec, 4, type);
2050
2051     r = TABLE_insert_row(&tv->view, rec, -1, FALSE);
2052     if (r != ERROR_SUCCESS)
2053         goto done;
2054
2055     msi_update_table_columns(tv->db, table);
2056
2057     if (!hold)
2058         goto done;
2059
2060     msitable = find_cached_table(tv->db, table);
2061     for (i = 0; i < msitable->col_count; i++)
2062     {
2063         if (!strcmpW( msitable->colinfo[i].colname, column ))
2064         {
2065             InterlockedIncrement(&msitable->colinfo[i].ref_count);
2066             break;
2067         }
2068     }
2069
2070 done:
2071     msiobj_release(&rec->hdr);
2072     return r;
2073 }
2074
2075 static UINT order_add_column(struct tagMSIVIEW *view, MSIORDERINFO *order, LPCWSTR name)
2076 {
2077     UINT n, r, count;
2078     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2079
2080     r = TABLE_get_dimensions(view, NULL, &count);
2081     if (r != ERROR_SUCCESS)
2082         return r;
2083
2084     if (order->num_cols >= count)
2085         return ERROR_FUNCTION_FAILED;
2086
2087     r = VIEW_find_column(view, name, tv->name, &n);
2088     if (r != ERROR_SUCCESS)
2089         return r;
2090
2091     order->cols[order->num_cols] = n;
2092     TRACE("Ordering by column %s (%d)\n", debugstr_w(name), n);
2093
2094     order->num_cols++;
2095
2096     return ERROR_SUCCESS;
2097 }
2098
2099 static UINT order_compare(struct tagMSIVIEW *view, MSIORDERINFO *order,
2100                           UINT a, UINT b, UINT *swap)
2101 {
2102     UINT r, i, a_val = 0, b_val = 0;
2103
2104     *swap = 0;
2105     for (i = 0; i < order->num_cols; i++)
2106     {
2107         r = TABLE_fetch_int(view, a, order->cols[i], &a_val);
2108         if (r != ERROR_SUCCESS)
2109             return r;
2110
2111         r = TABLE_fetch_int(view, b, order->cols[i], &b_val);
2112         if (r != ERROR_SUCCESS)
2113             return r;
2114
2115         if (a_val != b_val)
2116         {
2117             if (a_val > b_val)
2118                 *swap = 1;
2119             break;
2120         }
2121     }
2122
2123     return ERROR_SUCCESS;
2124 }
2125
2126 static UINT order_mergesort(struct tagMSIVIEW *view, MSIORDERINFO *order,
2127                             UINT left, UINT right)
2128 {
2129     UINT r, i, j, temp;
2130     UINT swap = 0, center = (left + right) / 2;
2131     UINT *array = order->reorder;
2132
2133     if (left == right)
2134         return ERROR_SUCCESS;
2135
2136     /* sort the left half */
2137     r = order_mergesort(view, order, left, center);
2138     if (r != ERROR_SUCCESS)
2139         return r;
2140
2141     /* sort the right half */
2142     r = order_mergesort(view, order, center + 1, right);
2143     if (r != ERROR_SUCCESS)
2144         return r;
2145
2146     for (i = left, j = center + 1; (i <= center) && (j <= right); i++)
2147     {
2148         r = order_compare(view, order, array[i], array[j], &swap);
2149         if (r != ERROR_SUCCESS)
2150             return r;
2151
2152         if (swap)
2153         {
2154             temp = array[j];
2155             memmove(&array[i + 1], &array[i], (j - i) * sizeof(UINT));
2156             array[i] = temp;
2157             j++;
2158             center++;
2159         }
2160     }
2161
2162     return ERROR_SUCCESS;
2163 }
2164
2165 static UINT order_verify(struct tagMSIVIEW *view, MSIORDERINFO *order, UINT num_rows)
2166 {
2167     UINT i, swap, r;
2168
2169     for (i = 1; i < num_rows; i++)
2170     {
2171         r = order_compare(view, order, order->reorder[i - 1],
2172                           order->reorder[i], &swap);
2173         if (r != ERROR_SUCCESS)
2174             return r;
2175
2176         if (!swap)
2177             continue;
2178
2179         ERR("Bad order! %d\n", i);
2180         return ERROR_FUNCTION_FAILED;
2181     }
2182
2183     return ERROR_SUCCESS;
2184 }
2185
2186 static UINT TABLE_sort(struct tagMSIVIEW *view, column_info *columns)
2187 {
2188     MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
2189     MSIORDERINFO *order;
2190     column_info *ptr;
2191     UINT r, i;
2192     UINT rows, cols;
2193
2194     TRACE("sorting table %s\n", debugstr_w(tv->name));
2195
2196     r = TABLE_get_dimensions(view, &rows, &cols);
2197     if (r != ERROR_SUCCESS)
2198         return r;
2199
2200     if (rows == 0)
2201         return ERROR_SUCCESS;
2202
2203     order = msi_alloc_zero(sizeof(MSIORDERINFO) + sizeof(UINT) * cols);
2204     if (!order)
2205         return ERROR_OUTOFMEMORY;
2206
2207     for (ptr = columns; ptr; ptr = ptr->next)
2208         order_add_column(view, order, ptr->column);
2209
2210     order->reorder = msi_alloc(rows * sizeof(UINT));
2211     if (!order->reorder)
2212         return ERROR_OUTOFMEMORY;
2213
2214     for (i = 0; i < rows; i++)
2215         order->reorder[i] = i;
2216
2217     r = order_mergesort(view, order, 0, rows - 1);
2218     if (r != ERROR_SUCCESS)
2219         return r;
2220
2221     r = order_verify(view, order, rows);
2222     if (r != ERROR_SUCCESS)
2223         return r;
2224
2225     tv->order = order;
2226
2227     return ERROR_SUCCESS;
2228 }
2229
2230 static UINT TABLE_drop(struct tagMSIVIEW *view)
2231 {
2232     MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2233     MSIVIEW *tables = NULL;
2234     MSIRECORD *rec = NULL;
2235     UINT r, row;
2236     INT i;
2237
2238     TRACE("dropping table %s\n", debugstr_w(tv->name));
2239
2240     for (i = tv->table->col_count - 1; i >= 0; i--)
2241     {
2242         r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
2243                                 tv->table->colinfo[i].number);
2244         if (r != ERROR_SUCCESS)
2245             return r;
2246     }
2247
2248     rec = MSI_CreateRecord(1);
2249     if (!rec)
2250         return ERROR_OUTOFMEMORY;
2251
2252     MSI_RecordSetStringW(rec, 1, tv->name);
2253
2254     r = TABLE_CreateView(tv->db, szTables, &tables);
2255     if (r != ERROR_SUCCESS)
2256         return r;
2257
2258     r = msi_table_find_row((MSITABLEVIEW *)tables, rec, &row, NULL);
2259     if (r != ERROR_SUCCESS)
2260         goto done;
2261
2262     r = TABLE_delete_row(tables, row);
2263     if (r != ERROR_SUCCESS)
2264         goto done;
2265
2266     list_remove(&tv->table->entry);
2267     free_table(tv->table);
2268
2269 done:
2270     msiobj_release(&rec->hdr);
2271     tables->ops->delete(tables);
2272
2273     return r;
2274 }
2275
2276 static const MSIVIEWOPS table_ops =
2277 {
2278     TABLE_fetch_int,
2279     TABLE_fetch_stream,
2280     TABLE_get_row,
2281     TABLE_set_row,
2282     TABLE_insert_row,
2283     TABLE_delete_row,
2284     TABLE_execute,
2285     TABLE_close,
2286     TABLE_get_dimensions,
2287     TABLE_get_column_info,
2288     TABLE_modify,
2289     TABLE_delete,
2290     TABLE_find_matching_rows,
2291     TABLE_add_ref,
2292     TABLE_release,
2293     TABLE_add_column,
2294     TABLE_remove_column,
2295     TABLE_sort,
2296     TABLE_drop,
2297 };
2298
2299 UINT TABLE_CreateView( MSIDATABASE *db, LPCWSTR name, MSIVIEW **view )
2300 {
2301     MSITABLEVIEW *tv ;
2302     UINT r, sz;
2303
2304     TRACE("%p %s %p\n", db, debugstr_w(name), view );
2305
2306     if ( !strcmpW( name, szStreams ) )
2307         return STREAMS_CreateView( db, view );
2308     else if ( !strcmpW( name, szStorages ) )
2309         return STORAGES_CreateView( db, view );
2310
2311     sz = sizeof *tv + lstrlenW(name)*sizeof name[0] ;
2312     tv = msi_alloc_zero( sz );
2313     if( !tv )
2314         return ERROR_FUNCTION_FAILED;
2315
2316     r = get_table( db, name, &tv->table );
2317     if( r != ERROR_SUCCESS )
2318     {
2319         msi_free( tv );
2320         WARN("table not found\n");
2321         return r;
2322     }
2323
2324     TRACE("table %p found with %d columns\n", tv->table, tv->table->col_count);
2325
2326     /* fill the structure */
2327     tv->view.ops = &table_ops;
2328     tv->db = db;
2329     tv->columns = tv->table->colinfo;
2330     tv->num_cols = tv->table->col_count;
2331     tv->row_size = msi_table_get_row_size( db, tv->table->colinfo, tv->table->col_count, LONG_STR_BYTES );
2332
2333     TRACE("%s one row is %d bytes\n", debugstr_w(name), tv->row_size );
2334
2335     *view = (MSIVIEW*) tv;
2336     lstrcpyW( tv->name, name );
2337
2338     return ERROR_SUCCESS;
2339 }
2340
2341 UINT MSI_CommitTables( MSIDATABASE *db )
2342 {
2343     UINT r, bytes_per_strref;
2344     HRESULT hr;
2345     MSITABLE *table = NULL;
2346
2347     TRACE("%p\n",db);
2348
2349     r = msi_save_string_table( db->strings, db->storage, &bytes_per_strref );
2350     if( r != ERROR_SUCCESS )
2351     {
2352         WARN("failed to save string table r=%08x\n",r);
2353         return r;
2354     }
2355
2356     LIST_FOR_EACH_ENTRY( table, &db->tables, MSITABLE, entry )
2357     {
2358         r = save_table( db, table, bytes_per_strref );
2359         if( r != ERROR_SUCCESS )
2360         {
2361             WARN("failed to save table %s (r=%08x)\n",
2362                   debugstr_w(table->name), r);
2363             return r;
2364         }
2365     }
2366
2367     /* force everything to reload next time */
2368     free_cached_tables( db );
2369
2370     hr = IStorage_Commit( db->storage, 0 );
2371     if (FAILED( hr ))
2372     {
2373         WARN("failed to commit changes 0x%08x\n", hr);
2374         r = ERROR_FUNCTION_FAILED;
2375     }
2376     return r;
2377 }
2378
2379 MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table )
2380 {
2381     MSITABLE *t;
2382     UINT r;
2383
2384     TRACE("%p %s\n", db, debugstr_w(table));
2385
2386     if (!table)
2387         return MSICONDITION_ERROR;
2388
2389     r = get_table( db, table, &t );
2390     if (r != ERROR_SUCCESS)
2391         return MSICONDITION_NONE;
2392
2393     return t->persistent;
2394 }
2395
2396 static UINT read_raw_int(const BYTE *data, UINT col, UINT bytes)
2397 {
2398     UINT ret = 0, i;
2399
2400     for (i = 0; i < bytes; i++)
2401         ret += (data[col + i] << i * 8);
2402
2403     return ret;
2404 }
2405
2406 static UINT msi_record_encoded_stream_name( const MSITABLEVIEW *tv, MSIRECORD *rec, LPWSTR *pstname )
2407 {
2408     LPWSTR stname = NULL, sval, p;
2409     DWORD len;
2410     UINT i, r;
2411
2412     TRACE("%p %p\n", tv, rec);
2413
2414     len = lstrlenW( tv->name ) + 1;
2415     stname = msi_alloc( len*sizeof(WCHAR) );
2416     if ( !stname )
2417     {
2418        r = ERROR_OUTOFMEMORY;
2419        goto err;
2420     }
2421
2422     lstrcpyW( stname, tv->name );
2423
2424     for ( i = 0; i < tv->num_cols; i++ )
2425     {
2426         if ( tv->columns[i].type & MSITYPE_KEY )
2427         {
2428             sval = msi_dup_record_field( rec, i + 1 );
2429             if ( !sval )
2430             {
2431                 r = ERROR_OUTOFMEMORY;
2432                 goto err;
2433             }
2434
2435             len += lstrlenW( szDot ) + lstrlenW ( sval );
2436             p = msi_realloc ( stname, len*sizeof(WCHAR) );
2437             if ( !p )
2438             {
2439                 r = ERROR_OUTOFMEMORY;
2440                 goto err;
2441             }
2442             stname = p;
2443
2444             lstrcatW( stname, szDot );
2445             lstrcatW( stname, sval );
2446
2447             msi_free( sval );
2448         }
2449         else
2450             continue;
2451     }
2452
2453     *pstname = encode_streamname( FALSE, stname );
2454     msi_free( stname );
2455
2456     return ERROR_SUCCESS;
2457
2458 err:
2459     msi_free ( stname );
2460     *pstname = NULL;
2461     return r;
2462 }
2463
2464 static MSIRECORD *msi_get_transform_record( const MSITABLEVIEW *tv, const string_table *st,
2465                                             IStorage *stg,
2466                                             const BYTE *rawdata, UINT bytes_per_strref )
2467 {
2468     UINT i, val, ofs = 0;
2469     USHORT mask;
2470     MSICOLUMNINFO *columns = tv->columns;
2471     MSIRECORD *rec;
2472
2473     mask = rawdata[0] | (rawdata[1] << 8);
2474     rawdata += 2;
2475
2476     rec = MSI_CreateRecord( tv->num_cols );
2477     if( !rec )
2478         return rec;
2479
2480     TRACE("row ->\n");
2481     for( i=0; i<tv->num_cols; i++ )
2482     {
2483         if ( (mask&1) && (i>=(mask>>8)) )
2484             break;
2485         /* all keys must be present */
2486         if ( (~mask&1) && (~columns[i].type & MSITYPE_KEY) && ((1<<i) & ~mask) )
2487             continue;
2488
2489         if( MSITYPE_IS_BINARY(tv->columns[i].type) )
2490         {
2491             LPWSTR encname;
2492             IStream *stm = NULL;
2493             UINT r;
2494
2495             ofs += bytes_per_column( tv->db, &columns[i], bytes_per_strref );
2496
2497             r = msi_record_encoded_stream_name( tv, rec, &encname );
2498             if ( r != ERROR_SUCCESS )
2499                 return NULL;
2500
2501             r = IStorage_OpenStream( stg, encname, NULL,
2502                      STGM_READ | STGM_SHARE_EXCLUSIVE, 0, &stm );
2503             msi_free( encname );
2504             if ( r != ERROR_SUCCESS )
2505                 return NULL;
2506
2507             MSI_RecordSetStream( rec, i+1, stm );
2508             TRACE(" field %d [%s]\n", i+1, debugstr_w(encname));
2509         }
2510         else if( columns[i].type & MSITYPE_STRING )
2511         {
2512             LPCWSTR sval;
2513
2514             val = read_raw_int(rawdata, ofs, bytes_per_strref);
2515             sval = msi_string_lookup_id( st, val );
2516             MSI_RecordSetStringW( rec, i+1, sval );
2517             TRACE(" field %d [%s]\n", i+1, debugstr_w(sval));
2518             ofs += bytes_per_strref;
2519         }
2520         else
2521         {
2522             UINT n = bytes_per_column( tv->db, &columns[i], bytes_per_strref );
2523             switch( n )
2524             {
2525             case 2:
2526                 val = read_raw_int(rawdata, ofs, n);
2527                 if (val)
2528                     MSI_RecordSetInteger( rec, i+1, val-0x8000 );
2529                 TRACE(" field %d [0x%04x]\n", i+1, val );
2530                 break;
2531             case 4:
2532                 val = read_raw_int(rawdata, ofs, n);
2533                 if (val)
2534                     MSI_RecordSetInteger( rec, i+1, val^0x80000000 );
2535                 TRACE(" field %d [0x%08x]\n", i+1, val );
2536                 break;
2537             default:
2538                 ERR("oops - unknown column width %d\n", n);
2539                 break;
2540             }
2541             ofs += n;
2542         }
2543     }
2544     return rec;
2545 }
2546
2547 static void dump_record( MSIRECORD *rec )
2548 {
2549     UINT i, n;
2550
2551     n = MSI_RecordGetFieldCount( rec );
2552     for( i=1; i<=n; i++ )
2553     {
2554         LPCWSTR sval;
2555
2556         if( MSI_RecordIsNull( rec, i ) )
2557             TRACE("row -> []\n");
2558         else if( (sval = MSI_RecordGetString( rec, i )) )
2559             TRACE("row -> [%s]\n", debugstr_w(sval));
2560         else
2561             TRACE("row -> [0x%08x]\n", MSI_RecordGetInteger( rec, i ) );
2562     }
2563 }
2564
2565 static void dump_table( const string_table *st, const USHORT *rawdata, UINT rawsize )
2566 {
2567     LPCWSTR sval;
2568     UINT i;
2569
2570     for( i=0; i<(rawsize/2); i++ )
2571     {
2572         sval = msi_string_lookup_id( st, rawdata[i] );
2573         MESSAGE(" %04x %s\n", rawdata[i], debugstr_w(sval) );
2574     }
2575 }
2576
2577 static UINT* msi_record_to_row( const MSITABLEVIEW *tv, MSIRECORD *rec )
2578 {
2579     LPCWSTR str;
2580     UINT i, r, *data;
2581
2582     data = msi_alloc( tv->num_cols *sizeof (UINT) );
2583     for( i=0; i<tv->num_cols; i++ )
2584     {
2585         data[i] = 0;
2586
2587         if ( ~tv->columns[i].type & MSITYPE_KEY )
2588             continue;
2589
2590         /* turn the transform column value into a row value */
2591         if ( ( tv->columns[i].type & MSITYPE_STRING ) &&
2592              ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2593         {
2594             str = MSI_RecordGetString( rec, i+1 );
2595             if (str)
2596             {
2597                 r = msi_string2idW( tv->db->strings, str, &data[i] );
2598
2599                 /* if there's no matching string in the string table,
2600                    these keys can't match any record, so fail now. */
2601                 if (r != ERROR_SUCCESS)
2602                 {
2603                     msi_free( data );
2604                     return NULL;
2605                 }
2606             }
2607             else data[i] = 0;
2608         }
2609         else
2610         {
2611             data[i] = MSI_RecordGetInteger( rec, i+1 );
2612
2613             if (data[i] == MSI_NULL_INTEGER)
2614                 data[i] = 0;
2615             else if ((tv->columns[i].type&0xff) == 2)
2616                 data[i] += 0x8000;
2617             else
2618                 data[i] += 0x80000000;
2619         }
2620     }
2621     return data;
2622 }
2623
2624 static UINT msi_row_matches( MSITABLEVIEW *tv, UINT row, const UINT *data, UINT *column )
2625 {
2626     UINT i, r, x, ret = ERROR_FUNCTION_FAILED;
2627
2628     for( i=0; i<tv->num_cols; i++ )
2629     {
2630         if ( ~tv->columns[i].type & MSITYPE_KEY )
2631             continue;
2632
2633         /* turn the transform column value into a row value */
2634         r = TABLE_fetch_int( &tv->view, row, i+1, &x );
2635         if ( r != ERROR_SUCCESS )
2636         {
2637             ERR("TABLE_fetch_int shouldn't fail here\n");
2638             break;
2639         }
2640
2641         /* if this key matches, move to the next column */
2642         if ( x != data[i] )
2643         {
2644             ret = ERROR_FUNCTION_FAILED;
2645             break;
2646         }
2647         if (column) *column = i;
2648         ret = ERROR_SUCCESS;
2649     }
2650     return ret;
2651 }
2652
2653 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row, UINT *column )
2654 {
2655     UINT i, r = ERROR_FUNCTION_FAILED, *data;
2656
2657     data = msi_record_to_row( tv, rec );
2658     if( !data )
2659         return r;
2660     for( i = 0; i < tv->table->row_count; i++ )
2661     {
2662         r = msi_row_matches( tv, i, data, column );
2663         if( r == ERROR_SUCCESS )
2664         {
2665             *row = i;
2666             break;
2667         }
2668     }
2669     msi_free( data );
2670     return r;
2671 }
2672
2673 typedef struct
2674 {
2675     struct list entry;
2676     LPWSTR name;
2677 } TRANSFORMDATA;
2678
2679 static UINT msi_table_load_transform( MSIDATABASE *db, IStorage *stg,
2680                                       string_table *st, TRANSFORMDATA *transform,
2681                                       UINT bytes_per_strref )
2682 {
2683     UINT rawsize = 0;
2684     BYTE *rawdata = NULL;
2685     MSITABLEVIEW *tv = NULL;
2686     UINT r, n, sz, i, mask;
2687     MSIRECORD *rec = NULL;
2688     UINT colcol = 0;
2689     WCHAR coltable[32];
2690     LPWSTR name;
2691
2692     if (!transform)
2693         return ERROR_SUCCESS;
2694
2695     name = transform->name;
2696
2697     coltable[0] = 0;
2698     TRACE("%p %p %p %s\n", db, stg, st, debugstr_w(name) );
2699
2700     /* read the transform data */
2701     read_stream_data( stg, name, TRUE, &rawdata, &rawsize );
2702     if ( !rawdata )
2703     {
2704         TRACE("table %s empty\n", debugstr_w(name) );
2705         return ERROR_INVALID_TABLE;
2706     }
2707
2708     /* create a table view */
2709     r = TABLE_CreateView( db, name, (MSIVIEW**) &tv );
2710     if( r != ERROR_SUCCESS )
2711         goto err;
2712
2713     r = tv->view.ops->execute( &tv->view, NULL );
2714     if( r != ERROR_SUCCESS )
2715         goto err;
2716
2717     TRACE("name = %s columns = %u row_size = %u raw size = %u\n",
2718           debugstr_w(name), tv->num_cols, tv->row_size, rawsize );
2719
2720     /* interpret the data */
2721     for( n=0; n < rawsize;  )
2722     {
2723         mask = rawdata[n] | (rawdata[n+1] << 8);
2724
2725         if (mask&1)
2726         {
2727             /*
2728              * if the low bit is set, columns are continuous and
2729              * the number of columns is specified in the high byte
2730              */
2731             sz = 2;
2732             for( i=0; i<tv->num_cols; i++ )
2733             {
2734                 if( (tv->columns[i].type & MSITYPE_STRING) &&
2735                     ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2736                     sz += bytes_per_strref;
2737                 else
2738                     sz += bytes_per_column( tv->db, &tv->columns[i], bytes_per_strref );
2739             }
2740         }
2741         else
2742         {
2743             /*
2744              * If the low bit is not set, mask is a bitmask.
2745              * Excepting for key fields, which are always present,
2746              *  each bit indicates that a field is present in the transform record.
2747              *
2748              * mask == 0 is a special case ... only the keys will be present
2749              * and it means that this row should be deleted.
2750              */
2751             sz = 2;
2752             for( i=0; i<tv->num_cols; i++ )
2753             {
2754                 if( (tv->columns[i].type & MSITYPE_KEY) || ((1<<i)&mask))
2755                 {
2756                     if( (tv->columns[i].type & MSITYPE_STRING) &&
2757                         ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2758                         sz += bytes_per_strref;
2759                     else
2760                         sz += bytes_per_column( tv->db, &tv->columns[i], bytes_per_strref );
2761                 }
2762             }
2763         }
2764
2765         /* check we didn't run of the end of the table */
2766         if ( (n+sz) > rawsize )
2767         {
2768             ERR("borked.\n");
2769             dump_table( st, (USHORT *)rawdata, rawsize );
2770             break;
2771         }
2772
2773         rec = msi_get_transform_record( tv, st, stg, &rawdata[n], bytes_per_strref );
2774         if (rec)
2775         {
2776             WCHAR table[32];
2777             DWORD sz = 32;
2778             UINT number = MSI_NULL_INTEGER;
2779             UINT row = 0;
2780
2781             if (!strcmpW( name, szColumns ))
2782             {
2783                 MSI_RecordGetStringW( rec, 1, table, &sz );
2784                 number = MSI_RecordGetInteger( rec, 2 );
2785
2786                 /*
2787                  * Native msi seems writes nul into the Number (2nd) column of
2788                  * the _Columns table, only when the columns are from a new table
2789                  */
2790                 if ( number == MSI_NULL_INTEGER )
2791                 {
2792                     /* reset the column number on a new table */
2793                     if (strcmpW( coltable, table ))
2794                     {
2795                         colcol = 0;
2796                         lstrcpyW( coltable, table );
2797                     }
2798
2799                     /* fix nul column numbers */
2800                     MSI_RecordSetInteger( rec, 2, ++colcol );
2801                 }
2802             }
2803
2804             if (TRACE_ON(msidb)) dump_record( rec );
2805
2806             r = msi_table_find_row( tv, rec, &row, NULL );
2807             if (r == ERROR_SUCCESS)
2808             {
2809                 if (!mask)
2810                 {
2811                     TRACE("deleting row [%d]:\n", row);
2812                     r = TABLE_delete_row( &tv->view, row );
2813                     if (r != ERROR_SUCCESS)
2814                         WARN("failed to delete row %u\n", r);
2815                 }
2816                 else if (mask & 1)
2817                 {
2818                     TRACE("modifying full row [%d]:\n", row);
2819                     r = TABLE_set_row( &tv->view, row, rec, (1 << tv->num_cols) - 1 );
2820                     if (r != ERROR_SUCCESS)
2821                         WARN("failed to modify row %u\n", r);
2822                 }
2823                 else
2824                 {
2825                     TRACE("modifying masked row [%d]:\n", row);
2826                     r = TABLE_set_row( &tv->view, row, rec, mask );
2827                     if (r != ERROR_SUCCESS)
2828                         WARN("failed to modify row %u\n", r);
2829                 }
2830             }
2831             else
2832             {
2833                 TRACE("inserting row\n");
2834                 r = TABLE_insert_row( &tv->view, rec, -1, FALSE );
2835                 if (r != ERROR_SUCCESS)
2836                     WARN("failed to insert row %u\n", r);
2837             }
2838
2839             if (number != MSI_NULL_INTEGER && !strcmpW( name, szColumns ))
2840                 msi_update_table_columns( db, table );
2841
2842             msiobj_release( &rec->hdr );
2843         }
2844
2845         n += sz;
2846     }
2847
2848 err:
2849     /* no need to free the table, it's associated with the database */
2850     msi_free( rawdata );
2851     if( tv )
2852         tv->view.ops->delete( &tv->view );
2853
2854     return ERROR_SUCCESS;
2855 }
2856
2857 /*
2858  * msi_table_apply_transform
2859  *
2860  * Enumerate the table transforms in a transform storage and apply each one.
2861  */
2862 UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg )
2863 {
2864     struct list transforms;
2865     IEnumSTATSTG *stgenum = NULL;
2866     TRANSFORMDATA *transform;
2867     TRANSFORMDATA *tables = NULL, *columns = NULL;
2868     HRESULT r;
2869     STATSTG stat;
2870     string_table *strings;
2871     UINT ret = ERROR_FUNCTION_FAILED;
2872     UINT bytes_per_strref;
2873
2874     TRACE("%p %p\n", db, stg );
2875
2876     strings = msi_load_string_table( stg, &bytes_per_strref );
2877     if( !strings )
2878         goto end;
2879
2880     r = IStorage_EnumElements( stg, 0, NULL, 0, &stgenum );
2881     if( FAILED( r ) )
2882         goto end;
2883
2884     list_init(&transforms);
2885
2886     while ( TRUE )
2887     {
2888         MSITABLEVIEW *tv = NULL;
2889         WCHAR name[0x40];
2890         ULONG count = 0;
2891
2892         r = IEnumSTATSTG_Next( stgenum, 1, &stat, &count );
2893         if ( FAILED( r ) || !count )
2894             break;
2895
2896         decode_streamname( stat.pwcsName, name );
2897         CoTaskMemFree( stat.pwcsName );
2898         if ( name[0] != 0x4840 )
2899             continue;
2900
2901         if ( !strcmpW( name+1, szStringPool ) ||
2902              !strcmpW( name+1, szStringData ) )
2903             continue;
2904
2905         transform = msi_alloc_zero( sizeof(TRANSFORMDATA) );
2906         if ( !transform )
2907             break;
2908
2909         list_add_tail( &transforms, &transform->entry );
2910
2911         transform->name = strdupW( name + 1 );
2912
2913         if ( !strcmpW( transform->name, szTables ) )
2914             tables = transform;
2915         else if (!strcmpW( transform->name, szColumns ) )
2916             columns = transform;
2917
2918         TRACE("transform contains stream %s\n", debugstr_w(name));
2919
2920         /* load the table */
2921         r = TABLE_CreateView( db, transform->name, (MSIVIEW**) &tv );
2922         if( r != ERROR_SUCCESS )
2923             continue;
2924
2925         r = tv->view.ops->execute( &tv->view, NULL );
2926         if( r != ERROR_SUCCESS )
2927         {
2928             tv->view.ops->delete( &tv->view );
2929             continue;
2930         }
2931
2932         tv->view.ops->delete( &tv->view );
2933     }
2934
2935     /*
2936      * Apply _Tables and _Columns transforms first so that
2937      * the table metadata is correct, and empty tables exist.
2938      */
2939     ret = msi_table_load_transform( db, stg, strings, tables, bytes_per_strref );
2940     if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2941         goto end;
2942
2943     ret = msi_table_load_transform( db, stg, strings, columns, bytes_per_strref );
2944     if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2945         goto end;
2946
2947     ret = ERROR_SUCCESS;
2948
2949     while ( !list_empty( &transforms ) )
2950     {
2951         transform = LIST_ENTRY( list_head( &transforms ), TRANSFORMDATA, entry );
2952
2953         if ( strcmpW( transform->name, szColumns ) &&
2954              strcmpW( transform->name, szTables ) &&
2955              ret == ERROR_SUCCESS )
2956         {
2957             ret = msi_table_load_transform( db, stg, strings, transform, bytes_per_strref );
2958         }
2959
2960         list_remove( &transform->entry );
2961         msi_free( transform->name );
2962         msi_free( transform );
2963     }
2964
2965     if ( ret == ERROR_SUCCESS )
2966         append_storage_to_db( db, stg );
2967
2968 end:
2969     if ( stgenum )
2970         IEnumSTATSTG_Release( stgenum );
2971     if ( strings )
2972         msi_destroy_stringtable( strings );
2973
2974     return ret;
2975 }