dplayx: Code to forward player creation
[wine/gsoc_dplay.git] / dlls / msi / table.c
blobb963a2022fdf00a5890f78511d942e1394875398
1 /*
2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2002-2005 Mike McCormack for CodeWeavers
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.
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.
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
21 #include <stdarg.h>
22 #include <assert.h>
24 #define COBJMACROS
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
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"
39 #include "wine/debug.h"
40 #include "wine/unicode.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(msidb);
44 #define MSITABLE_HASH_TABLE_SIZE 37
45 #define LONG_STR_BYTES 3
47 typedef struct tagMSICOLUMNHASHENTRY
49 struct tagMSICOLUMNHASHENTRY *next;
50 UINT value;
51 UINT row;
52 } MSICOLUMNHASHENTRY;
54 typedef struct tagMSICOLUMNINFO
56 LPWSTR tablename;
57 UINT number;
58 LPWSTR colname;
59 UINT type;
60 UINT offset;
61 INT ref_count;
62 BOOL temporary;
63 MSICOLUMNHASHENTRY **hash_table;
64 } MSICOLUMNINFO;
66 typedef struct tagMSIORDERINFO
68 UINT *reorder;
69 UINT num_cols;
70 UINT cols[1];
71 } MSIORDERINFO;
73 struct tagMSITABLE
75 BYTE **data;
76 BOOL *data_persistent;
77 UINT row_count;
78 struct list entry;
79 MSICOLUMNINFO *colinfo;
80 UINT col_count;
81 MSICONDITION persistent;
82 INT ref_count;
83 WCHAR name[1];
86 typedef struct tagMSITRANSFORM {
87 struct list entry;
88 IStorage *stg;
89 } MSITRANSFORM;
91 static const WCHAR szStringData[] = {
92 '_','S','t','r','i','n','g','D','a','t','a',0 };
93 static const WCHAR szStringPool[] = {
94 '_','S','t','r','i','n','g','P','o','o','l',0 };
96 /* information for default tables */
97 static WCHAR szTables[] = { '_','T','a','b','l','e','s',0 };
98 static WCHAR szTable[] = { 'T','a','b','l','e',0 };
99 static WCHAR szName[] = { 'N','a','m','e',0 };
100 static WCHAR szColumns[] = { '_','C','o','l','u','m','n','s',0 };
101 static WCHAR szNumber[] = { 'N','u','m','b','e','r',0 };
102 static WCHAR szType[] = { 'T','y','p','e',0 };
104 static const MSICOLUMNINFO _Columns_cols[4] = {
105 { szColumns, 1, szTable, MSITYPE_VALID | MSITYPE_STRING | MSITYPE_KEY | 64, 0, 0, 0, NULL },
106 { szColumns, 2, szNumber, MSITYPE_VALID | MSITYPE_KEY | 2, 2, 0, 0, NULL },
107 { szColumns, 3, szName, MSITYPE_VALID | MSITYPE_STRING | 64, 4, 0, 0, NULL },
108 { szColumns, 4, szType, MSITYPE_VALID | 2, 6, 0, 0, NULL },
111 static const MSICOLUMNINFO _Tables_cols[1] = {
112 { szTables, 1, szName, MSITYPE_VALID | MSITYPE_STRING | MSITYPE_KEY | 64, 0, 0, 0, NULL },
115 #define MAX_STREAM_NAME 0x1f
117 static UINT table_get_column_info( MSIDATABASE *db, LPCWSTR name,
118 MSICOLUMNINFO **pcols, UINT *pcount );
119 static void table_calc_column_offsets( MSIDATABASE *db, MSICOLUMNINFO *colinfo,
120 DWORD count );
121 static UINT get_tablecolumns( MSIDATABASE *db,
122 LPCWSTR szTableName, MSICOLUMNINFO *colinfo, UINT *sz);
123 static void msi_free_colinfo( MSICOLUMNINFO *colinfo, UINT count );
124 static UINT table_find_insert_idx (MSIVIEW *view, LPCWSTR name, INT *pidx);
126 static inline UINT bytes_per_column( MSIDATABASE *db, const MSICOLUMNINFO *col )
128 if( MSITYPE_IS_BINARY(col->type) )
129 return 2;
131 if( col->type & MSITYPE_STRING )
132 return db->bytes_per_strref;
134 if( (col->type & 0xff) <= 2)
135 return 2;
137 if( (col->type & 0xff) != 4 )
138 ERR("Invalid column size!\n");
140 return 4;
143 static int utf2mime(int x)
145 if( (x>='0') && (x<='9') )
146 return x-'0';
147 if( (x>='A') && (x<='Z') )
148 return x-'A'+10;
149 if( (x>='a') && (x<='z') )
150 return x-'a'+10+26;
151 if( x=='.' )
152 return 10+26+26;
153 if( x=='_' )
154 return 10+26+26+1;
155 return -1;
158 static LPWSTR encode_streamname(BOOL bTable, LPCWSTR in)
160 DWORD count = MAX_STREAM_NAME;
161 DWORD ch, next;
162 LPWSTR out, p;
164 if( !bTable )
165 count = lstrlenW( in )+2;
166 out = msi_alloc( count*sizeof(WCHAR) );
167 p = out;
169 if( bTable )
171 *p++ = 0x4840;
172 count --;
174 while( count -- )
176 ch = *in++;
177 if( !ch )
179 *p = ch;
180 return out;
182 if( ( ch < 0x80 ) && ( utf2mime(ch) >= 0 ) )
184 ch = utf2mime(ch) + 0x4800;
185 next = *in;
186 if( next && (next<0x80) )
188 next = utf2mime(next);
189 if( next != -1 )
191 next += 0x3ffffc0;
192 ch += (next<<6);
193 in++;
197 *p++ = ch;
199 ERR("Failed to encode stream name (%s)\n",debugstr_w(in));
200 msi_free( out );
201 return NULL;
204 static int mime2utf(int x)
206 if( x<10 )
207 return x + '0';
208 if( x<(10+26))
209 return x - 10 + 'A';
210 if( x<(10+26+26))
211 return x - 10 - 26 + 'a';
212 if( x == (10+26+26) )
213 return '.';
214 return '_';
217 BOOL decode_streamname(LPCWSTR in, LPWSTR out)
219 WCHAR ch;
220 DWORD count = 0;
222 while ( (ch = *in++) )
224 if( (ch >= 0x3800 ) && (ch < 0x4840 ) )
226 if( ch >= 0x4800 )
227 ch = mime2utf(ch-0x4800);
228 else
230 ch -= 0x3800;
231 *out++ = mime2utf(ch&0x3f);
232 count++;
233 ch = mime2utf((ch>>6)&0x3f);
236 *out++ = ch;
237 count++;
239 *out = 0;
240 return count;
243 void enum_stream_names( IStorage *stg )
245 IEnumSTATSTG *stgenum = NULL;
246 HRESULT r;
247 STATSTG stat;
248 ULONG n, count;
249 WCHAR name[0x40];
251 r = IStorage_EnumElements( stg, 0, NULL, 0, &stgenum );
252 if( FAILED( r ) )
253 return;
255 n = 0;
256 while( 1 )
258 count = 0;
259 r = IEnumSTATSTG_Next( stgenum, 1, &stat, &count );
260 if( FAILED( r ) || !count )
261 break;
262 decode_streamname( stat.pwcsName, name );
263 TRACE("stream %2d -> %s %s\n", n,
264 debugstr_w(stat.pwcsName), debugstr_w(name) );
265 CoTaskMemFree( stat.pwcsName );
266 n++;
269 IEnumSTATSTG_Release( stgenum );
272 UINT read_stream_data( IStorage *stg, LPCWSTR stname, BOOL table,
273 BYTE **pdata, UINT *psz )
275 HRESULT r;
276 UINT ret = ERROR_FUNCTION_FAILED;
277 VOID *data;
278 ULONG sz, count;
279 IStream *stm = NULL;
280 STATSTG stat;
281 LPWSTR encname;
283 encname = encode_streamname(table, stname);
285 TRACE("%s -> %s\n",debugstr_w(stname),debugstr_w(encname));
287 r = IStorage_OpenStream(stg, encname, NULL,
288 STGM_READ | STGM_SHARE_EXCLUSIVE, 0, &stm);
289 msi_free( encname );
290 if( FAILED( r ) )
292 WARN("open stream failed r = %08x - empty table?\n", r);
293 return ret;
296 r = IStream_Stat(stm, &stat, STATFLAG_NONAME );
297 if( FAILED( r ) )
299 WARN("open stream failed r = %08x!\n", r);
300 goto end;
303 if( stat.cbSize.QuadPart >> 32 )
305 WARN("Too big!\n");
306 goto end;
309 sz = stat.cbSize.QuadPart;
310 data = msi_alloc( sz );
311 if( !data )
313 WARN("couldn't allocate memory r=%08x!\n", r);
314 ret = ERROR_NOT_ENOUGH_MEMORY;
315 goto end;
318 r = IStream_Read(stm, data, sz, &count );
319 if( FAILED( r ) || ( count != sz ) )
321 msi_free( data );
322 WARN("read stream failed r = %08x!\n", r);
323 goto end;
326 *pdata = data;
327 *psz = sz;
328 ret = ERROR_SUCCESS;
330 end:
331 IStream_Release( stm );
333 return ret;
336 static UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm )
338 LPWSTR encname;
339 HRESULT r;
341 encname = encode_streamname(FALSE, stname);
343 TRACE("%s -> %s\n",debugstr_w(stname),debugstr_w(encname));
345 r = IStorage_OpenStream(db->storage, encname, NULL,
346 STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm);
347 if( FAILED( r ) )
349 MSITRANSFORM *transform;
351 LIST_FOR_EACH_ENTRY( transform, &db->transforms, MSITRANSFORM, entry )
353 TRACE("looking for %s in transform storage\n", debugstr_w(stname) );
354 r = IStorage_OpenStream( transform->stg, encname, NULL,
355 STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm );
356 if (SUCCEEDED(r))
357 break;
361 msi_free( encname );
363 return SUCCEEDED(r) ? ERROR_SUCCESS : ERROR_FUNCTION_FAILED;
366 UINT read_raw_stream_data( MSIDATABASE *db, LPCWSTR stname,
367 USHORT **pdata, UINT *psz )
369 HRESULT r;
370 UINT ret = ERROR_FUNCTION_FAILED;
371 VOID *data;
372 ULONG sz, count;
373 IStream *stm = NULL;
374 STATSTG stat;
376 r = db_get_raw_stream( db, stname, &stm );
377 if( r != ERROR_SUCCESS)
378 return ret;
379 r = IStream_Stat(stm, &stat, STATFLAG_NONAME );
380 if( FAILED( r ) )
382 WARN("open stream failed r = %08x!\n", r);
383 goto end;
386 if( stat.cbSize.QuadPart >> 32 )
388 WARN("Too big!\n");
389 goto end;
392 sz = stat.cbSize.QuadPart;
393 data = msi_alloc( sz );
394 if( !data )
396 WARN("couldn't allocate memory r=%08x!\n", r);
397 ret = ERROR_NOT_ENOUGH_MEMORY;
398 goto end;
401 r = IStream_Read(stm, data, sz, &count );
402 if( FAILED( r ) || ( count != sz ) )
404 msi_free( data );
405 WARN("read stream failed r = %08x!\n", r);
406 goto end;
409 *pdata = data;
410 *psz = sz;
411 ret = ERROR_SUCCESS;
413 end:
414 IStream_Release( stm );
416 return ret;
419 UINT write_stream_data( IStorage *stg, LPCWSTR stname,
420 LPCVOID data, UINT sz, BOOL bTable )
422 HRESULT r;
423 UINT ret = ERROR_FUNCTION_FAILED;
424 ULONG count;
425 IStream *stm = NULL;
426 ULARGE_INTEGER size;
427 LARGE_INTEGER pos;
428 LPWSTR encname;
430 encname = encode_streamname(bTable, stname );
431 r = IStorage_OpenStream( stg, encname, NULL,
432 STGM_WRITE | STGM_SHARE_EXCLUSIVE, 0, &stm);
433 if( FAILED(r) )
435 r = IStorage_CreateStream( stg, encname,
436 STGM_WRITE | STGM_SHARE_EXCLUSIVE, 0, 0, &stm);
438 msi_free( encname );
439 if( FAILED( r ) )
441 WARN("open stream failed r = %08x\n", r);
442 return ret;
445 size.QuadPart = sz;
446 r = IStream_SetSize( stm, size );
447 if( FAILED( r ) )
449 WARN("Failed to SetSize\n");
450 goto end;
453 pos.QuadPart = 0;
454 r = IStream_Seek( stm, pos, STREAM_SEEK_SET, NULL );
455 if( FAILED( r ) )
457 WARN("Failed to Seek\n");
458 goto end;
461 if (sz)
463 r = IStream_Write(stm, data, sz, &count );
464 if( FAILED( r ) || ( count != sz ) )
466 WARN("Failed to Write\n");
467 goto end;
471 ret = ERROR_SUCCESS;
473 end:
474 IStream_Release( stm );
476 return ret;
479 static void free_table( MSITABLE *table )
481 UINT i;
482 for( i=0; i<table->row_count; i++ )
483 msi_free( table->data[i] );
484 msi_free( table->data );
485 msi_free( table->data_persistent );
486 msi_free_colinfo( table->colinfo, table->col_count );
487 msi_free( table->colinfo );
488 msi_free( table );
491 static UINT msi_table_get_row_size( MSIDATABASE *db,const MSICOLUMNINFO *cols,
492 UINT count )
494 const MSICOLUMNINFO *last_col = &cols[count-1];
495 if (!count)
496 return 0;
497 return last_col->offset + bytes_per_column( db, last_col );
500 /* add this table to the list of cached tables in the database */
501 static UINT read_table_from_storage( MSIDATABASE *db, MSITABLE *t, IStorage *stg )
503 BYTE *rawdata = NULL;
504 UINT rawsize = 0, i, j, row_size = 0;
506 TRACE("%s\n",debugstr_w(t->name));
508 row_size = msi_table_get_row_size( db, t->colinfo, t->col_count );
510 /* if we can't read the table, just assume that it's empty */
511 read_stream_data( stg, t->name, TRUE, &rawdata, &rawsize );
512 if( !rawdata )
513 return ERROR_SUCCESS;
515 TRACE("Read %d bytes\n", rawsize );
517 if( rawsize % row_size )
519 WARN("Table size is invalid %d/%d\n", rawsize, row_size );
520 goto err;
523 t->row_count = rawsize / row_size;
524 t->data = msi_alloc_zero( t->row_count * sizeof (USHORT*) );
525 if( !t->data )
526 goto err;
527 t->data_persistent = msi_alloc_zero( t->row_count * sizeof(BOOL));
528 if ( !t->data_persistent )
529 goto err;
531 /* transpose all the data */
532 TRACE("Transposing data from %d rows\n", t->row_count );
533 for( i=0; i<t->row_count; i++ )
535 t->data[i] = msi_alloc( row_size );
536 if( !t->data[i] )
537 goto err;
538 t->data_persistent[i] = TRUE;
540 for( j=0; j<t->col_count; j++ )
542 UINT ofs = t->colinfo[j].offset;
543 UINT n = bytes_per_column( db, &t->colinfo[j] );
544 UINT k;
546 if ( n != 2 && n != 3 && n != 4 )
548 ERR("oops - unknown column width %d\n", n);
549 goto err;
552 for ( k = 0; k < n; k++ )
553 t->data[i][ofs + k] = rawdata[ofs*t->row_count + i * n + k];
557 msi_free( rawdata );
558 return ERROR_SUCCESS;
559 err:
560 msi_free( rawdata );
561 return ERROR_FUNCTION_FAILED;
564 void free_cached_tables( MSIDATABASE *db )
566 while( !list_empty( &db->tables ) )
568 MSITABLE *t = LIST_ENTRY( list_head( &db->tables ), MSITABLE, entry );
570 list_remove( &t->entry );
571 free_table( t );
575 static MSITABLE *find_cached_table( MSIDATABASE *db, LPCWSTR name )
577 MSITABLE *t;
579 LIST_FOR_EACH_ENTRY( t, &db->tables, MSITABLE, entry )
580 if( !lstrcmpW( name, t->name ) )
581 return t;
583 return NULL;
586 static UINT table_get_column_info( MSIDATABASE *db, LPCWSTR name, MSICOLUMNINFO **pcols, UINT *pcount )
588 UINT r, column_count = 0;
589 MSICOLUMNINFO *columns;
591 /* get the number of columns in this table */
592 column_count = 0;
593 r = get_tablecolumns( db, name, NULL, &column_count );
594 if( r != ERROR_SUCCESS )
595 return r;
597 *pcount = column_count;
599 /* if there's no columns, there's no table */
600 if( column_count == 0 )
601 return ERROR_INVALID_PARAMETER;
603 TRACE("Table %s found\n", debugstr_w(name) );
605 columns = msi_alloc( column_count*sizeof (MSICOLUMNINFO) );
606 if( !columns )
607 return ERROR_FUNCTION_FAILED;
609 r = get_tablecolumns( db, name, columns, &column_count );
610 if( r != ERROR_SUCCESS )
612 msi_free( columns );
613 return ERROR_FUNCTION_FAILED;
616 *pcols = columns;
618 return r;
621 UINT msi_create_table( MSIDATABASE *db, LPCWSTR name, column_info *col_info,
622 MSICONDITION persistent, MSITABLE **table_ret)
624 UINT r, nField;
625 MSIVIEW *tv = NULL;
626 MSIRECORD *rec = NULL;
627 column_info *col;
628 MSITABLE *table;
629 UINT i;
630 INT idx;
632 /* only add tables that don't exist already */
633 if( TABLE_Exists(db, name ) )
635 WARN("table %s exists\n", debugstr_w(name));
636 return ERROR_BAD_QUERY_SYNTAX;
639 table = msi_alloc( sizeof (MSITABLE) + lstrlenW(name)*sizeof (WCHAR) );
640 if( !table )
641 return ERROR_FUNCTION_FAILED;
643 table->ref_count = 1;
644 table->row_count = 0;
645 table->data = NULL;
646 table->data_persistent = NULL;
647 table->colinfo = NULL;
648 table->col_count = 0;
649 table->persistent = persistent;
650 lstrcpyW( table->name, name );
652 for( col = col_info; col; col = col->next )
653 table->col_count++;
655 table->colinfo = msi_alloc( table->col_count * sizeof(MSICOLUMNINFO) );
656 if (!table->colinfo)
658 free_table( table );
659 return ERROR_FUNCTION_FAILED;
662 for( i = 0, col = col_info; col; i++, col = col->next )
664 table->colinfo[ i ].tablename = strdupW( col->table );
665 table->colinfo[ i ].number = i + 1;
666 table->colinfo[ i ].colname = strdupW( col->column );
667 table->colinfo[ i ].type = col->type;
668 table->colinfo[ i ].offset = 0;
669 table->colinfo[ i ].ref_count = 0;
670 table->colinfo[ i ].hash_table = NULL;
671 table->colinfo[ i ].temporary = col->temporary;
673 table_calc_column_offsets( db, table->colinfo, table->col_count);
675 r = TABLE_CreateView( db, szTables, &tv );
676 TRACE("CreateView returned %x\n", r);
677 if( r )
679 free_table( table );
680 return r;
683 r = tv->ops->execute( tv, 0 );
684 TRACE("tv execute returned %x\n", r);
685 if( r )
686 goto err;
688 rec = MSI_CreateRecord( 1 );
689 if( !rec )
690 goto err;
692 r = MSI_RecordSetStringW( rec, 1, name );
693 if( r )
694 goto err;
696 r = table_find_insert_idx (tv, name, &idx);
697 if (r != ERROR_SUCCESS)
698 idx = -1;
700 r = tv->ops->insert_row( tv, rec, idx, persistent == MSICONDITION_FALSE );
701 TRACE("insert_row returned %x\n", r);
702 if( r )
703 goto err;
705 tv->ops->delete( tv );
706 tv = NULL;
708 msiobj_release( &rec->hdr );
709 rec = NULL;
711 if( persistent != MSICONDITION_FALSE )
713 /* add each column to the _Columns table */
714 r = TABLE_CreateView( db, szColumns, &tv );
715 if( r )
716 return r;
718 r = tv->ops->execute( tv, 0 );
719 TRACE("tv execute returned %x\n", r);
720 if( r )
721 goto err;
723 rec = MSI_CreateRecord( 4 );
724 if( !rec )
725 goto err;
727 r = MSI_RecordSetStringW( rec, 1, name );
728 if( r )
729 goto err;
732 * need to set the table, column number, col name and type
733 * for each column we enter in the table
735 nField = 1;
736 for( col = col_info; col; col = col->next )
738 r = MSI_RecordSetInteger( rec, 2, nField );
739 if( r )
740 goto err;
742 r = MSI_RecordSetStringW( rec, 3, col->column );
743 if( r )
744 goto err;
746 r = MSI_RecordSetInteger( rec, 4, col->type );
747 if( r )
748 goto err;
750 r = table_find_insert_idx (tv, name, &idx);
751 if (r != ERROR_SUCCESS)
752 idx = -1;
754 r = tv->ops->insert_row( tv, rec, idx, FALSE );
755 if( r )
756 goto err;
758 nField++;
760 if( !col )
761 r = ERROR_SUCCESS;
764 err:
765 if (rec)
766 msiobj_release( &rec->hdr );
767 /* FIXME: remove values from the string table on error */
768 if( tv )
769 tv->ops->delete( tv );
771 if (r == ERROR_SUCCESS)
773 list_add_head( &db->tables, &table->entry );
774 *table_ret = table;
776 else
777 free_table( table );
779 return r;
782 static UINT get_table( MSIDATABASE *db, LPCWSTR name, MSITABLE **table_ret )
784 MSITABLE *table;
785 UINT r;
787 /* first, see if the table is cached */
788 table = find_cached_table( db, name );
789 if( table )
791 *table_ret = table;
792 return ERROR_SUCCESS;
795 /* nonexistent tables should be interpreted as empty tables */
796 table = msi_alloc( sizeof (MSITABLE) + lstrlenW(name)*sizeof (WCHAR) );
797 if( !table )
798 return ERROR_FUNCTION_FAILED;
800 table->row_count = 0;
801 table->data = NULL;
802 table->data_persistent = NULL;
803 table->colinfo = NULL;
804 table->col_count = 0;
805 table->persistent = MSICONDITION_TRUE;
806 lstrcpyW( table->name, name );
808 if ( !lstrcmpW(name, szTables) || !lstrcmpW(name, szColumns) )
809 table->persistent = MSICONDITION_NONE;
811 r = table_get_column_info( db, name, &table->colinfo, &table->col_count);
812 if (r != ERROR_SUCCESS)
814 free_table ( table );
815 return r;
818 r = read_table_from_storage( db, table, db->storage );
819 if( r != ERROR_SUCCESS )
821 free_table( table );
822 return r;
825 list_add_head( &db->tables, &table->entry );
826 *table_ret = table;
827 return ERROR_SUCCESS;
830 static UINT save_table( MSIDATABASE *db, const MSITABLE *t )
832 BYTE *rawdata = NULL, *p;
833 UINT rawsize, r, i, j, row_size;
835 /* Nothing to do for non-persistent tables */
836 if( t->persistent == MSICONDITION_FALSE )
837 return ERROR_SUCCESS;
839 TRACE("Saving %s\n", debugstr_w( t->name ) );
841 row_size = msi_table_get_row_size( db, t->colinfo, t->col_count );
843 rawsize = t->row_count * row_size;
844 rawdata = msi_alloc_zero( rawsize );
845 if( !rawdata )
847 r = ERROR_NOT_ENOUGH_MEMORY;
848 goto err;
851 rawsize = 0;
852 p = rawdata;
853 for( i=0; i<t->col_count; i++ )
855 for( j=0; j<t->row_count; j++ )
857 UINT offset = t->colinfo[i].offset;
859 if (!t->data_persistent[j]) continue;
860 if (i == 0)
861 rawsize += row_size;
863 *p++ = t->data[j][offset];
864 *p++ = t->data[j][offset + 1];
865 if( 4 == bytes_per_column( db, &t->colinfo[i] ) )
867 *p++ = t->data[j][offset + 2];
868 *p++ = t->data[j][offset + 3];
873 TRACE("writing %d bytes\n", rawsize);
874 r = write_stream_data( db->storage, t->name, rawdata, rawsize, TRUE );
876 err:
877 msi_free( rawdata );
879 return r;
882 static void table_calc_column_offsets( MSIDATABASE *db, MSICOLUMNINFO *colinfo,
883 DWORD count )
885 DWORD i;
887 for( i=0; colinfo && (i<count); i++ )
889 assert( (i+1) == colinfo[ i ].number );
890 if (i)
891 colinfo[i].offset = colinfo[ i - 1 ].offset
892 + bytes_per_column( db, &colinfo[ i - 1 ] );
893 else
894 colinfo[i].offset = 0;
895 TRACE("column %d is [%s] with type %08x ofs %d\n",
896 colinfo[i].number, debugstr_w(colinfo[i].colname),
897 colinfo[i].type, colinfo[i].offset);
901 static UINT get_defaulttablecolumns( MSIDATABASE *db, LPCWSTR name,
902 MSICOLUMNINFO *colinfo, UINT *sz)
904 const MSICOLUMNINFO *p;
905 DWORD i, n;
907 TRACE("%s\n", debugstr_w(name));
909 if (!lstrcmpW( name, szTables ))
911 p = _Tables_cols;
912 n = 1;
914 else if (!lstrcmpW( name, szColumns ))
916 p = _Columns_cols;
917 n = 4;
919 else
920 return ERROR_FUNCTION_FAILED;
922 /* duplicate the string data so we can free it in msi_free_colinfo */
923 for (i=0; i<n; i++)
925 if (colinfo && (i < *sz) )
927 colinfo[i] = p[i];
928 colinfo[i].tablename = strdupW( p[i].tablename );
929 colinfo[i].colname = strdupW( p[i].colname );
931 if( colinfo && (i >= *sz) )
932 break;
934 table_calc_column_offsets( db, colinfo, n );
935 *sz = n;
936 return ERROR_SUCCESS;
939 static void msi_free_colinfo( MSICOLUMNINFO *colinfo, UINT count )
941 UINT i;
943 for( i=0; i<count; i++ )
945 msi_free( colinfo[i].tablename );
946 msi_free( colinfo[i].colname );
947 msi_free( colinfo[i].hash_table );
951 static LPWSTR msi_makestring( const MSIDATABASE *db, UINT stringid)
953 return strdupW(msi_string_lookup_id( db->strings, stringid ));
956 static UINT read_table_int(BYTE *const *data, UINT row, UINT col, UINT bytes)
958 UINT ret = 0, i;
960 for (i = 0; i < bytes; i++)
961 ret += (data[row][col + i] << i * 8);
963 return ret;
966 static UINT get_tablecolumns( MSIDATABASE *db,
967 LPCWSTR szTableName, MSICOLUMNINFO *colinfo, UINT *sz)
969 UINT r, i, n=0, table_id, count, maxcount = *sz;
970 MSITABLE *table = NULL;
972 TRACE("%s\n", debugstr_w(szTableName));
974 /* first check if there is a default table with that name */
975 r = get_defaulttablecolumns( db, szTableName, colinfo, sz );
976 if( ( r == ERROR_SUCCESS ) && *sz )
977 return r;
979 r = get_table( db, szColumns, &table );
980 if( r != ERROR_SUCCESS )
982 ERR("couldn't load _Columns table\n");
983 return ERROR_FUNCTION_FAILED;
986 /* convert table and column names to IDs from the string table */
987 r = msi_string2idW( db->strings, szTableName, &table_id );
988 if( r != ERROR_SUCCESS )
990 WARN("Couldn't find id for %s\n", debugstr_w(szTableName));
991 return r;
994 TRACE("Table id is %d, row count is %d\n", table_id, table->row_count);
996 /* Note: _Columns table doesn't have non-persistent data */
998 /* if maxcount is non-zero, assume it's exactly right for this table */
999 memset( colinfo, 0, maxcount*sizeof(*colinfo) );
1000 count = table->row_count;
1001 for( i=0; i<count; i++ )
1003 if( read_table_int(table->data, i, 0, db->bytes_per_strref) != table_id )
1004 continue;
1005 if( colinfo )
1007 UINT id = read_table_int(table->data, i, table->colinfo[2].offset, db->bytes_per_strref);
1008 UINT col = read_table_int(table->data, i, table->colinfo[1].offset, sizeof(USHORT)) - (1<<15);
1010 /* check the column number is in range */
1011 if (col<1 || col>maxcount)
1013 ERR("column %d out of range\n", col);
1014 continue;
1017 /* check if this column was already set */
1018 if (colinfo[ col - 1 ].number)
1020 ERR("duplicate column %d\n", col);
1021 continue;
1024 colinfo[ col - 1 ].tablename = msi_makestring( db, table_id );
1025 colinfo[ col - 1 ].number = col;
1026 colinfo[ col - 1 ].colname = msi_makestring( db, id );
1027 colinfo[ col - 1 ].type = read_table_int(table->data, i,
1028 table->colinfo[3].offset,
1029 sizeof(USHORT)) - (1<<15);
1030 colinfo[ col - 1 ].offset = 0;
1031 colinfo[ col - 1 ].ref_count = 0;
1032 colinfo[ col - 1 ].hash_table = NULL;
1034 n++;
1037 TRACE("%s has %d columns\n", debugstr_w(szTableName), n);
1039 if (colinfo && n != maxcount)
1041 ERR("missing column in table %s\n", debugstr_w(szTableName));
1042 msi_free_colinfo(colinfo, maxcount );
1043 return ERROR_FUNCTION_FAILED;
1046 table_calc_column_offsets( db, colinfo, n );
1047 *sz = n;
1049 return ERROR_SUCCESS;
1052 static void msi_update_table_columns( MSIDATABASE *db, LPCWSTR name )
1054 MSITABLE *table;
1055 UINT size, offset, old_count;
1056 UINT n;
1058 table = find_cached_table( db, name );
1059 old_count = table->col_count;
1060 msi_free( table->colinfo );
1061 table->colinfo = NULL;
1063 table_get_column_info( db, name, &table->colinfo, &table->col_count );
1064 if (!table->col_count)
1065 return;
1067 size = msi_table_get_row_size( db, table->colinfo, table->col_count );
1068 offset = table->colinfo[table->col_count - 1].offset;
1070 for ( n = 0; n < table->row_count; n++ )
1072 table->data[n] = msi_realloc( table->data[n], size );
1073 if (old_count < table->col_count)
1074 memset( &table->data[n][offset], 0, size - offset );
1078 /* try to find the table name in the _Tables table */
1079 BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name )
1081 UINT r, table_id = 0, i, count;
1082 MSITABLE *table = NULL;
1084 static const WCHAR szStreams[] = {'_','S','t','r','e','a','m','s',0};
1085 static const WCHAR szStorages[] = {'_','S','t','o','r','a','g','e','s',0};
1087 if( !lstrcmpW( name, szTables ) || !lstrcmpW( name, szColumns ) ||
1088 !lstrcmpW( name, szStreams ) || !lstrcmpW( name, szStorages ) )
1089 return TRUE;
1091 r = msi_string2idW( db->strings, name, &table_id );
1092 if( r != ERROR_SUCCESS )
1094 TRACE("Couldn't find id for %s\n", debugstr_w(name));
1095 return FALSE;
1098 r = get_table( db, szTables, &table );
1099 if( r != ERROR_SUCCESS )
1101 ERR("table %s not available\n", debugstr_w(szTables));
1102 return FALSE;
1105 count = table->row_count;
1106 for( i=0; i<count; i++ )
1107 if( table->data[ i ][ 0 ] == table_id )
1108 return TRUE;
1110 return FALSE;
1113 /* below is the query interface to a table */
1115 typedef struct tagMSITABLEVIEW
1117 MSIVIEW view;
1118 MSIDATABASE *db;
1119 MSITABLE *table;
1120 MSICOLUMNINFO *columns;
1121 MSIORDERINFO *order;
1122 UINT num_cols;
1123 UINT row_size;
1124 WCHAR name[1];
1125 } MSITABLEVIEW;
1127 static UINT TABLE_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
1129 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1130 UINT offset, n;
1132 if( !tv->table )
1133 return ERROR_INVALID_PARAMETER;
1135 if( (col==0) || (col>tv->num_cols) )
1136 return ERROR_INVALID_PARAMETER;
1138 /* how many rows are there ? */
1139 if( row >= tv->table->row_count )
1140 return ERROR_NO_MORE_ITEMS;
1142 if( tv->columns[col-1].offset >= tv->row_size )
1144 ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1145 ERR("%p %p\n", tv, tv->columns );
1146 return ERROR_FUNCTION_FAILED;
1149 if (tv->order)
1150 row = tv->order->reorder[row];
1152 n = bytes_per_column( tv->db, &tv->columns[col-1] );
1153 if (n != 2 && n != 3 && n != 4)
1155 ERR("oops! what is %d bytes per column?\n", n );
1156 return ERROR_FUNCTION_FAILED;
1159 offset = tv->columns[col-1].offset;
1160 *val = read_table_int(tv->table->data, row, offset, n);
1162 /* TRACE("Data [%d][%d] = %d\n", row, col, *val ); */
1164 return ERROR_SUCCESS;
1167 static UINT msi_stream_name( const MSITABLEVIEW *tv, UINT row, LPWSTR *pstname )
1169 LPWSTR p, stname = NULL;
1170 UINT i, r, type, ival;
1171 DWORD len;
1172 LPCWSTR sval;
1173 MSIVIEW *view = (MSIVIEW *) tv;
1175 TRACE("%p %d\n", tv, row);
1177 len = lstrlenW( tv->name ) + 1;
1178 stname = msi_alloc( len*sizeof(WCHAR) );
1179 if ( !stname )
1181 r = ERROR_OUTOFMEMORY;
1182 goto err;
1185 lstrcpyW( stname, tv->name );
1187 for ( i = 0; i < tv->num_cols; i++ )
1189 type = tv->columns[i].type;
1190 if ( type & MSITYPE_KEY )
1192 static const WCHAR szDot[] = { '.', 0 };
1194 r = TABLE_fetch_int( view, row, i+1, &ival );
1195 if ( r != ERROR_SUCCESS )
1196 goto err;
1198 if ( tv->columns[i].type & MSITYPE_STRING )
1200 sval = msi_string_lookup_id( tv->db->strings, ival );
1201 if ( !sval )
1203 r = ERROR_INVALID_PARAMETER;
1204 goto err;
1207 else
1209 static const WCHAR fmt[] = { '%','d',0 };
1210 WCHAR number[0x20];
1211 UINT n = bytes_per_column( tv->db, &tv->columns[i] );
1213 switch( n )
1215 case 2:
1216 sprintfW( number, fmt, ival^0x8000 );
1217 break;
1218 case 4:
1219 sprintfW( number, fmt, ival^0x80000000 );
1220 break;
1221 default:
1222 ERR( "oops - unknown column width %d\n", n );
1223 r = ERROR_FUNCTION_FAILED;
1224 goto err;
1226 sval = number;
1229 len += lstrlenW( szDot ) + lstrlenW( sval );
1230 p = msi_realloc ( stname, len*sizeof(WCHAR) );
1231 if ( !p )
1233 r = ERROR_OUTOFMEMORY;
1234 goto err;
1236 stname = p;
1238 lstrcatW( stname, szDot );
1239 lstrcatW( stname, sval );
1241 else
1242 continue;
1245 *pstname = stname;
1246 return ERROR_SUCCESS;
1248 err:
1249 msi_free( stname );
1250 *pstname = NULL;
1251 return r;
1255 * We need a special case for streams, as we need to reference column with
1256 * the name of the stream in the same table, and the table name
1257 * which may not be available at higher levels of the query
1259 static UINT TABLE_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm )
1261 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1262 UINT r;
1263 LPWSTR full_name = NULL;
1265 if( !view->ops->fetch_int )
1266 return ERROR_INVALID_PARAMETER;
1268 r = msi_stream_name( tv, row, &full_name );
1269 if ( r != ERROR_SUCCESS )
1271 ERR("fetching stream, error = %d\n", r);
1272 return r;
1275 r = db_get_raw_stream( tv->db, full_name, stm );
1276 if( r )
1277 ERR("fetching stream %s, error = %d\n",debugstr_w(full_name), r);
1278 msi_free( full_name );
1280 return r;
1283 static UINT TABLE_set_int( MSITABLEVIEW *tv, UINT row, UINT col, UINT val )
1285 UINT offset, n, i;
1287 if( !tv->table )
1288 return ERROR_INVALID_PARAMETER;
1290 if( (col==0) || (col>tv->num_cols) )
1291 return ERROR_INVALID_PARAMETER;
1293 if( row >= tv->table->row_count )
1294 return ERROR_INVALID_PARAMETER;
1296 if( tv->columns[col-1].offset >= tv->row_size )
1298 ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1299 ERR("%p %p\n", tv, tv->columns );
1300 return ERROR_FUNCTION_FAILED;
1303 msi_free( tv->columns[col-1].hash_table );
1304 tv->columns[col-1].hash_table = NULL;
1306 n = bytes_per_column( tv->db, &tv->columns[col-1] );
1307 if ( n != 2 && n != 3 && n != 4 )
1309 ERR("oops! what is %d bytes per column?\n", n );
1310 return ERROR_FUNCTION_FAILED;
1313 offset = tv->columns[col-1].offset;
1314 for ( i = 0; i < n; i++ )
1315 tv->table->data[row][offset + i] = (val >> i * 8) & 0xff;
1317 return ERROR_SUCCESS;
1320 static UINT TABLE_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
1322 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1324 if (!tv->table)
1325 return ERROR_INVALID_PARAMETER;
1327 if (tv->order)
1328 row = tv->order->reorder[row];
1330 return msi_view_get_row(tv->db, view, row, rec);
1333 static UINT msi_addstreamW( MSIDATABASE *db, LPCWSTR name, IStream *data )
1335 UINT r;
1336 MSIQUERY *query = NULL;
1337 MSIRECORD *rec = NULL;
1339 static const WCHAR insert[] = {
1340 'I','N','S','E','R','T',' ','I','N','T','O',' ',
1341 '`','_','S','t','r','e','a','m','s','`',' ',
1342 '(','`','N','a','m','e','`',',',
1343 '`','D','a','t','a','`',')',' ',
1344 'V','A','L','U','E','S',' ','(','?',',','?',')',0};
1346 TRACE("%p %s %p\n", db, debugstr_w(name), data);
1348 rec = MSI_CreateRecord( 2 );
1349 if ( !rec )
1350 return ERROR_OUTOFMEMORY;
1352 r = MSI_RecordSetStringW( rec, 1, name );
1353 if ( r != ERROR_SUCCESS )
1354 goto err;
1356 r = MSI_RecordSetIStream( rec, 2, data );
1357 if ( r != ERROR_SUCCESS )
1358 goto err;
1360 r = MSI_DatabaseOpenViewW( db, insert, &query );
1361 if ( r != ERROR_SUCCESS )
1362 goto err;
1364 r = MSI_ViewExecute( query, rec );
1366 err:
1367 msiobj_release( &query->hdr );
1368 msiobj_release( &rec->hdr );
1370 return r;
1373 static UINT TABLE_set_row( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask )
1375 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1376 UINT i, val, r = ERROR_SUCCESS;
1378 if ( !tv->table )
1379 return ERROR_INVALID_PARAMETER;
1381 /* test if any of the mask bits are invalid */
1382 if ( mask >= (1<<tv->num_cols) )
1383 return ERROR_INVALID_PARAMETER;
1385 for ( i = 0; i < tv->num_cols; i++ )
1387 BOOL persistent;
1389 /* only update the fields specified in the mask */
1390 if ( !(mask&(1<<i)) )
1391 continue;
1393 persistent = (tv->table->persistent != MSICONDITION_FALSE) &&
1394 (tv->table->data_persistent[row]);
1395 /* FIXME: should we allow updating keys? */
1397 val = 0;
1398 if ( !MSI_RecordIsNull( rec, i + 1 ) )
1400 if ( MSITYPE_IS_BINARY(tv->columns[ i ].type) )
1402 IStream *stm;
1403 LPWSTR stname;
1405 r = MSI_RecordGetIStream( rec, i + 1, &stm );
1406 if ( r != ERROR_SUCCESS )
1407 return r;
1409 r = msi_stream_name( tv, row, &stname );
1410 if ( r != ERROR_SUCCESS )
1412 IStream_Release( stm );
1413 return r;
1416 r = msi_addstreamW( tv->db, stname, stm );
1417 IStream_Release( stm );
1418 msi_free ( stname );
1420 if ( r != ERROR_SUCCESS )
1421 return r;
1423 val = 1; /* refers to the first key column */
1425 else if ( tv->columns[i].type & MSITYPE_STRING )
1427 LPCWSTR sval = MSI_RecordGetString( rec, i + 1 );
1428 UINT ival, x;
1430 r = msi_string2idW(tv->db->strings, sval, &ival);
1431 if (r == ERROR_SUCCESS)
1433 TABLE_fetch_int(&tv->view, row, i + 1, &x);
1434 if (ival == x)
1435 continue;
1438 val = msi_addstringW( tv->db->strings, 0, sval, -1, 1,
1439 persistent ? StringPersistent : StringNonPersistent );
1441 else if ( 2 == bytes_per_column( tv->db, &tv->columns[ i ] ) )
1443 val = 0x8000 + MSI_RecordGetInteger( rec, i + 1 );
1444 if ( val & 0xffff0000 )
1446 ERR("field %u value %d out of range\n", i+1, val - 0x8000 );
1447 return ERROR_FUNCTION_FAILED;
1450 else
1452 INT ival = MSI_RecordGetInteger( rec, i + 1 );
1453 val = ival ^ 0x80000000;
1457 r = TABLE_set_int( tv, row, i+1, val );
1458 if ( r != ERROR_SUCCESS )
1459 break;
1461 return r;
1464 static UINT table_create_new_row( struct tagMSIVIEW *view, UINT *num, BOOL temporary )
1466 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1467 BYTE **p, *row;
1468 BOOL *b;
1469 UINT sz;
1470 BYTE ***data_ptr;
1471 BOOL **data_persist_ptr;
1472 UINT *row_count;
1474 TRACE("%p %s\n", view, temporary ? "TRUE" : "FALSE");
1476 if( !tv->table )
1477 return ERROR_INVALID_PARAMETER;
1479 row = msi_alloc_zero( tv->row_size );
1480 if( !row )
1481 return ERROR_NOT_ENOUGH_MEMORY;
1483 row_count = &tv->table->row_count;
1484 data_ptr = &tv->table->data;
1485 data_persist_ptr = &tv->table->data_persistent;
1486 if (*num == -1)
1487 *num = tv->table->row_count;
1489 sz = (*row_count + 1) * sizeof (BYTE*);
1490 if( *data_ptr )
1491 p = msi_realloc( *data_ptr, sz );
1492 else
1493 p = msi_alloc( sz );
1494 if( !p )
1496 msi_free( row );
1497 return ERROR_NOT_ENOUGH_MEMORY;
1500 sz = (*row_count + 1) * sizeof (BOOL);
1501 if( *data_persist_ptr )
1502 b = msi_realloc( *data_persist_ptr, sz );
1503 else
1504 b = msi_alloc( sz );
1505 if( !b )
1507 msi_free( row );
1508 msi_free( p );
1509 return ERROR_NOT_ENOUGH_MEMORY;
1512 *data_ptr = p;
1513 (*data_ptr)[*row_count] = row;
1515 *data_persist_ptr = b;
1516 (*data_persist_ptr)[*row_count] = !temporary;
1518 (*row_count)++;
1520 return ERROR_SUCCESS;
1523 static UINT TABLE_execute( struct tagMSIVIEW *view, MSIRECORD *record )
1525 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1527 TRACE("%p %p\n", tv, record);
1529 TRACE("There are %d columns\n", tv->num_cols );
1531 return ERROR_SUCCESS;
1534 static UINT TABLE_close( struct tagMSIVIEW *view )
1536 TRACE("%p\n", view );
1538 return ERROR_SUCCESS;
1541 static UINT TABLE_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols)
1543 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1545 TRACE("%p %p %p\n", view, rows, cols );
1547 if( cols )
1548 *cols = tv->num_cols;
1549 if( rows )
1551 if( !tv->table )
1552 return ERROR_INVALID_PARAMETER;
1553 *rows = tv->table->row_count;
1556 return ERROR_SUCCESS;
1559 static UINT TABLE_get_column_info( struct tagMSIVIEW *view,
1560 UINT n, LPWSTR *name, UINT *type, BOOL *temporary )
1562 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1564 TRACE("%p %d %p %p\n", tv, n, name, type );
1566 if( ( n == 0 ) || ( n > tv->num_cols ) )
1567 return ERROR_INVALID_PARAMETER;
1569 if( name )
1571 *name = strdupW( tv->columns[n-1].colname );
1572 if( !*name )
1573 return ERROR_FUNCTION_FAILED;
1576 if( type )
1577 *type = tv->columns[n-1].type;
1579 if( temporary )
1580 *temporary = tv->columns[n-1].temporary;
1582 return ERROR_SUCCESS;
1585 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row );
1587 static UINT table_validate_new( MSITABLEVIEW *tv, MSIRECORD *rec )
1589 UINT r, row, i;
1591 /* check there's no null values where they're not allowed */
1592 for( i = 0; i < tv->num_cols; i++ )
1594 if ( tv->columns[i].type & MSITYPE_NULLABLE )
1595 continue;
1597 if ( MSITYPE_IS_BINARY(tv->columns[i].type) )
1598 TRACE("skipping binary column\n");
1599 else if ( tv->columns[i].type & MSITYPE_STRING )
1601 LPCWSTR str;
1603 str = MSI_RecordGetString( rec, i+1 );
1604 if (str == NULL || str[0] == 0)
1605 return ERROR_INVALID_DATA;
1607 else
1609 UINT n;
1611 n = MSI_RecordGetInteger( rec, i+1 );
1612 if (n == MSI_NULL_INTEGER)
1613 return ERROR_INVALID_DATA;
1617 /* check there's no duplicate keys */
1618 r = msi_table_find_row( tv, rec, &row );
1619 if (r == ERROR_SUCCESS)
1620 return ERROR_FUNCTION_FAILED;
1622 return ERROR_SUCCESS;
1625 static UINT TABLE_insert_row( struct tagMSIVIEW *view, MSIRECORD *rec, UINT row, BOOL temporary )
1627 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1628 UINT i, r;
1630 TRACE("%p %p %s\n", tv, rec, temporary ? "TRUE" : "FALSE" );
1632 /* check that the key is unique - can we find a matching row? */
1633 r = table_validate_new( tv, rec );
1634 if( r != ERROR_SUCCESS )
1635 return ERROR_FUNCTION_FAILED;
1637 r = table_create_new_row( view, &row, temporary );
1638 TRACE("insert_row returned %08x\n", r);
1639 if( r != ERROR_SUCCESS )
1640 return r;
1642 /* shift the rows to make room for the new row */
1643 for (i = tv->table->row_count - 1; i > row; i--)
1645 memmove(&(tv->table->data[i][0]),
1646 &(tv->table->data[i - 1][0]), tv->row_size);
1647 tv->table->data_persistent[i] = tv->table->data_persistent[i - 1];
1650 /* Re-set the persistence flag */
1651 tv->table->data_persistent[row] = !temporary;
1652 return TABLE_set_row( view, row, rec, (1<<tv->num_cols) - 1 );
1655 static UINT TABLE_delete_row( struct tagMSIVIEW *view, UINT row )
1657 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1658 UINT r, num_rows, num_cols, i;
1660 TRACE("%p %d\n", tv, row);
1662 if ( !tv->table )
1663 return ERROR_INVALID_PARAMETER;
1665 r = TABLE_get_dimensions( view, &num_rows, &num_cols );
1666 if ( r != ERROR_SUCCESS )
1667 return r;
1669 if ( row >= num_rows )
1670 return ERROR_FUNCTION_FAILED;
1672 num_rows = tv->table->row_count;
1673 tv->table->row_count--;
1675 /* reset the hash tables */
1676 for (i = 0; i < tv->num_cols; i++)
1678 msi_free( tv->columns[i].hash_table );
1679 tv->columns[i].hash_table = NULL;
1682 if ( row == num_rows - 1 )
1683 return ERROR_SUCCESS;
1685 for (i = row + 1; i < num_rows; i++)
1687 memcpy(tv->table->data[i - 1], tv->table->data[i], tv->row_size);
1688 tv->table->data_persistent[i - 1] = tv->table->data_persistent[i];
1691 return ERROR_SUCCESS;
1694 static UINT msi_table_update(struct tagMSIVIEW *view, MSIRECORD *rec, UINT row)
1696 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1697 UINT r, new_row;
1699 /* FIXME: MsiViewFetch should set rec index 0 to some ID that
1700 * sets the fetched record apart from other records
1703 if (!tv->table)
1704 return ERROR_INVALID_PARAMETER;
1706 r = msi_table_find_row(tv, rec, &new_row);
1707 if (r != ERROR_SUCCESS)
1709 ERR("can't find row to modify\n");
1710 return ERROR_FUNCTION_FAILED;
1713 /* the row cannot be changed */
1714 if (row != new_row + 1)
1715 return ERROR_FUNCTION_FAILED;
1717 return TABLE_set_row(view, new_row, rec, (1 << tv->num_cols) - 1);
1720 static UINT msi_table_assign(struct tagMSIVIEW *view, MSIRECORD *rec)
1722 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1723 UINT r, row;
1725 if (!tv->table)
1726 return ERROR_INVALID_PARAMETER;
1728 r = msi_table_find_row(tv, rec, &row);
1729 if (r == ERROR_SUCCESS)
1730 return TABLE_set_row(view, row, rec, (1 << tv->num_cols) - 1);
1731 else
1732 return TABLE_insert_row( view, rec, -1, FALSE );
1735 static UINT modify_delete_row( struct tagMSIVIEW *view, MSIRECORD *rec )
1737 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1738 UINT row, r;
1740 r = msi_table_find_row(tv, rec, &row);
1741 if (r != ERROR_SUCCESS)
1742 return r;
1744 return TABLE_delete_row(view, row);
1747 static UINT msi_refresh_record( struct tagMSIVIEW *view, MSIRECORD *rec, UINT row )
1749 MSIRECORD *curr;
1750 UINT r, i, count;
1752 r = TABLE_get_row(view, row - 1, &curr);
1753 if (r != ERROR_SUCCESS)
1754 return r;
1756 count = MSI_RecordGetFieldCount(rec);
1757 for (i = 0; i < count; i++)
1758 MSI_RecordCopyField(curr, i + 1, rec, i + 1);
1760 msiobj_release(&curr->hdr);
1761 return ERROR_SUCCESS;
1764 static UINT TABLE_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
1765 MSIRECORD *rec, UINT row)
1767 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1768 UINT r;
1770 TRACE("%p %d %p\n", view, eModifyMode, rec );
1772 switch (eModifyMode)
1774 case MSIMODIFY_DELETE:
1775 r = modify_delete_row( view, rec );
1776 break;
1777 case MSIMODIFY_VALIDATE_NEW:
1778 r = table_validate_new( tv, rec );
1779 break;
1781 case MSIMODIFY_INSERT:
1782 r = table_validate_new( tv, rec );
1783 if (r != ERROR_SUCCESS)
1784 break;
1785 r = TABLE_insert_row( view, rec, -1, FALSE );
1786 break;
1788 case MSIMODIFY_INSERT_TEMPORARY:
1789 r = table_validate_new( tv, rec );
1790 if (r != ERROR_SUCCESS)
1791 break;
1792 r = TABLE_insert_row( view, rec, -1, TRUE );
1793 break;
1795 case MSIMODIFY_REFRESH:
1796 r = msi_refresh_record( view, rec, row );
1797 break;
1799 case MSIMODIFY_UPDATE:
1800 r = msi_table_update( view, rec, row );
1801 break;
1803 case MSIMODIFY_ASSIGN:
1804 r = msi_table_assign( view, rec );
1805 break;
1807 case MSIMODIFY_REPLACE:
1808 case MSIMODIFY_MERGE:
1809 case MSIMODIFY_VALIDATE:
1810 case MSIMODIFY_VALIDATE_FIELD:
1811 case MSIMODIFY_VALIDATE_DELETE:
1812 FIXME("%p %d %p - mode not implemented\n", view, eModifyMode, rec );
1813 r = ERROR_CALL_NOT_IMPLEMENTED;
1814 break;
1816 default:
1817 r = ERROR_INVALID_DATA;
1820 return r;
1823 static UINT TABLE_delete( struct tagMSIVIEW *view )
1825 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1827 TRACE("%p\n", view );
1829 tv->table = NULL;
1830 tv->columns = NULL;
1832 if (tv->order)
1834 msi_free( tv->order->reorder );
1835 msi_free( tv->order );
1836 tv->order = NULL;
1839 msi_free( tv );
1841 return ERROR_SUCCESS;
1844 static UINT TABLE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
1845 UINT val, UINT *row, MSIITERHANDLE *handle )
1847 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1848 const MSICOLUMNHASHENTRY *entry;
1850 TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
1852 if( !tv->table )
1853 return ERROR_INVALID_PARAMETER;
1855 if( (col==0) || (col > tv->num_cols) )
1856 return ERROR_INVALID_PARAMETER;
1858 if( !tv->columns[col-1].hash_table )
1860 UINT i;
1861 UINT num_rows = tv->table->row_count;
1862 MSICOLUMNHASHENTRY **hash_table;
1863 MSICOLUMNHASHENTRY *new_entry;
1865 if( tv->columns[col-1].offset >= tv->row_size )
1867 ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1868 ERR("%p %p\n", tv, tv->columns );
1869 return ERROR_FUNCTION_FAILED;
1872 /* allocate contiguous memory for the table and its entries so we
1873 * don't have to do an expensive cleanup */
1874 hash_table = msi_alloc(MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*) +
1875 num_rows * sizeof(MSICOLUMNHASHENTRY));
1876 if (!hash_table)
1877 return ERROR_OUTOFMEMORY;
1879 memset(hash_table, 0, MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*));
1880 tv->columns[col-1].hash_table = hash_table;
1882 new_entry = (MSICOLUMNHASHENTRY *)(hash_table + MSITABLE_HASH_TABLE_SIZE);
1884 for (i = 0; i < num_rows; i++, new_entry++)
1886 UINT row_value;
1888 if (view->ops->fetch_int( view, i, col, &row_value ) != ERROR_SUCCESS)
1889 continue;
1891 new_entry->next = NULL;
1892 new_entry->value = row_value;
1893 new_entry->row = i;
1894 if (hash_table[row_value % MSITABLE_HASH_TABLE_SIZE])
1896 MSICOLUMNHASHENTRY *prev_entry = hash_table[row_value % MSITABLE_HASH_TABLE_SIZE];
1897 while (prev_entry->next)
1898 prev_entry = prev_entry->next;
1899 prev_entry->next = new_entry;
1901 else
1902 hash_table[row_value % MSITABLE_HASH_TABLE_SIZE] = new_entry;
1906 if( !*handle )
1907 entry = tv->columns[col-1].hash_table[val % MSITABLE_HASH_TABLE_SIZE];
1908 else
1909 entry = (*handle)->next;
1911 while (entry && entry->value != val)
1912 entry = entry->next;
1914 *handle = entry;
1915 if (!entry)
1916 return ERROR_NO_MORE_ITEMS;
1918 *row = entry->row;
1920 return ERROR_SUCCESS;
1923 static UINT TABLE_add_ref(struct tagMSIVIEW *view)
1925 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1926 UINT i;
1928 TRACE("%p %d\n", view, tv->table->ref_count);
1930 for (i = 0; i < tv->table->col_count; i++)
1932 if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
1933 InterlockedIncrement(&tv->table->colinfo[i].ref_count);
1936 return InterlockedIncrement(&tv->table->ref_count);
1939 static UINT TABLE_remove_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number)
1941 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1942 MSIRECORD *rec = NULL;
1943 MSIVIEW *columns = NULL;
1944 UINT row, r;
1946 rec = MSI_CreateRecord(2);
1947 if (!rec)
1948 return ERROR_OUTOFMEMORY;
1950 MSI_RecordSetStringW(rec, 1, table);
1951 MSI_RecordSetInteger(rec, 2, number);
1953 r = TABLE_CreateView(tv->db, szColumns, &columns);
1954 if (r != ERROR_SUCCESS)
1955 return r;
1957 r = msi_table_find_row((MSITABLEVIEW *)columns, rec, &row);
1958 if (r != ERROR_SUCCESS)
1959 goto done;
1961 r = TABLE_delete_row(columns, row);
1962 if (r != ERROR_SUCCESS)
1963 goto done;
1965 msi_update_table_columns(tv->db, table);
1967 done:
1968 msiobj_release(&rec->hdr);
1969 columns->ops->delete(columns);
1970 return r;
1973 static UINT TABLE_release(struct tagMSIVIEW *view)
1975 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1976 INT ref = tv->table->ref_count;
1977 UINT i, r;
1979 TRACE("%p %d\n", view, ref);
1981 for (i = 0; i < tv->table->col_count; i++)
1983 if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
1985 ref = InterlockedDecrement(&tv->table->colinfo[i].ref_count);
1986 if (ref == 0)
1988 r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
1989 tv->table->colinfo[i].number);
1990 if (r != ERROR_SUCCESS)
1991 break;
1996 ref = InterlockedDecrement(&tv->table->ref_count);
1997 if (ref == 0)
1999 if (!tv->table->row_count)
2001 list_remove(&tv->table->entry);
2002 free_table(tv->table);
2003 TABLE_delete(view);
2007 return ref;
2010 static UINT TABLE_add_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number,
2011 LPCWSTR column, UINT type, BOOL hold)
2013 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2014 MSITABLE *msitable;
2015 MSIRECORD *rec;
2016 UINT r, i;
2018 rec = MSI_CreateRecord(4);
2019 if (!rec)
2020 return ERROR_OUTOFMEMORY;
2022 MSI_RecordSetStringW(rec, 1, table);
2023 MSI_RecordSetInteger(rec, 2, number);
2024 MSI_RecordSetStringW(rec, 3, column);
2025 MSI_RecordSetInteger(rec, 4, type);
2027 r = TABLE_insert_row(&tv->view, rec, -1, FALSE);
2028 if (r != ERROR_SUCCESS)
2029 goto done;
2031 msi_update_table_columns(tv->db, table);
2033 if (!hold)
2034 goto done;
2036 msitable = find_cached_table(tv->db, table);
2037 for (i = 0; i < msitable->col_count; i++)
2039 if (!lstrcmpW(msitable->colinfo[i].colname, column))
2041 InterlockedIncrement(&msitable->colinfo[i].ref_count);
2042 break;
2046 done:
2047 msiobj_release(&rec->hdr);
2048 return r;
2051 static UINT order_add_column(struct tagMSIVIEW *view, MSIORDERINFO *order, LPCWSTR name)
2053 UINT n, r, count;
2055 r = TABLE_get_dimensions(view, NULL, &count);
2056 if (r != ERROR_SUCCESS)
2057 return r;
2059 if (order->num_cols >= count)
2060 return ERROR_FUNCTION_FAILED;
2062 r = VIEW_find_column(view, name, &n);
2063 if (r != ERROR_SUCCESS)
2064 return r;
2066 order->cols[order->num_cols] = n;
2067 TRACE("Ordering by column %s (%d)\n", debugstr_w(name), n);
2069 order->num_cols++;
2071 return ERROR_SUCCESS;
2074 static UINT order_compare(struct tagMSIVIEW *view, MSIORDERINFO *order,
2075 UINT a, UINT b, UINT *swap)
2077 UINT r, i, a_val = 0, b_val = 0;
2079 *swap = 0;
2080 for (i = 0; i < order->num_cols; i++)
2082 r = TABLE_fetch_int(view, a, order->cols[i], &a_val);
2083 if (r != ERROR_SUCCESS)
2084 return r;
2086 r = TABLE_fetch_int(view, b, order->cols[i], &b_val);
2087 if (r != ERROR_SUCCESS)
2088 return r;
2090 if (a_val != b_val)
2092 if (a_val > b_val)
2093 *swap = 1;
2094 break;
2098 return ERROR_SUCCESS;
2101 static UINT order_mergesort(struct tagMSIVIEW *view, MSIORDERINFO *order,
2102 UINT left, UINT right)
2104 UINT r, i, j, temp;
2105 UINT swap = 0, center = (left + right) / 2;
2106 UINT *array = order->reorder;
2108 if (left == right)
2109 return ERROR_SUCCESS;
2111 /* sort the left half */
2112 r = order_mergesort(view, order, left, center);
2113 if (r != ERROR_SUCCESS)
2114 return r;
2116 /* sort the right half */
2117 r = order_mergesort(view, order, center + 1, right);
2118 if (r != ERROR_SUCCESS)
2119 return r;
2121 for (i = left, j = center + 1; (i <= center) && (j <= right); i++)
2123 r = order_compare(view, order, array[i], array[j], &swap);
2124 if (r != ERROR_SUCCESS)
2125 return r;
2127 if (swap)
2129 temp = array[j];
2130 memmove(&array[i + 1], &array[i], (j - i) * sizeof(UINT));
2131 array[i] = temp;
2132 j++;
2133 center++;
2137 return ERROR_SUCCESS;
2140 static UINT order_verify(struct tagMSIVIEW *view, MSIORDERINFO *order, UINT num_rows)
2142 UINT i, swap, r;
2144 for (i = 1; i < num_rows; i++)
2146 r = order_compare(view, order, order->reorder[i - 1],
2147 order->reorder[i], &swap);
2148 if (r != ERROR_SUCCESS)
2149 return r;
2151 if (!swap)
2152 continue;
2154 ERR("Bad order! %d\n", i);
2155 return ERROR_FUNCTION_FAILED;
2158 return ERROR_SUCCESS;
2161 static UINT TABLE_sort(struct tagMSIVIEW *view, column_info *columns)
2163 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
2164 MSIORDERINFO *order;
2165 column_info *ptr;
2166 UINT r, i;
2167 UINT rows, cols;
2169 TRACE("sorting table %s\n", debugstr_w(tv->name));
2171 r = TABLE_get_dimensions(view, &rows, &cols);
2172 if (r != ERROR_SUCCESS)
2173 return r;
2175 if (rows == 0)
2176 return ERROR_SUCCESS;
2178 order = msi_alloc_zero(sizeof(MSIORDERINFO) + sizeof(UINT) * cols);
2179 if (!order)
2180 return ERROR_OUTOFMEMORY;
2182 for (ptr = columns; ptr; ptr = ptr->next)
2183 order_add_column(view, order, ptr->column);
2185 order->reorder = msi_alloc(rows * sizeof(UINT));
2186 if (!order->reorder)
2187 return ERROR_OUTOFMEMORY;
2189 for (i = 0; i < rows; i++)
2190 order->reorder[i] = i;
2192 r = order_mergesort(view, order, 0, rows - 1);
2193 if (r != ERROR_SUCCESS)
2194 return r;
2196 r = order_verify(view, order, rows);
2197 if (r != ERROR_SUCCESS)
2198 return r;
2200 tv->order = order;
2202 return ERROR_SUCCESS;
2205 static UINT TABLE_drop(struct tagMSIVIEW *view)
2207 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2208 MSIVIEW *tables = NULL;
2209 MSIRECORD *rec = NULL;
2210 UINT r, row;
2211 INT i;
2213 TRACE("dropping table %s\n", debugstr_w(tv->name));
2215 for (i = tv->table->col_count - 1; i >= 0; i--)
2217 r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
2218 tv->table->colinfo[i].number);
2219 if (r != ERROR_SUCCESS)
2220 return r;
2223 rec = MSI_CreateRecord(1);
2224 if (!rec)
2225 return ERROR_OUTOFMEMORY;
2227 MSI_RecordSetStringW(rec, 1, tv->name);
2229 r = TABLE_CreateView(tv->db, szTables, &tables);
2230 if (r != ERROR_SUCCESS)
2231 return r;
2233 r = msi_table_find_row((MSITABLEVIEW *)tables, rec, &row);
2234 if (r != ERROR_SUCCESS)
2235 goto done;
2237 r = TABLE_delete_row(tables, row);
2238 if (r != ERROR_SUCCESS)
2239 goto done;
2241 list_remove(&tv->table->entry);
2242 free_table(tv->table);
2243 TABLE_delete(view);
2245 done:
2246 msiobj_release(&rec->hdr);
2247 tables->ops->delete(tables);
2249 return r;
2252 static const MSIVIEWOPS table_ops =
2254 TABLE_fetch_int,
2255 TABLE_fetch_stream,
2256 TABLE_get_row,
2257 TABLE_set_row,
2258 TABLE_insert_row,
2259 TABLE_delete_row,
2260 TABLE_execute,
2261 TABLE_close,
2262 TABLE_get_dimensions,
2263 TABLE_get_column_info,
2264 TABLE_modify,
2265 TABLE_delete,
2266 TABLE_find_matching_rows,
2267 TABLE_add_ref,
2268 TABLE_release,
2269 TABLE_add_column,
2270 TABLE_remove_column,
2271 TABLE_sort,
2272 TABLE_drop,
2275 UINT TABLE_CreateView( MSIDATABASE *db, LPCWSTR name, MSIVIEW **view )
2277 MSITABLEVIEW *tv ;
2278 UINT r, sz;
2280 static const WCHAR Streams[] = {'_','S','t','r','e','a','m','s',0};
2281 static const WCHAR Storages[] = {'_','S','t','o','r','a','g','e','s',0};
2283 TRACE("%p %s %p\n", db, debugstr_w(name), view );
2285 if ( !lstrcmpW( name, Streams ) )
2286 return STREAMS_CreateView( db, view );
2287 else if ( !lstrcmpW( name, Storages ) )
2288 return STORAGES_CreateView( db, view );
2290 sz = sizeof *tv + lstrlenW(name)*sizeof name[0] ;
2291 tv = msi_alloc_zero( sz );
2292 if( !tv )
2293 return ERROR_FUNCTION_FAILED;
2295 r = get_table( db, name, &tv->table );
2296 if( r != ERROR_SUCCESS )
2298 msi_free( tv );
2299 WARN("table not found\n");
2300 return r;
2303 TRACE("table %p found with %d columns\n", tv->table, tv->table->col_count);
2305 /* fill the structure */
2306 tv->view.ops = &table_ops;
2307 tv->db = db;
2308 tv->columns = tv->table->colinfo;
2309 tv->num_cols = tv->table->col_count;
2310 tv->row_size = msi_table_get_row_size( db, tv->table->colinfo, tv->table->col_count );
2312 TRACE("%s one row is %d bytes\n", debugstr_w(name), tv->row_size );
2314 *view = (MSIVIEW*) tv;
2315 lstrcpyW( tv->name, name );
2317 return ERROR_SUCCESS;
2320 UINT MSI_CommitTables( MSIDATABASE *db )
2322 UINT r;
2323 MSITABLE *table = NULL;
2325 TRACE("%p\n",db);
2327 r = msi_save_string_table( db->strings, db->storage );
2328 if( r != ERROR_SUCCESS )
2330 WARN("failed to save string table r=%08x\n",r);
2331 return r;
2334 LIST_FOR_EACH_ENTRY( table, &db->tables, MSITABLE, entry )
2336 r = save_table( db, table );
2337 if( r != ERROR_SUCCESS )
2339 WARN("failed to save table %s (r=%08x)\n",
2340 debugstr_w(table->name), r);
2341 return r;
2345 /* force everything to reload next time */
2346 free_cached_tables( db );
2348 return ERROR_SUCCESS;
2351 MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table )
2353 MSITABLE *t;
2354 UINT r;
2356 TRACE("%p %s\n", db, debugstr_w(table));
2358 if (!table)
2359 return MSICONDITION_ERROR;
2361 r = get_table( db, table, &t );
2362 if (r != ERROR_SUCCESS)
2363 return MSICONDITION_NONE;
2365 return t->persistent;
2368 static UINT read_raw_int(const BYTE *data, UINT col, UINT bytes)
2370 UINT ret = 0, i;
2372 for (i = 0; i < bytes; i++)
2373 ret += (data[col + i] << i * 8);
2375 return ret;
2378 static UINT msi_record_encoded_stream_name( const MSITABLEVIEW *tv, MSIRECORD *rec, LPWSTR *pstname )
2380 static const WCHAR szDot[] = { '.', 0 };
2381 LPWSTR stname = NULL, sval, p;
2382 DWORD len;
2383 UINT i, r;
2385 TRACE("%p %p\n", tv, rec);
2387 len = lstrlenW( tv->name ) + 1;
2388 stname = msi_alloc( len*sizeof(WCHAR) );
2389 if ( !stname )
2391 r = ERROR_OUTOFMEMORY;
2392 goto err;
2395 lstrcpyW( stname, tv->name );
2397 for ( i = 0; i < tv->num_cols; i++ )
2399 if ( tv->columns[i].type & MSITYPE_KEY )
2401 sval = msi_dup_record_field( rec, i + 1 );
2402 if ( !sval )
2404 r = ERROR_OUTOFMEMORY;
2405 goto err;
2408 len += lstrlenW( szDot ) + lstrlenW ( sval );
2409 p = msi_realloc ( stname, len*sizeof(WCHAR) );
2410 if ( !p )
2412 r = ERROR_OUTOFMEMORY;
2413 goto err;
2415 stname = p;
2417 lstrcatW( stname, szDot );
2418 lstrcatW( stname, sval );
2420 msi_free( sval );
2422 else
2423 continue;
2426 *pstname = encode_streamname( FALSE, stname );
2427 msi_free( stname );
2429 return ERROR_SUCCESS;
2431 err:
2432 msi_free ( stname );
2433 *pstname = NULL;
2434 return r;
2437 static MSIRECORD *msi_get_transform_record( const MSITABLEVIEW *tv, const string_table *st,
2438 IStorage *stg,
2439 const BYTE *rawdata, UINT bytes_per_strref )
2441 UINT i, val, ofs = 0;
2442 USHORT mask;
2443 MSICOLUMNINFO *columns = tv->columns;
2444 MSIRECORD *rec;
2446 mask = rawdata[0] | (rawdata[1] << 8);
2447 rawdata += 2;
2449 rec = MSI_CreateRecord( tv->num_cols );
2450 if( !rec )
2451 return rec;
2453 TRACE("row ->\n");
2454 for( i=0; i<tv->num_cols; i++ )
2456 if ( (mask&1) && (i>=(mask>>8)) )
2457 break;
2458 /* all keys must be present */
2459 if ( (~mask&1) && (~columns[i].type & MSITYPE_KEY) && ((1<<i) & ~mask) )
2460 continue;
2462 if( MSITYPE_IS_BINARY(tv->columns[i].type) )
2464 LPWSTR encname;
2465 IStream *stm = NULL;
2466 UINT r;
2468 ofs += bytes_per_column( tv->db, &columns[i] );
2470 r = msi_record_encoded_stream_name( tv, rec, &encname );
2471 if ( r != ERROR_SUCCESS )
2472 return NULL;
2474 r = IStorage_OpenStream( stg, encname, NULL,
2475 STGM_READ | STGM_SHARE_EXCLUSIVE, 0, &stm );
2476 msi_free( encname );
2477 if ( r != ERROR_SUCCESS )
2478 return NULL;
2480 MSI_RecordSetStream( rec, i+1, stm );
2481 TRACE(" field %d [%s]\n", i+1, debugstr_w(encname));
2483 else if( columns[i].type & MSITYPE_STRING )
2485 LPCWSTR sval;
2487 val = read_raw_int(rawdata, ofs, bytes_per_strref);
2488 sval = msi_string_lookup_id( st, val );
2489 MSI_RecordSetStringW( rec, i+1, sval );
2490 TRACE(" field %d [%s]\n", i+1, debugstr_w(sval));
2491 ofs += bytes_per_strref;
2493 else
2495 UINT n = bytes_per_column( tv->db, &columns[i] );
2496 switch( n )
2498 case 2:
2499 val = read_raw_int(rawdata, ofs, n);
2500 if (val)
2501 MSI_RecordSetInteger( rec, i+1, val^0x8000 );
2502 TRACE(" field %d [0x%04x]\n", i+1, val );
2503 break;
2504 case 4:
2505 val = read_raw_int(rawdata, ofs, n);
2506 if (val)
2507 MSI_RecordSetInteger( rec, i+1, val^0x80000000 );
2508 TRACE(" field %d [0x%08x]\n", i+1, val );
2509 break;
2510 default:
2511 ERR("oops - unknown column width %d\n", n);
2512 break;
2514 ofs += n;
2517 return rec;
2520 static void dump_record( MSIRECORD *rec )
2522 UINT i, n;
2524 n = MSI_RecordGetFieldCount( rec );
2525 for( i=1; i<=n; i++ )
2527 LPCWSTR sval = MSI_RecordGetString( rec, i );
2529 if( MSI_RecordIsNull( rec, i ) )
2530 TRACE("row -> []\n");
2531 else if( (sval = MSI_RecordGetString( rec, i )) )
2532 TRACE("row -> [%s]\n", debugstr_w(sval));
2533 else
2534 TRACE("row -> [0x%08x]\n", MSI_RecordGetInteger( rec, i ) );
2538 static void dump_table( const string_table *st, const USHORT *rawdata, UINT rawsize )
2540 LPCWSTR sval;
2541 UINT i;
2543 for( i=0; i<(rawsize/2); i++ )
2545 sval = msi_string_lookup_id( st, rawdata[i] );
2546 MESSAGE(" %04x %s\n", rawdata[i], debugstr_w(sval) );
2550 static UINT* msi_record_to_row( const MSITABLEVIEW *tv, MSIRECORD *rec )
2552 LPCWSTR str;
2553 UINT i, r, *data;
2555 data = msi_alloc( tv->num_cols *sizeof (UINT) );
2556 for( i=0; i<tv->num_cols; i++ )
2558 data[i] = 0;
2560 if ( ~tv->columns[i].type & MSITYPE_KEY )
2561 continue;
2563 /* turn the transform column value into a row value */
2564 if ( ( tv->columns[i].type & MSITYPE_STRING ) &&
2565 ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2567 str = MSI_RecordGetString( rec, i+1 );
2568 r = msi_string2idW( tv->db->strings, str, &data[i] );
2570 /* if there's no matching string in the string table,
2571 these keys can't match any record, so fail now. */
2572 if( ERROR_SUCCESS != r )
2574 msi_free( data );
2575 return NULL;
2578 else
2580 data[i] = MSI_RecordGetInteger( rec, i+1 );
2582 if (data[i] == MSI_NULL_INTEGER)
2583 data[i] = 0;
2584 else if ((tv->columns[i].type&0xff) == 2)
2585 data[i] += 0x8000;
2586 else
2587 data[i] += 0x80000000;
2590 return data;
2593 static UINT msi_row_matches( MSITABLEVIEW *tv, UINT row, const UINT *data )
2595 UINT i, r, x, ret = ERROR_FUNCTION_FAILED;
2597 for( i=0; i<tv->num_cols; i++ )
2599 if ( ~tv->columns[i].type & MSITYPE_KEY )
2600 continue;
2602 /* turn the transform column value into a row value */
2603 r = TABLE_fetch_int( &tv->view, row, i+1, &x );
2604 if ( r != ERROR_SUCCESS )
2606 ERR("TABLE_fetch_int shouldn't fail here\n");
2607 break;
2610 /* if this key matches, move to the next column */
2611 if ( x != data[i] )
2613 ret = ERROR_FUNCTION_FAILED;
2614 break;
2617 ret = ERROR_SUCCESS;
2620 return ret;
2623 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row )
2625 UINT i, r = ERROR_FUNCTION_FAILED, *data;
2627 data = msi_record_to_row( tv, rec );
2628 if( !data )
2629 return r;
2630 for( i = 0; i < tv->table->row_count; i++ )
2632 r = msi_row_matches( tv, i, data );
2633 if( r == ERROR_SUCCESS )
2635 *row = i;
2636 break;
2639 msi_free( data );
2640 return r;
2643 typedef struct
2645 struct list entry;
2646 LPWSTR name;
2647 } TRANSFORMDATA;
2649 static UINT msi_table_load_transform( MSIDATABASE *db, IStorage *stg,
2650 string_table *st, TRANSFORMDATA *transform,
2651 UINT bytes_per_strref )
2653 UINT rawsize = 0;
2654 BYTE *rawdata = NULL;
2655 MSITABLEVIEW *tv = NULL;
2656 UINT r, n, sz, i, mask;
2657 MSIRECORD *rec = NULL;
2658 UINT colcol = 0;
2659 WCHAR coltable[32];
2660 LPWSTR name;
2662 if (!transform)
2663 return ERROR_SUCCESS;
2665 name = transform->name;
2667 coltable[0] = 0;
2668 TRACE("%p %p %p %s\n", db, stg, st, debugstr_w(name) );
2670 /* read the transform data */
2671 read_stream_data( stg, name, TRUE, &rawdata, &rawsize );
2672 if ( !rawdata )
2674 TRACE("table %s empty\n", debugstr_w(name) );
2675 return ERROR_INVALID_TABLE;
2678 /* create a table view */
2679 r = TABLE_CreateView( db, name, (MSIVIEW**) &tv );
2680 if( r != ERROR_SUCCESS )
2681 goto err;
2683 r = tv->view.ops->execute( &tv->view, NULL );
2684 if( r != ERROR_SUCCESS )
2685 goto err;
2687 TRACE("name = %s columns = %u row_size = %u raw size = %u\n",
2688 debugstr_w(name), tv->num_cols, tv->row_size, rawsize );
2690 /* interpret the data */
2691 r = ERROR_SUCCESS;
2692 for( n=0; n < rawsize; )
2694 mask = rawdata[n] | (rawdata[n+1] << 8);
2696 if (mask&1)
2699 * if the low bit is set, columns are continuous and
2700 * the number of columns is specified in the high byte
2702 sz = 2;
2703 for( i=0; i<tv->num_cols; i++ )
2705 if( (tv->columns[i].type & MSITYPE_STRING) &&
2706 ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2707 sz += bytes_per_strref;
2708 else
2709 sz += bytes_per_column( tv->db, &tv->columns[i] );
2712 else
2715 * If the low bit is not set, mask is a bitmask.
2716 * Excepting for key fields, which are always present,
2717 * each bit indicates that a field is present in the transform record.
2719 * mask == 0 is a special case ... only the keys will be present
2720 * and it means that this row should be deleted.
2722 sz = 2;
2723 for( i=0; i<tv->num_cols; i++ )
2725 if( (tv->columns[i].type & MSITYPE_KEY) || ((1<<i)&mask))
2727 if( (tv->columns[i].type & MSITYPE_STRING) &&
2728 ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2729 sz += bytes_per_strref;
2730 else
2731 sz += bytes_per_column( tv->db, &tv->columns[i] );
2736 /* check we didn't run of the end of the table */
2737 if ( (n+sz) > rawsize )
2739 ERR("borked.\n");
2740 dump_table( st, (USHORT *)rawdata, rawsize );
2741 break;
2744 rec = msi_get_transform_record( tv, st, stg, &rawdata[n], bytes_per_strref );
2745 if (rec)
2747 if ( mask & 1 )
2749 WCHAR table[32];
2750 DWORD sz = 32;
2751 UINT number = MSI_NULL_INTEGER;
2753 TRACE("inserting record\n");
2755 if (!lstrcmpW(name, szColumns))
2757 MSI_RecordGetStringW( rec, 1, table, &sz );
2758 number = MSI_RecordGetInteger( rec, 2 );
2761 * Native msi seems writes nul into the Number (2nd) column of
2762 * the _Columns table, only when the columns are from a new table
2764 if ( number == MSI_NULL_INTEGER )
2766 /* reset the column number on a new table */
2767 if ( lstrcmpW(coltable, table) )
2769 colcol = 0;
2770 lstrcpyW( coltable, table );
2773 /* fix nul column numbers */
2774 MSI_RecordSetInteger( rec, 2, ++colcol );
2778 r = TABLE_insert_row( &tv->view, rec, -1, FALSE );
2779 if (r != ERROR_SUCCESS)
2780 ERR("insert row failed\n");
2782 if ( number != MSI_NULL_INTEGER && !lstrcmpW(name, szColumns) )
2783 msi_update_table_columns( db, table );
2785 else
2787 UINT row = 0;
2789 r = msi_table_find_row( tv, rec, &row );
2790 if (r != ERROR_SUCCESS)
2791 ERR("no matching row to transform\n");
2792 else if ( mask )
2794 TRACE("modifying row [%d]:\n", row);
2795 TABLE_set_row( &tv->view, row, rec, mask );
2797 else
2799 TRACE("deleting row [%d]:\n", row);
2800 TABLE_delete_row( &tv->view, row );
2803 if( TRACE_ON(msidb) ) dump_record( rec );
2804 msiobj_release( &rec->hdr );
2807 n += sz;
2810 err:
2811 /* no need to free the table, it's associated with the database */
2812 msi_free( rawdata );
2813 if( tv )
2814 tv->view.ops->delete( &tv->view );
2816 return ERROR_SUCCESS;
2820 * msi_table_apply_transform
2822 * Enumerate the table transforms in a transform storage and apply each one.
2824 UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg )
2826 struct list transforms;
2827 IEnumSTATSTG *stgenum = NULL;
2828 TRANSFORMDATA *transform;
2829 TRANSFORMDATA *tables = NULL, *columns = NULL;
2830 HRESULT r;
2831 STATSTG stat;
2832 string_table *strings;
2833 UINT ret = ERROR_FUNCTION_FAILED;
2834 UINT bytes_per_strref;
2836 TRACE("%p %p\n", db, stg );
2838 strings = msi_load_string_table( stg, &bytes_per_strref );
2839 if( !strings )
2840 goto end;
2842 r = IStorage_EnumElements( stg, 0, NULL, 0, &stgenum );
2843 if( FAILED( r ) )
2844 goto end;
2846 list_init(&transforms);
2848 while ( TRUE )
2850 MSITABLEVIEW *tv = NULL;
2851 WCHAR name[0x40];
2852 ULONG count = 0;
2854 r = IEnumSTATSTG_Next( stgenum, 1, &stat, &count );
2855 if ( FAILED( r ) || !count )
2856 break;
2858 decode_streamname( stat.pwcsName, name );
2859 CoTaskMemFree( stat.pwcsName );
2860 if ( name[0] != 0x4840 )
2861 continue;
2863 if ( !lstrcmpW( name+1, szStringPool ) ||
2864 !lstrcmpW( name+1, szStringData ) )
2865 continue;
2867 transform = msi_alloc_zero( sizeof(TRANSFORMDATA) );
2868 if ( !transform )
2869 break;
2871 list_add_tail( &transforms, &transform->entry );
2873 transform->name = strdupW( name + 1 );
2875 if ( !lstrcmpW( transform->name, szTables ) )
2876 tables = transform;
2877 else if (!lstrcmpW( transform->name, szColumns ) )
2878 columns = transform;
2880 TRACE("transform contains stream %s\n", debugstr_w(name));
2882 /* load the table */
2883 r = TABLE_CreateView( db, transform->name, (MSIVIEW**) &tv );
2884 if( r != ERROR_SUCCESS )
2885 continue;
2887 r = tv->view.ops->execute( &tv->view, NULL );
2888 if( r != ERROR_SUCCESS )
2890 tv->view.ops->delete( &tv->view );
2891 continue;
2894 tv->view.ops->delete( &tv->view );
2898 * Apply _Tables and _Columns transforms first so that
2899 * the table metadata is correct, and empty tables exist.
2901 ret = msi_table_load_transform( db, stg, strings, tables, bytes_per_strref );
2902 if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2903 goto end;
2905 ret = msi_table_load_transform( db, stg, strings, columns, bytes_per_strref );
2906 if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2907 goto end;
2909 ret = ERROR_SUCCESS;
2911 while ( !list_empty( &transforms ) )
2913 transform = LIST_ENTRY( list_head( &transforms ), TRANSFORMDATA, entry );
2915 if ( lstrcmpW( transform->name, szColumns ) &&
2916 lstrcmpW( transform->name, szTables ) &&
2917 ret == ERROR_SUCCESS )
2919 ret = msi_table_load_transform( db, stg, strings, transform, bytes_per_strref );
2922 list_remove( &transform->entry );
2923 msi_free( transform->name );
2924 msi_free( transform );
2927 if ( ret == ERROR_SUCCESS )
2928 append_storage_to_db( db, stg );
2930 end:
2931 if ( stgenum )
2932 IEnumSTATSTG_Release( stgenum );
2933 if ( strings )
2934 msi_destroy_stringtable( strings );
2936 return ret;
2939 void append_storage_to_db( MSIDATABASE *db, IStorage *stg )
2941 MSITRANSFORM *t;
2943 t = msi_alloc( sizeof *t );
2944 t->stg = stg;
2945 IStorage_AddRef( stg );
2946 list_add_tail( &db->transforms, &t->entry );
2949 void msi_free_transforms( MSIDATABASE *db )
2951 while( !list_empty( &db->transforms ) )
2953 MSITRANSFORM *t = LIST_ENTRY( list_head( &db->transforms ),
2954 MSITRANSFORM, entry );
2955 list_remove( &t->entry );
2956 IStorage_Release( t->stg );
2957 msi_free( t );
2961 static UINT table_find_insert_idx (MSIVIEW *view, LPCWSTR name, INT *pidx)
2963 UINT r, name_id, row_id;
2964 INT idx;
2965 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
2967 TRACE ("%p %s\n", view, debugstr_w(name));
2969 r = msi_string2idW(tv->db->strings, name, &name_id);
2970 if (r != ERROR_SUCCESS)
2972 *pidx = -1;
2973 return r;
2976 for( idx = 0; idx < tv->table->row_count; idx++ )
2978 r = TABLE_fetch_int( &tv->view, idx, 1, &row_id );
2979 if (row_id > name_id)
2980 break;
2983 *pidx = idx;
2984 return ERROR_SUCCESS;