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
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
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;
54 typedef struct tagMSICOLUMNINFO
62 MSICOLUMNHASHENTRY **hash_table;
65 typedef struct tagMSIORDERINFO
76 BYTE **nonpersistent_data;
77 UINT nonpersistent_row_count;
79 MSICOLUMNINFO *colinfo;
86 typedef struct tagMSITRANSFORM {
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, NULL },
106 { szColumns, 2, szNumber, MSITYPE_VALID | MSITYPE_KEY | 2, 2, 0, NULL },
107 { szColumns, 3, szName, MSITYPE_VALID | MSITYPE_STRING | 64, 4, 0, NULL },
108 { szColumns, 4, szType, MSITYPE_VALID | 2, 6, 0, NULL },
111 static const MSICOLUMNINFO _Tables_cols[1] = {
112 { szTables, 1, szName, MSITYPE_VALID | MSITYPE_STRING | MSITYPE_KEY | 64, 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,
121 static UINT get_tablecolumns( MSIDATABASE *db,
122 LPCWSTR szTableName, MSICOLUMNINFO *colinfo, UINT *sz);
123 static void msi_free_colinfo( MSICOLUMNINFO *colinfo, UINT count );
125 static inline UINT bytes_per_column( MSIDATABASE *db, const MSICOLUMNINFO *col )
127 if( MSITYPE_IS_BINARY(col->type) )
129 if( col->type & MSITYPE_STRING )
130 return db->bytes_per_strref;
131 if( (col->type & 0xff) > 4 )
132 ERR("Invalid column size!\n");
133 return col->type & 0xff;
136 static int utf2mime(int x)
138 if( (x>='0') && (x<='9') )
140 if( (x>='A') && (x<='Z') )
142 if( (x>='a') && (x<='z') )
151 LPWSTR encode_streamname(BOOL bTable, LPCWSTR in)
153 DWORD count = MAX_STREAM_NAME;
158 count = lstrlenW( in )+2;
159 out = msi_alloc( count*sizeof(WCHAR) );
175 if( ( ch < 0x80 ) && ( utf2mime(ch) >= 0 ) )
177 ch = utf2mime(ch) + 0x4800;
179 if( next && (next<0x80) )
181 next = utf2mime(next);
192 ERR("Failed to encode stream name (%s)\n",debugstr_w(in));
197 static int mime2utf(int x)
204 return x - 10 - 26 + 'a';
205 if( x == (10+26+26) )
210 BOOL decode_streamname(LPCWSTR in, LPWSTR out)
215 while ( (ch = *in++) )
217 if( (ch >= 0x3800 ) && (ch < 0x4840 ) )
220 ch = mime2utf(ch-0x4800);
224 *out++ = mime2utf(ch&0x3f);
226 ch = mime2utf((ch>>6)&0x3f);
236 void enum_stream_names( IStorage *stg )
238 IEnumSTATSTG *stgenum = NULL;
244 r = IStorage_EnumElements( stg, 0, NULL, 0, &stgenum );
252 r = IEnumSTATSTG_Next( stgenum, 1, &stat, &count );
253 if( FAILED( r ) || !count )
255 decode_streamname( stat.pwcsName, name );
256 TRACE("stream %2d -> %s %s\n", n,
257 debugstr_w(stat.pwcsName), debugstr_w(name) );
258 CoTaskMemFree( stat.pwcsName );
262 IEnumSTATSTG_Release( stgenum );
265 UINT read_stream_data( IStorage *stg, LPCWSTR stname, BOOL table,
266 BYTE **pdata, UINT *psz )
269 UINT ret = ERROR_FUNCTION_FAILED;
276 encname = encode_streamname(table, stname);
278 TRACE("%s -> %s\n",debugstr_w(stname),debugstr_w(encname));
280 r = IStorage_OpenStream(stg, encname, NULL,
281 STGM_READ | STGM_SHARE_EXCLUSIVE, 0, &stm);
285 WARN("open stream failed r = %08x - empty table?\n", r);
289 r = IStream_Stat(stm, &stat, STATFLAG_NONAME );
292 WARN("open stream failed r = %08x!\n", r);
296 if( stat.cbSize.QuadPart >> 32 )
302 sz = stat.cbSize.QuadPart;
303 data = msi_alloc( sz );
306 WARN("couldn't allocate memory r=%08x!\n", r);
307 ret = ERROR_NOT_ENOUGH_MEMORY;
311 r = IStream_Read(stm, data, sz, &count );
312 if( FAILED( r ) || ( count != sz ) )
315 WARN("read stream failed r = %08x!\n", r);
324 IStream_Release( stm );
329 UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm )
334 encname = encode_streamname(FALSE, stname);
336 TRACE("%s -> %s\n",debugstr_w(stname),debugstr_w(encname));
338 r = IStorage_OpenStream(db->storage, encname, NULL,
339 STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm);
342 MSITRANSFORM *transform;
344 LIST_FOR_EACH_ENTRY( transform, &db->transforms, MSITRANSFORM, entry )
346 TRACE("looking for %s in transform storage\n", debugstr_w(stname) );
347 r = IStorage_OpenStream( transform->stg, encname, NULL,
348 STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm );
356 return SUCCEEDED(r) ? ERROR_SUCCESS : ERROR_FUNCTION_FAILED;
359 UINT read_raw_stream_data( MSIDATABASE *db, LPCWSTR stname,
360 USHORT **pdata, UINT *psz )
363 UINT ret = ERROR_FUNCTION_FAILED;
369 r = db_get_raw_stream( db, stname, &stm );
370 if( r != ERROR_SUCCESS)
372 r = IStream_Stat(stm, &stat, STATFLAG_NONAME );
375 WARN("open stream failed r = %08x!\n", r);
379 if( stat.cbSize.QuadPart >> 32 )
385 sz = stat.cbSize.QuadPart;
386 data = msi_alloc( sz );
389 WARN("couldn't allocate memory r=%08x!\n", r);
390 ret = ERROR_NOT_ENOUGH_MEMORY;
394 r = IStream_Read(stm, data, sz, &count );
395 if( FAILED( r ) || ( count != sz ) )
398 WARN("read stream failed r = %08x!\n", r);
407 IStream_Release( stm );
412 UINT write_stream_data( IStorage *stg, LPCWSTR stname,
413 LPCVOID data, UINT sz, BOOL bTable )
416 UINT ret = ERROR_FUNCTION_FAILED;
423 encname = encode_streamname(bTable, stname );
424 r = IStorage_OpenStream( stg, encname, NULL,
425 STGM_WRITE | STGM_SHARE_EXCLUSIVE, 0, &stm);
428 r = IStorage_CreateStream( stg, encname,
429 STGM_WRITE | STGM_SHARE_EXCLUSIVE, 0, 0, &stm);
434 WARN("open stream failed r = %08x\n", r);
439 r = IStream_SetSize( stm, size );
442 WARN("Failed to SetSize\n");
447 r = IStream_Seek( stm, pos, STREAM_SEEK_SET, NULL );
450 WARN("Failed to Seek\n");
456 r = IStream_Write(stm, data, sz, &count );
457 if( FAILED( r ) || ( count != sz ) )
459 WARN("Failed to Write\n");
467 IStream_Release( stm );
472 static void free_table( MSITABLE *table )
475 for( i=0; i<table->row_count; i++ )
476 msi_free( table->data[i] );
477 msi_free( table->data );
478 for( i=0; i<table->nonpersistent_row_count; i++ )
479 msi_free( table->nonpersistent_data[i] );
480 msi_free( table->nonpersistent_data );
481 msi_free_colinfo( table->colinfo, table->col_count );
482 msi_free( table->colinfo );
486 static UINT msi_table_get_row_size( MSIDATABASE *db,const MSICOLUMNINFO *cols,
489 const MSICOLUMNINFO *last_col = &cols[count-1];
492 return last_col->offset + bytes_per_column( db, last_col );
495 /* add this table to the list of cached tables in the database */
496 static UINT read_table_from_storage( MSIDATABASE *db, MSITABLE *t, IStorage *stg )
498 BYTE *rawdata = NULL;
499 UINT rawsize = 0, i, j, row_size = 0;
501 TRACE("%s\n",debugstr_w(t->name));
503 row_size = msi_table_get_row_size( db, t->colinfo, t->col_count );
505 /* if we can't read the table, just assume that it's empty */
506 read_stream_data( stg, t->name, TRUE, &rawdata, &rawsize );
508 return ERROR_SUCCESS;
510 TRACE("Read %d bytes\n", rawsize );
512 if( rawsize % row_size )
514 WARN("Table size is invalid %d/%d\n", rawsize, row_size );
518 t->row_count = rawsize / row_size;
519 t->data = msi_alloc_zero( t->row_count * sizeof (USHORT*) );
523 /* transpose all the data */
524 TRACE("Transposing data from %d rows\n", t->row_count );
525 for( i=0; i<t->row_count; i++ )
527 t->data[i] = msi_alloc( row_size );
531 for( j=0; j<t->col_count; j++ )
533 UINT ofs = t->colinfo[j].offset;
534 UINT n = bytes_per_column( db, &t->colinfo[j] );
537 if ( n != 2 && n != 3 && n != 4 )
539 ERR("oops - unknown column width %d\n", n);
543 for ( k = 0; k < n; k++ )
544 t->data[i][ofs + k] = rawdata[ofs*t->row_count + i * n + k];
549 return ERROR_SUCCESS;
552 return ERROR_FUNCTION_FAILED;
555 void free_cached_tables( MSIDATABASE *db )
557 while( !list_empty( &db->tables ) )
559 MSITABLE *t = LIST_ENTRY( list_head( &db->tables ), MSITABLE, entry );
561 list_remove( &t->entry );
566 static MSITABLE *find_cached_table( MSIDATABASE *db, LPCWSTR name )
570 LIST_FOR_EACH_ENTRY( t, &db->tables, MSITABLE, entry )
571 if( !lstrcmpW( name, t->name ) )
577 static UINT table_get_column_info( MSIDATABASE *db, LPCWSTR name, MSICOLUMNINFO **pcols, UINT *pcount )
579 UINT r, column_count = 0;
580 MSICOLUMNINFO *columns;
582 /* get the number of columns in this table */
584 r = get_tablecolumns( db, name, NULL, &column_count );
585 if( r != ERROR_SUCCESS )
588 *pcount = column_count;
590 /* if there's no columns, there's no table */
591 if( column_count == 0 )
592 return ERROR_INVALID_PARAMETER;
594 TRACE("Table %s found\n", debugstr_w(name) );
596 columns = msi_alloc( column_count*sizeof (MSICOLUMNINFO) );
598 return ERROR_FUNCTION_FAILED;
600 r = get_tablecolumns( db, name, columns, &column_count );
601 if( r != ERROR_SUCCESS )
604 return ERROR_FUNCTION_FAILED;
612 UINT msi_create_table( MSIDATABASE *db, LPCWSTR name, column_info *col_info,
613 BOOL persistent, MSITABLE **table_ret)
617 MSIRECORD *rec = NULL;
622 /* only add tables that don't exist already */
623 if( TABLE_Exists(db, name ) )
625 WARN("table %s exists\n", debugstr_w(name));
626 return ERROR_BAD_QUERY_SYNTAX;
629 table = msi_alloc( sizeof (MSITABLE) + lstrlenW(name)*sizeof (WCHAR) );
631 return ERROR_FUNCTION_FAILED;
633 table->ref_count = 1;
634 table->row_count = 0;
636 table->nonpersistent_row_count = 0;
637 table->nonpersistent_data = NULL;
638 table->colinfo = NULL;
639 table->col_count = 0;
640 table->persistent = persistent;
641 lstrcpyW( table->name, name );
643 for( col = col_info; col; col = col->next )
646 table->colinfo = msi_alloc( table->col_count * sizeof(MSICOLUMNINFO) );
650 return ERROR_FUNCTION_FAILED;
653 for( i = 0, col = col_info; col; i++, col = col->next )
655 table->colinfo[ i ].tablename = strdupW( col->table );
656 table->colinfo[ i ].number = i + 1;
657 table->colinfo[ i ].colname = strdupW( col->column );
658 table->colinfo[ i ].type = col->type;
659 table->colinfo[ i ].offset = 0;
660 table->colinfo[ i ].ref_count = 0;
661 table->colinfo[ i ].hash_table = NULL;
663 table_calc_column_offsets( db, table->colinfo, table->col_count);
665 r = TABLE_CreateView( db, szTables, &tv );
666 TRACE("CreateView returned %x\n", r);
673 r = tv->ops->execute( tv, 0 );
674 TRACE("tv execute returned %x\n", r);
678 rec = MSI_CreateRecord( 1 );
682 r = MSI_RecordSetStringW( rec, 1, name );
686 r = tv->ops->insert_row( tv, rec, !persistent );
687 TRACE("insert_row returned %x\n", r);
691 tv->ops->delete( tv );
694 msiobj_release( &rec->hdr );
699 /* add each column to the _Columns table */
700 r = TABLE_CreateView( db, szColumns, &tv );
704 r = tv->ops->execute( tv, 0 );
705 TRACE("tv execute returned %x\n", r);
709 rec = MSI_CreateRecord( 4 );
713 r = MSI_RecordSetStringW( rec, 1, name );
718 * need to set the table, column number, col name and type
719 * for each column we enter in the table
722 for( col = col_info; col; col = col->next )
724 r = MSI_RecordSetInteger( rec, 2, nField );
728 r = MSI_RecordSetStringW( rec, 3, col->column );
732 r = MSI_RecordSetInteger( rec, 4, col->type );
736 r = tv->ops->insert_row( tv, rec, FALSE );
748 msiobj_release( &rec->hdr );
749 /* FIXME: remove values from the string table on error */
751 tv->ops->delete( tv );
753 if (r == ERROR_SUCCESS)
755 list_add_head( &db->tables, &table->entry );
764 static UINT get_table( MSIDATABASE *db, LPCWSTR name, MSITABLE **table_ret )
769 /* first, see if the table is cached */
770 table = find_cached_table( db, name );
774 return ERROR_SUCCESS;
777 /* nonexistent tables should be interpreted as empty tables */
778 table = msi_alloc( sizeof (MSITABLE) + lstrlenW(name)*sizeof (WCHAR) );
780 return ERROR_FUNCTION_FAILED;
782 table->row_count = 0;
784 table->nonpersistent_row_count = 0;
785 table->nonpersistent_data = NULL;
786 table->colinfo = NULL;
787 table->col_count = 0;
788 table->persistent = TRUE;
789 lstrcpyW( table->name, name );
791 r = table_get_column_info( db, name, &table->colinfo, &table->col_count);
792 if (r != ERROR_SUCCESS)
794 free_table ( table );
798 r = read_table_from_storage( db, table, db->storage );
799 if( r != ERROR_SUCCESS )
805 list_add_head( &db->tables, &table->entry );
807 return ERROR_SUCCESS;
810 static UINT save_table( MSIDATABASE *db, const MSITABLE *t )
812 BYTE *rawdata = NULL, *p;
813 UINT rawsize, r, i, j, row_size;
815 /* Nothing to do for non-persistent tables */
817 return ERROR_SUCCESS;
819 TRACE("Saving %s\n", debugstr_w( t->name ) );
821 row_size = msi_table_get_row_size( db, t->colinfo, t->col_count );
823 rawsize = t->row_count * row_size;
824 rawdata = msi_alloc_zero( rawsize );
827 r = ERROR_NOT_ENOUGH_MEMORY;
832 for( i=0; i<t->col_count; i++ )
834 for( j=0; j<t->row_count; j++ )
836 UINT offset = t->colinfo[i].offset;
838 *p++ = t->data[j][offset];
839 *p++ = t->data[j][offset + 1];
840 if( 4 == bytes_per_column( db, &t->colinfo[i] ) )
842 *p++ = t->data[j][offset + 2];
843 *p++ = t->data[j][offset + 3];
848 TRACE("writing %d bytes\n", rawsize);
849 r = write_stream_data( db->storage, t->name, rawdata, rawsize, TRUE );
857 static void table_calc_column_offsets( MSIDATABASE *db, MSICOLUMNINFO *colinfo,
862 for( i=0; colinfo && (i<count); i++ )
864 assert( (i+1) == colinfo[ i ].number );
866 colinfo[i].offset = colinfo[ i - 1 ].offset
867 + bytes_per_column( db, &colinfo[ i - 1 ] );
869 colinfo[i].offset = 0;
870 TRACE("column %d is [%s] with type %08x ofs %d\n",
871 colinfo[i].number, debugstr_w(colinfo[i].colname),
872 colinfo[i].type, colinfo[i].offset);
876 static UINT get_defaulttablecolumns( MSIDATABASE *db, LPCWSTR name,
877 MSICOLUMNINFO *colinfo, UINT *sz)
879 const MSICOLUMNINFO *p;
882 TRACE("%s\n", debugstr_w(name));
884 if (!lstrcmpW( name, szTables ))
889 else if (!lstrcmpW( name, szColumns ))
895 return ERROR_FUNCTION_FAILED;
897 /* duplicate the string data so we can free it in msi_free_colinfo */
900 if (colinfo && (i < *sz) )
903 colinfo[i].tablename = strdupW( p[i].tablename );
904 colinfo[i].colname = strdupW( p[i].colname );
906 if( colinfo && (i >= *sz) )
909 table_calc_column_offsets( db, colinfo, n );
911 return ERROR_SUCCESS;
914 static void msi_free_colinfo( MSICOLUMNINFO *colinfo, UINT count )
918 for( i=0; i<count; i++ )
920 msi_free( colinfo[i].tablename );
921 msi_free( colinfo[i].colname );
922 msi_free( colinfo[i].hash_table );
926 static LPWSTR msi_makestring( const MSIDATABASE *db, UINT stringid)
928 return strdupW(msi_string_lookup_id( db->strings, stringid ));
931 static UINT read_table_int(BYTE *const *data, UINT row, UINT col, UINT bytes)
935 for (i = 0; i < bytes; i++)
936 ret += (data[row][col + i] << i * 8);
941 static UINT get_tablecolumns( MSIDATABASE *db,
942 LPCWSTR szTableName, MSICOLUMNINFO *colinfo, UINT *sz)
944 UINT r, i, n=0, table_id, count, maxcount = *sz;
945 MSITABLE *table = NULL;
947 TRACE("%s\n", debugstr_w(szTableName));
949 /* first check if there is a default table with that name */
950 r = get_defaulttablecolumns( db, szTableName, colinfo, sz );
951 if( ( r == ERROR_SUCCESS ) && *sz )
954 r = get_table( db, szColumns, &table );
955 if( r != ERROR_SUCCESS )
957 ERR("couldn't load _Columns table\n");
958 return ERROR_FUNCTION_FAILED;
961 /* convert table and column names to IDs from the string table */
962 r = msi_string2idW( db->strings, szTableName, &table_id );
963 if( r != ERROR_SUCCESS )
965 WARN("Couldn't find id for %s\n", debugstr_w(szTableName));
969 TRACE("Table id is %d, row count is %d\n", table_id, table->row_count);
971 /* Note: _Columns table doesn't have non-persistent data */
973 /* if maxcount is non-zero, assume it's exactly right for this table */
974 memset( colinfo, 0, maxcount*sizeof(*colinfo) );
975 count = table->row_count;
976 for( i=0; i<count; i++ )
978 if( read_table_int(table->data, i, 0, db->bytes_per_strref) != table_id )
982 UINT id = read_table_int(table->data, i, table->colinfo[2].offset, db->bytes_per_strref);
983 UINT col = read_table_int(table->data, i, table->colinfo[1].offset, sizeof(USHORT)) - (1<<15);
985 /* check the column number is in range */
986 if (col<1 || col>maxcount)
988 ERR("column %d out of range\n", col);
992 /* check if this column was already set */
993 if (colinfo[ col - 1 ].number)
995 ERR("duplicate column %d\n", col);
999 colinfo[ col - 1 ].tablename = msi_makestring( db, table_id );
1000 colinfo[ col - 1 ].number = col;
1001 colinfo[ col - 1 ].colname = msi_makestring( db, id );
1002 colinfo[ col - 1 ].type = read_table_int(table->data, i,
1003 table->colinfo[3].offset,
1004 sizeof(USHORT)) - (1<<15);
1005 colinfo[ col - 1 ].offset = 0;
1006 colinfo[ col - 1 ].ref_count = 0;
1007 colinfo[ col - 1 ].hash_table = NULL;
1012 TRACE("%s has %d columns\n", debugstr_w(szTableName), n);
1014 if (colinfo && n != maxcount)
1016 ERR("missing column in table %s\n", debugstr_w(szTableName));
1017 msi_free_colinfo(colinfo, maxcount );
1018 return ERROR_FUNCTION_FAILED;
1021 table_calc_column_offsets( db, colinfo, n );
1024 return ERROR_SUCCESS;
1027 static void msi_update_table_columns( MSIDATABASE *db, LPCWSTR name )
1030 UINT size, offset, old_count;
1033 table = find_cached_table( db, name );
1034 old_count = table->col_count;
1035 msi_free( table->colinfo );
1036 table_get_column_info( db, name, &table->colinfo, &table->col_count );
1038 if (!table->col_count)
1041 size = msi_table_get_row_size( db, table->colinfo, table->col_count );
1042 offset = table->colinfo[table->col_count - 1].offset;
1044 for ( n = 0; n < table->row_count; n++ )
1046 table->data[n] = msi_realloc( table->data[n], size );
1047 if (old_count < table->col_count)
1048 memset( &table->data[n][offset], 0, size - offset );
1052 /* try to find the table name in the _Tables table */
1053 BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name )
1055 UINT r, table_id = 0, i, count;
1056 MSITABLE *table = NULL;
1058 if( !lstrcmpW( name, szTables ) )
1060 if( !lstrcmpW( name, szColumns ) )
1063 r = msi_string2idW( db->strings, name, &table_id );
1064 if( r != ERROR_SUCCESS )
1066 TRACE("Couldn't find id for %s\n", debugstr_w(name));
1070 r = get_table( db, szTables, &table );
1071 if( r != ERROR_SUCCESS )
1073 ERR("table %s not available\n", debugstr_w(szTables));
1077 count = table->row_count;
1078 for( i=0; i<count; i++ )
1079 if( table->data[ i ][ 0 ] == table_id )
1082 count = table->nonpersistent_row_count;
1083 for( i=0; i<count; i++ )
1084 if( table->nonpersistent_data[ i ][ 0 ] == table_id )
1090 /* below is the query interface to a table */
1092 typedef struct tagMSITABLEVIEW
1097 MSICOLUMNINFO *columns;
1098 MSIORDERINFO *order;
1104 static UINT TABLE_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
1106 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1111 return ERROR_INVALID_PARAMETER;
1113 if( (col==0) || (col>tv->num_cols) )
1114 return ERROR_INVALID_PARAMETER;
1116 /* how many rows are there ? */
1117 if( row >= tv->table->row_count + tv->table->nonpersistent_row_count )
1118 return ERROR_NO_MORE_ITEMS;
1120 if( tv->columns[col-1].offset >= tv->row_size )
1122 ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1123 ERR("%p %p\n", tv, tv->columns );
1124 return ERROR_FUNCTION_FAILED;
1128 row = tv->order->reorder[row];
1130 if (row >= tv->table->row_count)
1132 row -= tv->table->row_count;
1133 data = tv->table->nonpersistent_data;
1136 data = tv->table->data;
1138 n = bytes_per_column( tv->db, &tv->columns[col-1] );
1139 if (n != 2 && n != 3 && n != 4)
1141 ERR("oops! what is %d bytes per column?\n", n );
1142 return ERROR_FUNCTION_FAILED;
1145 offset = tv->columns[col-1].offset;
1146 *val = read_table_int(data, row, offset, n);
1148 /* TRACE("Data [%d][%d] = %d\n", row, col, *val ); */
1150 return ERROR_SUCCESS;
1154 * We need a special case for streams, as we need to reference column with
1155 * the name of the stream in the same table, and the table name
1156 * which may not be available at higher levels of the query
1158 static UINT TABLE_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStream **stm )
1160 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1161 UINT ival = 0, refcol = 0, r;
1165 static const WCHAR szDot[] = { '.', 0 };
1168 if( !view->ops->fetch_int )
1169 return ERROR_INVALID_PARAMETER;
1172 * The column marked with the type stream data seems to have a single number
1173 * which references the column containing the name of the stream data
1175 * Fetch the column to reference first.
1177 r = view->ops->fetch_int( view, row, col, &ival );
1178 if( r != ERROR_SUCCESS )
1181 /* check the column value is in range */
1182 if (ival > tv->num_cols || ival == col)
1184 ERR("bad column ref (%u) for stream\n", ival);
1185 return ERROR_FUNCTION_FAILED;
1188 if ( tv->columns[ival - 1].type & MSITYPE_STRING )
1190 /* now get the column with the name of the stream */
1191 r = view->ops->fetch_int( view, row, ival, &refcol );
1192 if ( r != ERROR_SUCCESS )
1195 /* lookup the string value from the string table */
1196 sval = msi_string_lookup_id( tv->db->strings, refcol );
1198 return ERROR_INVALID_PARAMETER;
1202 static const WCHAR fmt[] = { '%','d',0 };
1203 sprintfW( number, fmt, ival );
1207 len = lstrlenW( tv->name ) + 2 + lstrlenW( sval );
1208 full_name = msi_alloc( len*sizeof(WCHAR) );
1209 lstrcpyW( full_name, tv->name );
1210 lstrcatW( full_name, szDot );
1211 lstrcatW( full_name, sval );
1213 r = db_get_raw_stream( tv->db, full_name, stm );
1215 ERR("fetching stream %s, error = %d\n",debugstr_w(full_name), r);
1216 msi_free( full_name );
1221 static UINT TABLE_set_int( MSITABLEVIEW *tv, UINT row, UINT col, UINT val )
1227 return ERROR_INVALID_PARAMETER;
1229 if( (col==0) || (col>tv->num_cols) )
1230 return ERROR_INVALID_PARAMETER;
1232 if( row >= tv->table->row_count + tv->table->nonpersistent_row_count )
1233 return ERROR_INVALID_PARAMETER;
1235 if( tv->columns[col-1].offset >= tv->row_size )
1237 ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1238 ERR("%p %p\n", tv, tv->columns );
1239 return ERROR_FUNCTION_FAILED;
1242 msi_free( tv->columns[col-1].hash_table );
1243 tv->columns[col-1].hash_table = NULL;
1245 if (row >= tv->table->row_count)
1247 row -= tv->table->row_count;
1248 data = tv->table->nonpersistent_data;
1251 data = tv->table->data;
1253 n = bytes_per_column( tv->db, &tv->columns[col-1] );
1254 if ( n != 2 && n != 3 && n != 4 )
1256 ERR("oops! what is %d bytes per column?\n", n );
1257 return ERROR_FUNCTION_FAILED;
1260 offset = tv->columns[col-1].offset;
1261 for ( i = 0; i < n; i++ )
1262 data[row][offset + i] = (val >> i * 8) & 0xff;
1264 return ERROR_SUCCESS;
1267 static UINT TABLE_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
1269 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1272 return ERROR_INVALID_PARAMETER;
1275 row = tv->order->reorder[row];
1277 return msi_view_get_row(tv->db, view, row, rec);
1280 static UINT TABLE_set_row( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask )
1282 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1283 UINT i, val, r = ERROR_SUCCESS;
1286 return ERROR_INVALID_PARAMETER;
1288 /* test if any of the mask bits are invalid */
1289 if ( mask >= (1<<tv->num_cols) )
1290 return ERROR_INVALID_PARAMETER;
1292 for ( i = 0; i < tv->num_cols; i++ )
1296 /* only update the fields specified in the mask */
1297 if ( !(mask&(1<<i)) )
1300 /* if row >= tv->table->row_count then it is a non-persistent row */
1301 persistent = tv->table->persistent && (row < tv->table->row_count);
1302 /* FIXME: should we allow updating keys? */
1305 if ( !MSI_RecordIsNull( rec, i + 1 ) )
1307 if ( MSITYPE_IS_BINARY(tv->columns[ i ].type) )
1309 val = 1; /* refers to the first key column */
1311 else if ( tv->columns[i].type & MSITYPE_STRING )
1313 LPCWSTR sval = MSI_RecordGetString( rec, i + 1 );
1316 r = msi_string2idW(tv->db->strings, sval, &ival);
1317 if (r == ERROR_SUCCESS)
1319 TABLE_fetch_int(&tv->view, row, i + 1, &x);
1324 val = msi_addstringW( tv->db->strings, 0, sval, -1, 1,
1325 persistent ? StringPersistent : StringNonPersistent );
1327 else if ( 2 == bytes_per_column( tv->db, &tv->columns[ i ] ) )
1329 val = 0x8000 + MSI_RecordGetInteger( rec, i + 1 );
1330 if ( val & 0xffff0000 )
1332 ERR("field %u value %d out of range\n", i+1, val - 0x8000 );
1333 return ERROR_FUNCTION_FAILED;
1338 INT ival = MSI_RecordGetInteger( rec, i + 1 );
1339 val = ival ^ 0x80000000;
1343 r = TABLE_set_int( tv, row, i+1, val );
1344 if ( r != ERROR_SUCCESS )
1350 static UINT table_create_new_row( struct tagMSIVIEW *view, UINT *num, BOOL temporary )
1352 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1358 TRACE("%p %s\n", view, temporary ? "TRUE" : "FALSE");
1361 return ERROR_INVALID_PARAMETER;
1363 row = msi_alloc_zero( tv->row_size );
1365 return ERROR_NOT_ENOUGH_MEMORY;
1369 row_count = &tv->table->nonpersistent_row_count;
1370 data_ptr = &tv->table->nonpersistent_data;
1371 *num = tv->table->row_count + tv->table->nonpersistent_row_count;
1375 row_count = &tv->table->row_count;
1376 data_ptr = &tv->table->data;
1377 *num = tv->table->row_count;
1380 sz = (*row_count + 1) * sizeof (BYTE*);
1382 p = msi_realloc( *data_ptr, sz );
1384 p = msi_alloc( sz );
1388 return ERROR_NOT_ENOUGH_MEMORY;
1392 (*data_ptr)[*row_count] = row;
1395 return ERROR_SUCCESS;
1398 static UINT TABLE_execute( struct tagMSIVIEW *view, MSIRECORD *record )
1400 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1402 TRACE("%p %p\n", tv, record);
1404 TRACE("There are %d columns\n", tv->num_cols );
1406 return ERROR_SUCCESS;
1409 static UINT TABLE_close( struct tagMSIVIEW *view )
1411 TRACE("%p\n", view );
1413 return ERROR_SUCCESS;
1416 static UINT TABLE_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols)
1418 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1420 TRACE("%p %p %p\n", view, rows, cols );
1423 *cols = tv->num_cols;
1427 return ERROR_INVALID_PARAMETER;
1428 *rows = tv->table->row_count + tv->table->nonpersistent_row_count;
1431 return ERROR_SUCCESS;
1434 static UINT TABLE_get_column_info( struct tagMSIVIEW *view,
1435 UINT n, LPWSTR *name, UINT *type )
1437 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1439 TRACE("%p %d %p %p\n", tv, n, name, type );
1441 if( ( n == 0 ) || ( n > tv->num_cols ) )
1442 return ERROR_INVALID_PARAMETER;
1446 *name = strdupW( tv->columns[n-1].colname );
1448 return ERROR_FUNCTION_FAILED;
1451 *type = tv->columns[n-1].type;
1453 return ERROR_SUCCESS;
1456 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row );
1458 static UINT table_validate_new( MSITABLEVIEW *tv, MSIRECORD *rec )
1462 /* check there's no null values where they're not allowed */
1463 for( i = 0; i < tv->num_cols; i++ )
1465 if ( tv->columns[i].type & MSITYPE_NULLABLE )
1468 if ( MSITYPE_IS_BINARY(tv->columns[i].type) )
1469 TRACE("skipping binary column\n");
1470 else if ( tv->columns[i].type & MSITYPE_STRING )
1474 str = MSI_RecordGetString( rec, i+1 );
1475 if (str == NULL || str[0] == 0)
1476 return ERROR_INVALID_DATA;
1482 n = MSI_RecordGetInteger( rec, i+1 );
1483 if (n == MSI_NULL_INTEGER)
1484 return ERROR_INVALID_DATA;
1488 /* check there's no duplicate keys */
1489 r = msi_table_find_row( tv, rec, &row );
1490 if (r == ERROR_SUCCESS)
1491 return ERROR_FUNCTION_FAILED;
1493 return ERROR_SUCCESS;
1496 static UINT TABLE_insert_row( struct tagMSIVIEW *view, MSIRECORD *rec, BOOL temporary )
1498 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1501 TRACE("%p %p %s\n", tv, rec, temporary ? "TRUE" : "FALSE" );
1503 /* check that the key is unique - can we find a matching row? */
1504 r = table_validate_new( tv, rec );
1505 if( r != ERROR_SUCCESS )
1506 return ERROR_FUNCTION_FAILED;
1508 r = table_create_new_row( view, &row, temporary );
1509 TRACE("insert_row returned %08x\n", r);
1510 if( r != ERROR_SUCCESS )
1513 return TABLE_set_row( view, row, rec, (1<<tv->num_cols) - 1 );
1516 static UINT TABLE_delete_row( struct tagMSIVIEW *view, UINT row )
1518 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1519 UINT r, num_rows, num_cols, i;
1522 TRACE("%p %d\n", tv, row);
1525 return ERROR_INVALID_PARAMETER;
1527 r = TABLE_get_dimensions( view, &num_rows, &num_cols );
1528 if ( r != ERROR_SUCCESS )
1531 if ( row >= num_rows )
1532 return ERROR_FUNCTION_FAILED;
1534 if ( row < tv->table->row_count )
1536 num_rows = tv->table->row_count;
1537 tv->table->row_count--;
1538 data = tv->table->data;
1542 num_rows = tv->table->nonpersistent_row_count;
1543 row -= tv->table->row_count;
1544 tv->table->nonpersistent_row_count--;
1545 data = tv->table->nonpersistent_data;
1548 /* reset the hash tables */
1549 for (i = 0; i < tv->num_cols; i++)
1551 msi_free( tv->columns[i].hash_table );
1552 tv->columns[i].hash_table = NULL;
1555 if ( row == num_rows - 1 )
1556 return ERROR_SUCCESS;
1558 for (i = row + 1; i < num_rows; i++)
1559 memcpy(data[i - 1], data[i], tv->row_size);
1561 return ERROR_SUCCESS;
1564 static UINT msi_table_update(struct tagMSIVIEW *view, MSIRECORD *rec, UINT row)
1566 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1569 /* FIXME: MsiViewFetch should set rec index 0 to some ID that
1570 * sets the fetched record apart from other records
1574 return ERROR_INVALID_PARAMETER;
1576 r = msi_table_find_row(tv, rec, &new_row);
1577 if (r != ERROR_SUCCESS)
1579 ERR("can't find row to modify\n");
1580 return ERROR_FUNCTION_FAILED;
1583 /* the row cannot be changed */
1584 if (row != new_row + 1)
1585 return ERROR_FUNCTION_FAILED;
1587 return TABLE_set_row(view, new_row, rec, (1 << tv->num_cols) - 1);
1590 static UINT modify_delete_row( struct tagMSIVIEW *view, MSIRECORD *rec )
1592 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
1595 r = msi_table_find_row(tv, rec, &row);
1596 if (r != ERROR_SUCCESS)
1599 return TABLE_delete_row(view, row);
1602 static UINT msi_refresh_record( struct tagMSIVIEW *view, MSIRECORD *rec, UINT row )
1607 r = TABLE_get_row(view, row - 1, &curr);
1608 if (r != ERROR_SUCCESS)
1611 count = MSI_RecordGetFieldCount(rec);
1612 for (i = 0; i < count; i++)
1613 MSI_RecordCopyField(curr, i + 1, rec, i + 1);
1615 msiobj_release(&curr->hdr);
1616 return ERROR_SUCCESS;
1619 static UINT TABLE_modify( struct tagMSIVIEW *view, MSIMODIFY eModifyMode,
1620 MSIRECORD *rec, UINT row)
1622 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1625 TRACE("%p %d %p\n", view, eModifyMode, rec );
1627 switch (eModifyMode)
1629 case MSIMODIFY_DELETE:
1630 r = modify_delete_row( view, rec );
1632 case MSIMODIFY_VALIDATE_NEW:
1633 r = table_validate_new( tv, rec );
1636 case MSIMODIFY_INSERT:
1637 r = table_validate_new( tv, rec );
1638 if (r != ERROR_SUCCESS)
1640 r = TABLE_insert_row( view, rec, FALSE );
1643 case MSIMODIFY_INSERT_TEMPORARY:
1644 r = table_validate_new( tv, rec );
1645 if (r != ERROR_SUCCESS)
1647 r = TABLE_insert_row( view, rec, TRUE );
1650 case MSIMODIFY_REFRESH:
1651 r = msi_refresh_record( view, rec, row );
1654 case MSIMODIFY_UPDATE:
1655 r = msi_table_update( view, rec, row );
1658 case MSIMODIFY_ASSIGN:
1659 case MSIMODIFY_REPLACE:
1660 case MSIMODIFY_MERGE:
1661 case MSIMODIFY_VALIDATE:
1662 case MSIMODIFY_VALIDATE_FIELD:
1663 case MSIMODIFY_VALIDATE_DELETE:
1664 FIXME("%p %d %p - mode not implemented\n", view, eModifyMode, rec );
1665 r = ERROR_CALL_NOT_IMPLEMENTED;
1669 r = ERROR_INVALID_DATA;
1675 static UINT TABLE_delete( struct tagMSIVIEW *view )
1677 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1679 TRACE("%p\n", view );
1686 msi_free( tv->order->reorder );
1687 msi_free( tv->order );
1693 return ERROR_SUCCESS;
1696 static UINT TABLE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
1697 UINT val, UINT *row, MSIITERHANDLE *handle )
1699 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1700 const MSICOLUMNHASHENTRY *entry;
1702 TRACE("%p, %d, %u, %p\n", view, col, val, *handle);
1705 return ERROR_INVALID_PARAMETER;
1707 if( (col==0) || (col > tv->num_cols) )
1708 return ERROR_INVALID_PARAMETER;
1710 if( !tv->columns[col-1].hash_table )
1713 UINT num_rows = tv->table->row_count + tv->table->nonpersistent_row_count;
1714 MSICOLUMNHASHENTRY **hash_table;
1715 MSICOLUMNHASHENTRY *new_entry;
1717 if( tv->columns[col-1].offset >= tv->row_size )
1719 ERR("Stuffed up %d >= %d\n", tv->columns[col-1].offset, tv->row_size );
1720 ERR("%p %p\n", tv, tv->columns );
1721 return ERROR_FUNCTION_FAILED;
1724 /* allocate contiguous memory for the table and its entries so we
1725 * don't have to do an expensive cleanup */
1726 hash_table = msi_alloc(MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*) +
1727 num_rows * sizeof(MSICOLUMNHASHENTRY));
1729 return ERROR_OUTOFMEMORY;
1731 memset(hash_table, 0, MSITABLE_HASH_TABLE_SIZE * sizeof(MSICOLUMNHASHENTRY*));
1732 tv->columns[col-1].hash_table = hash_table;
1734 new_entry = (MSICOLUMNHASHENTRY *)(hash_table + MSITABLE_HASH_TABLE_SIZE);
1736 for (i = 0; i < num_rows; i++, new_entry++)
1740 if (view->ops->fetch_int( view, i, col, &row_value ) != ERROR_SUCCESS)
1743 new_entry->next = NULL;
1744 new_entry->value = row_value;
1746 if (hash_table[row_value % MSITABLE_HASH_TABLE_SIZE])
1748 MSICOLUMNHASHENTRY *prev_entry = hash_table[row_value % MSITABLE_HASH_TABLE_SIZE];
1749 while (prev_entry->next)
1750 prev_entry = prev_entry->next;
1751 prev_entry->next = new_entry;
1754 hash_table[row_value % MSITABLE_HASH_TABLE_SIZE] = new_entry;
1759 entry = tv->columns[col-1].hash_table[val % MSITABLE_HASH_TABLE_SIZE];
1761 entry = (*handle)->next;
1763 while (entry && entry->value != val)
1764 entry = entry->next;
1768 return ERROR_NO_MORE_ITEMS;
1772 return ERROR_SUCCESS;
1775 static UINT TABLE_add_ref(struct tagMSIVIEW *view)
1777 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1780 TRACE("%p %d\n", view, tv->table->ref_count);
1782 for (i = 0; i < tv->table->col_count; i++)
1784 if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
1785 InterlockedIncrement(&tv->table->colinfo[i].ref_count);
1788 return InterlockedIncrement(&tv->table->ref_count);
1791 static UINT TABLE_remove_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number)
1793 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1794 MSIRECORD *rec = NULL;
1795 MSIVIEW *columns = NULL;
1798 rec = MSI_CreateRecord(2);
1800 return ERROR_OUTOFMEMORY;
1802 MSI_RecordSetStringW(rec, 1, table);
1803 MSI_RecordSetInteger(rec, 2, number);
1805 r = TABLE_CreateView(tv->db, szColumns, &columns);
1806 if (r != ERROR_SUCCESS)
1809 r = msi_table_find_row((MSITABLEVIEW *)columns, rec, &row);
1810 if (r != ERROR_SUCCESS)
1813 r = TABLE_delete_row(columns, row);
1814 if (r != ERROR_SUCCESS)
1817 msi_update_table_columns(tv->db, table);
1820 msiobj_release(&rec->hdr);
1821 if (columns) columns->ops->delete(columns);
1825 static UINT TABLE_release(struct tagMSIVIEW *view)
1827 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1828 INT ref = tv->table->ref_count;
1831 TRACE("%p %d\n", view, ref);
1833 for (i = 0; i < tv->table->col_count; i++)
1835 if (tv->table->colinfo[i].type & MSITYPE_TEMPORARY)
1837 ref = InterlockedDecrement(&tv->table->colinfo[i].ref_count);
1840 r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
1841 tv->table->colinfo[i].number);
1842 if (r != ERROR_SUCCESS)
1848 ref = InterlockedDecrement(&tv->table->ref_count);
1851 if (!tv->table->row_count)
1853 list_remove(&tv->table->entry);
1854 free_table(tv->table);
1862 static UINT TABLE_add_column(struct tagMSIVIEW *view, LPCWSTR table, UINT number,
1863 LPCWSTR column, UINT type, BOOL hold)
1865 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
1870 rec = MSI_CreateRecord(4);
1872 return ERROR_OUTOFMEMORY;
1874 MSI_RecordSetStringW(rec, 1, table);
1875 MSI_RecordSetInteger(rec, 2, number);
1876 MSI_RecordSetStringW(rec, 3, column);
1877 MSI_RecordSetInteger(rec, 4, type);
1879 r = TABLE_insert_row(&tv->view, rec, FALSE);
1880 if (r != ERROR_SUCCESS)
1883 msi_update_table_columns(tv->db, table);
1888 msitable = find_cached_table(tv->db, table);
1889 for (i = 0; i < msitable->col_count; i++)
1891 if (!lstrcmpW(msitable->colinfo[i].colname, column))
1893 InterlockedIncrement(&msitable->colinfo[i].ref_count);
1899 msiobj_release(&rec->hdr);
1903 static UINT order_add_column(struct tagMSIVIEW *view, MSIORDERINFO *order, LPCWSTR name)
1907 r = TABLE_get_dimensions(view, NULL, &count);
1908 if (r != ERROR_SUCCESS)
1911 if (order->num_cols >= count)
1912 return ERROR_FUNCTION_FAILED;
1914 r = VIEW_find_column(view, name, &n);
1915 if (r != ERROR_SUCCESS)
1918 order->cols[order->num_cols] = n;
1919 TRACE("Ordering by column %s (%d)\n", debugstr_w(name), n);
1923 return ERROR_SUCCESS;
1926 static UINT order_compare(struct tagMSIVIEW *view, MSIORDERINFO *order,
1927 UINT a, UINT b, UINT *swap)
1929 UINT r, i, a_val = 0, b_val = 0;
1932 for (i = 0; i < order->num_cols; i++)
1934 r = TABLE_fetch_int(view, a, order->cols[i], &a_val);
1935 if (r != ERROR_SUCCESS)
1938 r = TABLE_fetch_int(view, b, order->cols[i], &b_val);
1939 if (r != ERROR_SUCCESS)
1950 return ERROR_SUCCESS;
1953 static UINT order_mergesort(struct tagMSIVIEW *view, MSIORDERINFO *order,
1954 UINT left, UINT right)
1957 UINT swap = 0, center = (left + right) / 2;
1958 UINT *array = order->reorder;
1961 return ERROR_SUCCESS;
1963 /* sort the left half */
1964 r = order_mergesort(view, order, left, center);
1965 if (r != ERROR_SUCCESS)
1968 /* sort the right half */
1969 r = order_mergesort(view, order, center + 1, right);
1970 if (r != ERROR_SUCCESS)
1973 for (i = left, j = center + 1; (i <= center) && (j <= right); i++)
1975 r = order_compare(view, order, array[i], array[j], &swap);
1976 if (r != ERROR_SUCCESS)
1982 memmove(&array[i + 1], &array[i], (j - i) * sizeof(UINT));
1989 return ERROR_SUCCESS;
1992 static UINT order_verify(struct tagMSIVIEW *view, MSIORDERINFO *order, UINT num_rows)
1996 for (i = 1; i < num_rows; i++)
1998 r = order_compare(view, order, order->reorder[i - 1],
1999 order->reorder[i], &swap);
2000 if (r != ERROR_SUCCESS)
2006 ERR("Bad order! %d\n", i);
2007 return ERROR_FUNCTION_FAILED;
2010 return ERROR_SUCCESS;
2013 static UINT TABLE_sort(struct tagMSIVIEW *view, column_info *columns)
2015 MSITABLEVIEW *tv = (MSITABLEVIEW *)view;
2016 MSIORDERINFO *order;
2021 TRACE("sorting table %s\n", debugstr_w(tv->name));
2023 r = TABLE_get_dimensions(view, &rows, &cols);
2024 if (r != ERROR_SUCCESS)
2028 return ERROR_SUCCESS;
2030 order = msi_alloc_zero(sizeof(MSIORDERINFO) + sizeof(UINT) * cols);
2032 return ERROR_OUTOFMEMORY;
2034 for (ptr = columns; ptr; ptr = ptr->next)
2035 order_add_column(view, order, ptr->column);
2037 order->reorder = msi_alloc(rows * sizeof(UINT));
2038 if (!order->reorder)
2039 return ERROR_OUTOFMEMORY;
2041 for (i = 0; i < rows; i++)
2042 order->reorder[i] = i;
2044 r = order_mergesort(view, order, 0, rows - 1);
2045 if (r != ERROR_SUCCESS)
2048 r = order_verify(view, order, rows);
2049 if (r != ERROR_SUCCESS)
2054 return ERROR_SUCCESS;
2057 static UINT TABLE_drop(struct tagMSIVIEW *view)
2059 MSITABLEVIEW *tv = (MSITABLEVIEW*)view;
2060 MSIVIEW *tables = NULL;
2061 MSIRECORD *rec = NULL;
2065 TRACE("dropping table %s\n", debugstr_w(tv->name));
2067 for (i = tv->table->col_count - 1; i >= 0; i--)
2069 r = TABLE_remove_column(view, tv->table->colinfo[i].tablename,
2070 tv->table->colinfo[i].number);
2071 if (r != ERROR_SUCCESS)
2075 rec = MSI_CreateRecord(1);
2077 return ERROR_OUTOFMEMORY;
2079 MSI_RecordSetStringW(rec, 1, tv->name);
2081 r = TABLE_CreateView(tv->db, szTables, &tables);
2082 if (r != ERROR_SUCCESS)
2085 r = msi_table_find_row((MSITABLEVIEW *)tables, rec, &row);
2086 if (r != ERROR_SUCCESS)
2089 r = TABLE_delete_row(tables, row);
2090 if (r != ERROR_SUCCESS)
2093 list_remove(&tv->table->entry);
2094 free_table(tv->table);
2098 msiobj_release(&rec->hdr);
2099 tables->ops->delete(tables);
2104 static const MSIVIEWOPS table_ops =
2114 TABLE_get_dimensions,
2115 TABLE_get_column_info,
2118 TABLE_find_matching_rows,
2122 TABLE_remove_column,
2127 UINT TABLE_CreateView( MSIDATABASE *db, LPCWSTR name, MSIVIEW **view )
2132 static const WCHAR Streams[] = {'_','S','t','r','e','a','m','s',0};
2133 static const WCHAR Storages[] = {'_','S','t','o','r','a','g','e','s',0};
2135 TRACE("%p %s %p\n", db, debugstr_w(name), view );
2137 if ( !lstrcmpW( name, Streams ) )
2138 return STREAMS_CreateView( db, view );
2139 else if ( !lstrcmpW( name, Storages ) )
2140 return STORAGES_CreateView( db, view );
2142 sz = sizeof *tv + lstrlenW(name)*sizeof name[0] ;
2143 tv = msi_alloc_zero( sz );
2145 return ERROR_FUNCTION_FAILED;
2147 r = get_table( db, name, &tv->table );
2148 if( r != ERROR_SUCCESS )
2151 WARN("table not found\n");
2155 TRACE("table %p found with %d columns\n", tv->table, tv->table->col_count);
2157 /* fill the structure */
2158 tv->view.ops = &table_ops;
2160 tv->columns = tv->table->colinfo;
2161 tv->num_cols = tv->table->col_count;
2162 tv->row_size = msi_table_get_row_size( db, tv->table->colinfo, tv->table->col_count );
2164 TRACE("%s one row is %d bytes\n", debugstr_w(name), tv->row_size );
2166 *view = (MSIVIEW*) tv;
2167 lstrcpyW( tv->name, name );
2169 return ERROR_SUCCESS;
2172 UINT MSI_CommitTables( MSIDATABASE *db )
2175 MSITABLE *table = NULL;
2179 r = msi_save_string_table( db->strings, db->storage );
2180 if( r != ERROR_SUCCESS )
2182 WARN("failed to save string table r=%08x\n",r);
2186 LIST_FOR_EACH_ENTRY( table, &db->tables, MSITABLE, entry )
2188 r = save_table( db, table );
2189 if( r != ERROR_SUCCESS )
2191 WARN("failed to save table %s (r=%08x)\n",
2192 debugstr_w(table->name), r);
2197 /* force everything to reload next time */
2198 free_cached_tables( db );
2200 return ERROR_SUCCESS;
2203 MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table )
2208 TRACE("%p %s\n", db, debugstr_w(table));
2211 return MSICONDITION_ERROR;
2213 r = get_table( db, table, &t );
2214 if (r != ERROR_SUCCESS)
2215 return MSICONDITION_NONE;
2218 return MSICONDITION_TRUE;
2220 return MSICONDITION_FALSE;
2223 static UINT read_raw_int(const BYTE *data, UINT col, UINT bytes)
2227 for (i = 0; i < bytes; i++)
2228 ret += (data[col + i] << i * 8);
2233 static MSIRECORD *msi_get_transform_record( const MSITABLEVIEW *tv, const string_table *st,
2234 const BYTE *rawdata, UINT bytes_per_strref )
2236 UINT i, val, ofs = 0;
2238 MSICOLUMNINFO *columns = tv->columns;
2241 mask = rawdata[0] | (rawdata[1] << 8);
2244 rec = MSI_CreateRecord( tv->num_cols );
2249 for( i=0; i<tv->num_cols; i++ )
2251 if ( (mask&1) && (i>=(mask>>8)) )
2253 /* all keys must be present */
2254 if ( (~mask&1) && (~columns[i].type & MSITYPE_KEY) && ((1<<i) & ~mask) )
2257 if( (columns[i].type & MSITYPE_STRING) &&
2258 ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2262 val = read_raw_int(rawdata, ofs, bytes_per_strref);
2263 sval = msi_string_lookup_id( st, val );
2264 MSI_RecordSetStringW( rec, i+1, sval );
2265 TRACE(" field %d [%s]\n", i+1, debugstr_w(sval));
2266 ofs += bytes_per_strref;
2270 UINT n = bytes_per_column( tv->db, &columns[i] );
2274 val = read_raw_int(rawdata, ofs, n);
2276 MSI_RecordSetInteger( rec, i+1, val^0x8000 );
2277 TRACE(" field %d [0x%04x]\n", i+1, val );
2280 val = read_raw_int(rawdata, ofs, n);
2282 MSI_RecordSetInteger( rec, i+1, val^0x80000000 );
2283 TRACE(" field %d [0x%08x]\n", i+1, val );
2286 ERR("oops - unknown column width %d\n", n);
2295 static void dump_record( MSIRECORD *rec )
2299 n = MSI_RecordGetFieldCount( rec );
2300 for( i=1; i<=n; i++ )
2302 LPCWSTR sval = MSI_RecordGetString( rec, i );
2304 if( MSI_RecordIsNull( rec, i ) )
2305 TRACE("row -> []\n");
2306 else if( (sval = MSI_RecordGetString( rec, i )) )
2307 TRACE("row -> [%s]\n", debugstr_w(sval));
2309 TRACE("row -> [0x%08x]\n", MSI_RecordGetInteger( rec, i ) );
2313 static void dump_table( const string_table *st, const USHORT *rawdata, UINT rawsize )
2318 for( i=0; i<(rawsize/2); i++ )
2320 sval = msi_string_lookup_id( st, rawdata[i] );
2321 MESSAGE(" %04x %s\n", rawdata[i], debugstr_w(sval) );
2325 static UINT* msi_record_to_row( const MSITABLEVIEW *tv, MSIRECORD *rec )
2330 data = msi_alloc( tv->num_cols *sizeof (UINT) );
2331 for( i=0; i<tv->num_cols; i++ )
2335 if ( ~tv->columns[i].type & MSITYPE_KEY )
2338 /* turn the transform column value into a row value */
2339 if ( ( tv->columns[i].type & MSITYPE_STRING ) &&
2340 ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2342 str = MSI_RecordGetString( rec, i+1 );
2343 r = msi_string2idW( tv->db->strings, str, &data[i] );
2345 /* if there's no matching string in the string table,
2346 these keys can't match any record, so fail now. */
2347 if( ERROR_SUCCESS != r )
2355 data[i] = MSI_RecordGetInteger( rec, i+1 );
2356 if ((tv->columns[i].type&0xff) == 2)
2359 data[i] += 0x80000000;
2365 static UINT msi_row_matches( MSITABLEVIEW *tv, UINT row, const UINT *data )
2367 UINT i, r, x, ret = ERROR_FUNCTION_FAILED;
2369 for( i=0; i<tv->num_cols; i++ )
2371 if ( ~tv->columns[i].type & MSITYPE_KEY )
2374 /* turn the transform column value into a row value */
2375 r = TABLE_fetch_int( &tv->view, row, i+1, &x );
2376 if ( r != ERROR_SUCCESS )
2378 ERR("TABLE_fetch_int shouldn't fail here\n");
2382 /* if this key matches, move to the next column */
2385 ret = ERROR_FUNCTION_FAILED;
2389 ret = ERROR_SUCCESS;
2395 static UINT msi_table_find_row( MSITABLEVIEW *tv, MSIRECORD *rec, UINT *row )
2397 UINT i, r = ERROR_FUNCTION_FAILED, *data;
2399 data = msi_record_to_row( tv, rec );
2402 for( i = 0; i < tv->table->row_count + tv->table->nonpersistent_row_count; i++ )
2404 r = msi_row_matches( tv, i, data );
2405 if( r == ERROR_SUCCESS )
2421 static UINT msi_table_load_transform( MSIDATABASE *db, IStorage *stg,
2422 string_table *st, TRANSFORMDATA *transform,
2423 UINT bytes_per_strref )
2426 BYTE *rawdata = NULL;
2427 MSITABLEVIEW *tv = NULL;
2428 UINT r, n, sz, i, mask;
2429 MSIRECORD *rec = NULL;
2435 return ERROR_SUCCESS;
2437 name = transform->name;
2440 TRACE("%p %p %p %s\n", db, stg, st, debugstr_w(name) );
2442 /* read the transform data */
2443 read_stream_data( stg, name, TRUE, &rawdata, &rawsize );
2446 TRACE("table %s empty\n", debugstr_w(name) );
2447 return ERROR_INVALID_TABLE;
2450 /* create a table view */
2451 r = TABLE_CreateView( db, name, (MSIVIEW**) &tv );
2452 if( r != ERROR_SUCCESS )
2455 r = tv->view.ops->execute( &tv->view, NULL );
2456 if( r != ERROR_SUCCESS )
2459 TRACE("name = %s columns = %u row_size = %u raw size = %u\n",
2460 debugstr_w(name), tv->num_cols, tv->row_size, rawsize );
2462 /* interpret the data */
2464 for( n=0; n < rawsize; )
2466 mask = rawdata[n] | (rawdata[n+1] << 8);
2471 * if the low bit is set, columns are continuous and
2472 * the number of columns is specified in the high byte
2475 for( i=0; i<tv->num_cols; i++ )
2477 if( (tv->columns[i].type & MSITYPE_STRING) &&
2478 ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2479 sz += bytes_per_strref;
2481 sz += bytes_per_column( tv->db, &tv->columns[i] );
2487 * If the low bit is not set, mask is a bitmask.
2488 * Excepting for key fields, which are always present,
2489 * each bit indicates that a field is present in the transform record.
2491 * mask == 0 is a special case ... only the keys will be present
2492 * and it means that this row should be deleted.
2495 for( i=0; i<tv->num_cols; i++ )
2497 if( (tv->columns[i].type & MSITYPE_KEY) || ((1<<i)&mask))
2499 if( (tv->columns[i].type & MSITYPE_STRING) &&
2500 ! MSITYPE_IS_BINARY(tv->columns[i].type) )
2501 sz += bytes_per_strref;
2503 sz += bytes_per_column( tv->db, &tv->columns[i] );
2508 /* check we didn't run of the end of the table */
2509 if ( (n+sz) > rawsize )
2512 dump_table( st, (USHORT *)rawdata, rawsize );
2516 rec = msi_get_transform_record( tv, st, &rawdata[n], bytes_per_strref );
2523 UINT number = MSI_NULL_INTEGER;
2525 TRACE("inserting record\n");
2527 if (!lstrcmpW(name, szColumns))
2529 MSI_RecordGetStringW( rec, 1, table, &sz );
2530 number = MSI_RecordGetInteger( rec, 2 );
2533 * Native msi seems writes nul into the Number (2nd) column of
2534 * the _Columns table, only when the columns are from a new table
2536 if ( number == MSI_NULL_INTEGER )
2538 /* reset the column number on a new table */
2539 if ( lstrcmpW(coltable, table) )
2542 lstrcpyW( coltable, table );
2545 /* fix nul column numbers */
2546 MSI_RecordSetInteger( rec, 2, ++colcol );
2550 r = TABLE_insert_row( &tv->view, rec, FALSE );
2551 if (r != ERROR_SUCCESS)
2552 ERR("insert row failed\n");
2554 if ( number != MSI_NULL_INTEGER && !lstrcmpW(name, szColumns) )
2555 msi_update_table_columns( db, table );
2561 r = msi_table_find_row( tv, rec, &row );
2562 if (r != ERROR_SUCCESS)
2563 ERR("no matching row to transform\n");
2566 TRACE("modifying row [%d]:\n", row);
2567 TABLE_set_row( &tv->view, row, rec, mask );
2571 TRACE("deleting row [%d]:\n", row);
2572 TABLE_delete_row( &tv->view, row );
2575 if( TRACE_ON(msidb) ) dump_record( rec );
2576 msiobj_release( &rec->hdr );
2583 /* no need to free the table, it's associated with the database */
2584 msi_free( rawdata );
2586 tv->view.ops->delete( &tv->view );
2588 return ERROR_SUCCESS;
2592 * msi_table_apply_transform
2594 * Enumerate the table transforms in a transform storage and apply each one.
2596 UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg )
2598 struct list transforms;
2599 IEnumSTATSTG *stgenum = NULL;
2600 TRANSFORMDATA *transform;
2601 TRANSFORMDATA *tables = NULL, *columns = NULL;
2604 string_table *strings;
2605 UINT ret = ERROR_FUNCTION_FAILED;
2606 UINT bytes_per_strref;
2608 TRACE("%p %p\n", db, stg );
2610 strings = msi_load_string_table( stg, &bytes_per_strref );
2614 r = IStorage_EnumElements( stg, 0, NULL, 0, &stgenum );
2618 list_init(&transforms);
2622 MSITABLEVIEW *tv = NULL;
2626 r = IEnumSTATSTG_Next( stgenum, 1, &stat, &count );
2627 if ( FAILED( r ) || !count )
2630 decode_streamname( stat.pwcsName, name );
2631 CoTaskMemFree( stat.pwcsName );
2632 if ( name[0] != 0x4840 )
2635 if ( !lstrcmpW( name+1, szStringPool ) ||
2636 !lstrcmpW( name+1, szStringData ) )
2639 transform = msi_alloc_zero( sizeof(TRANSFORMDATA) );
2643 list_add_tail( &transforms, &transform->entry );
2645 transform->name = strdupW( name + 1 );
2647 if ( !lstrcmpW( transform->name, szTables ) )
2649 else if (!lstrcmpW( transform->name, szColumns ) )
2650 columns = transform;
2652 TRACE("transform contains stream %s\n", debugstr_w(name));
2654 /* load the table */
2655 r = TABLE_CreateView( db, transform->name, (MSIVIEW**) &tv );
2656 if( r != ERROR_SUCCESS )
2659 r = tv->view.ops->execute( &tv->view, NULL );
2660 if( r != ERROR_SUCCESS )
2662 tv->view.ops->delete( &tv->view );
2666 tv->view.ops->delete( &tv->view );
2670 * Apply _Tables and _Columns transforms first so that
2671 * the table metadata is correct, and empty tables exist.
2673 ret = msi_table_load_transform( db, stg, strings, tables, bytes_per_strref );
2674 if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2677 ret = msi_table_load_transform( db, stg, strings, columns, bytes_per_strref );
2678 if (ret != ERROR_SUCCESS && ret != ERROR_INVALID_TABLE)
2681 ret = ERROR_SUCCESS;
2683 while ( !list_empty( &transforms ) )
2685 transform = LIST_ENTRY( list_head( &transforms ), TRANSFORMDATA, entry );
2687 if ( lstrcmpW( transform->name, szColumns ) &&
2688 lstrcmpW( transform->name, szTables ) &&
2689 ret == ERROR_SUCCESS )
2691 ret = msi_table_load_transform( db, stg, strings, transform, bytes_per_strref );
2694 list_remove( &transform->entry );
2695 msi_free( transform->name );
2696 msi_free( transform );
2699 if ( ret == ERROR_SUCCESS )
2700 append_storage_to_db( db, stg );
2704 IEnumSTATSTG_Release( stgenum );
2706 msi_destroy_stringtable( strings );
2711 void append_storage_to_db( MSIDATABASE *db, IStorage *stg )
2715 t = msi_alloc( sizeof *t );
2717 IStorage_AddRef( stg );
2718 list_add_tail( &db->transforms, &t->entry );
2721 void msi_free_transforms( MSIDATABASE *db )
2723 while( !list_empty( &db->transforms ) )
2725 MSITRANSFORM *t = LIST_ENTRY( list_head( &db->transforms ),
2726 MSITRANSFORM, entry );
2727 list_remove( &t->entry );
2728 IStorage_Release( t->stg );