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
61 MSICOLUMNHASHENTRY
**hash_table
;
68 BYTE
**nonpersistent_data
;
69 UINT nonpersistent_row_count
;
71 MSICOLUMNINFO
*colinfo
;
77 typedef struct tagMSITRANSFORM
{
82 static const WCHAR szStringData
[] = {
83 '_','S','t','r','i','n','g','D','a','t','a',0 };
84 static const WCHAR szStringPool
[] = {
85 '_','S','t','r','i','n','g','P','o','o','l',0 };
87 /* information for default tables */
88 static const WCHAR szTables
[] = { '_','T','a','b','l','e','s',0 };
89 static const WCHAR szTable
[] = { 'T','a','b','l','e',0 };
90 static const WCHAR szName
[] = { 'N','a','m','e',0 };
91 static const WCHAR szColumns
[] = { '_','C','o','l','u','m','n','s',0 };
92 static const WCHAR szNumber
[] = { 'N','u','m','b','e','r',0 };
93 static const WCHAR szType
[] = { 'T','y','p','e',0 };
95 /* These tables are written into (the .hash_table part).
96 * Do not mark them const.
98 static MSICOLUMNINFO _Columns_cols
[4] = {
99 { szColumns
, 1, szTable
, MSITYPE_VALID
| MSITYPE_STRING
| 64, 0 },
100 { szColumns
, 2, szNumber
, MSITYPE_VALID
| 2, 2 },
101 { szColumns
, 3, szName
, MSITYPE_VALID
| MSITYPE_STRING
| 64, 4 },
102 { szColumns
, 4, szType
, MSITYPE_VALID
| 2, 6 },
104 static MSICOLUMNINFO _Tables_cols
[1] = {
105 { szTables
, 1, szName
, MSITYPE_VALID
| MSITYPE_STRING
| 64, 0 },
108 #define MAX_STREAM_NAME 0x1f
110 static UINT
table_get_column_info( MSIDATABASE
*db
, LPCWSTR name
,
111 MSICOLUMNINFO
**pcols
, UINT
*pcount
);
112 static void table_calc_column_offsets( MSICOLUMNINFO
*colinfo
, DWORD count
);
113 static UINT
get_tablecolumns( MSIDATABASE
*db
,
114 LPCWSTR szTableName
, MSICOLUMNINFO
*colinfo
, UINT
*sz
);
115 static void msi_free_colinfo( MSICOLUMNINFO
*colinfo
, UINT count
);
118 void msi_table_set_strref(UINT bytes_per_strref
)
120 _Columns_cols
[0].offset
= 0;
121 _Columns_cols
[1].offset
= bytes_per_strref
;
122 _Columns_cols
[2].offset
= _Columns_cols
[1].offset
+ sizeof(USHORT
);
123 _Columns_cols
[3].offset
= _Columns_cols
[2].offset
+ bytes_per_strref
;
126 static inline UINT
bytes_per_column( const MSICOLUMNINFO
*col
)
128 if( col
->type
& MSITYPE_STRING
)
129 return _Columns_cols
[1].offset
;
130 if( (col
->type
& 0xff) > 4 )
131 ERR("Invalid column size!\n");
132 return col
->type
& 0xff;
135 static int utf2mime(int x
)
137 if( (x
>='0') && (x
<='9') )
139 if( (x
>='A') && (x
<='Z') )
141 if( (x
>='a') && (x
<='z') )
150 LPWSTR
encode_streamname(BOOL bTable
, LPCWSTR in
)
152 DWORD count
= MAX_STREAM_NAME
;
157 count
= lstrlenW( in
)+2;
158 out
= msi_alloc( count
*sizeof(WCHAR
) );
174 if( ( ch
< 0x80 ) && ( utf2mime(ch
) >= 0 ) )
176 ch
= utf2mime(ch
) + 0x4800;
178 if( next
&& (next
<0x80) )
180 next
= utf2mime(next
);
191 ERR("Failed to encode stream name (%s)\n",debugstr_w(in
));
196 static int mime2utf(int x
)
203 return x
- 10 - 26 + 'a';
204 if( x
== (10+26+26) )
209 BOOL
decode_streamname(LPCWSTR in
, LPWSTR out
)
214 while ( (ch
= *in
++) )
216 if( (ch
>= 0x3800 ) && (ch
< 0x4840 ) )
219 ch
= mime2utf(ch
-0x4800);
223 *out
++ = mime2utf(ch
&0x3f);
225 ch
= mime2utf((ch
>>6)&0x3f);
235 void enum_stream_names( IStorage
*stg
)
237 IEnumSTATSTG
*stgenum
= NULL
;
243 r
= IStorage_EnumElements( stg
, 0, NULL
, 0, &stgenum
);
251 r
= IEnumSTATSTG_Next( stgenum
, 1, &stat
, &count
);
252 if( FAILED( r
) || !count
)
254 decode_streamname( stat
.pwcsName
, name
);
255 TRACE("stream %2d -> %s %s\n", n
,
256 debugstr_w(stat
.pwcsName
), debugstr_w(name
) );
260 IEnumSTATSTG_Release( stgenum
);
263 UINT
read_stream_data( IStorage
*stg
, LPCWSTR stname
,
264 USHORT
**pdata
, UINT
*psz
)
267 UINT ret
= ERROR_FUNCTION_FAILED
;
274 encname
= encode_streamname(TRUE
, stname
);
276 TRACE("%s -> %s\n",debugstr_w(stname
),debugstr_w(encname
));
278 r
= IStorage_OpenStream(stg
, encname
, NULL
,
279 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, &stm
);
283 WARN("open stream failed r = %08x - empty table?\n", r
);
287 r
= IStream_Stat(stm
, &stat
, STATFLAG_NONAME
);
290 WARN("open stream failed r = %08x!\n", r
);
294 if( stat
.cbSize
.QuadPart
>> 32 )
300 sz
= stat
.cbSize
.QuadPart
;
301 data
= msi_alloc( sz
);
304 WARN("couldn't allocate memory r=%08x!\n", r
);
305 ret
= ERROR_NOT_ENOUGH_MEMORY
;
309 r
= IStream_Read(stm
, data
, sz
, &count
);
310 if( FAILED( r
) || ( count
!= sz
) )
313 WARN("read stream failed r = %08x!\n", r
);
322 IStream_Release( stm
);
327 UINT
db_get_raw_stream( MSIDATABASE
*db
, LPCWSTR stname
, IStream
**stm
)
332 encname
= encode_streamname(FALSE
, stname
);
334 TRACE("%s -> %s\n",debugstr_w(stname
),debugstr_w(encname
));
336 r
= IStorage_OpenStream(db
->storage
, encname
, NULL
,
337 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, stm
);
340 MSITRANSFORM
*transform
;
342 LIST_FOR_EACH_ENTRY( transform
, &db
->transforms
, MSITRANSFORM
, entry
)
344 TRACE("looking for %s in transform storage\n", debugstr_w(stname
) );
345 r
= IStorage_OpenStream( transform
->stg
, encname
, NULL
,
346 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, stm
);
354 return SUCCEEDED(r
) ? ERROR_SUCCESS
: ERROR_FUNCTION_FAILED
;
357 UINT
read_raw_stream_data( MSIDATABASE
*db
, LPCWSTR stname
,
358 USHORT
**pdata
, UINT
*psz
)
361 UINT ret
= ERROR_FUNCTION_FAILED
;
367 r
= db_get_raw_stream( db
, stname
, &stm
);
368 if( r
!= ERROR_SUCCESS
)
370 r
= IStream_Stat(stm
, &stat
, STATFLAG_NONAME
);
373 WARN("open stream failed r = %08x!\n", r
);
377 if( stat
.cbSize
.QuadPart
>> 32 )
383 sz
= stat
.cbSize
.QuadPart
;
384 data
= msi_alloc( sz
);
387 WARN("couldn't allocate memory r=%08x!\n", r
);
388 ret
= ERROR_NOT_ENOUGH_MEMORY
;
392 r
= IStream_Read(stm
, data
, sz
, &count
);
393 if( FAILED( r
) || ( count
!= sz
) )
396 WARN("read stream failed r = %08x!\n", r
);
405 IStream_Release( stm
);
410 UINT
write_stream_data( IStorage
*stg
, LPCWSTR stname
,
411 LPCVOID data
, UINT sz
, BOOL bTable
)
414 UINT ret
= ERROR_FUNCTION_FAILED
;
421 encname
= encode_streamname(bTable
, stname
);
422 r
= IStorage_OpenStream( stg
, encname
, NULL
,
423 STGM_WRITE
| STGM_SHARE_EXCLUSIVE
, 0, &stm
);
426 r
= IStorage_CreateStream( stg
, encname
,
427 STGM_WRITE
| STGM_SHARE_EXCLUSIVE
, 0, 0, &stm
);
432 WARN("open stream failed r = %08x\n", r
);
437 r
= IStream_SetSize( stm
, size
);
440 WARN("Failed to SetSize\n");
445 r
= IStream_Seek( stm
, pos
, STREAM_SEEK_SET
, NULL
);
448 WARN("Failed to Seek\n");
454 r
= IStream_Write(stm
, data
, sz
, &count
);
455 if( FAILED( r
) || ( count
!= sz
) )
457 WARN("Failed to Write\n");
465 IStream_Release( stm
);
470 static void free_table( MSITABLE
*table
)
473 for( i
=0; i
<table
->row_count
; i
++ )
474 msi_free( table
->data
[i
] );
475 msi_free( table
->data
);
476 for( i
=0; i
<table
->nonpersistent_row_count
; i
++ )
477 msi_free( table
->nonpersistent_data
[i
] );
478 msi_free( table
->nonpersistent_data
);
479 if( (table
->colinfo
!= _Tables_cols
) &&
480 (table
->colinfo
!= _Columns_cols
) )
482 msi_free_colinfo( table
->colinfo
, table
->col_count
);
483 msi_free( table
->colinfo
);
488 static UINT
msi_table_get_row_size( const MSICOLUMNINFO
*cols
, UINT count
)
490 const MSICOLUMNINFO
*last_col
= &cols
[count
-1];
493 return last_col
->offset
+ bytes_per_column( last_col
);
496 /* add this table to the list of cached tables in the database */
497 static UINT
read_table_from_storage( MSITABLE
*t
, IStorage
*stg
)
499 BYTE
*rawdata
= NULL
;
500 UINT rawsize
= 0, i
, j
, row_size
= 0;
502 TRACE("%s\n",debugstr_w(t
->name
));
504 row_size
= msi_table_get_row_size( t
->colinfo
, t
->col_count
);
506 /* if we can't read the table, just assume that it's empty */
507 read_stream_data( stg
, t
->name
, (USHORT
**)&rawdata
, &rawsize
);
509 return ERROR_SUCCESS
;
511 TRACE("Read %d bytes\n", rawsize
);
513 if( rawsize
% row_size
)
515 WARN("Table size is invalid %d/%d\n", rawsize
, row_size
);
519 t
->row_count
= rawsize
/ row_size
;
520 t
->data
= msi_alloc_zero( t
->row_count
* sizeof (USHORT
*) );
524 /* transpose all the data */
525 TRACE("Transposing data from %d rows\n", t
->row_count
);
526 for( i
=0; i
<t
->row_count
; i
++ )
528 t
->data
[i
] = msi_alloc( row_size
);
532 for( j
=0; j
<t
->col_count
; j
++ )
534 UINT ofs
= t
->colinfo
[j
].offset
;
535 UINT n
= bytes_per_column( &t
->colinfo
[j
] );
538 if ( n
!= 2 && n
!= 3 && n
!= 4 )
540 ERR("oops - unknown column width %d\n", n
);
544 for ( k
= 0; k
< n
; k
++ )
545 t
->data
[i
][ofs
+ k
] = rawdata
[ofs
*t
->row_count
+ i
* n
+ k
];
550 return ERROR_SUCCESS
;
553 return ERROR_FUNCTION_FAILED
;
556 void free_cached_tables( MSIDATABASE
*db
)
558 while( !list_empty( &db
->tables
) )
560 MSITABLE
*t
= LIST_ENTRY( list_head( &db
->tables
), MSITABLE
, entry
);
562 list_remove( &t
->entry
);
567 static MSITABLE
*find_cached_table( MSIDATABASE
*db
, LPCWSTR name
)
571 LIST_FOR_EACH_ENTRY( t
, &db
->tables
, MSITABLE
, entry
)
572 if( !lstrcmpW( name
, t
->name
) )
578 static UINT
table_get_column_info( MSIDATABASE
*db
, LPCWSTR name
, MSICOLUMNINFO
**pcols
, UINT
*pcount
)
580 UINT r
, column_count
= 0;
581 MSICOLUMNINFO
*columns
;
583 /* get the number of columns in this table */
585 r
= get_tablecolumns( db
, name
, NULL
, &column_count
);
586 if( r
!= ERROR_SUCCESS
)
589 /* if there's no columns, there's no table */
590 if( column_count
== 0 )
591 return ERROR_INVALID_PARAMETER
;
593 TRACE("Table %s found\n", debugstr_w(name
) );
595 columns
= msi_alloc( column_count
*sizeof (MSICOLUMNINFO
) );
597 return ERROR_FUNCTION_FAILED
;
599 r
= get_tablecolumns( db
, name
, columns
, &column_count
);
600 if( r
!= ERROR_SUCCESS
)
603 return ERROR_FUNCTION_FAILED
;
607 *pcount
= column_count
;
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
->row_count
= 0;
635 table
->nonpersistent_row_count
= 0;
636 table
->nonpersistent_data
= NULL
;
637 table
->colinfo
= NULL
;
638 table
->col_count
= 0;
639 table
->persistent
= persistent
;
640 lstrcpyW( table
->name
, name
);
642 for( col
= col_info
; col
; col
= col
->next
)
645 table
->colinfo
= msi_alloc( table
->col_count
* sizeof(MSICOLUMNINFO
) );
649 return ERROR_FUNCTION_FAILED
;
652 for( i
= 0, col
= col_info
; col
; i
++, col
= col
->next
)
654 table
->colinfo
[ i
].tablename
= strdupW( col
->table
);
655 table
->colinfo
[ i
].number
= i
+ 1;
656 table
->colinfo
[ i
].colname
= strdupW( col
->column
);
657 table
->colinfo
[ i
].type
= col
->type
;
658 table
->colinfo
[ i
].offset
= 0;
659 table
->colinfo
[ i
].hash_table
= NULL
;
661 table_calc_column_offsets( table
->colinfo
, table
->col_count
);
663 r
= TABLE_CreateView( db
, szTables
, &tv
);
664 TRACE("CreateView returned %x\n", r
);
671 r
= tv
->ops
->execute( tv
, 0 );
672 TRACE("tv execute returned %x\n", r
);
676 rec
= MSI_CreateRecord( 1 );
680 r
= MSI_RecordSetStringW( rec
, 1, name
);
684 r
= tv
->ops
->insert_row( tv
, rec
, !persistent
);
685 TRACE("insert_row returned %x\n", r
);
689 tv
->ops
->delete( tv
);
692 msiobj_release( &rec
->hdr
);
697 /* add each column to the _Columns table */
698 r
= TABLE_CreateView( db
, szColumns
, &tv
);
702 r
= tv
->ops
->execute( tv
, 0 );
703 TRACE("tv execute returned %x\n", r
);
707 rec
= MSI_CreateRecord( 4 );
711 r
= MSI_RecordSetStringW( rec
, 1, name
);
716 * need to set the table, column number, col name and type
717 * for each column we enter in the table
720 for( col
= col_info
; col
; col
= col
->next
)
722 r
= MSI_RecordSetInteger( rec
, 2, nField
);
726 r
= MSI_RecordSetStringW( rec
, 3, col
->column
);
730 r
= MSI_RecordSetInteger( rec
, 4, col
->type
);
734 r
= tv
->ops
->insert_row( tv
, rec
, FALSE
);
746 msiobj_release( &rec
->hdr
);
747 /* FIXME: remove values from the string table on error */
749 tv
->ops
->delete( tv
);
751 if (r
== ERROR_SUCCESS
)
753 list_add_head( &db
->tables
, &table
->entry
);
762 static UINT
get_table( MSIDATABASE
*db
, LPCWSTR name
, MSITABLE
**table_ret
)
767 /* first, see if the table is cached */
768 table
= find_cached_table( db
, name
);
772 return ERROR_SUCCESS
;
775 /* nonexistent tables should be interpreted as empty tables */
776 table
= msi_alloc( sizeof (MSITABLE
) + lstrlenW(name
)*sizeof (WCHAR
) );
778 return ERROR_FUNCTION_FAILED
;
780 table
->row_count
= 0;
782 table
->nonpersistent_row_count
= 0;
783 table
->nonpersistent_data
= NULL
;
784 table
->colinfo
= NULL
;
785 table
->col_count
= 0;
786 table
->persistent
= TRUE
;
787 lstrcpyW( table
->name
, name
);
789 /* these two tables are special - we know the column types already */
790 if( !lstrcmpW( name
, szColumns
) )
792 table
->colinfo
= _Columns_cols
;
793 table
->col_count
= sizeof(_Columns_cols
)/sizeof(_Columns_cols
[0]);
795 else if( !lstrcmpW( name
, szTables
) )
797 table
->colinfo
= _Tables_cols
;
798 table
->col_count
= sizeof(_Tables_cols
)/sizeof(_Tables_cols
[0]);
802 r
= table_get_column_info( db
, name
, &table
->colinfo
, &table
->col_count
);
803 if (r
!= ERROR_SUCCESS
)
805 free_table ( table
);
810 r
= read_table_from_storage( table
, db
->storage
);
811 if( r
!= ERROR_SUCCESS
)
817 list_add_head( &db
->tables
, &table
->entry
);
819 return ERROR_SUCCESS
;
822 static UINT
save_table( MSIDATABASE
*db
, const MSITABLE
*t
)
824 BYTE
*rawdata
= NULL
, *p
;
825 UINT rawsize
, r
, i
, j
, row_size
;
827 /* Nothing to do for non-persistent tables */
829 return ERROR_SUCCESS
;
831 TRACE("Saving %s\n", debugstr_w( t
->name
) );
833 row_size
= msi_table_get_row_size( t
->colinfo
, t
->col_count
);
835 rawsize
= t
->row_count
* row_size
;
836 rawdata
= msi_alloc_zero( rawsize
);
839 r
= ERROR_NOT_ENOUGH_MEMORY
;
844 for( i
=0; i
<t
->col_count
; i
++ )
846 for( j
=0; j
<t
->row_count
; j
++ )
848 UINT offset
= t
->colinfo
[i
].offset
;
850 *p
++ = t
->data
[j
][offset
];
851 *p
++ = t
->data
[j
][offset
+ 1];
852 if( 4 == bytes_per_column( &t
->colinfo
[i
] ) )
854 *p
++ = t
->data
[j
][offset
+ 2];
855 *p
++ = t
->data
[j
][offset
+ 3];
860 TRACE("writing %d bytes\n", rawsize
);
861 r
= write_stream_data( db
->storage
, t
->name
, rawdata
, rawsize
, TRUE
);
869 static void table_calc_column_offsets( MSICOLUMNINFO
*colinfo
, DWORD count
)
873 for( i
=0; colinfo
&& (i
<count
); i
++ )
875 assert( (i
+1) == colinfo
[ i
].number
);
877 colinfo
[i
].offset
= colinfo
[ i
- 1 ].offset
878 + bytes_per_column( &colinfo
[ i
- 1 ] );
880 colinfo
[i
].offset
= 0;
881 TRACE("column %d is [%s] with type %08x ofs %d\n",
882 colinfo
[i
].number
, debugstr_w(colinfo
[i
].colname
),
883 colinfo
[i
].type
, colinfo
[i
].offset
);
887 static UINT
get_defaulttablecolumns( LPCWSTR name
, MSICOLUMNINFO
*colinfo
, UINT
*sz
)
889 const MSICOLUMNINFO
*p
;
892 TRACE("%s\n", debugstr_w(name
));
894 if (!lstrcmpW( name
, szTables
))
899 else if (!lstrcmpW( name
, szColumns
))
905 return ERROR_FUNCTION_FAILED
;
907 /* duplicate the string data so we can free it in msi_free_colinfo */
910 if (colinfo
&& (i
< *sz
) )
912 memcpy( &colinfo
[i
], &p
[i
], sizeof(MSICOLUMNINFO
) );
913 colinfo
[i
].tablename
= strdupW( p
[i
].tablename
);
914 colinfo
[i
].colname
= strdupW( p
[i
].colname
);
916 if( colinfo
&& (i
>= *sz
) )
919 table_calc_column_offsets( colinfo
, n
);
921 return ERROR_SUCCESS
;
924 static void msi_free_colinfo( MSICOLUMNINFO
*colinfo
, UINT count
)
928 for( i
=0; i
<count
; i
++ )
930 msi_free( (LPWSTR
) colinfo
[i
].tablename
);
931 msi_free( (LPWSTR
) colinfo
[i
].colname
);
932 msi_free( colinfo
[i
].hash_table
);
936 static LPWSTR
msi_makestring( const MSIDATABASE
*db
, UINT stringid
)
938 return strdupW(msi_string_lookup_id( db
->strings
, stringid
));
941 static UINT
read_table_int(BYTE
*const *data
, UINT row
, UINT col
, UINT bytes
)
945 for (i
= 0; i
< bytes
; i
++)
946 ret
+= (data
[row
][col
+ i
] << i
* 8);
951 static UINT
get_tablecolumns( MSIDATABASE
*db
,
952 LPCWSTR szTableName
, MSICOLUMNINFO
*colinfo
, UINT
*sz
)
954 UINT r
, i
, n
=0, table_id
, count
, maxcount
= *sz
;
955 MSITABLE
*table
= NULL
;
957 TRACE("%s\n", debugstr_w(szTableName
));
959 /* first check if there is a default table with that name */
960 r
= get_defaulttablecolumns( szTableName
, colinfo
, sz
);
961 if( ( r
== ERROR_SUCCESS
) && *sz
)
964 r
= get_table( db
, szColumns
, &table
);
965 if( r
!= ERROR_SUCCESS
)
967 ERR("couldn't load _Columns table\n");
968 return ERROR_FUNCTION_FAILED
;
971 /* convert table and column names to IDs from the string table */
972 r
= msi_string2idW( db
->strings
, szTableName
, &table_id
);
973 if( r
!= ERROR_SUCCESS
)
975 WARN("Couldn't find id for %s\n", debugstr_w(szTableName
));
979 TRACE("Table id is %d, row count is %d\n", table_id
, table
->row_count
);
981 /* Note: _Columns table doesn't have non-persistent data */
983 /* if maxcount is non-zero, assume it's exactly right for this table */
984 memset( colinfo
, 0, maxcount
*sizeof(*colinfo
) );
985 count
= table
->row_count
;
986 for( i
=0; i
<count
; i
++ )
988 if( read_table_int(table
->data
, i
, 0, db
->bytes_per_strref
) != table_id
)
992 UINT id
= read_table_int(table
->data
, i
, _Columns_cols
[2].offset
, db
->bytes_per_strref
);
993 UINT col
= read_table_int(table
->data
, i
, _Columns_cols
[1].offset
, sizeof(USHORT
)) - (1<<15);
995 /* check the column number is in range */
996 if (col
<1 || col
>maxcount
)
998 ERR("column %d out of range\n", col
);
1002 /* check if this column was already set */
1003 if (colinfo
[ col
- 1 ].number
)
1005 ERR("duplicate column %d\n", col
);
1009 colinfo
[ col
- 1 ].tablename
= msi_makestring( db
, table_id
);
1010 colinfo
[ col
- 1 ].number
= col
;
1011 colinfo
[ col
- 1 ].colname
= msi_makestring( db
, id
);
1012 colinfo
[ col
- 1 ].type
= read_table_int(table
->data
, i
, _Columns_cols
[3].offset
, sizeof(USHORT
)) - (1<<15);
1013 colinfo
[ col
- 1 ].offset
= 0;
1014 colinfo
[ col
- 1 ].hash_table
= NULL
;
1019 TRACE("%s has %d columns\n", debugstr_w(szTableName
), n
);
1021 if (colinfo
&& n
!= maxcount
)
1023 ERR("missing column in table %s\n", debugstr_w(szTableName
));
1024 msi_free_colinfo(colinfo
, maxcount
);
1025 return ERROR_FUNCTION_FAILED
;
1028 table_calc_column_offsets( colinfo
, n
);
1031 return ERROR_SUCCESS
;
1034 /* try to find the table name in the _Tables table */
1035 BOOL
TABLE_Exists( MSIDATABASE
*db
, LPCWSTR name
)
1037 UINT r
, table_id
= 0, i
, count
;
1038 MSITABLE
*table
= NULL
;
1040 if( !lstrcmpW( name
, szTables
) )
1042 if( !lstrcmpW( name
, szColumns
) )
1045 r
= msi_string2idW( db
->strings
, name
, &table_id
);
1046 if( r
!= ERROR_SUCCESS
)
1048 TRACE("Couldn't find id for %s\n", debugstr_w(name
));
1052 r
= get_table( db
, szTables
, &table
);
1053 if( r
!= ERROR_SUCCESS
)
1055 ERR("table %s not available\n", debugstr_w(szTables
));
1059 count
= table
->row_count
;
1060 for( i
=0; i
<count
; i
++ )
1061 if( table
->data
[ i
][ 0 ] == table_id
)
1067 count
= table
->nonpersistent_row_count
;
1068 for( i
=0; i
<count
; i
++ )
1069 if( table
->nonpersistent_data
[ i
][ 0 ] == table_id
)
1075 TRACE("Searched %d tables, but %d was not found\n", count
, table_id
);
1080 /* below is the query interface to a table */
1082 typedef struct tagMSITABLEVIEW
1087 MSICOLUMNINFO
*columns
;
1093 static UINT
TABLE_fetch_int( struct tagMSIVIEW
*view
, UINT row
, UINT col
, UINT
*val
)
1095 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1100 return ERROR_INVALID_PARAMETER
;
1102 if( (col
==0) || (col
>tv
->num_cols
) )
1103 return ERROR_INVALID_PARAMETER
;
1105 /* how many rows are there ? */
1106 if( row
>= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
)
1107 return ERROR_NO_MORE_ITEMS
;
1109 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1111 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1112 ERR("%p %p\n", tv
, tv
->columns
);
1113 return ERROR_FUNCTION_FAILED
;
1116 if (row
>= tv
->table
->row_count
)
1118 row
-= tv
->table
->row_count
;
1119 data
= tv
->table
->nonpersistent_data
;
1122 data
= tv
->table
->data
;
1124 n
= bytes_per_column( &tv
->columns
[col
-1] );
1125 if (n
!= 2 && n
!= 3 && n
!= 4)
1127 ERR("oops! what is %d bytes per column?\n", n
);
1128 return ERROR_FUNCTION_FAILED
;
1131 offset
= tv
->columns
[col
-1].offset
;
1132 *val
= read_table_int(data
, row
, offset
, n
);
1134 /* TRACE("Data [%d][%d] = %d\n", row, col, *val ); */
1136 return ERROR_SUCCESS
;
1140 * We need a special case for streams, as we need to reference column with
1141 * the name of the stream in the same table, and the table name
1142 * which may not be available at higher levels of the query
1144 static UINT
TABLE_fetch_stream( struct tagMSIVIEW
*view
, UINT row
, UINT col
, IStream
**stm
)
1146 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1147 UINT ival
= 0, refcol
= 0, r
;
1151 static const WCHAR szDot
[] = { '.', 0 };
1154 if( !view
->ops
->fetch_int
)
1155 return ERROR_INVALID_PARAMETER
;
1158 * The column marked with the type stream data seems to have a single number
1159 * which references the column containing the name of the stream data
1161 * Fetch the column to reference first.
1163 r
= view
->ops
->fetch_int( view
, row
, col
, &ival
);
1164 if( r
!= ERROR_SUCCESS
)
1167 /* check the column value is in range */
1168 if (ival
< 0 || ival
> tv
->num_cols
|| ival
== col
)
1170 ERR("bad column ref (%u) for stream\n", ival
);
1171 return ERROR_FUNCTION_FAILED
;
1174 if ( tv
->columns
[ival
- 1].type
& MSITYPE_STRING
)
1176 /* now get the column with the name of the stream */
1177 r
= view
->ops
->fetch_int( view
, row
, ival
, &refcol
);
1178 if ( r
!= ERROR_SUCCESS
)
1181 /* lookup the string value from the string table */
1182 sval
= msi_string_lookup_id( tv
->db
->strings
, refcol
);
1184 return ERROR_INVALID_PARAMETER
;
1188 static const WCHAR fmt
[] = { '%','d',0 };
1189 sprintfW( number
, fmt
, ival
);
1193 len
= lstrlenW( tv
->name
) + 2 + lstrlenW( sval
);
1194 full_name
= msi_alloc( len
*sizeof(WCHAR
) );
1195 lstrcpyW( full_name
, tv
->name
);
1196 lstrcatW( full_name
, szDot
);
1197 lstrcatW( full_name
, sval
);
1199 r
= db_get_raw_stream( tv
->db
, full_name
, stm
);
1201 ERR("fetching stream %s, error = %d\n",debugstr_w(full_name
), r
);
1202 msi_free( full_name
);
1207 static UINT
TABLE_set_int( MSITABLEVIEW
*tv
, UINT row
, UINT col
, UINT val
)
1213 return ERROR_INVALID_PARAMETER
;
1215 if( (col
==0) || (col
>tv
->num_cols
) )
1216 return ERROR_INVALID_PARAMETER
;
1218 if( row
>= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
)
1219 return ERROR_INVALID_PARAMETER
;
1221 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1223 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1224 ERR("%p %p\n", tv
, tv
->columns
);
1225 return ERROR_FUNCTION_FAILED
;
1228 msi_free( tv
->columns
[col
-1].hash_table
);
1229 tv
->columns
[col
-1].hash_table
= NULL
;
1231 if (row
>= tv
->table
->row_count
)
1233 row
-= tv
->table
->row_count
;
1234 data
= tv
->table
->nonpersistent_data
;
1237 data
= tv
->table
->data
;
1239 n
= bytes_per_column( &tv
->columns
[col
-1] );
1240 if ( n
!= 2 && n
!= 3 && n
!= 4 )
1242 ERR("oops! what is %d bytes per column?\n", n
);
1243 return ERROR_FUNCTION_FAILED
;
1246 offset
= tv
->columns
[col
-1].offset
;
1247 for ( i
= 0; i
< n
; i
++ )
1248 data
[row
][offset
+ i
] = (val
>> i
* 8) & 0xff;
1250 return ERROR_SUCCESS
;
1253 static UINT
TABLE_set_row( struct tagMSIVIEW
*view
, UINT row
, MSIRECORD
*rec
, UINT mask
)
1255 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1256 UINT i
, val
, r
= ERROR_SUCCESS
;
1259 return ERROR_INVALID_PARAMETER
;
1261 /* test if any of the mask bits are invalid */
1262 if ( mask
>= (1<<tv
->num_cols
) )
1263 return ERROR_INVALID_PARAMETER
;
1265 for ( i
= 0; i
< tv
->num_cols
; i
++ )
1269 /* only update the fields specified in the mask */
1270 if ( !(mask
&(1<<i
)) )
1273 /* if row >= tv->table->row_count then it is a non-persistent row */
1274 persistent
= tv
->table
->persistent
&& (row
< tv
->table
->row_count
);
1275 /* FIXME: should we allow updating keys? */
1278 if ( !MSI_RecordIsNull( rec
, i
+ 1 ) )
1280 if ( MSITYPE_IS_BINARY(tv
->columns
[ i
].type
) )
1282 val
= 1; /* refers to the first key column */
1284 else if ( tv
->columns
[i
].type
& MSITYPE_STRING
)
1286 LPCWSTR sval
= MSI_RecordGetString( rec
, i
+ 1 );
1287 val
= msi_addstringW( tv
->db
->strings
, 0, sval
, -1, 1,
1288 persistent
? StringPersistent
: StringNonPersistent
);
1290 else if ( 2 == bytes_per_column( &tv
->columns
[ i
] ) )
1292 val
= 0x8000 + MSI_RecordGetInteger( rec
, i
+ 1 );
1293 if ( val
& 0xffff0000 )
1295 ERR("field %u value %d out of range\n", i
+1, val
- 0x8000 );
1296 return ERROR_FUNCTION_FAILED
;
1301 INT ival
= MSI_RecordGetInteger( rec
, i
+ 1 );
1302 val
= ival
^ 0x80000000;
1306 r
= TABLE_set_int( tv
, row
, i
+1, val
);
1307 if ( r
!= ERROR_SUCCESS
)
1313 static UINT
table_create_new_row( struct tagMSIVIEW
*view
, UINT
*num
, BOOL temporary
)
1315 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1321 TRACE("%p %s\n", view
, temporary
? "TRUE" : "FALSE");
1324 return ERROR_INVALID_PARAMETER
;
1326 row
= msi_alloc_zero( tv
->row_size
);
1328 return ERROR_NOT_ENOUGH_MEMORY
;
1332 row_count
= &tv
->table
->nonpersistent_row_count
;
1333 data_ptr
= &tv
->table
->nonpersistent_data
;
1334 *num
= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
;
1338 row_count
= &tv
->table
->row_count
;
1339 data_ptr
= &tv
->table
->data
;
1340 *num
= tv
->table
->row_count
;
1343 sz
= (*row_count
+ 1) * sizeof (BYTE
*);
1345 p
= msi_realloc( *data_ptr
, sz
);
1347 p
= msi_alloc( sz
);
1351 return ERROR_NOT_ENOUGH_MEMORY
;
1355 (*data_ptr
)[*row_count
] = row
;
1358 return ERROR_SUCCESS
;
1361 static UINT
TABLE_execute( struct tagMSIVIEW
*view
, MSIRECORD
*record
)
1363 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1365 TRACE("%p %p\n", tv
, record
);
1367 TRACE("There are %d columns\n", tv
->num_cols
);
1369 return ERROR_SUCCESS
;
1372 static UINT
TABLE_close( struct tagMSIVIEW
*view
)
1374 TRACE("%p\n", view
);
1376 return ERROR_SUCCESS
;
1379 static UINT
TABLE_get_dimensions( struct tagMSIVIEW
*view
, UINT
*rows
, UINT
*cols
)
1381 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1383 TRACE("%p %p %p\n", view
, rows
, cols
);
1386 *cols
= tv
->num_cols
;
1390 return ERROR_INVALID_PARAMETER
;
1391 *rows
= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
;
1394 return ERROR_SUCCESS
;
1397 static UINT
TABLE_get_column_info( struct tagMSIVIEW
*view
,
1398 UINT n
, LPWSTR
*name
, UINT
*type
)
1400 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1402 TRACE("%p %d %p %p\n", tv
, n
, name
, type
);
1404 if( ( n
== 0 ) || ( n
> tv
->num_cols
) )
1405 return ERROR_INVALID_PARAMETER
;
1409 *name
= strdupW( tv
->columns
[n
-1].colname
);
1411 return ERROR_FUNCTION_FAILED
;
1414 *type
= tv
->columns
[n
-1].type
;
1416 return ERROR_SUCCESS
;
1419 static UINT
msi_table_find_row( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT
*row
);
1421 static UINT
table_validate_new( MSITABLEVIEW
*tv
, MSIRECORD
*rec
)
1425 /* check there's no null values where they're not allowed */
1426 for( i
= 0; i
< tv
->num_cols
; i
++ )
1428 if ( tv
->columns
[i
].type
& MSITYPE_NULLABLE
)
1431 if ( MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
1432 TRACE("skipping binary column\n");
1433 else if ( tv
->columns
[i
].type
& MSITYPE_STRING
)
1437 str
= MSI_RecordGetString( rec
, i
+1 );
1438 if (str
== NULL
|| str
[0] == 0)
1439 return ERROR_INVALID_DATA
;
1445 n
= MSI_RecordGetInteger( rec
, i
+1 );
1446 if (n
== MSI_NULL_INTEGER
)
1447 return ERROR_INVALID_DATA
;
1451 /* check there's no duplicate keys */
1452 r
= msi_table_find_row( tv
, rec
, &row
);
1453 if (r
== ERROR_SUCCESS
)
1454 return ERROR_INVALID_DATA
;
1456 return ERROR_SUCCESS
;
1459 static UINT
TABLE_insert_row( struct tagMSIVIEW
*view
, MSIRECORD
*rec
, BOOL temporary
)
1461 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1464 TRACE("%p %p %s\n", tv
, rec
, temporary
? "TRUE" : "FALSE" );
1466 /* check that the key is unique - can we find a matching row? */
1467 r
= table_validate_new( tv
, rec
);
1468 if( r
!= ERROR_SUCCESS
)
1469 return ERROR_FUNCTION_FAILED
;
1471 r
= table_create_new_row( view
, &row
, temporary
);
1472 TRACE("insert_row returned %08x\n", r
);
1473 if( r
!= ERROR_SUCCESS
)
1476 return TABLE_set_row( view
, row
, rec
, (1<<tv
->num_cols
) - 1 );
1479 static UINT
TABLE_modify( struct tagMSIVIEW
*view
, MSIMODIFY eModifyMode
,
1482 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1485 TRACE("%p %d %p\n", view
, eModifyMode
, rec
);
1487 switch (eModifyMode
)
1489 case MSIMODIFY_VALIDATE_NEW
:
1490 r
= table_validate_new( tv
, rec
);
1493 case MSIMODIFY_INSERT_TEMPORARY
:
1494 r
= table_validate_new( tv
, rec
);
1495 if (r
!= ERROR_SUCCESS
)
1497 r
= TABLE_insert_row( view
, rec
, TRUE
);
1500 case MSIMODIFY_REFRESH
:
1501 case MSIMODIFY_INSERT
:
1502 case MSIMODIFY_UPDATE
:
1503 case MSIMODIFY_ASSIGN
:
1504 case MSIMODIFY_REPLACE
:
1505 case MSIMODIFY_MERGE
:
1506 case MSIMODIFY_DELETE
:
1507 case MSIMODIFY_VALIDATE
:
1508 case MSIMODIFY_VALIDATE_FIELD
:
1509 case MSIMODIFY_VALIDATE_DELETE
:
1510 FIXME("%p %d %p - mode not implemented\n", view
, eModifyMode
, rec
);
1511 r
= ERROR_CALL_NOT_IMPLEMENTED
;
1515 r
= ERROR_INVALID_DATA
;
1521 static UINT
TABLE_delete( struct tagMSIVIEW
*view
)
1523 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1525 TRACE("%p\n", view
);
1533 return ERROR_SUCCESS
;
1536 static UINT
TABLE_find_matching_rows( struct tagMSIVIEW
*view
, UINT col
,
1537 UINT val
, UINT
*row
, MSIITERHANDLE
*handle
)
1539 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1540 const MSICOLUMNHASHENTRY
*entry
;
1542 TRACE("%p, %d, %u, %p\n", view
, col
, val
, *handle
);
1545 return ERROR_INVALID_PARAMETER
;
1547 if( (col
==0) || (col
> tv
->num_cols
) )
1548 return ERROR_INVALID_PARAMETER
;
1550 if( !tv
->columns
[col
-1].hash_table
)
1553 UINT num_rows
= tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
;
1554 MSICOLUMNHASHENTRY
**hash_table
;
1555 MSICOLUMNHASHENTRY
*new_entry
;
1557 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1559 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1560 ERR("%p %p\n", tv
, tv
->columns
);
1561 return ERROR_FUNCTION_FAILED
;
1564 /* allocate contiguous memory for the table and its entries so we
1565 * don't have to do an expensive cleanup */
1566 hash_table
= msi_alloc(MSITABLE_HASH_TABLE_SIZE
* sizeof(MSICOLUMNHASHENTRY
*) +
1567 num_rows
* sizeof(MSICOLUMNHASHENTRY
));
1569 return ERROR_OUTOFMEMORY
;
1571 memset(hash_table
, 0, MSITABLE_HASH_TABLE_SIZE
* sizeof(MSICOLUMNHASHENTRY
*));
1572 tv
->columns
[col
-1].hash_table
= hash_table
;
1574 new_entry
= (MSICOLUMNHASHENTRY
*)(hash_table
+ MSITABLE_HASH_TABLE_SIZE
);
1576 for (i
= 0; i
< num_rows
; i
++, new_entry
++)
1580 if (view
->ops
->fetch_int( view
, i
, col
, &row_value
) != ERROR_SUCCESS
)
1583 new_entry
->next
= NULL
;
1584 new_entry
->value
= row_value
;
1586 if (hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
])
1588 MSICOLUMNHASHENTRY
*prev_entry
= hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
];
1589 while (prev_entry
->next
)
1590 prev_entry
= prev_entry
->next
;
1591 prev_entry
->next
= new_entry
;
1594 hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
] = new_entry
;
1599 entry
= tv
->columns
[col
-1].hash_table
[val
% MSITABLE_HASH_TABLE_SIZE
];
1601 entry
= (*handle
)->next
;
1603 while (entry
&& entry
->value
!= val
)
1604 entry
= entry
->next
;
1608 return ERROR_NO_MORE_ITEMS
;
1611 return ERROR_SUCCESS
;
1615 static const MSIVIEWOPS table_ops
=
1623 TABLE_get_dimensions
,
1624 TABLE_get_column_info
,
1627 TABLE_find_matching_rows
1630 UINT
TABLE_CreateView( MSIDATABASE
*db
, LPCWSTR name
, MSIVIEW
**view
)
1635 static const WCHAR Streams
[] = {'_','S','t','r','e','a','m','s',0};
1637 TRACE("%p %s %p\n", db
, debugstr_w(name
), view
);
1639 if ( !lstrcmpW( name
, Streams
) )
1640 return STREAMS_CreateView( db
, view
);
1642 sz
= sizeof *tv
+ lstrlenW(name
)*sizeof name
[0] ;
1643 tv
= msi_alloc_zero( sz
);
1645 return ERROR_FUNCTION_FAILED
;
1647 r
= get_table( db
, name
, &tv
->table
);
1648 if( r
!= ERROR_SUCCESS
)
1651 WARN("table not found\n");
1655 TRACE("table %p found with %d columns\n", tv
->table
, tv
->table
->col_count
);
1657 /* fill the structure */
1658 tv
->view
.ops
= &table_ops
;
1660 tv
->columns
= tv
->table
->colinfo
;
1661 tv
->num_cols
= tv
->table
->col_count
;
1662 tv
->row_size
= msi_table_get_row_size( tv
->table
->colinfo
, tv
->table
->col_count
);
1664 TRACE("%s one row is %d bytes\n", debugstr_w(name
), tv
->row_size
);
1666 *view
= (MSIVIEW
*) tv
;
1667 lstrcpyW( tv
->name
, name
);
1669 return ERROR_SUCCESS
;
1672 UINT
MSI_CommitTables( MSIDATABASE
*db
)
1675 MSITABLE
*table
= NULL
;
1679 r
= msi_save_string_table( db
->strings
, db
->storage
);
1680 if( r
!= ERROR_SUCCESS
)
1682 WARN("failed to save string table r=%08x\n",r
);
1686 LIST_FOR_EACH_ENTRY( table
, &db
->tables
, MSITABLE
, entry
)
1688 r
= save_table( db
, table
);
1689 if( r
!= ERROR_SUCCESS
)
1691 WARN("failed to save table %s (r=%08x)\n",
1692 debugstr_w(table
->name
), r
);
1697 /* force everything to reload next time */
1698 free_cached_tables( db
);
1700 return ERROR_SUCCESS
;
1703 MSICONDITION
MSI_DatabaseIsTablePersistent( MSIDATABASE
*db
, LPCWSTR table
)
1708 TRACE("%p %s\n", db
, debugstr_w(table
));
1711 return MSICONDITION_ERROR
;
1713 r
= get_table( db
, table
, &t
);
1714 if (r
!= ERROR_SUCCESS
)
1715 return MSICONDITION_NONE
;
1718 return MSICONDITION_TRUE
;
1720 return MSICONDITION_FALSE
;
1723 static MSIRECORD
*msi_get_transform_record( const MSITABLEVIEW
*tv
, const string_table
*st
,
1724 const USHORT
*rawdata
)
1726 UINT i
, val
, ofs
= 0;
1727 USHORT mask
= *rawdata
++;
1728 MSICOLUMNINFO
*columns
= tv
->columns
;
1731 rec
= MSI_CreateRecord( tv
->num_cols
);
1736 for( i
=0; i
<tv
->num_cols
; i
++ )
1738 UINT n
= bytes_per_column( &columns
[i
] );
1740 if ( (mask
&1) && (i
>=(mask
>>8)) )
1742 /* all keys must be present */
1743 if ( (~mask
&1) && (~columns
[i
].type
& MSITYPE_KEY
) && ((1<<i
) & ~mask
) )
1750 if( (columns
[i
].type
& MSITYPE_STRING
) &&
1751 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
1753 LPCWSTR sval
= msi_string_lookup_id( st
, val
);
1754 MSI_RecordSetStringW( rec
, i
+1, sval
);
1755 TRACE(" field %d [%s]\n", i
+1, debugstr_w(sval
));
1760 MSI_RecordSetInteger( rec
, i
+1, val
^0x8000 );
1761 TRACE(" field %d [0x%04x]\n", i
+1, val
);
1765 val
= (rawdata
[ofs
] + (rawdata
[ofs
+ 1]<<16));
1767 MSI_RecordSetInteger( rec
, i
+1, val
^0x80000000 );
1768 TRACE(" field %d [0x%08x]\n", i
+1, val
);
1771 ERR("oops - unknown column width %d\n", n
);
1779 static void dump_record( MSIRECORD
*rec
)
1783 n
= MSI_RecordGetFieldCount( rec
);
1784 for( i
=1; i
<=n
; i
++ )
1786 LPCWSTR sval
= MSI_RecordGetString( rec
, i
);
1788 if( MSI_RecordIsNull( rec
, i
) )
1789 TRACE("row -> []\n");
1790 else if( (sval
= MSI_RecordGetString( rec
, i
)) )
1791 TRACE("row -> [%s]\n", debugstr_w(sval
));
1793 TRACE("row -> [0x%08x]\n", MSI_RecordGetInteger( rec
, i
) );
1797 static void dump_table( const string_table
*st
, const USHORT
*rawdata
, UINT rawsize
)
1802 for( i
=0; i
<(rawsize
/2); i
++ )
1804 sval
= msi_string_lookup_id( st
, rawdata
[i
] );
1805 MESSAGE(" %04x %s\n", rawdata
[i
], debugstr_w(sval
) );
1809 static UINT
* msi_record_to_row( const MSITABLEVIEW
*tv
, MSIRECORD
*rec
)
1814 data
= msi_alloc( tv
->num_cols
*sizeof (UINT
) );
1815 for( i
=0; i
<tv
->num_cols
; i
++ )
1819 if ( ~tv
->columns
[i
].type
& MSITYPE_KEY
)
1822 /* turn the transform column value into a row value */
1823 if ( ( tv
->columns
[i
].type
& MSITYPE_STRING
) &&
1824 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
1826 str
= MSI_RecordGetString( rec
, i
+1 );
1827 r
= msi_string2idW( tv
->db
->strings
, str
, &data
[i
] );
1829 /* if there's no matching string in the string table,
1830 these keys can't match any record, so fail now. */
1831 if( ERROR_SUCCESS
!= r
)
1839 data
[i
] = MSI_RecordGetInteger( rec
, i
+1 );
1840 if ((tv
->columns
[i
].type
&0xff) == 2)
1843 data
[i
] += 0x80000000;
1849 static UINT
msi_row_matches( MSITABLEVIEW
*tv
, UINT row
, const UINT
*data
)
1851 UINT i
, r
, x
, ret
= ERROR_FUNCTION_FAILED
;
1853 for( i
=0; i
<tv
->num_cols
; i
++ )
1855 if ( ~tv
->columns
[i
].type
& MSITYPE_KEY
)
1858 /* turn the transform column value into a row value */
1859 r
= TABLE_fetch_int( &tv
->view
, row
, i
+1, &x
);
1860 if ( r
!= ERROR_SUCCESS
)
1862 ERR("TABLE_fetch_int shouldn't fail here\n");
1866 /* if this key matches, move to the next column */
1869 ret
= ERROR_FUNCTION_FAILED
;
1873 ret
= ERROR_SUCCESS
;
1879 static UINT
msi_table_find_row( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT
*row
)
1881 UINT i
, r
= ERROR_FUNCTION_FAILED
, *data
;
1883 data
= msi_record_to_row( tv
, rec
);
1886 for( i
= 0; i
< tv
->table
->row_count
+ tv
->table
->nonpersistent_row_count
; i
++ )
1888 r
= msi_row_matches( tv
, i
, data
);
1889 if( r
== ERROR_SUCCESS
)
1899 static UINT
msi_delete_row( MSITABLEVIEW
*tv
, UINT row
)
1903 for( i
=1; i
<=tv
->num_cols
; i
++ )
1904 TABLE_set_int( tv
, row
, i
, 0 );
1905 return ERROR_SUCCESS
;
1908 static UINT
msi_table_load_transform( MSIDATABASE
*db
, IStorage
*stg
,
1909 string_table
*st
, LPCWSTR name
)
1912 USHORT
*rawdata
= NULL
;
1913 MSITABLEVIEW
*tv
= NULL
;
1914 UINT r
, n
, sz
, i
, mask
;
1915 MSIRECORD
*rec
= NULL
;
1920 TRACE("%p %p %p %s\n", db
, stg
, st
, debugstr_w(name
) );
1922 /* read the transform data */
1923 read_stream_data( stg
, name
, &rawdata
, &rawsize
);
1926 TRACE("table %s empty\n", debugstr_w(name
) );
1927 return ERROR_INVALID_TABLE
;
1930 /* create a table view */
1931 r
= TABLE_CreateView( db
, name
, (MSIVIEW
**) &tv
);
1932 if( r
!= ERROR_SUCCESS
)
1935 r
= tv
->view
.ops
->execute( &tv
->view
, NULL
);
1936 if( r
!= ERROR_SUCCESS
)
1939 TRACE("name = %s columns = %u row_size = %u raw size = %u\n",
1940 debugstr_w(name
), tv
->num_cols
, tv
->row_size
, rawsize
);
1942 /* interpret the data */
1944 for( n
=0; n
< (rawsize
/2); )
1951 * if the low bit is set, columns are continuous and
1952 * the number of columns is specified in the high byte
1954 sz
= 2 + tv
->row_size
;
1959 * If the low bit is not set, rowdata[n] is a bitmask.
1960 * Excepting for key fields, which are always present,
1961 * each bit indicates that a field is present in the transform record.
1963 * rawdata[n] == 0 is a special case ... only the keys will be present
1964 * and it means that this row should be deleted.
1967 for( i
=0; i
<tv
->num_cols
; i
++ )
1969 if( (tv
->columns
[i
].type
& MSITYPE_KEY
) || ((1<<i
)&mask
))
1970 sz
+= bytes_per_column( &tv
->columns
[i
] );
1974 /* check we didn't run of the end of the table */
1975 if ( (n
+sz
) > rawsize
)
1978 dump_table( st
, rawdata
, rawsize
);
1982 rec
= msi_get_transform_record( tv
, st
, &rawdata
[n
] );
1987 TRACE("inserting record\n");
1990 * Native msi seems writes nul into the
1991 * Number (2nd) column of the _Columns table.
1992 * Not sure that it's deliberate...
1994 if (!lstrcmpW(name
, szColumns
))
1999 MSI_RecordGetStringW( rec
, 1, table
, &sz
);
2001 /* reset the column number on a new table */
2002 if ( lstrcmpW(coltable
, table
) )
2005 lstrcpyW( coltable
, table
);
2008 /* fix nul column numbers */
2009 MSI_RecordSetInteger( rec
, 2, ++colcol
);
2012 r
= TABLE_insert_row( &tv
->view
, rec
, FALSE
);
2013 if (r
!= ERROR_SUCCESS
)
2014 ERR("insert row failed\n");
2020 r
= msi_table_find_row( tv
, rec
, &row
);
2021 if (r
!= ERROR_SUCCESS
)
2022 ERR("no matching row to transform\n");
2025 TRACE("modifying row [%d]:\n", row
);
2026 TABLE_set_row( &tv
->view
, row
, rec
, mask
);
2030 TRACE("deleting row [%d]:\n", row
);
2031 msi_delete_row( tv
, row
);
2034 if( TRACE_ON(msidb
) ) dump_record( rec
);
2035 msiobj_release( &rec
->hdr
);
2042 /* no need to free the table, it's associated with the database */
2043 msi_free( rawdata
);
2045 tv
->view
.ops
->delete( &tv
->view
);
2047 return ERROR_SUCCESS
;
2051 * msi_table_apply_transform
2053 * Enumerate the table transforms in a transform storage and apply each one.
2055 UINT
msi_table_apply_transform( MSIDATABASE
*db
, IStorage
*stg
)
2057 IEnumSTATSTG
*stgenum
= NULL
;
2062 string_table
*strings
;
2063 UINT ret
= ERROR_FUNCTION_FAILED
;
2065 TRACE("%p %p\n", db
, stg
);
2067 strings
= msi_load_string_table( stg
, &db
->bytes_per_strref
);
2071 r
= IStorage_EnumElements( stg
, 0, NULL
, 0, &stgenum
);
2076 * Apply _Tables and _Columns transforms first so that
2077 * the table metadata is correct, and empty tables exist.
2079 ret
= msi_table_load_transform( db
, stg
, strings
, szTables
);
2080 if (ret
!= ERROR_SUCCESS
&& ret
!= ERROR_INVALID_TABLE
)
2083 ret
= msi_table_load_transform( db
, stg
, strings
, szColumns
);
2084 if (ret
!= ERROR_SUCCESS
&& ret
!= ERROR_INVALID_TABLE
)
2087 ret
= ERROR_SUCCESS
;
2089 while( r
== ERROR_SUCCESS
)
2092 r
= IEnumSTATSTG_Next( stgenum
, 1, &stat
, &count
);
2093 if( FAILED( r
) || !count
)
2096 decode_streamname( stat
.pwcsName
, name
);
2097 if ( name
[0] != 0x4840 )
2100 TRACE("transform contains stream %s\n", debugstr_w(name
));
2102 if ( !lstrcmpW( name
+1, szStringPool
) ||
2103 !lstrcmpW( name
+1, szStringData
) ||
2104 !lstrcmpW( name
+1, szColumns
) ||
2105 !lstrcmpW( name
+1, szTables
) )
2108 ret
= msi_table_load_transform( db
, stg
, strings
, name
+1 );
2111 if ( ret
== ERROR_SUCCESS
)
2112 append_storage_to_db( db
, stg
);
2116 IEnumSTATSTG_Release( stgenum
);
2118 msi_destroy_stringtable( strings
);
2123 void append_storage_to_db( MSIDATABASE
*db
, IStorage
*stg
)
2127 t
= msi_alloc( sizeof *t
);
2129 IStorage_AddRef( stg
);
2130 list_add_tail( &db
->transforms
, &t
->entry
);
2133 void msi_free_transforms( MSIDATABASE
*db
)
2135 while( !list_empty( &db
->transforms
) )
2137 MSITRANSFORM
*t
= LIST_ENTRY( list_head( &db
->transforms
),
2138 MSITRANSFORM
, entry
);
2139 list_remove( &t
->entry
);
2140 IStorage_Release( t
->stg
);