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 /* These tables are written into (the .hash_table part).
105 * Do not mark them const.
107 static MSICOLUMNINFO _Columns_cols
[4] = {
108 { szColumns
, 1, szTable
, MSITYPE_VALID
| MSITYPE_STRING
| MSITYPE_KEY
| 64, 0, 0, NULL
},
109 { szColumns
, 2, szNumber
, MSITYPE_VALID
| MSITYPE_KEY
| 2, 2, 0, NULL
},
110 { szColumns
, 3, szName
, MSITYPE_VALID
| MSITYPE_STRING
| 64, 4, 0, NULL
},
111 { szColumns
, 4, szType
, MSITYPE_VALID
| 2, 6, 0, NULL
},
113 static MSICOLUMNINFO _Tables_cols
[1] = {
114 { szTables
, 1, szName
, MSITYPE_VALID
| MSITYPE_STRING
| 64, 0, 0, NULL
},
117 #define MAX_STREAM_NAME 0x1f
119 static UINT
table_get_column_info( MSIDATABASE
*db
, LPCWSTR name
,
120 MSICOLUMNINFO
**pcols
, UINT
*pcount
);
121 static void table_calc_column_offsets( MSICOLUMNINFO
*colinfo
, DWORD count
);
122 static UINT
get_tablecolumns( MSIDATABASE
*db
,
123 LPCWSTR szTableName
, MSICOLUMNINFO
*colinfo
, UINT
*sz
);
124 static void msi_free_colinfo( MSICOLUMNINFO
*colinfo
, UINT count
);
127 void msi_table_set_strref(UINT bytes_per_strref
)
129 _Columns_cols
[0].offset
= 0;
130 _Columns_cols
[1].offset
= bytes_per_strref
;
131 _Columns_cols
[2].offset
= _Columns_cols
[1].offset
+ sizeof(USHORT
);
132 _Columns_cols
[3].offset
= _Columns_cols
[2].offset
+ bytes_per_strref
;
135 static inline UINT
bytes_per_column( const MSICOLUMNINFO
*col
)
137 if( MSITYPE_IS_BINARY(col
->type
) )
139 if( col
->type
& MSITYPE_STRING
)
140 return _Columns_cols
[1].offset
;
141 if( (col
->type
& 0xff) > 4 )
142 ERR("Invalid column size!\n");
143 return col
->type
& 0xff;
146 static int utf2mime(int x
)
148 if( (x
>='0') && (x
<='9') )
150 if( (x
>='A') && (x
<='Z') )
152 if( (x
>='a') && (x
<='z') )
161 LPWSTR
encode_streamname(BOOL bTable
, LPCWSTR in
)
163 DWORD count
= MAX_STREAM_NAME
;
168 count
= lstrlenW( in
)+2;
169 out
= msi_alloc( count
*sizeof(WCHAR
) );
185 if( ( ch
< 0x80 ) && ( utf2mime(ch
) >= 0 ) )
187 ch
= utf2mime(ch
) + 0x4800;
189 if( next
&& (next
<0x80) )
191 next
= utf2mime(next
);
202 ERR("Failed to encode stream name (%s)\n",debugstr_w(in
));
207 static int mime2utf(int x
)
214 return x
- 10 - 26 + 'a';
215 if( x
== (10+26+26) )
220 BOOL
decode_streamname(LPCWSTR in
, LPWSTR out
)
225 while ( (ch
= *in
++) )
227 if( (ch
>= 0x3800 ) && (ch
< 0x4840 ) )
230 ch
= mime2utf(ch
-0x4800);
234 *out
++ = mime2utf(ch
&0x3f);
236 ch
= mime2utf((ch
>>6)&0x3f);
246 void enum_stream_names( IStorage
*stg
)
248 IEnumSTATSTG
*stgenum
= NULL
;
254 r
= IStorage_EnumElements( stg
, 0, NULL
, 0, &stgenum
);
262 r
= IEnumSTATSTG_Next( stgenum
, 1, &stat
, &count
);
263 if( FAILED( r
) || !count
)
265 decode_streamname( stat
.pwcsName
, name
);
266 TRACE("stream %2d -> %s %s\n", n
,
267 debugstr_w(stat
.pwcsName
), debugstr_w(name
) );
268 CoTaskMemFree( stat
.pwcsName
);
272 IEnumSTATSTG_Release( stgenum
);
275 UINT
read_stream_data( IStorage
*stg
, LPCWSTR stname
, BOOL table
,
276 BYTE
**pdata
, UINT
*psz
)
279 UINT ret
= ERROR_FUNCTION_FAILED
;
286 encname
= encode_streamname(table
, stname
);
288 TRACE("%s -> %s\n",debugstr_w(stname
),debugstr_w(encname
));
290 r
= IStorage_OpenStream(stg
, encname
, NULL
,
291 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, &stm
);
295 WARN("open stream failed r = %08x - empty table?\n", r
);
299 r
= IStream_Stat(stm
, &stat
, STATFLAG_NONAME
);
302 WARN("open stream failed r = %08x!\n", r
);
306 if( stat
.cbSize
.QuadPart
>> 32 )
312 sz
= stat
.cbSize
.QuadPart
;
313 data
= msi_alloc( sz
);
316 WARN("couldn't allocate memory r=%08x!\n", r
);
317 ret
= ERROR_NOT_ENOUGH_MEMORY
;
321 r
= IStream_Read(stm
, data
, sz
, &count
);
322 if( FAILED( r
) || ( count
!= sz
) )
325 WARN("read stream failed r = %08x!\n", r
);
334 IStream_Release( stm
);
339 UINT
db_get_raw_stream( MSIDATABASE
*db
, LPCWSTR stname
, IStream
**stm
)
344 encname
= encode_streamname(FALSE
, stname
);
346 TRACE("%s -> %s\n",debugstr_w(stname
),debugstr_w(encname
));
348 r
= IStorage_OpenStream(db
->storage
, encname
, NULL
,
349 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, stm
);
352 MSITRANSFORM
*transform
;
354 LIST_FOR_EACH_ENTRY( transform
, &db
->transforms
, MSITRANSFORM
, entry
)
356 TRACE("looking for %s in transform storage\n", debugstr_w(stname
) );
357 r
= IStorage_OpenStream( transform
->stg
, encname
, NULL
,
358 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, stm
);
366 return SUCCEEDED(r
) ? ERROR_SUCCESS
: ERROR_FUNCTION_FAILED
;
369 UINT
read_raw_stream_data( MSIDATABASE
*db
, LPCWSTR stname
,
370 USHORT
**pdata
, UINT
*psz
)
373 UINT ret
= ERROR_FUNCTION_FAILED
;
379 r
= db_get_raw_stream( db
, stname
, &stm
);
380 if( r
!= ERROR_SUCCESS
)
382 r
= IStream_Stat(stm
, &stat
, STATFLAG_NONAME
);
385 WARN("open stream failed r = %08x!\n", r
);
389 if( stat
.cbSize
.QuadPart
>> 32 )
395 sz
= stat
.cbSize
.QuadPart
;
396 data
= msi_alloc( sz
);
399 WARN("couldn't allocate memory r=%08x!\n", r
);
400 ret
= ERROR_NOT_ENOUGH_MEMORY
;
404 r
= IStream_Read(stm
, data
, sz
, &count
);
405 if( FAILED( r
) || ( count
!= sz
) )
408 WARN("read stream failed r = %08x!\n", r
);
417 IStream_Release( stm
);
422 UINT
write_stream_data( IStorage
*stg
, LPCWSTR stname
,
423 LPCVOID data
, UINT sz
, BOOL bTable
)
426 UINT ret
= ERROR_FUNCTION_FAILED
;
433 encname
= encode_streamname(bTable
, stname
);
434 r
= IStorage_OpenStream( stg
, encname
, NULL
,
435 STGM_WRITE
| STGM_SHARE_EXCLUSIVE
, 0, &stm
);
438 r
= IStorage_CreateStream( stg
, encname
,
439 STGM_WRITE
| STGM_SHARE_EXCLUSIVE
, 0, 0, &stm
);
444 WARN("open stream failed r = %08x\n", r
);
449 r
= IStream_SetSize( stm
, size
);
452 WARN("Failed to SetSize\n");
457 r
= IStream_Seek( stm
, pos
, STREAM_SEEK_SET
, NULL
);
460 WARN("Failed to Seek\n");
466 r
= IStream_Write(stm
, data
, sz
, &count
);
467 if( FAILED( r
) || ( count
!= sz
) )
469 WARN("Failed to Write\n");
477 IStream_Release( stm
);
482 static void free_table( MSITABLE
*table
)
485 for( i
=0; i
<table
->row_count
; i
++ )
486 msi_free( table
->data
[i
] );
487 msi_free( table
->data
);
488 for( i
=0; i
<table
->nonpersistent_row_count
; i
++ )
489 msi_free( table
->nonpersistent_data
[i
] );
490 msi_free( table
->nonpersistent_data
);
491 if( (table
->colinfo
!= _Tables_cols
) &&
492 (table
->colinfo
!= _Columns_cols
) )
494 msi_free_colinfo( table
->colinfo
, table
->col_count
);
495 msi_free( table
->colinfo
);
500 static UINT
msi_table_get_row_size( const MSICOLUMNINFO
*cols
, UINT count
)
502 const MSICOLUMNINFO
*last_col
= &cols
[count
-1];
505 return last_col
->offset
+ bytes_per_column( last_col
);
508 /* add this table to the list of cached tables in the database */
509 static UINT
read_table_from_storage( MSITABLE
*t
, IStorage
*stg
)
511 BYTE
*rawdata
= NULL
;
512 UINT rawsize
= 0, i
, j
, row_size
= 0;
514 TRACE("%s\n",debugstr_w(t
->name
));
516 row_size
= msi_table_get_row_size( t
->colinfo
, t
->col_count
);
518 /* if we can't read the table, just assume that it's empty */
519 read_stream_data( stg
, t
->name
, TRUE
, &rawdata
, &rawsize
);
521 return ERROR_SUCCESS
;
523 TRACE("Read %d bytes\n", rawsize
);
525 if( rawsize
% row_size
)
527 WARN("Table size is invalid %d/%d\n", rawsize
, row_size
);
531 t
->row_count
= rawsize
/ row_size
;
532 t
->data
= msi_alloc_zero( t
->row_count
* sizeof (USHORT
*) );
536 /* transpose all the data */
537 TRACE("Transposing data from %d rows\n", t
->row_count
);
538 for( i
=0; i
<t
->row_count
; i
++ )
540 t
->data
[i
] = msi_alloc( row_size
);
544 for( j
=0; j
<t
->col_count
; j
++ )
546 UINT ofs
= t
->colinfo
[j
].offset
;
547 UINT n
= bytes_per_column( &t
->colinfo
[j
] );
550 if ( n
!= 2 && n
!= 3 && n
!= 4 )
552 ERR("oops - unknown column width %d\n", n
);
556 for ( k
= 0; k
< n
; k
++ )
557 t
->data
[i
][ofs
+ k
] = rawdata
[ofs
*t
->row_count
+ i
* n
+ k
];
562 return ERROR_SUCCESS
;
565 return ERROR_FUNCTION_FAILED
;
568 void free_cached_tables( MSIDATABASE
*db
)
570 while( !list_empty( &db
->tables
) )
572 MSITABLE
*t
= LIST_ENTRY( list_head( &db
->tables
), MSITABLE
, entry
);
574 list_remove( &t
->entry
);
579 static MSITABLE
*find_cached_table( MSIDATABASE
*db
, LPCWSTR name
)
583 LIST_FOR_EACH_ENTRY( t
, &db
->tables
, MSITABLE
, entry
)
584 if( !lstrcmpW( name
, t
->name
) )
590 static UINT
table_get_column_info( MSIDATABASE
*db
, LPCWSTR name
, MSICOLUMNINFO
**pcols
, UINT
*pcount
)
592 UINT r
, column_count
= 0;
593 MSICOLUMNINFO
*columns
;
595 /* get the number of columns in this table */
597 r
= get_tablecolumns( db
, name
, NULL
, &column_count
);
598 if( r
!= ERROR_SUCCESS
)
601 /* if there's no columns, there's no table */
602 if( column_count
== 0 )
603 return ERROR_INVALID_PARAMETER
;
605 TRACE("Table %s found\n", debugstr_w(name
) );
607 columns
= msi_alloc( column_count
*sizeof (MSICOLUMNINFO
) );
609 return ERROR_FUNCTION_FAILED
;
611 r
= get_tablecolumns( db
, name
, columns
, &column_count
);
612 if( r
!= ERROR_SUCCESS
)
615 return ERROR_FUNCTION_FAILED
;
619 *pcount
= column_count
;
624 UINT
msi_create_table( MSIDATABASE
*db
, LPCWSTR name
, column_info
*col_info
,
625 BOOL persistent
, MSITABLE
**table_ret
)
629 MSIRECORD
*rec
= NULL
;
634 /* only add tables that don't exist already */
635 if( TABLE_Exists(db
, name
) )
637 WARN("table %s exists\n", debugstr_w(name
));
638 return ERROR_BAD_QUERY_SYNTAX
;
641 table
= msi_alloc( sizeof (MSITABLE
) + lstrlenW(name
)*sizeof (WCHAR
) );
643 return ERROR_FUNCTION_FAILED
;
645 table
->ref_count
= 1;
646 table
->row_count
= 0;
648 table
->nonpersistent_row_count
= 0;
649 table
->nonpersistent_data
= NULL
;
650 table
->colinfo
= NULL
;
651 table
->col_count
= 0;
652 table
->persistent
= persistent
;
653 lstrcpyW( table
->name
, name
);
655 for( col
= col_info
; col
; col
= col
->next
)
658 table
->colinfo
= msi_alloc( table
->col_count
* sizeof(MSICOLUMNINFO
) );
662 return ERROR_FUNCTION_FAILED
;
665 for( i
= 0, col
= col_info
; col
; i
++, col
= col
->next
)
667 table
->colinfo
[ i
].tablename
= strdupW( col
->table
);
668 table
->colinfo
[ i
].number
= i
+ 1;
669 table
->colinfo
[ i
].colname
= strdupW( col
->column
);
670 table
->colinfo
[ i
].type
= col
->type
;
671 table
->colinfo
[ i
].offset
= 0;
672 table
->colinfo
[ i
].ref_count
= 0;
673 table
->colinfo
[ i
].hash_table
= NULL
;
675 table_calc_column_offsets( table
->colinfo
, table
->col_count
);
677 r
= TABLE_CreateView( db
, szTables
, &tv
);
678 TRACE("CreateView returned %x\n", r
);
685 r
= tv
->ops
->execute( tv
, 0 );
686 TRACE("tv execute returned %x\n", r
);
690 rec
= MSI_CreateRecord( 1 );
694 r
= MSI_RecordSetStringW( rec
, 1, name
);
698 r
= tv
->ops
->insert_row( tv
, rec
, !persistent
);
699 TRACE("insert_row returned %x\n", r
);
703 tv
->ops
->delete( tv
);
706 msiobj_release( &rec
->hdr
);
711 /* add each column to the _Columns table */
712 r
= TABLE_CreateView( db
, szColumns
, &tv
);
716 r
= tv
->ops
->execute( tv
, 0 );
717 TRACE("tv execute returned %x\n", r
);
721 rec
= MSI_CreateRecord( 4 );
725 r
= MSI_RecordSetStringW( rec
, 1, name
);
730 * need to set the table, column number, col name and type
731 * for each column we enter in the table
734 for( col
= col_info
; col
; col
= col
->next
)
736 r
= MSI_RecordSetInteger( rec
, 2, nField
);
740 r
= MSI_RecordSetStringW( rec
, 3, col
->column
);
744 r
= MSI_RecordSetInteger( rec
, 4, col
->type
);
748 r
= tv
->ops
->insert_row( tv
, rec
, FALSE
);
760 msiobj_release( &rec
->hdr
);
761 /* FIXME: remove values from the string table on error */
763 tv
->ops
->delete( tv
);
765 if (r
== ERROR_SUCCESS
)
767 list_add_head( &db
->tables
, &table
->entry
);
776 static UINT
get_table( MSIDATABASE
*db
, LPCWSTR name
, MSITABLE
**table_ret
)
781 /* first, see if the table is cached */
782 table
= find_cached_table( db
, name
);
786 return ERROR_SUCCESS
;
789 /* nonexistent tables should be interpreted as empty tables */
790 table
= msi_alloc( sizeof (MSITABLE
) + lstrlenW(name
)*sizeof (WCHAR
) );
792 return ERROR_FUNCTION_FAILED
;
794 table
->row_count
= 0;
796 table
->nonpersistent_row_count
= 0;
797 table
->nonpersistent_data
= NULL
;
798 table
->colinfo
= NULL
;
799 table
->col_count
= 0;
800 table
->persistent
= TRUE
;
801 lstrcpyW( table
->name
, name
);
803 /* these two tables are special - we know the column types already */
804 if( !lstrcmpW( name
, szColumns
) )
806 table
->colinfo
= _Columns_cols
;
807 table
->col_count
= sizeof(_Columns_cols
)/sizeof(_Columns_cols
[0]);
809 else if( !lstrcmpW( name
, szTables
) )
811 table
->colinfo
= _Tables_cols
;
812 table
->col_count
= sizeof(_Tables_cols
)/sizeof(_Tables_cols
[0]);
816 r
= table_get_column_info( db
, name
, &table
->colinfo
, &table
->col_count
);
817 if (r
!= ERROR_SUCCESS
)
819 free_table ( table
);
824 r
= read_table_from_storage( table
, db
->storage
);
825 if( r
!= ERROR_SUCCESS
)
831 list_add_head( &db
->tables
, &table
->entry
);
833 return ERROR_SUCCESS
;
836 static UINT
save_table( MSIDATABASE
*db
, const MSITABLE
*t
)
838 BYTE
*rawdata
= NULL
, *p
;
839 UINT rawsize
, r
, i
, j
, row_size
;
841 /* Nothing to do for non-persistent tables */
843 return ERROR_SUCCESS
;
845 TRACE("Saving %s\n", debugstr_w( t
->name
) );
847 row_size
= msi_table_get_row_size( t
->colinfo
, t
->col_count
);
849 rawsize
= t
->row_count
* row_size
;
850 rawdata
= msi_alloc_zero( rawsize
);
853 r
= ERROR_NOT_ENOUGH_MEMORY
;
858 for( i
=0; i
<t
->col_count
; i
++ )
860 for( j
=0; j
<t
->row_count
; j
++ )
862 UINT offset
= t
->colinfo
[i
].offset
;
864 *p
++ = t
->data
[j
][offset
];
865 *p
++ = t
->data
[j
][offset
+ 1];
866 if( 4 == bytes_per_column( &t
->colinfo
[i
] ) )
868 *p
++ = t
->data
[j
][offset
+ 2];
869 *p
++ = t
->data
[j
][offset
+ 3];
874 TRACE("writing %d bytes\n", rawsize
);
875 r
= write_stream_data( db
->storage
, t
->name
, rawdata
, rawsize
, TRUE
);
883 static void table_calc_column_offsets( MSICOLUMNINFO
*colinfo
, DWORD count
)
887 for( i
=0; colinfo
&& (i
<count
); i
++ )
889 assert( (i
+1) == colinfo
[ i
].number
);
891 colinfo
[i
].offset
= colinfo
[ i
- 1 ].offset
892 + bytes_per_column( &colinfo
[ i
- 1 ] );
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( LPCWSTR name
, MSICOLUMNINFO
*colinfo
, UINT
*sz
)
903 const MSICOLUMNINFO
*p
;
906 TRACE("%s\n", debugstr_w(name
));
908 if (!lstrcmpW( name
, szTables
))
913 else if (!lstrcmpW( name
, szColumns
))
919 return ERROR_FUNCTION_FAILED
;
921 /* duplicate the string data so we can free it in msi_free_colinfo */
924 if (colinfo
&& (i
< *sz
) )
927 colinfo
[i
].tablename
= strdupW( p
[i
].tablename
);
928 colinfo
[i
].colname
= strdupW( p
[i
].colname
);
930 if( colinfo
&& (i
>= *sz
) )
933 table_calc_column_offsets( colinfo
, n
);
935 return ERROR_SUCCESS
;
938 static void msi_free_colinfo( MSICOLUMNINFO
*colinfo
, UINT count
)
942 for( i
=0; i
<count
; i
++ )
944 msi_free( colinfo
[i
].tablename
);
945 msi_free( colinfo
[i
].colname
);
946 msi_free( colinfo
[i
].hash_table
);
950 static LPWSTR
msi_makestring( const MSIDATABASE
*db
, UINT stringid
)
952 return strdupW(msi_string_lookup_id( db
->strings
, stringid
));
955 static UINT
read_table_int(BYTE
*const *data
, UINT row
, UINT col
, UINT bytes
)
959 for (i
= 0; i
< bytes
; i
++)
960 ret
+= (data
[row
][col
+ i
] << i
* 8);
965 static UINT
get_tablecolumns( MSIDATABASE
*db
,
966 LPCWSTR szTableName
, MSICOLUMNINFO
*colinfo
, UINT
*sz
)
968 UINT r
, i
, n
=0, table_id
, count
, maxcount
= *sz
;
969 MSITABLE
*table
= NULL
;
971 TRACE("%s\n", debugstr_w(szTableName
));
973 /* first check if there is a default table with that name */
974 r
= get_defaulttablecolumns( szTableName
, colinfo
, sz
);
975 if( ( r
== ERROR_SUCCESS
) && *sz
)
978 r
= get_table( db
, szColumns
, &table
);
979 if( r
!= ERROR_SUCCESS
)
981 ERR("couldn't load _Columns table\n");
982 return ERROR_FUNCTION_FAILED
;
985 /* convert table and column names to IDs from the string table */
986 r
= msi_string2idW( db
->strings
, szTableName
, &table_id
);
987 if( r
!= ERROR_SUCCESS
)
989 WARN("Couldn't find id for %s\n", debugstr_w(szTableName
));
993 TRACE("Table id is %d, row count is %d\n", table_id
, table
->row_count
);
995 /* Note: _Columns table doesn't have non-persistent data */
997 /* if maxcount is non-zero, assume it's exactly right for this table */
998 memset( colinfo
, 0, maxcount
*sizeof(*colinfo
) );
999 count
= table
->row_count
;
1000 for( i
=0; i
<count
; i
++ )
1002 if( read_table_int(table
->data
, i
, 0, db
->bytes_per_strref
) != table_id
)
1006 UINT id
= read_table_int(table
->data
, i
, _Columns_cols
[2].offset
, db
->bytes_per_strref
);
1007 UINT col
= read_table_int(table
->data
, i
, _Columns_cols
[1].offset
, sizeof(USHORT
)) - (1<<15);
1009 /* check the column number is in range */
1010 if (col
<1 || col
>maxcount
)
1012 ERR("column %d out of range\n", col
);
1016 /* check if this column was already set */
1017 if (colinfo
[ col
- 1 ].number
)
1019 ERR("duplicate column %d\n", col
);
1023 colinfo
[ col
- 1 ].tablename
= msi_makestring( db
, table_id
);
1024 colinfo
[ col
- 1 ].number
= col
;
1025 colinfo
[ col
- 1 ].colname
= msi_makestring( db
, id
);
1026 colinfo
[ col
- 1 ].type
= read_table_int(table
->data
, i
, _Columns_cols
[3].offset
, sizeof(USHORT
)) - (1<<15);
1027 colinfo
[ col
- 1 ].offset
= 0;
1028 colinfo
[ col
- 1 ].ref_count
= 0;
1029 colinfo
[ col
- 1 ].hash_table
= NULL
;
1034 TRACE("%s has %d columns\n", debugstr_w(szTableName
), n
);
1036 if (colinfo
&& n
!= maxcount
)
1038 ERR("missing column in table %s\n", debugstr_w(szTableName
));
1039 msi_free_colinfo(colinfo
, maxcount
);
1040 return ERROR_FUNCTION_FAILED
;
1043 table_calc_column_offsets( colinfo
, n
);
1046 return ERROR_SUCCESS
;
1049 static void msi_update_table_columns( MSIDATABASE
*db
, LPCWSTR name
)
1052 UINT size
, offset
, old_count
;
1055 table
= find_cached_table( db
, name
);
1056 old_count
= table
->col_count
;
1057 msi_free( table
->colinfo
);
1058 table_get_column_info( db
, name
, &table
->colinfo
, &table
->col_count
);
1060 size
= msi_table_get_row_size( table
->colinfo
, table
->col_count
);
1061 offset
= table
->colinfo
[table
->col_count
- 1].offset
;
1063 for ( n
= 0; n
< table
->row_count
; n
++ )
1065 table
->data
[n
] = msi_realloc( table
->data
[n
], size
);
1066 if (old_count
< table
->col_count
)
1067 memset( &table
->data
[n
][offset
], 0, size
- offset
);
1071 /* try to find the table name in the _Tables table */
1072 BOOL
TABLE_Exists( MSIDATABASE
*db
, LPCWSTR name
)
1074 UINT r
, table_id
= 0, i
, count
;
1075 MSITABLE
*table
= NULL
;
1077 if( !lstrcmpW( name
, szTables
) )
1079 if( !lstrcmpW( name
, szColumns
) )
1082 r
= msi_string2idW( db
->strings
, name
, &table_id
);
1083 if( r
!= ERROR_SUCCESS
)
1085 TRACE("Couldn't find id for %s\n", debugstr_w(name
));
1089 r
= get_table( db
, szTables
, &table
);
1090 if( r
!= ERROR_SUCCESS
)
1092 ERR("table %s not available\n", debugstr_w(szTables
));
1096 count
= table
->row_count
;
1097 for( i
=0; i
<count
; i
++ )
1098 if( table
->data
[ i
][ 0 ] == table_id
)
1104 count
= table
->nonpersistent_row_count
;
1105 for( i
=0; i
<count
; i
++ )
1106 if( table
->nonpersistent_data
[ i
][ 0 ] == table_id
)
1112 TRACE("Searched %d tables, but %d was not found\n", count
, table_id
);
1117 /* below is the query interface to a table */
1119 typedef struct tagMSITABLEVIEW
1124 MSICOLUMNINFO
*columns
;
1125 MSIORDERINFO
*order
;
1131 static UINT
TABLE_fetch_int( struct tagMSIVIEW
*view
, UINT row
, UINT col
, UINT
*val
)
1133 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1138 return ERROR_INVALID_PARAMETER
;
1140 if( (col
==0) || (col
>tv
->num_cols
) )
1141 return ERROR_INVALID_PARAMETER
;
1143 /* how many rows are there ? */
1144 if( row
>= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
)
1145 return ERROR_NO_MORE_ITEMS
;
1147 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1149 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1150 ERR("%p %p\n", tv
, tv
->columns
);
1151 return ERROR_FUNCTION_FAILED
;
1155 row
= tv
->order
->reorder
[row
];
1157 if (row
>= tv
->table
->row_count
)
1159 row
-= tv
->table
->row_count
;
1160 data
= tv
->table
->nonpersistent_data
;
1163 data
= tv
->table
->data
;
1165 n
= bytes_per_column( &tv
->columns
[col
-1] );
1166 if (n
!= 2 && n
!= 3 && n
!= 4)
1168 ERR("oops! what is %d bytes per column?\n", n
);
1169 return ERROR_FUNCTION_FAILED
;
1172 offset
= tv
->columns
[col
-1].offset
;
1173 *val
= read_table_int(data
, row
, offset
, n
);
1175 /* TRACE("Data [%d][%d] = %d\n", row, col, *val ); */
1177 return ERROR_SUCCESS
;
1181 * We need a special case for streams, as we need to reference column with
1182 * the name of the stream in the same table, and the table name
1183 * which may not be available at higher levels of the query
1185 static UINT
TABLE_fetch_stream( struct tagMSIVIEW
*view
, UINT row
, UINT col
, IStream
**stm
)
1187 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1188 UINT ival
= 0, refcol
= 0, r
;
1192 static const WCHAR szDot
[] = { '.', 0 };
1195 if( !view
->ops
->fetch_int
)
1196 return ERROR_INVALID_PARAMETER
;
1199 * The column marked with the type stream data seems to have a single number
1200 * which references the column containing the name of the stream data
1202 * Fetch the column to reference first.
1204 r
= view
->ops
->fetch_int( view
, row
, col
, &ival
);
1205 if( r
!= ERROR_SUCCESS
)
1208 /* check the column value is in range */
1209 if (ival
> tv
->num_cols
|| ival
== col
)
1211 ERR("bad column ref (%u) for stream\n", ival
);
1212 return ERROR_FUNCTION_FAILED
;
1215 if ( tv
->columns
[ival
- 1].type
& MSITYPE_STRING
)
1217 /* now get the column with the name of the stream */
1218 r
= view
->ops
->fetch_int( view
, row
, ival
, &refcol
);
1219 if ( r
!= ERROR_SUCCESS
)
1222 /* lookup the string value from the string table */
1223 sval
= msi_string_lookup_id( tv
->db
->strings
, refcol
);
1225 return ERROR_INVALID_PARAMETER
;
1229 static const WCHAR fmt
[] = { '%','d',0 };
1230 sprintfW( number
, fmt
, ival
);
1234 len
= lstrlenW( tv
->name
) + 2 + lstrlenW( sval
);
1235 full_name
= msi_alloc( len
*sizeof(WCHAR
) );
1236 lstrcpyW( full_name
, tv
->name
);
1237 lstrcatW( full_name
, szDot
);
1238 lstrcatW( full_name
, sval
);
1240 r
= db_get_raw_stream( tv
->db
, full_name
, stm
);
1242 ERR("fetching stream %s, error = %d\n",debugstr_w(full_name
), r
);
1243 msi_free( full_name
);
1248 static UINT
TABLE_set_int( MSITABLEVIEW
*tv
, UINT row
, UINT col
, UINT val
)
1254 return ERROR_INVALID_PARAMETER
;
1256 if( (col
==0) || (col
>tv
->num_cols
) )
1257 return ERROR_INVALID_PARAMETER
;
1259 if( row
>= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
)
1260 return ERROR_INVALID_PARAMETER
;
1262 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1264 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1265 ERR("%p %p\n", tv
, tv
->columns
);
1266 return ERROR_FUNCTION_FAILED
;
1269 msi_free( tv
->columns
[col
-1].hash_table
);
1270 tv
->columns
[col
-1].hash_table
= NULL
;
1272 if (row
>= tv
->table
->row_count
)
1274 row
-= tv
->table
->row_count
;
1275 data
= tv
->table
->nonpersistent_data
;
1278 data
= tv
->table
->data
;
1280 n
= bytes_per_column( &tv
->columns
[col
-1] );
1281 if ( n
!= 2 && n
!= 3 && n
!= 4 )
1283 ERR("oops! what is %d bytes per column?\n", n
);
1284 return ERROR_FUNCTION_FAILED
;
1287 offset
= tv
->columns
[col
-1].offset
;
1288 for ( i
= 0; i
< n
; i
++ )
1289 data
[row
][offset
+ i
] = (val
>> i
* 8) & 0xff;
1291 return ERROR_SUCCESS
;
1294 static UINT
TABLE_get_row( struct tagMSIVIEW
*view
, UINT row
, MSIRECORD
**rec
)
1296 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1299 return ERROR_INVALID_PARAMETER
;
1302 row
= tv
->order
->reorder
[row
];
1304 return msi_view_get_row(tv
->db
, view
, row
, rec
);
1307 static UINT
TABLE_set_row( struct tagMSIVIEW
*view
, UINT row
, MSIRECORD
*rec
, UINT mask
)
1309 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1310 UINT i
, val
, r
= ERROR_SUCCESS
;
1313 return ERROR_INVALID_PARAMETER
;
1315 /* test if any of the mask bits are invalid */
1316 if ( mask
>= (1<<tv
->num_cols
) )
1317 return ERROR_INVALID_PARAMETER
;
1319 for ( i
= 0; i
< tv
->num_cols
; i
++ )
1323 /* only update the fields specified in the mask */
1324 if ( !(mask
&(1<<i
)) )
1327 /* if row >= tv->table->row_count then it is a non-persistent row */
1328 persistent
= tv
->table
->persistent
&& (row
< tv
->table
->row_count
);
1329 /* FIXME: should we allow updating keys? */
1332 if ( !MSI_RecordIsNull( rec
, i
+ 1 ) )
1334 if ( MSITYPE_IS_BINARY(tv
->columns
[ i
].type
) )
1336 val
= 1; /* refers to the first key column */
1338 else if ( tv
->columns
[i
].type
& MSITYPE_STRING
)
1340 LPCWSTR sval
= MSI_RecordGetString( rec
, i
+ 1 );
1343 r
= msi_string2idW(tv
->db
->strings
, sval
, &ival
);
1344 if (r
== ERROR_SUCCESS
)
1346 TABLE_fetch_int(&tv
->view
, row
, i
+ 1, &x
);
1351 val
= msi_addstringW( tv
->db
->strings
, 0, sval
, -1, 1,
1352 persistent
? StringPersistent
: StringNonPersistent
);
1354 else if ( 2 == bytes_per_column( &tv
->columns
[ i
] ) )
1356 val
= 0x8000 + MSI_RecordGetInteger( rec
, i
+ 1 );
1357 if ( val
& 0xffff0000 )
1359 ERR("field %u value %d out of range\n", i
+1, val
- 0x8000 );
1360 return ERROR_FUNCTION_FAILED
;
1365 INT ival
= MSI_RecordGetInteger( rec
, i
+ 1 );
1366 val
= ival
^ 0x80000000;
1370 r
= TABLE_set_int( tv
, row
, i
+1, val
);
1371 if ( r
!= ERROR_SUCCESS
)
1377 static UINT
table_create_new_row( struct tagMSIVIEW
*view
, UINT
*num
, BOOL temporary
)
1379 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1385 TRACE("%p %s\n", view
, temporary
? "TRUE" : "FALSE");
1388 return ERROR_INVALID_PARAMETER
;
1390 row
= msi_alloc_zero( tv
->row_size
);
1392 return ERROR_NOT_ENOUGH_MEMORY
;
1396 row_count
= &tv
->table
->nonpersistent_row_count
;
1397 data_ptr
= &tv
->table
->nonpersistent_data
;
1398 *num
= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
;
1402 row_count
= &tv
->table
->row_count
;
1403 data_ptr
= &tv
->table
->data
;
1404 *num
= tv
->table
->row_count
;
1407 sz
= (*row_count
+ 1) * sizeof (BYTE
*);
1409 p
= msi_realloc( *data_ptr
, sz
);
1411 p
= msi_alloc( sz
);
1415 return ERROR_NOT_ENOUGH_MEMORY
;
1419 (*data_ptr
)[*row_count
] = row
;
1422 return ERROR_SUCCESS
;
1425 static UINT
TABLE_execute( struct tagMSIVIEW
*view
, MSIRECORD
*record
)
1427 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1429 TRACE("%p %p\n", tv
, record
);
1431 TRACE("There are %d columns\n", tv
->num_cols
);
1433 return ERROR_SUCCESS
;
1436 static UINT
TABLE_close( struct tagMSIVIEW
*view
)
1438 TRACE("%p\n", view
);
1440 return ERROR_SUCCESS
;
1443 static UINT
TABLE_get_dimensions( struct tagMSIVIEW
*view
, UINT
*rows
, UINT
*cols
)
1445 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1447 TRACE("%p %p %p\n", view
, rows
, cols
);
1450 *cols
= tv
->num_cols
;
1454 return ERROR_INVALID_PARAMETER
;
1455 *rows
= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
;
1458 return ERROR_SUCCESS
;
1461 static UINT
TABLE_get_column_info( struct tagMSIVIEW
*view
,
1462 UINT n
, LPWSTR
*name
, UINT
*type
)
1464 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1466 TRACE("%p %d %p %p\n", tv
, n
, name
, type
);
1468 if( ( n
== 0 ) || ( n
> tv
->num_cols
) )
1469 return ERROR_INVALID_PARAMETER
;
1473 *name
= strdupW( tv
->columns
[n
-1].colname
);
1475 return ERROR_FUNCTION_FAILED
;
1478 *type
= tv
->columns
[n
-1].type
;
1480 return ERROR_SUCCESS
;
1483 static UINT
msi_table_find_row( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT
*row
);
1485 static UINT
table_validate_new( MSITABLEVIEW
*tv
, MSIRECORD
*rec
)
1489 /* check there's no null values where they're not allowed */
1490 for( i
= 0; i
< tv
->num_cols
; i
++ )
1492 if ( tv
->columns
[i
].type
& MSITYPE_NULLABLE
)
1495 if ( MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
1496 TRACE("skipping binary column\n");
1497 else if ( tv
->columns
[i
].type
& MSITYPE_STRING
)
1501 str
= MSI_RecordGetString( rec
, i
+1 );
1502 if (str
== NULL
|| str
[0] == 0)
1503 return ERROR_INVALID_DATA
;
1509 n
= MSI_RecordGetInteger( rec
, i
+1 );
1510 if (n
== MSI_NULL_INTEGER
)
1511 return ERROR_INVALID_DATA
;
1515 /* check there's no duplicate keys */
1516 r
= msi_table_find_row( tv
, rec
, &row
);
1517 if (r
== ERROR_SUCCESS
)
1518 return ERROR_FUNCTION_FAILED
;
1520 return ERROR_SUCCESS
;
1523 static UINT
TABLE_insert_row( struct tagMSIVIEW
*view
, MSIRECORD
*rec
, BOOL temporary
)
1525 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1528 TRACE("%p %p %s\n", tv
, rec
, temporary
? "TRUE" : "FALSE" );
1530 /* check that the key is unique - can we find a matching row? */
1531 r
= table_validate_new( tv
, rec
);
1532 if( r
!= ERROR_SUCCESS
)
1533 return ERROR_FUNCTION_FAILED
;
1535 r
= table_create_new_row( view
, &row
, temporary
);
1536 TRACE("insert_row returned %08x\n", r
);
1537 if( r
!= ERROR_SUCCESS
)
1540 return TABLE_set_row( view
, row
, rec
, (1<<tv
->num_cols
) - 1 );
1543 static UINT
TABLE_delete_row( struct tagMSIVIEW
*view
, UINT row
)
1545 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1546 UINT r
, num_rows
, num_cols
, i
;
1549 TRACE("%p %d\n", tv
, row
);
1552 return ERROR_INVALID_PARAMETER
;
1554 r
= TABLE_get_dimensions( view
, &num_rows
, &num_cols
);
1555 if ( r
!= ERROR_SUCCESS
)
1558 if ( row
>= num_rows
)
1559 return ERROR_FUNCTION_FAILED
;
1561 if ( row
< tv
->table
->row_count
)
1563 num_rows
= tv
->table
->row_count
;
1564 tv
->table
->row_count
--;
1565 data
= tv
->table
->data
;
1569 num_rows
= tv
->table
->nonpersistent_row_count
;
1570 row
-= tv
->table
->row_count
;
1571 tv
->table
->nonpersistent_row_count
--;
1572 data
= tv
->table
->nonpersistent_data
;
1575 /* reset the hash tables */
1576 for (i
= 0; i
< tv
->num_cols
; i
++)
1578 msi_free( tv
->columns
[i
].hash_table
);
1579 tv
->columns
[i
].hash_table
= NULL
;
1582 if ( row
== num_rows
- 1 )
1583 return ERROR_SUCCESS
;
1585 for (i
= row
+ 1; i
< num_rows
; i
++)
1586 memcpy(data
[i
- 1], data
[i
], tv
->row_size
);
1588 return ERROR_SUCCESS
;
1591 static UINT
msi_table_update(struct tagMSIVIEW
*view
, MSIRECORD
*rec
, UINT row
)
1593 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1596 /* FIXME: MsiViewFetch should set rec index 0 to some ID that
1597 * sets the fetched record apart from other records
1601 return ERROR_INVALID_PARAMETER
;
1603 r
= msi_table_find_row(tv
, rec
, &new_row
);
1604 if (r
!= ERROR_SUCCESS
)
1606 ERR("can't find row to modify\n");
1607 return ERROR_FUNCTION_FAILED
;
1610 /* the row cannot be changed */
1611 if (row
!= new_row
+ 1)
1612 return ERROR_FUNCTION_FAILED
;
1614 return TABLE_set_row(view
, new_row
, rec
, (1 << tv
->num_cols
) - 1);
1617 static UINT
modify_delete_row( struct tagMSIVIEW
*view
, MSIRECORD
*rec
)
1619 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1622 r
= msi_table_find_row(tv
, rec
, &row
);
1623 if (r
!= ERROR_SUCCESS
)
1626 return TABLE_delete_row(view
, row
);
1629 static UINT
msi_refresh_record( struct tagMSIVIEW
*view
, MSIRECORD
*rec
, UINT row
)
1634 r
= TABLE_get_row(view
, row
- 1, &curr
);
1635 if (r
!= ERROR_SUCCESS
)
1638 count
= MSI_RecordGetFieldCount(rec
);
1639 for (i
= 0; i
< count
; i
++)
1640 MSI_RecordCopyField(curr
, i
+ 1, rec
, i
+ 1);
1642 msiobj_release(&curr
->hdr
);
1643 return ERROR_SUCCESS
;
1646 static UINT
TABLE_modify( struct tagMSIVIEW
*view
, MSIMODIFY eModifyMode
,
1647 MSIRECORD
*rec
, UINT row
)
1649 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1652 TRACE("%p %d %p\n", view
, eModifyMode
, rec
);
1654 switch (eModifyMode
)
1656 case MSIMODIFY_DELETE
:
1657 r
= modify_delete_row( view
, rec
);
1659 case MSIMODIFY_VALIDATE_NEW
:
1660 r
= table_validate_new( tv
, rec
);
1663 case MSIMODIFY_INSERT
:
1664 r
= table_validate_new( tv
, rec
);
1665 if (r
!= ERROR_SUCCESS
)
1667 r
= TABLE_insert_row( view
, rec
, FALSE
);
1670 case MSIMODIFY_INSERT_TEMPORARY
:
1671 r
= table_validate_new( tv
, rec
);
1672 if (r
!= ERROR_SUCCESS
)
1674 r
= TABLE_insert_row( view
, rec
, TRUE
);
1677 case MSIMODIFY_REFRESH
:
1678 r
= msi_refresh_record( view
, rec
, row
);
1681 case MSIMODIFY_UPDATE
:
1682 r
= msi_table_update( view
, rec
, row
);
1685 case MSIMODIFY_ASSIGN
:
1686 case MSIMODIFY_REPLACE
:
1687 case MSIMODIFY_MERGE
:
1688 case MSIMODIFY_VALIDATE
:
1689 case MSIMODIFY_VALIDATE_FIELD
:
1690 case MSIMODIFY_VALIDATE_DELETE
:
1691 FIXME("%p %d %p - mode not implemented\n", view
, eModifyMode
, rec
);
1692 r
= ERROR_CALL_NOT_IMPLEMENTED
;
1696 r
= ERROR_INVALID_DATA
;
1702 static UINT
TABLE_delete( struct tagMSIVIEW
*view
)
1704 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1706 TRACE("%p\n", view
);
1713 msi_free( tv
->order
->reorder
);
1714 msi_free( tv
->order
);
1720 return ERROR_SUCCESS
;
1723 static UINT
TABLE_find_matching_rows( struct tagMSIVIEW
*view
, UINT col
,
1724 UINT val
, UINT
*row
, MSIITERHANDLE
*handle
)
1726 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1727 const MSICOLUMNHASHENTRY
*entry
;
1729 TRACE("%p, %d, %u, %p\n", view
, col
, val
, *handle
);
1732 return ERROR_INVALID_PARAMETER
;
1734 if( (col
==0) || (col
> tv
->num_cols
) )
1735 return ERROR_INVALID_PARAMETER
;
1737 if( !tv
->columns
[col
-1].hash_table
)
1740 UINT num_rows
= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
;
1741 MSICOLUMNHASHENTRY
**hash_table
;
1742 MSICOLUMNHASHENTRY
*new_entry
;
1744 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1746 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1747 ERR("%p %p\n", tv
, tv
->columns
);
1748 return ERROR_FUNCTION_FAILED
;
1751 /* allocate contiguous memory for the table and its entries so we
1752 * don't have to do an expensive cleanup */
1753 hash_table
= msi_alloc(MSITABLE_HASH_TABLE_SIZE
* sizeof(MSICOLUMNHASHENTRY
*) +
1754 num_rows
* sizeof(MSICOLUMNHASHENTRY
));
1756 return ERROR_OUTOFMEMORY
;
1758 memset(hash_table
, 0, MSITABLE_HASH_TABLE_SIZE
* sizeof(MSICOLUMNHASHENTRY
*));
1759 tv
->columns
[col
-1].hash_table
= hash_table
;
1761 new_entry
= (MSICOLUMNHASHENTRY
*)(hash_table
+ MSITABLE_HASH_TABLE_SIZE
);
1763 for (i
= 0; i
< num_rows
; i
++, new_entry
++)
1767 if (view
->ops
->fetch_int( view
, i
, col
, &row_value
) != ERROR_SUCCESS
)
1770 new_entry
->next
= NULL
;
1771 new_entry
->value
= row_value
;
1773 if (hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
])
1775 MSICOLUMNHASHENTRY
*prev_entry
= hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
];
1776 while (prev_entry
->next
)
1777 prev_entry
= prev_entry
->next
;
1778 prev_entry
->next
= new_entry
;
1781 hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
] = new_entry
;
1786 entry
= tv
->columns
[col
-1].hash_table
[val
% MSITABLE_HASH_TABLE_SIZE
];
1788 entry
= (*handle
)->next
;
1790 while (entry
&& entry
->value
!= val
)
1791 entry
= entry
->next
;
1795 return ERROR_NO_MORE_ITEMS
;
1800 *row
= tv
->order
->reorder
[*row
];
1802 return ERROR_SUCCESS
;
1805 static UINT
TABLE_add_ref(struct tagMSIVIEW
*view
)
1807 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1810 TRACE("%p %d\n", view
, tv
->table
->ref_count
);
1812 for (i
= 0; i
< tv
->table
->col_count
; i
++)
1814 if (tv
->table
->colinfo
[i
].type
& MSITYPE_TEMPORARY
)
1815 InterlockedIncrement(&tv
->table
->colinfo
[i
].ref_count
);
1818 return InterlockedIncrement(&tv
->table
->ref_count
);
1821 static UINT
TABLE_remove_column(struct tagMSIVIEW
*view
, LPCWSTR table
, UINT number
)
1823 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1824 MSIRECORD
*rec
= NULL
;
1825 MSIVIEW
*columns
= NULL
;
1828 rec
= MSI_CreateRecord(2);
1830 return ERROR_OUTOFMEMORY
;
1832 MSI_RecordSetStringW(rec
, 1, table
);
1833 MSI_RecordSetInteger(rec
, 2, number
);
1835 r
= TABLE_CreateView(tv
->db
, szColumns
, &columns
);
1836 if (r
!= ERROR_SUCCESS
)
1839 r
= msi_table_find_row((MSITABLEVIEW
*)columns
, rec
, &row
);
1840 if (r
!= ERROR_SUCCESS
)
1843 r
= TABLE_delete_row(columns
, row
);
1844 if (r
!= ERROR_SUCCESS
)
1847 msi_update_table_columns(tv
->db
, table
);
1850 msiobj_release(&rec
->hdr
);
1851 if (columns
) columns
->ops
->delete(columns
);
1855 static UINT
TABLE_release(struct tagMSIVIEW
*view
)
1857 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1858 INT ref
= tv
->table
->ref_count
;
1861 TRACE("%p %d\n", view
, ref
);
1863 for (i
= 0; i
< tv
->table
->col_count
; i
++)
1865 if (tv
->table
->colinfo
[i
].type
& MSITYPE_TEMPORARY
)
1867 ref
= InterlockedDecrement(&tv
->table
->colinfo
[i
].ref_count
);
1870 r
= TABLE_remove_column(view
, tv
->table
->colinfo
[i
].tablename
,
1871 tv
->table
->colinfo
[i
].number
);
1872 if (r
!= ERROR_SUCCESS
)
1878 ref
= InterlockedDecrement(&tv
->table
->ref_count
);
1881 if (!tv
->table
->row_count
)
1883 list_remove(&tv
->table
->entry
);
1884 free_table(tv
->table
);
1892 static UINT
TABLE_add_column(struct tagMSIVIEW
*view
, LPCWSTR table
, UINT number
,
1893 LPCWSTR column
, UINT type
, BOOL hold
)
1895 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1900 rec
= MSI_CreateRecord(4);
1902 return ERROR_OUTOFMEMORY
;
1904 MSI_RecordSetStringW(rec
, 1, table
);
1905 MSI_RecordSetInteger(rec
, 2, number
);
1906 MSI_RecordSetStringW(rec
, 3, column
);
1907 MSI_RecordSetInteger(rec
, 4, type
);
1909 r
= TABLE_insert_row(&tv
->view
, rec
, FALSE
);
1910 if (r
!= ERROR_SUCCESS
)
1913 msi_update_table_columns(tv
->db
, table
);
1918 msitable
= find_cached_table(tv
->db
, table
);
1919 for (i
= 0; i
< msitable
->col_count
; i
++)
1921 if (!lstrcmpW(msitable
->colinfo
[i
].colname
, column
))
1923 InterlockedIncrement(&msitable
->colinfo
[i
].ref_count
);
1929 msiobj_release(&rec
->hdr
);
1933 static UINT
order_add_column(struct tagMSIVIEW
*view
, MSIORDERINFO
*order
, LPCWSTR name
)
1937 r
= TABLE_get_dimensions(view
, NULL
, &count
);
1938 if (r
!= ERROR_SUCCESS
)
1941 if (order
->num_cols
>= count
)
1942 return ERROR_FUNCTION_FAILED
;
1944 r
= VIEW_find_column(view
, name
, &n
);
1945 if (r
!= ERROR_SUCCESS
)
1948 order
->cols
[order
->num_cols
] = n
;
1949 TRACE("Ordering by column %s (%d)\n", debugstr_w(name
), n
);
1953 return ERROR_SUCCESS
;
1956 static UINT
order_compare(struct tagMSIVIEW
*view
, MSIORDERINFO
*order
,
1957 UINT a
, UINT b
, UINT
*swap
)
1959 UINT r
, i
, a_val
= 0, b_val
= 0;
1962 for (i
= 0; i
< order
->num_cols
; i
++)
1964 r
= TABLE_fetch_int(view
, a
, order
->cols
[i
], &a_val
);
1965 if (r
!= ERROR_SUCCESS
)
1968 r
= TABLE_fetch_int(view
, b
, order
->cols
[i
], &b_val
);
1969 if (r
!= ERROR_SUCCESS
)
1980 return ERROR_SUCCESS
;
1983 static UINT
order_mergesort(struct tagMSIVIEW
*view
, MSIORDERINFO
*order
,
1984 UINT left
, UINT right
)
1987 UINT swap
= 0, center
= (left
+ right
) / 2;
1988 UINT
*array
= order
->reorder
;
1991 return ERROR_SUCCESS
;
1993 /* sort the left half */
1994 r
= order_mergesort(view
, order
, left
, center
);
1995 if (r
!= ERROR_SUCCESS
)
1998 /* sort the right half */
1999 r
= order_mergesort(view
, order
, center
+ 1, right
);
2000 if (r
!= ERROR_SUCCESS
)
2003 for (i
= left
, j
= center
+ 1; (i
<= center
) && (j
<= right
); i
++)
2005 r
= order_compare(view
, order
, array
[i
], array
[j
], &swap
);
2006 if (r
!= ERROR_SUCCESS
)
2012 memmove(&array
[i
+ 1], &array
[i
], (j
- i
) * sizeof(UINT
));
2019 return ERROR_SUCCESS
;
2022 static UINT
order_verify(struct tagMSIVIEW
*view
, MSIORDERINFO
*order
, UINT num_rows
)
2026 for (i
= 1; i
< num_rows
; i
++)
2028 r
= order_compare(view
, order
, order
->reorder
[i
- 1],
2029 order
->reorder
[i
], &swap
);
2030 if (r
!= ERROR_SUCCESS
)
2036 ERR("Bad order! %d\n", i
);
2037 return ERROR_FUNCTION_FAILED
;
2040 return ERROR_SUCCESS
;
2043 static UINT
TABLE_sort(struct tagMSIVIEW
*view
, column_info
*columns
)
2045 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
2046 MSIORDERINFO
*order
;
2051 TRACE("sorting table %s\n", debugstr_w(tv
->name
));
2053 r
= TABLE_get_dimensions(view
, &rows
, &cols
);
2054 if (r
!= ERROR_SUCCESS
)
2057 order
= msi_alloc_zero(sizeof(MSIORDERINFO
) + sizeof(UINT
) * cols
);
2059 return ERROR_OUTOFMEMORY
;
2061 for (ptr
= columns
; ptr
; ptr
= ptr
->next
)
2062 order_add_column(view
, order
, ptr
->column
);
2064 order
->reorder
= msi_alloc(rows
* sizeof(UINT
));
2065 if (!order
->reorder
)
2066 return ERROR_OUTOFMEMORY
;
2068 for (i
= 0; i
< rows
; i
++)
2069 order
->reorder
[i
] = i
;
2071 r
= order_mergesort(view
, order
, 0, rows
- 1);
2072 if (r
!= ERROR_SUCCESS
)
2075 r
= order_verify(view
, order
, rows
);
2076 if (r
!= ERROR_SUCCESS
)
2081 return ERROR_SUCCESS
;
2084 static const MSIVIEWOPS table_ops
=
2094 TABLE_get_dimensions
,
2095 TABLE_get_column_info
,
2098 TABLE_find_matching_rows
,
2102 TABLE_remove_column
,
2106 UINT
TABLE_CreateView( MSIDATABASE
*db
, LPCWSTR name
, MSIVIEW
**view
)
2111 static const WCHAR Streams
[] = {'_','S','t','r','e','a','m','s',0};
2113 TRACE("%p %s %p\n", db
, debugstr_w(name
), view
);
2115 if ( !lstrcmpW( name
, Streams
) )
2116 return STREAMS_CreateView( db
, view
);
2118 sz
= sizeof *tv
+ lstrlenW(name
)*sizeof name
[0] ;
2119 tv
= msi_alloc_zero( sz
);
2121 return ERROR_FUNCTION_FAILED
;
2123 r
= get_table( db
, name
, &tv
->table
);
2124 if( r
!= ERROR_SUCCESS
)
2127 WARN("table not found\n");
2131 TRACE("table %p found with %d columns\n", tv
->table
, tv
->table
->col_count
);
2133 /* fill the structure */
2134 tv
->view
.ops
= &table_ops
;
2136 tv
->columns
= tv
->table
->colinfo
;
2137 tv
->num_cols
= tv
->table
->col_count
;
2138 tv
->row_size
= msi_table_get_row_size( tv
->table
->colinfo
, tv
->table
->col_count
);
2140 TRACE("%s one row is %d bytes\n", debugstr_w(name
), tv
->row_size
);
2142 *view
= (MSIVIEW
*) tv
;
2143 lstrcpyW( tv
->name
, name
);
2145 return ERROR_SUCCESS
;
2148 UINT
MSI_CommitTables( MSIDATABASE
*db
)
2151 MSITABLE
*table
= NULL
;
2155 r
= msi_save_string_table( db
->strings
, db
->storage
);
2156 if( r
!= ERROR_SUCCESS
)
2158 WARN("failed to save string table r=%08x\n",r
);
2162 LIST_FOR_EACH_ENTRY( table
, &db
->tables
, MSITABLE
, entry
)
2164 r
= save_table( db
, table
);
2165 if( r
!= ERROR_SUCCESS
)
2167 WARN("failed to save table %s (r=%08x)\n",
2168 debugstr_w(table
->name
), r
);
2173 /* force everything to reload next time */
2174 free_cached_tables( db
);
2176 return ERROR_SUCCESS
;
2179 MSICONDITION
MSI_DatabaseIsTablePersistent( MSIDATABASE
*db
, LPCWSTR table
)
2184 TRACE("%p %s\n", db
, debugstr_w(table
));
2187 return MSICONDITION_ERROR
;
2189 r
= get_table( db
, table
, &t
);
2190 if (r
!= ERROR_SUCCESS
)
2191 return MSICONDITION_NONE
;
2194 return MSICONDITION_TRUE
;
2196 return MSICONDITION_FALSE
;
2199 static UINT
read_raw_int(const BYTE
*data
, UINT col
, UINT bytes
)
2203 for (i
= 0; i
< bytes
; i
++)
2204 ret
+= (data
[col
+ i
] << i
* 8);
2209 static MSIRECORD
*msi_get_transform_record( const MSITABLEVIEW
*tv
, const string_table
*st
,
2210 const BYTE
*rawdata
, UINT bytes_per_strref
)
2212 UINT i
, val
, ofs
= 0;
2214 MSICOLUMNINFO
*columns
= tv
->columns
;
2217 mask
= rawdata
[0] | (rawdata
[1] << 8);
2220 rec
= MSI_CreateRecord( tv
->num_cols
);
2225 for( i
=0; i
<tv
->num_cols
; i
++ )
2227 if ( (mask
&1) && (i
>=(mask
>>8)) )
2229 /* all keys must be present */
2230 if ( (~mask
&1) && (~columns
[i
].type
& MSITYPE_KEY
) && ((1<<i
) & ~mask
) )
2233 if( (columns
[i
].type
& MSITYPE_STRING
) &&
2234 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
2238 val
= read_raw_int(rawdata
, ofs
, bytes_per_strref
);
2239 sval
= msi_string_lookup_id( st
, val
);
2240 MSI_RecordSetStringW( rec
, i
+1, sval
);
2241 TRACE(" field %d [%s]\n", i
+1, debugstr_w(sval
));
2242 ofs
+= bytes_per_strref
;
2246 UINT n
= bytes_per_column( &columns
[i
] );
2250 val
= read_raw_int(rawdata
, ofs
, n
);
2252 MSI_RecordSetInteger( rec
, i
+1, val
^0x8000 );
2253 TRACE(" field %d [0x%04x]\n", i
+1, val
);
2256 val
= read_raw_int(rawdata
, ofs
, n
);
2258 MSI_RecordSetInteger( rec
, i
+1, val
^0x80000000 );
2259 TRACE(" field %d [0x%08x]\n", i
+1, val
);
2262 ERR("oops - unknown column width %d\n", n
);
2271 static void dump_record( MSIRECORD
*rec
)
2275 n
= MSI_RecordGetFieldCount( rec
);
2276 for( i
=1; i
<=n
; i
++ )
2278 LPCWSTR sval
= MSI_RecordGetString( rec
, i
);
2280 if( MSI_RecordIsNull( rec
, i
) )
2281 TRACE("row -> []\n");
2282 else if( (sval
= MSI_RecordGetString( rec
, i
)) )
2283 TRACE("row -> [%s]\n", debugstr_w(sval
));
2285 TRACE("row -> [0x%08x]\n", MSI_RecordGetInteger( rec
, i
) );
2289 static void dump_table( const string_table
*st
, const USHORT
*rawdata
, UINT rawsize
)
2294 for( i
=0; i
<(rawsize
/2); i
++ )
2296 sval
= msi_string_lookup_id( st
, rawdata
[i
] );
2297 MESSAGE(" %04x %s\n", rawdata
[i
], debugstr_w(sval
) );
2301 static UINT
* msi_record_to_row( const MSITABLEVIEW
*tv
, MSIRECORD
*rec
)
2306 data
= msi_alloc( tv
->num_cols
*sizeof (UINT
) );
2307 for( i
=0; i
<tv
->num_cols
; i
++ )
2311 if ( ~tv
->columns
[i
].type
& MSITYPE_KEY
)
2314 /* turn the transform column value into a row value */
2315 if ( ( tv
->columns
[i
].type
& MSITYPE_STRING
) &&
2316 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
2318 str
= MSI_RecordGetString( rec
, i
+1 );
2319 r
= msi_string2idW( tv
->db
->strings
, str
, &data
[i
] );
2321 /* if there's no matching string in the string table,
2322 these keys can't match any record, so fail now. */
2323 if( ERROR_SUCCESS
!= r
)
2331 data
[i
] = MSI_RecordGetInteger( rec
, i
+1 );
2332 if ((tv
->columns
[i
].type
&0xff) == 2)
2335 data
[i
] += 0x80000000;
2341 static UINT
msi_row_matches( MSITABLEVIEW
*tv
, UINT row
, const UINT
*data
)
2343 UINT i
, r
, x
, ret
= ERROR_FUNCTION_FAILED
;
2345 for( i
=0; i
<tv
->num_cols
; i
++ )
2347 if ( ~tv
->columns
[i
].type
& MSITYPE_KEY
)
2350 /* turn the transform column value into a row value */
2351 r
= TABLE_fetch_int( &tv
->view
, row
, i
+1, &x
);
2352 if ( r
!= ERROR_SUCCESS
)
2354 ERR("TABLE_fetch_int shouldn't fail here\n");
2358 /* if this key matches, move to the next column */
2361 ret
= ERROR_FUNCTION_FAILED
;
2365 ret
= ERROR_SUCCESS
;
2371 static UINT
msi_table_find_row( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT
*row
)
2373 UINT i
, r
= ERROR_FUNCTION_FAILED
, *data
;
2375 data
= msi_record_to_row( tv
, rec
);
2378 for( i
= 0; i
< tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
; i
++ )
2380 r
= msi_row_matches( tv
, i
, data
);
2381 if( r
== ERROR_SUCCESS
)
2397 static UINT
msi_table_load_transform( MSIDATABASE
*db
, IStorage
*stg
,
2398 string_table
*st
, TRANSFORMDATA
*transform
,
2399 UINT bytes_per_strref
)
2402 BYTE
*rawdata
= NULL
;
2403 MSITABLEVIEW
*tv
= NULL
;
2404 UINT r
, n
, sz
, i
, mask
;
2405 MSIRECORD
*rec
= NULL
;
2411 return ERROR_SUCCESS
;
2413 name
= transform
->name
;
2416 TRACE("%p %p %p %s\n", db
, stg
, st
, debugstr_w(name
) );
2418 /* read the transform data */
2419 read_stream_data( stg
, name
, TRUE
, &rawdata
, &rawsize
);
2422 TRACE("table %s empty\n", debugstr_w(name
) );
2423 return ERROR_INVALID_TABLE
;
2426 /* create a table view */
2427 r
= TABLE_CreateView( db
, name
, (MSIVIEW
**) &tv
);
2428 if( r
!= ERROR_SUCCESS
)
2431 r
= tv
->view
.ops
->execute( &tv
->view
, NULL
);
2432 if( r
!= ERROR_SUCCESS
)
2435 TRACE("name = %s columns = %u row_size = %u raw size = %u\n",
2436 debugstr_w(name
), tv
->num_cols
, tv
->row_size
, rawsize
);
2438 /* interpret the data */
2440 for( n
=0; n
< rawsize
; )
2442 mask
= rawdata
[n
] | (rawdata
[n
+1] << 8);
2447 * if the low bit is set, columns are continuous and
2448 * the number of columns is specified in the high byte
2451 for( i
=0; i
<tv
->num_cols
; i
++ )
2453 if( (tv
->columns
[i
].type
& MSITYPE_STRING
) &&
2454 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
2455 sz
+= bytes_per_strref
;
2457 sz
+= bytes_per_column( &tv
->columns
[i
] );
2463 * If the low bit is not set, mask is a bitmask.
2464 * Excepting for key fields, which are always present,
2465 * each bit indicates that a field is present in the transform record.
2467 * mask == 0 is a special case ... only the keys will be present
2468 * and it means that this row should be deleted.
2471 for( i
=0; i
<tv
->num_cols
; i
++ )
2473 if( (tv
->columns
[i
].type
& MSITYPE_KEY
) || ((1<<i
)&mask
))
2475 if( (tv
->columns
[i
].type
& MSITYPE_STRING
) &&
2476 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
2477 sz
+= bytes_per_strref
;
2479 sz
+= bytes_per_column( &tv
->columns
[i
] );
2484 /* check we didn't run of the end of the table */
2485 if ( (n
+sz
) > rawsize
)
2488 dump_table( st
, (USHORT
*)rawdata
, rawsize
);
2492 rec
= msi_get_transform_record( tv
, st
, &rawdata
[n
], bytes_per_strref
);
2499 UINT number
= MSI_NULL_INTEGER
;
2501 TRACE("inserting record\n");
2503 if (!lstrcmpW(name
, szColumns
))
2505 MSI_RecordGetStringW( rec
, 1, table
, &sz
);
2506 number
= MSI_RecordGetInteger( rec
, 2 );
2509 * Native msi seems writes nul into the Number (2nd) column of
2510 * the _Columns table, only when the columns are from a new table
2512 if ( number
== MSI_NULL_INTEGER
)
2514 /* reset the column number on a new table */
2515 if ( lstrcmpW(coltable
, table
) )
2518 lstrcpyW( coltable
, table
);
2521 /* fix nul column numbers */
2522 MSI_RecordSetInteger( rec
, 2, ++colcol
);
2526 r
= TABLE_insert_row( &tv
->view
, rec
, FALSE
);
2527 if (r
!= ERROR_SUCCESS
)
2528 ERR("insert row failed\n");
2530 if ( number
!= MSI_NULL_INTEGER
&& !lstrcmpW(name
, szColumns
) )
2531 msi_update_table_columns( db
, table
);
2537 r
= msi_table_find_row( tv
, rec
, &row
);
2538 if (r
!= ERROR_SUCCESS
)
2539 ERR("no matching row to transform\n");
2542 TRACE("modifying row [%d]:\n", row
);
2543 TABLE_set_row( &tv
->view
, row
, rec
, mask
);
2547 TRACE("deleting row [%d]:\n", row
);
2548 TABLE_delete_row( &tv
->view
, row
);
2551 if( TRACE_ON(msidb
) ) dump_record( rec
);
2552 msiobj_release( &rec
->hdr
);
2559 /* no need to free the table, it's associated with the database */
2560 msi_free( rawdata
);
2562 tv
->view
.ops
->delete( &tv
->view
);
2564 return ERROR_SUCCESS
;
2568 * msi_table_apply_transform
2570 * Enumerate the table transforms in a transform storage and apply each one.
2572 UINT
msi_table_apply_transform( MSIDATABASE
*db
, IStorage
*stg
)
2574 struct list transforms
;
2575 IEnumSTATSTG
*stgenum
= NULL
;
2576 TRANSFORMDATA
*transform
;
2577 TRANSFORMDATA
*tables
= NULL
, *columns
= NULL
;
2580 string_table
*strings
;
2581 UINT ret
= ERROR_FUNCTION_FAILED
;
2582 UINT bytes_per_strref
;
2584 TRACE("%p %p\n", db
, stg
);
2586 strings
= msi_load_string_table( stg
, &bytes_per_strref
);
2590 r
= IStorage_EnumElements( stg
, 0, NULL
, 0, &stgenum
);
2594 list_init(&transforms
);
2598 MSITABLEVIEW
*tv
= NULL
;
2602 r
= IEnumSTATSTG_Next( stgenum
, 1, &stat
, &count
);
2603 if ( FAILED( r
) || !count
)
2606 decode_streamname( stat
.pwcsName
, name
);
2607 CoTaskMemFree( stat
.pwcsName
);
2608 if ( name
[0] != 0x4840 )
2611 if ( !lstrcmpW( name
+1, szStringPool
) ||
2612 !lstrcmpW( name
+1, szStringData
) )
2615 transform
= msi_alloc_zero( sizeof(TRANSFORMDATA
) );
2619 list_add_tail( &transforms
, &transform
->entry
);
2621 transform
->name
= strdupW( name
+ 1 );
2623 if ( !lstrcmpW( transform
->name
, szTables
) )
2625 else if (!lstrcmpW( transform
->name
, szColumns
) )
2626 columns
= transform
;
2628 TRACE("transform contains stream %s\n", debugstr_w(name
));
2630 /* load the table */
2631 r
= TABLE_CreateView( db
, transform
->name
, (MSIVIEW
**) &tv
);
2632 if( r
!= ERROR_SUCCESS
)
2635 r
= tv
->view
.ops
->execute( &tv
->view
, NULL
);
2636 if( r
!= ERROR_SUCCESS
)
2638 tv
->view
.ops
->delete( &tv
->view
);
2642 tv
->view
.ops
->delete( &tv
->view
);
2646 * Apply _Tables and _Columns transforms first so that
2647 * the table metadata is correct, and empty tables exist.
2649 ret
= msi_table_load_transform( db
, stg
, strings
, tables
, bytes_per_strref
);
2650 if (ret
!= ERROR_SUCCESS
&& ret
!= ERROR_INVALID_TABLE
)
2653 ret
= msi_table_load_transform( db
, stg
, strings
, columns
, bytes_per_strref
);
2654 if (ret
!= ERROR_SUCCESS
&& ret
!= ERROR_INVALID_TABLE
)
2657 ret
= ERROR_SUCCESS
;
2659 while ( !list_empty( &transforms
) )
2661 transform
= LIST_ENTRY( list_head( &transforms
), TRANSFORMDATA
, entry
);
2663 if ( lstrcmpW( transform
->name
, szColumns
) &&
2664 lstrcmpW( transform
->name
, szTables
) &&
2665 ret
== ERROR_SUCCESS
)
2667 ret
= msi_table_load_transform( db
, stg
, strings
, transform
, bytes_per_strref
);
2670 list_remove( &transform
->entry
);
2671 msi_free( transform
->name
);
2672 msi_free( transform
);
2675 if ( ret
== ERROR_SUCCESS
)
2676 append_storage_to_db( db
, stg
);
2680 IEnumSTATSTG_Release( stgenum
);
2682 msi_destroy_stringtable( strings
);
2687 void append_storage_to_db( MSIDATABASE
*db
, IStorage
*stg
)
2691 t
= msi_alloc( sizeof *t
);
2693 IStorage_AddRef( stg
);
2694 list_add_tail( &db
->transforms
, &t
->entry
);
2697 void msi_free_transforms( MSIDATABASE
*db
)
2699 while( !list_empty( &db
->transforms
) )
2701 MSITRANSFORM
*t
= LIST_ENTRY( list_head( &db
->transforms
),
2702 MSITRANSFORM
, entry
);
2703 list_remove( &t
->entry
);
2704 IStorage_Release( t
->stg
);