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
46 typedef struct tagMSICOLUMNHASHENTRY
48 struct tagMSICOLUMNHASHENTRY
*next
;
53 typedef struct tagMSICOLUMNINFO
62 MSICOLUMNHASHENTRY
**hash_table
;
68 BOOL
*data_persistent
;
71 MSICOLUMNINFO
*colinfo
;
73 MSICONDITION persistent
;
78 /* information for default tables */
79 static const WCHAR szTables
[] = {'_','T','a','b','l','e','s',0};
80 static const WCHAR szTable
[] = {'T','a','b','l','e',0};
81 static const WCHAR szColumns
[] = {'_','C','o','l','u','m','n','s',0};
82 static const WCHAR szNumber
[] = {'N','u','m','b','e','r',0};
83 static const WCHAR szType
[] = {'T','y','p','e',0};
85 static const MSICOLUMNINFO _Columns_cols
[4] = {
86 { szColumns
, 1, szTable
, MSITYPE_VALID
| MSITYPE_STRING
| MSITYPE_KEY
| 64, 0, 0, 0, NULL
},
87 { szColumns
, 2, szNumber
, MSITYPE_VALID
| MSITYPE_KEY
| 2, 2, 0, 0, NULL
},
88 { szColumns
, 3, szName
, MSITYPE_VALID
| MSITYPE_STRING
| 64, 4, 0, 0, NULL
},
89 { szColumns
, 4, szType
, MSITYPE_VALID
| 2, 6, 0, 0, NULL
},
92 static const MSICOLUMNINFO _Tables_cols
[1] = {
93 { szTables
, 1, szName
, MSITYPE_VALID
| MSITYPE_STRING
| MSITYPE_KEY
| 64, 0, 0, 0, NULL
},
96 #define MAX_STREAM_NAME 0x1f
98 static inline UINT
bytes_per_column( MSIDATABASE
*db
, const MSICOLUMNINFO
*col
, UINT bytes_per_strref
)
100 if( MSITYPE_IS_BINARY(col
->type
) )
103 if( col
->type
& MSITYPE_STRING
)
104 return bytes_per_strref
;
106 if( (col
->type
& 0xff) <= 2)
109 if( (col
->type
& 0xff) != 4 )
110 ERR("Invalid column size!\n");
115 static int utf2mime(int x
)
117 if( (x
>='0') && (x
<='9') )
119 if( (x
>='A') && (x
<='Z') )
121 if( (x
>='a') && (x
<='z') )
130 LPWSTR
encode_streamname(BOOL bTable
, LPCWSTR in
)
132 DWORD count
= MAX_STREAM_NAME
;
137 count
= lstrlenW( in
)+2;
138 if (!(out
= msi_alloc( count
*sizeof(WCHAR
) ))) return NULL
;
154 if( ( ch
< 0x80 ) && ( utf2mime(ch
) >= 0 ) )
156 ch
= utf2mime(ch
) + 0x4800;
158 if( next
&& (next
<0x80) )
160 next
= utf2mime(next
);
171 ERR("Failed to encode stream name (%s)\n",debugstr_w(in
));
176 static int mime2utf(int x
)
183 return x
- 10 - 26 + 'a';
184 if( x
== (10+26+26) )
189 BOOL
decode_streamname(LPCWSTR in
, LPWSTR out
)
194 while ( (ch
= *in
++) )
196 if( (ch
>= 0x3800 ) && (ch
< 0x4840 ) )
199 ch
= mime2utf(ch
-0x4800);
203 *out
++ = mime2utf(ch
&0x3f);
205 ch
= mime2utf((ch
>>6)&0x3f);
215 void enum_stream_names( IStorage
*stg
)
217 IEnumSTATSTG
*stgenum
= NULL
;
223 r
= IStorage_EnumElements( stg
, 0, NULL
, 0, &stgenum
);
231 r
= IEnumSTATSTG_Next( stgenum
, 1, &stat
, &count
);
232 if( FAILED( r
) || !count
)
234 decode_streamname( stat
.pwcsName
, name
);
235 TRACE("stream %2d -> %s %s\n", n
,
236 debugstr_w(stat
.pwcsName
), debugstr_w(name
) );
237 CoTaskMemFree( stat
.pwcsName
);
241 IEnumSTATSTG_Release( stgenum
);
244 UINT
read_stream_data( IStorage
*stg
, LPCWSTR stname
, BOOL table
,
245 BYTE
**pdata
, UINT
*psz
)
248 UINT ret
= ERROR_FUNCTION_FAILED
;
255 encname
= encode_streamname(table
, stname
);
257 TRACE("%s -> %s\n",debugstr_w(stname
),debugstr_w(encname
));
259 r
= IStorage_OpenStream(stg
, encname
, NULL
,
260 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, &stm
);
264 WARN("open stream failed r = %08x - empty table?\n", r
);
268 r
= IStream_Stat(stm
, &stat
, STATFLAG_NONAME
);
271 WARN("open stream failed r = %08x!\n", r
);
275 if( stat
.cbSize
.QuadPart
>> 32 )
281 sz
= stat
.cbSize
.QuadPart
;
282 data
= msi_alloc( sz
);
285 WARN("couldn't allocate memory r=%08x!\n", r
);
286 ret
= ERROR_NOT_ENOUGH_MEMORY
;
290 r
= IStream_Read(stm
, data
, sz
, &count
);
291 if( FAILED( r
) || ( count
!= sz
) )
294 WARN("read stream failed r = %08x!\n", r
);
303 IStream_Release( stm
);
308 UINT
write_stream_data( IStorage
*stg
, LPCWSTR stname
,
309 LPCVOID data
, UINT sz
, BOOL bTable
)
312 UINT ret
= ERROR_FUNCTION_FAILED
;
319 encname
= encode_streamname(bTable
, stname
);
320 r
= IStorage_OpenStream( stg
, encname
, NULL
,
321 STGM_WRITE
| STGM_SHARE_EXCLUSIVE
, 0, &stm
);
324 r
= IStorage_CreateStream( stg
, encname
,
325 STGM_WRITE
| STGM_SHARE_EXCLUSIVE
, 0, 0, &stm
);
330 WARN("open stream failed r = %08x\n", r
);
335 r
= IStream_SetSize( stm
, size
);
338 WARN("Failed to SetSize\n");
343 r
= IStream_Seek( stm
, pos
, STREAM_SEEK_SET
, NULL
);
346 WARN("Failed to Seek\n");
352 r
= IStream_Write(stm
, data
, sz
, &count
);
353 if( FAILED( r
) || ( count
!= sz
) )
355 WARN("Failed to Write\n");
363 IStream_Release( stm
);
368 static void msi_free_colinfo( MSICOLUMNINFO
*colinfo
, UINT count
)
371 for (i
= 0; i
< count
; i
++) msi_free( colinfo
[i
].hash_table
);
374 static void free_table( MSITABLE
*table
)
377 for( i
=0; i
<table
->row_count
; i
++ )
378 msi_free( table
->data
[i
] );
379 msi_free( table
->data
);
380 msi_free( table
->data_persistent
);
381 msi_free_colinfo( table
->colinfo
, table
->col_count
);
382 msi_free( table
->colinfo
);
386 static UINT
msi_table_get_row_size( MSIDATABASE
*db
, const MSICOLUMNINFO
*cols
, UINT count
, UINT bytes_per_strref
)
388 const MSICOLUMNINFO
*last_col
;
393 if (bytes_per_strref
!= LONG_STR_BYTES
)
396 for (i
= 0; i
< count
; i
++) size
+= bytes_per_column( db
, &cols
[i
], bytes_per_strref
);
399 last_col
= &cols
[count
- 1];
400 return last_col
->offset
+ bytes_per_column( db
, last_col
, bytes_per_strref
);
403 /* add this table to the list of cached tables in the database */
404 static UINT
read_table_from_storage( MSIDATABASE
*db
, MSITABLE
*t
, IStorage
*stg
)
406 BYTE
*rawdata
= NULL
;
407 UINT rawsize
= 0, i
, j
, row_size
, row_size_mem
;
409 TRACE("%s\n",debugstr_w(t
->name
));
411 row_size
= msi_table_get_row_size( db
, t
->colinfo
, t
->col_count
, db
->bytes_per_strref
);
412 row_size_mem
= msi_table_get_row_size( db
, t
->colinfo
, t
->col_count
, LONG_STR_BYTES
);
414 /* if we can't read the table, just assume that it's empty */
415 read_stream_data( stg
, t
->name
, TRUE
, &rawdata
, &rawsize
);
417 return ERROR_SUCCESS
;
419 TRACE("Read %d bytes\n", rawsize
);
421 if( rawsize
% row_size
)
423 WARN("Table size is invalid %d/%d\n", rawsize
, row_size
);
427 t
->row_count
= rawsize
/ row_size
;
428 t
->data
= msi_alloc_zero( t
->row_count
* sizeof (USHORT
*) );
431 t
->data_persistent
= msi_alloc_zero( t
->row_count
* sizeof(BOOL
));
432 if ( !t
->data_persistent
)
435 /* transpose all the data */
436 TRACE("Transposing data from %d rows\n", t
->row_count
);
437 for (i
= 0; i
< t
->row_count
; i
++)
439 UINT ofs
= 0, ofs_mem
= 0;
441 t
->data
[i
] = msi_alloc( row_size_mem
);
444 t
->data_persistent
[i
] = TRUE
;
446 for (j
= 0; j
< t
->col_count
; j
++)
448 UINT m
= bytes_per_column( db
, &t
->colinfo
[j
], LONG_STR_BYTES
);
449 UINT n
= bytes_per_column( db
, &t
->colinfo
[j
], db
->bytes_per_strref
);
452 if ( n
!= 2 && n
!= 3 && n
!= 4 )
454 ERR("oops - unknown column width %d\n", n
);
457 if (t
->colinfo
[j
].type
& MSITYPE_STRING
&& n
< m
)
459 for (k
= 0; k
< m
; k
++)
462 t
->data
[i
][ofs_mem
+ k
] = rawdata
[ofs
* t
->row_count
+ i
* n
+ k
];
464 t
->data
[i
][ofs_mem
+ k
] = 0;
469 for (k
= 0; k
< n
; k
++)
470 t
->data
[i
][ofs_mem
+ k
] = rawdata
[ofs
* t
->row_count
+ i
* n
+ k
];
478 return ERROR_SUCCESS
;
481 return ERROR_FUNCTION_FAILED
;
484 void free_cached_tables( MSIDATABASE
*db
)
486 while( !list_empty( &db
->tables
) )
488 MSITABLE
*t
= LIST_ENTRY( list_head( &db
->tables
), MSITABLE
, entry
);
490 list_remove( &t
->entry
);
495 static MSITABLE
*find_cached_table( MSIDATABASE
*db
, LPCWSTR name
)
499 LIST_FOR_EACH_ENTRY( t
, &db
->tables
, MSITABLE
, entry
)
500 if( !strcmpW( name
, t
->name
) )
506 static void table_calc_column_offsets( MSIDATABASE
*db
, MSICOLUMNINFO
*colinfo
, DWORD count
)
510 for (i
= 0; colinfo
&& i
< count
; i
++)
512 assert( i
+ 1 == colinfo
[i
].number
);
513 if (i
) colinfo
[i
].offset
= colinfo
[i
- 1].offset
+
514 bytes_per_column( db
, &colinfo
[i
- 1], LONG_STR_BYTES
);
515 else colinfo
[i
].offset
= 0;
517 TRACE("column %d is [%s] with type %08x ofs %d\n",
518 colinfo
[i
].number
, debugstr_w(colinfo
[i
].colname
),
519 colinfo
[i
].type
, colinfo
[i
].offset
);
523 static UINT
get_defaulttablecolumns( MSIDATABASE
*db
, LPCWSTR name
, MSICOLUMNINFO
*colinfo
, UINT
*sz
)
525 const MSICOLUMNINFO
*p
;
528 TRACE("%s\n", debugstr_w(name
));
530 if (!strcmpW( name
, szTables
))
535 else if (!strcmpW( name
, szColumns
))
540 else return ERROR_FUNCTION_FAILED
;
542 for (i
= 0; i
< n
; i
++)
544 if (colinfo
&& i
< *sz
) colinfo
[i
] = p
[i
];
545 if (colinfo
&& i
>= *sz
) break;
547 table_calc_column_offsets( db
, colinfo
, n
);
549 return ERROR_SUCCESS
;
552 static UINT
get_tablecolumns( MSIDATABASE
*db
, LPCWSTR szTableName
, MSICOLUMNINFO
*colinfo
, UINT
*sz
);
554 static UINT
table_get_column_info( MSIDATABASE
*db
, LPCWSTR name
, MSICOLUMNINFO
**pcols
, UINT
*pcount
)
556 UINT r
, column_count
= 0;
557 MSICOLUMNINFO
*columns
;
559 /* get the number of columns in this table */
561 r
= get_tablecolumns( db
, name
, NULL
, &column_count
);
562 if (r
!= ERROR_SUCCESS
)
565 *pcount
= column_count
;
567 /* if there's no columns, there's no table */
569 return ERROR_INVALID_PARAMETER
;
571 TRACE("table %s found\n", debugstr_w(name
));
573 columns
= msi_alloc( column_count
* sizeof(MSICOLUMNINFO
) );
575 return ERROR_FUNCTION_FAILED
;
577 r
= get_tablecolumns( db
, name
, columns
, &column_count
);
578 if (r
!= ERROR_SUCCESS
)
581 return ERROR_FUNCTION_FAILED
;
587 static UINT
get_table( MSIDATABASE
*db
, LPCWSTR name
, MSITABLE
**table_ret
)
592 /* first, see if the table is cached */
593 table
= find_cached_table( db
, name
);
597 return ERROR_SUCCESS
;
600 /* nonexistent tables should be interpreted as empty tables */
601 table
= msi_alloc( sizeof(MSITABLE
) + lstrlenW( name
) * sizeof(WCHAR
) );
603 return ERROR_FUNCTION_FAILED
;
605 table
->row_count
= 0;
607 table
->data_persistent
= NULL
;
608 table
->colinfo
= NULL
;
609 table
->col_count
= 0;
610 table
->persistent
= MSICONDITION_TRUE
;
611 lstrcpyW( table
->name
, name
);
613 if (!strcmpW( name
, szTables
) || !strcmpW( name
, szColumns
))
614 table
->persistent
= MSICONDITION_NONE
;
616 r
= table_get_column_info( db
, name
, &table
->colinfo
, &table
->col_count
);
617 if (r
!= ERROR_SUCCESS
)
622 r
= read_table_from_storage( db
, table
, db
->storage
);
623 if (r
!= ERROR_SUCCESS
)
628 list_add_head( &db
->tables
, &table
->entry
);
630 return ERROR_SUCCESS
;
633 static UINT
read_table_int( BYTE
*const *data
, UINT row
, UINT col
, UINT bytes
)
637 for (i
= 0; i
< bytes
; i
++)
638 ret
+= data
[row
][col
+ i
] << i
* 8;
643 static UINT
get_tablecolumns( MSIDATABASE
*db
, LPCWSTR szTableName
, MSICOLUMNINFO
*colinfo
, UINT
*sz
)
645 UINT r
, i
, n
= 0, table_id
, count
, maxcount
= *sz
;
646 MSITABLE
*table
= NULL
;
648 TRACE("%s\n", debugstr_w(szTableName
));
650 /* first check if there is a default table with that name */
651 r
= get_defaulttablecolumns( db
, szTableName
, colinfo
, sz
);
652 if (r
== ERROR_SUCCESS
&& *sz
)
655 r
= get_table( db
, szColumns
, &table
);
656 if (r
!= ERROR_SUCCESS
)
658 ERR("couldn't load _Columns table\n");
659 return ERROR_FUNCTION_FAILED
;
662 /* convert table and column names to IDs from the string table */
663 r
= msi_string2idW( db
->strings
, szTableName
, &table_id
);
664 if (r
!= ERROR_SUCCESS
)
666 WARN("Couldn't find id for %s\n", debugstr_w(szTableName
));
669 TRACE("Table id is %d, row count is %d\n", table_id
, table
->row_count
);
671 /* Note: _Columns table doesn't have non-persistent data */
673 /* if maxcount is non-zero, assume it's exactly right for this table */
674 memset( colinfo
, 0, maxcount
* sizeof(*colinfo
) );
675 count
= table
->row_count
;
676 for (i
= 0; i
< count
; i
++)
678 if (read_table_int( table
->data
, i
, 0, LONG_STR_BYTES
) != table_id
) continue;
681 UINT id
= read_table_int( table
->data
, i
, table
->colinfo
[2].offset
, LONG_STR_BYTES
);
682 UINT col
= read_table_int( table
->data
, i
, table
->colinfo
[1].offset
, sizeof(USHORT
) ) - (1 << 15);
684 /* check the column number is in range */
685 if (col
< 1 || col
> maxcount
)
687 ERR("column %d out of range\n", col
);
690 /* check if this column was already set */
691 if (colinfo
[col
- 1].number
)
693 ERR("duplicate column %d\n", col
);
696 colinfo
[col
- 1].tablename
= msi_string_lookup_id( db
->strings
, table_id
);
697 colinfo
[col
- 1].number
= col
;
698 colinfo
[col
- 1].colname
= msi_string_lookup_id( db
->strings
, id
);
699 colinfo
[col
- 1].type
= read_table_int( table
->data
, i
, table
->colinfo
[3].offset
,
700 sizeof(USHORT
) ) - (1 << 15);
701 colinfo
[col
- 1].offset
= 0;
702 colinfo
[col
- 1].ref_count
= 0;
703 colinfo
[col
- 1].hash_table
= NULL
;
707 TRACE("%s has %d columns\n", debugstr_w(szTableName
), n
);
709 if (colinfo
&& n
!= maxcount
)
711 ERR("missing column in table %s\n", debugstr_w(szTableName
));
712 msi_free_colinfo( colinfo
, maxcount
);
713 return ERROR_FUNCTION_FAILED
;
715 table_calc_column_offsets( db
, colinfo
, n
);
717 return ERROR_SUCCESS
;
720 UINT
msi_create_table( MSIDATABASE
*db
, LPCWSTR name
, column_info
*col_info
,
721 MSICONDITION persistent
)
723 enum StringPersistence string_persistence
= (persistent
) ? StringPersistent
: StringNonPersistent
;
726 MSIRECORD
*rec
= NULL
;
731 /* only add tables that don't exist already */
732 if( TABLE_Exists(db
, name
) )
734 WARN("table %s exists\n", debugstr_w(name
));
735 return ERROR_BAD_QUERY_SYNTAX
;
738 table
= msi_alloc( sizeof (MSITABLE
) + lstrlenW(name
)*sizeof (WCHAR
) );
740 return ERROR_FUNCTION_FAILED
;
742 table
->ref_count
= 1;
743 table
->row_count
= 0;
745 table
->data_persistent
= NULL
;
746 table
->colinfo
= NULL
;
747 table
->col_count
= 0;
748 table
->persistent
= persistent
;
749 lstrcpyW( table
->name
, name
);
751 for( col
= col_info
; col
; col
= col
->next
)
754 table
->colinfo
= msi_alloc( table
->col_count
* sizeof(MSICOLUMNINFO
) );
758 return ERROR_FUNCTION_FAILED
;
761 for( i
= 0, col
= col_info
; col
; i
++, col
= col
->next
)
763 UINT table_id
= msi_addstringW( db
->strings
, col
->table
, -1, 1, string_persistence
);
764 UINT col_id
= msi_addstringW( db
->strings
, col
->column
, -1, 1, string_persistence
);
766 table
->colinfo
[ i
].tablename
= msi_string_lookup_id( db
->strings
, table_id
);
767 table
->colinfo
[ i
].number
= i
+ 1;
768 table
->colinfo
[ i
].colname
= msi_string_lookup_id( db
->strings
, col_id
);
769 table
->colinfo
[ i
].type
= col
->type
;
770 table
->colinfo
[ i
].offset
= 0;
771 table
->colinfo
[ i
].ref_count
= 0;
772 table
->colinfo
[ i
].hash_table
= NULL
;
773 table
->colinfo
[ i
].temporary
= col
->temporary
;
775 table_calc_column_offsets( db
, table
->colinfo
, table
->col_count
);
777 r
= TABLE_CreateView( db
, szTables
, &tv
);
778 TRACE("CreateView returned %x\n", r
);
785 r
= tv
->ops
->execute( tv
, 0 );
786 TRACE("tv execute returned %x\n", r
);
790 rec
= MSI_CreateRecord( 1 );
794 r
= MSI_RecordSetStringW( rec
, 1, name
);
798 r
= tv
->ops
->insert_row( tv
, rec
, -1, persistent
== MSICONDITION_FALSE
);
799 TRACE("insert_row returned %x\n", r
);
803 tv
->ops
->delete( tv
);
806 msiobj_release( &rec
->hdr
);
809 if( persistent
!= MSICONDITION_FALSE
)
811 /* add each column to the _Columns table */
812 r
= TABLE_CreateView( db
, szColumns
, &tv
);
816 r
= tv
->ops
->execute( tv
, 0 );
817 TRACE("tv execute returned %x\n", r
);
821 rec
= MSI_CreateRecord( 4 );
825 r
= MSI_RecordSetStringW( rec
, 1, name
);
830 * need to set the table, column number, col name and type
831 * for each column we enter in the table
834 for( col
= col_info
; col
; col
= col
->next
)
836 r
= MSI_RecordSetInteger( rec
, 2, nField
);
840 r
= MSI_RecordSetStringW( rec
, 3, col
->column
);
844 r
= MSI_RecordSetInteger( rec
, 4, col
->type
);
848 r
= tv
->ops
->insert_row( tv
, rec
, -1, FALSE
);
860 msiobj_release( &rec
->hdr
);
861 /* FIXME: remove values from the string table on error */
863 tv
->ops
->delete( tv
);
865 if (r
== ERROR_SUCCESS
)
866 list_add_head( &db
->tables
, &table
->entry
);
873 static UINT
save_table( MSIDATABASE
*db
, const MSITABLE
*t
, UINT bytes_per_strref
)
875 BYTE
*rawdata
= NULL
;
876 UINT rawsize
, i
, j
, row_size
, row_count
;
877 UINT r
= ERROR_FUNCTION_FAILED
;
879 /* Nothing to do for non-persistent tables */
880 if( t
->persistent
== MSICONDITION_FALSE
)
881 return ERROR_SUCCESS
;
883 TRACE("Saving %s\n", debugstr_w( t
->name
) );
885 row_size
= msi_table_get_row_size( db
, t
->colinfo
, t
->col_count
, bytes_per_strref
);
886 row_count
= t
->row_count
;
887 for (i
= 0; i
< t
->row_count
; i
++)
889 if (!t
->data_persistent
[i
])
891 row_count
= 1; /* yes, this is bizarre */
895 rawsize
= row_count
* row_size
;
896 rawdata
= msi_alloc_zero( rawsize
);
899 r
= ERROR_NOT_ENOUGH_MEMORY
;
904 for (i
= 0; i
< t
->row_count
; i
++)
906 UINT ofs
= 0, ofs_mem
= 0;
908 if (!t
->data_persistent
[i
]) break;
910 for (j
= 0; j
< t
->col_count
; j
++)
912 UINT m
= bytes_per_column( db
, &t
->colinfo
[j
], LONG_STR_BYTES
);
913 UINT n
= bytes_per_column( db
, &t
->colinfo
[j
], bytes_per_strref
);
916 if (n
!= 2 && n
!= 3 && n
!= 4)
918 ERR("oops - unknown column width %d\n", n
);
921 if (t
->colinfo
[j
].type
& MSITYPE_STRING
&& n
< m
)
923 UINT id
= read_table_int( t
->data
, i
, ofs_mem
, LONG_STR_BYTES
);
924 if (id
> 1 << bytes_per_strref
* 8)
926 ERR("string id %u out of range\n", id
);
930 for (k
= 0; k
< n
; k
++)
932 rawdata
[ofs
* row_count
+ i
* n
+ k
] = t
->data
[i
][ofs_mem
+ k
];
940 TRACE("writing %d bytes\n", rawsize
);
941 r
= write_stream_data( db
->storage
, t
->name
, rawdata
, rawsize
, TRUE
);
948 static void msi_update_table_columns( MSIDATABASE
*db
, LPCWSTR name
)
951 UINT size
, offset
, old_count
;
954 table
= find_cached_table( db
, name
);
955 old_count
= table
->col_count
;
956 msi_free_colinfo( table
->colinfo
, table
->col_count
);
957 msi_free( table
->colinfo
);
958 table
->colinfo
= NULL
;
960 table_get_column_info( db
, name
, &table
->colinfo
, &table
->col_count
);
961 if (!table
->col_count
) return;
963 size
= msi_table_get_row_size( db
, table
->colinfo
, table
->col_count
, LONG_STR_BYTES
);
964 offset
= table
->colinfo
[table
->col_count
- 1].offset
;
966 for ( n
= 0; n
< table
->row_count
; n
++ )
968 table
->data
[n
] = msi_realloc( table
->data
[n
], size
);
969 if (old_count
< table
->col_count
)
970 memset( &table
->data
[n
][offset
], 0, size
- offset
);
974 /* try to find the table name in the _Tables table */
975 BOOL
TABLE_Exists( MSIDATABASE
*db
, LPCWSTR name
)
980 if( !strcmpW( name
, szTables
) || !strcmpW( name
, szColumns
) ||
981 !strcmpW( name
, szStreams
) || !strcmpW( name
, szStorages
) )
984 r
= msi_string2idW( db
->strings
, name
, &table_id
);
985 if( r
!= ERROR_SUCCESS
)
987 TRACE("Couldn't find id for %s\n", debugstr_w(name
));
991 r
= get_table( db
, szTables
, &table
);
992 if( r
!= ERROR_SUCCESS
)
994 ERR("table %s not available\n", debugstr_w(szTables
));
998 for( i
= 0; i
< table
->row_count
; i
++ )
1000 if( read_table_int( table
->data
, i
, 0, LONG_STR_BYTES
) == table_id
)
1007 /* below is the query interface to a table */
1009 typedef struct tagMSITABLEVIEW
1014 MSICOLUMNINFO
*columns
;
1020 static UINT
TABLE_fetch_int( struct tagMSIVIEW
*view
, UINT row
, UINT col
, UINT
*val
)
1022 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1026 return ERROR_INVALID_PARAMETER
;
1028 if( (col
==0) || (col
>tv
->num_cols
) )
1029 return ERROR_INVALID_PARAMETER
;
1031 /* how many rows are there ? */
1032 if( row
>= tv
->table
->row_count
)
1033 return ERROR_NO_MORE_ITEMS
;
1035 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1037 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1038 ERR("%p %p\n", tv
, tv
->columns
);
1039 return ERROR_FUNCTION_FAILED
;
1042 n
= bytes_per_column( tv
->db
, &tv
->columns
[col
- 1], LONG_STR_BYTES
);
1043 if (n
!= 2 && n
!= 3 && n
!= 4)
1045 ERR("oops! what is %d bytes per column?\n", n
);
1046 return ERROR_FUNCTION_FAILED
;
1049 offset
= tv
->columns
[col
-1].offset
;
1050 *val
= read_table_int(tv
->table
->data
, row
, offset
, n
);
1052 /* TRACE("Data [%d][%d] = %d\n", row, col, *val ); */
1054 return ERROR_SUCCESS
;
1057 static UINT
msi_stream_name( const MSITABLEVIEW
*tv
, UINT row
, LPWSTR
*pstname
)
1059 LPWSTR p
, stname
= NULL
;
1060 UINT i
, r
, type
, ival
;
1063 MSIVIEW
*view
= (MSIVIEW
*) tv
;
1065 TRACE("%p %d\n", tv
, row
);
1067 len
= lstrlenW( tv
->name
) + 1;
1068 stname
= msi_alloc( len
*sizeof(WCHAR
) );
1071 r
= ERROR_OUTOFMEMORY
;
1075 lstrcpyW( stname
, tv
->name
);
1077 for ( i
= 0; i
< tv
->num_cols
; i
++ )
1079 type
= tv
->columns
[i
].type
;
1080 if ( type
& MSITYPE_KEY
)
1084 r
= TABLE_fetch_int( view
, row
, i
+1, &ival
);
1085 if ( r
!= ERROR_SUCCESS
)
1088 if ( tv
->columns
[i
].type
& MSITYPE_STRING
)
1090 sval
= msi_string_lookup_id( tv
->db
->strings
, ival
);
1093 r
= ERROR_INVALID_PARAMETER
;
1099 static const WCHAR fmt
[] = { '%','d',0 };
1100 UINT n
= bytes_per_column( tv
->db
, &tv
->columns
[i
], LONG_STR_BYTES
);
1105 sprintfW( number
, fmt
, ival
-0x8000 );
1108 sprintfW( number
, fmt
, ival
^0x80000000 );
1111 ERR( "oops - unknown column width %d\n", n
);
1112 r
= ERROR_FUNCTION_FAILED
;
1118 len
+= lstrlenW( szDot
) + lstrlenW( sval
);
1119 p
= msi_realloc ( stname
, len
*sizeof(WCHAR
) );
1122 r
= ERROR_OUTOFMEMORY
;
1127 lstrcatW( stname
, szDot
);
1128 lstrcatW( stname
, sval
);
1135 return ERROR_SUCCESS
;
1144 * We need a special case for streams, as we need to reference column with
1145 * the name of the stream in the same table, and the table name
1146 * which may not be available at higher levels of the query
1148 static UINT
TABLE_fetch_stream( struct tagMSIVIEW
*view
, UINT row
, UINT col
, IStream
**stm
)
1150 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1152 LPWSTR encname
, full_name
= NULL
;
1154 if( !view
->ops
->fetch_int
)
1155 return ERROR_INVALID_PARAMETER
;
1157 r
= msi_stream_name( tv
, row
, &full_name
);
1158 if ( r
!= ERROR_SUCCESS
)
1160 ERR("fetching stream, error = %d\n", r
);
1164 encname
= encode_streamname( FALSE
, full_name
);
1165 r
= msi_get_raw_stream( tv
->db
, encname
, stm
);
1167 ERR("fetching stream %s, error = %d\n",debugstr_w(full_name
), r
);
1169 msi_free( full_name
);
1170 msi_free( encname
);
1174 static UINT
TABLE_set_int( MSITABLEVIEW
*tv
, UINT row
, UINT col
, UINT val
)
1179 return ERROR_INVALID_PARAMETER
;
1181 if( (col
==0) || (col
>tv
->num_cols
) )
1182 return ERROR_INVALID_PARAMETER
;
1184 if( row
>= tv
->table
->row_count
)
1185 return ERROR_INVALID_PARAMETER
;
1187 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1189 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1190 ERR("%p %p\n", tv
, tv
->columns
);
1191 return ERROR_FUNCTION_FAILED
;
1194 msi_free( tv
->columns
[col
-1].hash_table
);
1195 tv
->columns
[col
-1].hash_table
= NULL
;
1197 n
= bytes_per_column( tv
->db
, &tv
->columns
[col
- 1], LONG_STR_BYTES
);
1198 if ( n
!= 2 && n
!= 3 && n
!= 4 )
1200 ERR("oops! what is %d bytes per column?\n", n
);
1201 return ERROR_FUNCTION_FAILED
;
1204 offset
= tv
->columns
[col
-1].offset
;
1205 for ( i
= 0; i
< n
; i
++ )
1206 tv
->table
->data
[row
][offset
+ i
] = (val
>> i
* 8) & 0xff;
1208 return ERROR_SUCCESS
;
1211 static UINT
TABLE_get_row( struct tagMSIVIEW
*view
, UINT row
, MSIRECORD
**rec
)
1213 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1216 return ERROR_INVALID_PARAMETER
;
1218 return msi_view_get_row(tv
->db
, view
, row
, rec
);
1221 static UINT
msi_addstreamW( MSIDATABASE
*db
, LPCWSTR name
, IStream
*data
)
1223 static const WCHAR insert
[] = {
1224 'I','N','S','E','R','T',' ','I','N','T','O',' ',
1225 '`','_','S','t','r','e','a','m','s','`',' ',
1226 '(','`','N','a','m','e','`',',','`','D','a','t','a','`',')',' ',
1227 'V','A','L','U','E','S',' ','(','?',',','?',')',0};
1228 MSIQUERY
*query
= NULL
;
1232 TRACE("%p %s %p\n", db
, debugstr_w(name
), data
);
1234 rec
= MSI_CreateRecord( 2 );
1236 return ERROR_OUTOFMEMORY
;
1238 r
= MSI_RecordSetStringW( rec
, 1, name
);
1239 if ( r
!= ERROR_SUCCESS
)
1242 r
= MSI_RecordSetIStream( rec
, 2, data
);
1243 if ( r
!= ERROR_SUCCESS
)
1246 r
= MSI_DatabaseOpenViewW( db
, insert
, &query
);
1247 if ( r
!= ERROR_SUCCESS
)
1250 r
= MSI_ViewExecute( query
, rec
);
1253 msiobj_release( &query
->hdr
);
1254 msiobj_release( &rec
->hdr
);
1258 static UINT
get_table_value_from_record( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT iField
, UINT
*pvalue
)
1260 MSICOLUMNINFO columninfo
;
1263 if ( (iField
<= 0) ||
1264 (iField
> tv
->num_cols
) ||
1265 MSI_RecordIsNull( rec
, iField
) )
1266 return ERROR_FUNCTION_FAILED
;
1268 columninfo
= tv
->columns
[ iField
- 1 ];
1270 if ( MSITYPE_IS_BINARY(columninfo
.type
) )
1272 *pvalue
= 1; /* refers to the first key column */
1274 else if ( columninfo
.type
& MSITYPE_STRING
)
1276 LPCWSTR sval
= MSI_RecordGetString( rec
, iField
);
1279 r
= msi_string2idW(tv
->db
->strings
, sval
, pvalue
);
1280 if (r
!= ERROR_SUCCESS
)
1281 return ERROR_NOT_FOUND
;
1285 else if ( bytes_per_column( tv
->db
, &columninfo
, LONG_STR_BYTES
) == 2 )
1287 *pvalue
= 0x8000 + MSI_RecordGetInteger( rec
, iField
);
1288 if ( *pvalue
& 0xffff0000 )
1290 ERR("field %u value %d out of range\n", iField
, *pvalue
- 0x8000);
1291 return ERROR_FUNCTION_FAILED
;
1296 INT ival
= MSI_RecordGetInteger( rec
, iField
);
1297 *pvalue
= ival
^ 0x80000000;
1300 return ERROR_SUCCESS
;
1303 static UINT
TABLE_set_row( struct tagMSIVIEW
*view
, UINT row
, MSIRECORD
*rec
, UINT mask
)
1305 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1306 UINT i
, val
, r
= ERROR_SUCCESS
;
1309 return ERROR_INVALID_PARAMETER
;
1311 /* test if any of the mask bits are invalid */
1312 if ( mask
>= (1<<tv
->num_cols
) )
1313 return ERROR_INVALID_PARAMETER
;
1315 for ( i
= 0; i
< tv
->num_cols
; i
++ )
1319 /* only update the fields specified in the mask */
1320 if ( !(mask
&(1<<i
)) )
1323 persistent
= (tv
->table
->persistent
!= MSICONDITION_FALSE
) &&
1324 (tv
->table
->data_persistent
[row
]);
1325 /* FIXME: should we allow updating keys? */
1328 if ( !MSI_RecordIsNull( rec
, i
+ 1 ) )
1330 r
= get_table_value_from_record (tv
, rec
, i
+ 1, &val
);
1331 if ( MSITYPE_IS_BINARY(tv
->columns
[ i
].type
) )
1336 if ( r
!= ERROR_SUCCESS
)
1337 return ERROR_FUNCTION_FAILED
;
1339 r
= MSI_RecordGetIStream( rec
, i
+ 1, &stm
);
1340 if ( r
!= ERROR_SUCCESS
)
1343 r
= msi_stream_name( tv
, row
, &stname
);
1344 if ( r
!= ERROR_SUCCESS
)
1346 IStream_Release( stm
);
1350 r
= msi_addstreamW( tv
->db
, stname
, stm
);
1351 IStream_Release( stm
);
1352 msi_free ( stname
);
1354 if ( r
!= ERROR_SUCCESS
)
1357 else if ( tv
->columns
[i
].type
& MSITYPE_STRING
)
1361 if ( r
!= ERROR_SUCCESS
)
1363 LPCWSTR sval
= MSI_RecordGetString( rec
, i
+ 1 );
1364 val
= msi_addstringW( tv
->db
->strings
, sval
, -1, 1,
1365 persistent
? StringPersistent
: StringNonPersistent
);
1369 TABLE_fetch_int(&tv
->view
, row
, i
+ 1, &x
);
1376 if ( r
!= ERROR_SUCCESS
)
1377 return ERROR_FUNCTION_FAILED
;
1381 r
= TABLE_set_int( tv
, row
, i
+1, val
);
1382 if ( r
!= ERROR_SUCCESS
)
1388 static UINT
table_create_new_row( struct tagMSIVIEW
*view
, UINT
*num
, BOOL temporary
)
1390 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1395 BOOL
**data_persist_ptr
;
1398 TRACE("%p %s\n", view
, temporary
? "TRUE" : "FALSE");
1401 return ERROR_INVALID_PARAMETER
;
1403 row
= msi_alloc_zero( tv
->row_size
);
1405 return ERROR_NOT_ENOUGH_MEMORY
;
1407 row_count
= &tv
->table
->row_count
;
1408 data_ptr
= &tv
->table
->data
;
1409 data_persist_ptr
= &tv
->table
->data_persistent
;
1411 *num
= tv
->table
->row_count
;
1413 sz
= (*row_count
+ 1) * sizeof (BYTE
*);
1415 p
= msi_realloc( *data_ptr
, sz
);
1417 p
= msi_alloc( sz
);
1421 return ERROR_NOT_ENOUGH_MEMORY
;
1424 sz
= (*row_count
+ 1) * sizeof (BOOL
);
1425 if( *data_persist_ptr
)
1426 b
= msi_realloc( *data_persist_ptr
, sz
);
1428 b
= msi_alloc( sz
);
1433 return ERROR_NOT_ENOUGH_MEMORY
;
1437 (*data_ptr
)[*row_count
] = row
;
1439 *data_persist_ptr
= b
;
1440 (*data_persist_ptr
)[*row_count
] = !temporary
;
1444 return ERROR_SUCCESS
;
1447 static UINT
TABLE_execute( struct tagMSIVIEW
*view
, MSIRECORD
*record
)
1449 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1451 TRACE("%p %p\n", tv
, record
);
1453 TRACE("There are %d columns\n", tv
->num_cols
);
1455 return ERROR_SUCCESS
;
1458 static UINT
TABLE_close( struct tagMSIVIEW
*view
)
1460 TRACE("%p\n", view
);
1462 return ERROR_SUCCESS
;
1465 static UINT
TABLE_get_dimensions( struct tagMSIVIEW
*view
, UINT
*rows
, UINT
*cols
)
1467 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1469 TRACE("%p %p %p\n", view
, rows
, cols
);
1472 *cols
= tv
->num_cols
;
1476 return ERROR_INVALID_PARAMETER
;
1477 *rows
= tv
->table
->row_count
;
1480 return ERROR_SUCCESS
;
1483 static UINT
TABLE_get_column_info( struct tagMSIVIEW
*view
,
1484 UINT n
, LPCWSTR
*name
, UINT
*type
, BOOL
*temporary
,
1485 LPCWSTR
*table_name
)
1487 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1489 TRACE("%p %d %p %p\n", tv
, n
, name
, type
);
1491 if( ( n
== 0 ) || ( n
> tv
->num_cols
) )
1492 return ERROR_INVALID_PARAMETER
;
1496 *name
= tv
->columns
[n
-1].colname
;
1498 return ERROR_FUNCTION_FAILED
;
1503 *table_name
= tv
->columns
[n
-1].tablename
;
1505 return ERROR_FUNCTION_FAILED
;
1509 *type
= tv
->columns
[n
-1].type
;
1512 *temporary
= tv
->columns
[n
-1].temporary
;
1514 return ERROR_SUCCESS
;
1517 static UINT
msi_table_find_row( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT
*row
, UINT
*column
);
1519 static UINT
table_validate_new( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT
*column
)
1523 /* check there's no null values where they're not allowed */
1524 for( i
= 0; i
< tv
->num_cols
; i
++ )
1526 if ( tv
->columns
[i
].type
& MSITYPE_NULLABLE
)
1529 if ( MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
1530 TRACE("skipping binary column\n");
1531 else if ( tv
->columns
[i
].type
& MSITYPE_STRING
)
1535 str
= MSI_RecordGetString( rec
, i
+1 );
1536 if (str
== NULL
|| str
[0] == 0)
1538 if (column
) *column
= i
;
1539 return ERROR_INVALID_DATA
;
1546 n
= MSI_RecordGetInteger( rec
, i
+1 );
1547 if (n
== MSI_NULL_INTEGER
)
1549 if (column
) *column
= i
;
1550 return ERROR_INVALID_DATA
;
1555 /* check there's no duplicate keys */
1556 r
= msi_table_find_row( tv
, rec
, &row
, column
);
1557 if (r
== ERROR_SUCCESS
)
1558 return ERROR_FUNCTION_FAILED
;
1560 return ERROR_SUCCESS
;
1563 static int compare_record( MSITABLEVIEW
*tv
, UINT row
, MSIRECORD
*rec
)
1565 UINT r
, i
, ivalue
, x
;
1567 for (i
= 0; i
< tv
->num_cols
; i
++ )
1569 if (!(tv
->columns
[i
].type
& MSITYPE_KEY
)) continue;
1571 r
= get_table_value_from_record( tv
, rec
, i
+ 1, &ivalue
);
1572 if (r
!= ERROR_SUCCESS
)
1575 r
= TABLE_fetch_int( &tv
->view
, row
, i
+ 1, &x
);
1576 if (r
!= ERROR_SUCCESS
)
1578 WARN("TABLE_fetch_int should not fail here %u\n", r
);
1585 else if (ivalue
== x
)
1587 if (i
< tv
->num_cols
- 1) continue;
1596 static int find_insert_index( MSITABLEVIEW
*tv
, MSIRECORD
*rec
)
1598 int idx
, c
, low
= 0, high
= tv
->table
->row_count
- 1;
1600 TRACE("%p %p\n", tv
, rec
);
1604 idx
= (low
+ high
) / 2;
1605 c
= compare_record( tv
, idx
, rec
);
1613 TRACE("found %u\n", idx
);
1617 TRACE("found %u\n", high
+ 1);
1621 static UINT
TABLE_insert_row( struct tagMSIVIEW
*view
, MSIRECORD
*rec
, UINT row
, BOOL temporary
)
1623 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1626 TRACE("%p %p %s\n", tv
, rec
, temporary
? "TRUE" : "FALSE" );
1628 /* check that the key is unique - can we find a matching row? */
1629 r
= table_validate_new( tv
, rec
, NULL
);
1630 if( r
!= ERROR_SUCCESS
)
1631 return ERROR_FUNCTION_FAILED
;
1634 row
= find_insert_index( tv
, rec
);
1636 r
= table_create_new_row( view
, &row
, temporary
);
1637 TRACE("insert_row returned %08x\n", r
);
1638 if( r
!= ERROR_SUCCESS
)
1641 /* shift the rows to make room for the new row */
1642 for (i
= tv
->table
->row_count
- 1; i
> row
; i
--)
1644 memmove(&(tv
->table
->data
[i
][0]),
1645 &(tv
->table
->data
[i
- 1][0]), tv
->row_size
);
1646 tv
->table
->data_persistent
[i
] = tv
->table
->data_persistent
[i
- 1];
1649 /* Re-set the persistence flag */
1650 tv
->table
->data_persistent
[row
] = !temporary
;
1651 return TABLE_set_row( view
, row
, rec
, (1<<tv
->num_cols
) - 1 );
1654 static UINT
TABLE_delete_row( struct tagMSIVIEW
*view
, UINT row
)
1656 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1657 UINT r
, num_rows
, num_cols
, i
;
1659 TRACE("%p %d\n", tv
, row
);
1662 return ERROR_INVALID_PARAMETER
;
1664 r
= TABLE_get_dimensions( view
, &num_rows
, &num_cols
);
1665 if ( r
!= ERROR_SUCCESS
)
1668 if ( row
>= num_rows
)
1669 return ERROR_FUNCTION_FAILED
;
1671 num_rows
= tv
->table
->row_count
;
1672 tv
->table
->row_count
--;
1674 /* reset the hash tables */
1675 for (i
= 0; i
< tv
->num_cols
; i
++)
1677 msi_free( tv
->columns
[i
].hash_table
);
1678 tv
->columns
[i
].hash_table
= NULL
;
1681 for (i
= row
+ 1; i
< num_rows
; i
++)
1683 memcpy(tv
->table
->data
[i
- 1], tv
->table
->data
[i
], tv
->row_size
);
1684 tv
->table
->data_persistent
[i
- 1] = tv
->table
->data_persistent
[i
];
1687 msi_free(tv
->table
->data
[num_rows
- 1]);
1689 return ERROR_SUCCESS
;
1692 static UINT
msi_table_update(struct tagMSIVIEW
*view
, MSIRECORD
*rec
, UINT row
)
1694 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1697 /* FIXME: MsiViewFetch should set rec index 0 to some ID that
1698 * sets the fetched record apart from other records
1702 return ERROR_INVALID_PARAMETER
;
1704 r
= msi_table_find_row(tv
, rec
, &new_row
, NULL
);
1705 if (r
!= ERROR_SUCCESS
)
1707 ERR("can't find row to modify\n");
1708 return ERROR_FUNCTION_FAILED
;
1711 /* the row cannot be changed */
1712 if (row
!= new_row
+ 1)
1713 return ERROR_FUNCTION_FAILED
;
1715 return TABLE_set_row(view
, new_row
, rec
, (1 << tv
->num_cols
) - 1);
1718 static UINT
msi_table_assign(struct tagMSIVIEW
*view
, MSIRECORD
*rec
)
1720 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1724 return ERROR_INVALID_PARAMETER
;
1726 r
= msi_table_find_row(tv
, rec
, &row
, NULL
);
1727 if (r
== ERROR_SUCCESS
)
1728 return TABLE_set_row(view
, row
, rec
, (1 << tv
->num_cols
) - 1);
1730 return TABLE_insert_row( view
, rec
, -1, FALSE
);
1733 static UINT
modify_delete_row( struct tagMSIVIEW
*view
, MSIRECORD
*rec
)
1735 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1738 r
= msi_table_find_row(tv
, rec
, &row
, NULL
);
1739 if (r
!= ERROR_SUCCESS
)
1742 return TABLE_delete_row(view
, row
);
1745 static UINT
msi_refresh_record( struct tagMSIVIEW
*view
, MSIRECORD
*rec
, UINT row
)
1750 r
= TABLE_get_row(view
, row
- 1, &curr
);
1751 if (r
!= ERROR_SUCCESS
)
1754 /* Close the original record */
1755 MSI_CloseRecord(&rec
->hdr
);
1757 count
= MSI_RecordGetFieldCount(rec
);
1758 for (i
= 0; i
< count
; i
++)
1759 MSI_RecordCopyField(curr
, i
+ 1, rec
, i
+ 1);
1761 msiobj_release(&curr
->hdr
);
1762 return ERROR_SUCCESS
;
1765 static UINT
TABLE_modify( struct tagMSIVIEW
*view
, MSIMODIFY eModifyMode
,
1766 MSIRECORD
*rec
, UINT row
)
1768 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1769 UINT r
, frow
, column
;
1771 TRACE("%p %d %p\n", view
, eModifyMode
, rec
);
1773 switch (eModifyMode
)
1775 case MSIMODIFY_DELETE
:
1776 r
= modify_delete_row( view
, rec
);
1778 case MSIMODIFY_VALIDATE_NEW
:
1779 r
= table_validate_new( tv
, rec
, &column
);
1780 if (r
!= ERROR_SUCCESS
)
1782 tv
->view
.error
= MSIDBERROR_DUPLICATEKEY
;
1783 tv
->view
.error_column
= tv
->columns
[column
].colname
;
1784 r
= ERROR_INVALID_DATA
;
1788 case MSIMODIFY_INSERT
:
1789 r
= table_validate_new( tv
, rec
, NULL
);
1790 if (r
!= ERROR_SUCCESS
)
1792 r
= TABLE_insert_row( view
, rec
, -1, FALSE
);
1795 case MSIMODIFY_INSERT_TEMPORARY
:
1796 r
= table_validate_new( tv
, rec
, NULL
);
1797 if (r
!= ERROR_SUCCESS
)
1799 r
= TABLE_insert_row( view
, rec
, -1, TRUE
);
1802 case MSIMODIFY_REFRESH
:
1803 r
= msi_refresh_record( view
, rec
, row
);
1806 case MSIMODIFY_UPDATE
:
1807 r
= msi_table_update( view
, rec
, row
);
1810 case MSIMODIFY_ASSIGN
:
1811 r
= msi_table_assign( view
, rec
);
1814 case MSIMODIFY_MERGE
:
1815 /* check row that matches this record */
1816 r
= msi_table_find_row( tv
, rec
, &frow
, &column
);
1817 if (r
!= ERROR_SUCCESS
)
1819 r
= table_validate_new( tv
, rec
, NULL
);
1820 if (r
== ERROR_SUCCESS
)
1821 r
= TABLE_insert_row( view
, rec
, -1, FALSE
);
1825 case MSIMODIFY_REPLACE
:
1826 case MSIMODIFY_VALIDATE
:
1827 case MSIMODIFY_VALIDATE_FIELD
:
1828 case MSIMODIFY_VALIDATE_DELETE
:
1829 FIXME("%p %d %p - mode not implemented\n", view
, eModifyMode
, rec
);
1830 r
= ERROR_CALL_NOT_IMPLEMENTED
;
1834 r
= ERROR_INVALID_DATA
;
1840 static UINT
TABLE_delete( struct tagMSIVIEW
*view
)
1842 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1844 TRACE("%p\n", view
);
1851 return ERROR_SUCCESS
;
1854 static UINT
TABLE_find_matching_rows( struct tagMSIVIEW
*view
, UINT col
,
1855 UINT val
, UINT
*row
, MSIITERHANDLE
*handle
)
1857 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1858 const MSICOLUMNHASHENTRY
*entry
;
1860 TRACE("%p, %d, %u, %p\n", view
, col
, val
, *handle
);
1863 return ERROR_INVALID_PARAMETER
;
1865 if( (col
==0) || (col
> tv
->num_cols
) )
1866 return ERROR_INVALID_PARAMETER
;
1868 if( !tv
->columns
[col
-1].hash_table
)
1871 UINT num_rows
= tv
->table
->row_count
;
1872 MSICOLUMNHASHENTRY
**hash_table
;
1873 MSICOLUMNHASHENTRY
*new_entry
;
1875 if( tv
->columns
[col
-1].offset
>= tv
->row_size
)
1877 ERR("Stuffed up %d >= %d\n", tv
->columns
[col
-1].offset
, tv
->row_size
);
1878 ERR("%p %p\n", tv
, tv
->columns
);
1879 return ERROR_FUNCTION_FAILED
;
1882 /* allocate contiguous memory for the table and its entries so we
1883 * don't have to do an expensive cleanup */
1884 hash_table
= msi_alloc(MSITABLE_HASH_TABLE_SIZE
* sizeof(MSICOLUMNHASHENTRY
*) +
1885 num_rows
* sizeof(MSICOLUMNHASHENTRY
));
1887 return ERROR_OUTOFMEMORY
;
1889 memset(hash_table
, 0, MSITABLE_HASH_TABLE_SIZE
* sizeof(MSICOLUMNHASHENTRY
*));
1890 tv
->columns
[col
-1].hash_table
= hash_table
;
1892 new_entry
= (MSICOLUMNHASHENTRY
*)(hash_table
+ MSITABLE_HASH_TABLE_SIZE
);
1894 for (i
= 0; i
< num_rows
; i
++, new_entry
++)
1898 if (view
->ops
->fetch_int( view
, i
, col
, &row_value
) != ERROR_SUCCESS
)
1901 new_entry
->next
= NULL
;
1902 new_entry
->value
= row_value
;
1904 if (hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
])
1906 MSICOLUMNHASHENTRY
*prev_entry
= hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
];
1907 while (prev_entry
->next
)
1908 prev_entry
= prev_entry
->next
;
1909 prev_entry
->next
= new_entry
;
1912 hash_table
[row_value
% MSITABLE_HASH_TABLE_SIZE
] = new_entry
;
1917 entry
= tv
->columns
[col
-1].hash_table
[val
% MSITABLE_HASH_TABLE_SIZE
];
1919 entry
= (*handle
)->next
;
1921 while (entry
&& entry
->value
!= val
)
1922 entry
= entry
->next
;
1926 return ERROR_NO_MORE_ITEMS
;
1930 return ERROR_SUCCESS
;
1933 static UINT
TABLE_add_ref(struct tagMSIVIEW
*view
)
1935 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1938 TRACE("%p %d\n", view
, tv
->table
->ref_count
);
1940 for (i
= 0; i
< tv
->table
->col_count
; i
++)
1942 if (tv
->table
->colinfo
[i
].type
& MSITYPE_TEMPORARY
)
1943 InterlockedIncrement(&tv
->table
->colinfo
[i
].ref_count
);
1946 return InterlockedIncrement(&tv
->table
->ref_count
);
1949 static UINT
TABLE_remove_column(struct tagMSIVIEW
*view
, LPCWSTR table
, UINT number
)
1951 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1952 MSIRECORD
*rec
= NULL
;
1953 MSIVIEW
*columns
= NULL
;
1956 rec
= MSI_CreateRecord(2);
1958 return ERROR_OUTOFMEMORY
;
1960 MSI_RecordSetStringW(rec
, 1, table
);
1961 MSI_RecordSetInteger(rec
, 2, number
);
1963 r
= TABLE_CreateView(tv
->db
, szColumns
, &columns
);
1964 if (r
!= ERROR_SUCCESS
)
1967 r
= msi_table_find_row((MSITABLEVIEW
*)columns
, rec
, &row
, NULL
);
1968 if (r
!= ERROR_SUCCESS
)
1971 r
= TABLE_delete_row(columns
, row
);
1972 if (r
!= ERROR_SUCCESS
)
1975 msi_update_table_columns(tv
->db
, table
);
1978 msiobj_release(&rec
->hdr
);
1979 columns
->ops
->delete(columns
);
1983 static UINT
TABLE_release(struct tagMSIVIEW
*view
)
1985 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
1986 INT ref
= tv
->table
->ref_count
;
1989 TRACE("%p %d\n", view
, ref
);
1991 for (i
= 0; i
< tv
->table
->col_count
; i
++)
1993 if (tv
->table
->colinfo
[i
].type
& MSITYPE_TEMPORARY
)
1995 ref
= InterlockedDecrement(&tv
->table
->colinfo
[i
].ref_count
);
1998 r
= TABLE_remove_column(view
, tv
->table
->colinfo
[i
].tablename
,
1999 tv
->table
->colinfo
[i
].number
);
2000 if (r
!= ERROR_SUCCESS
)
2006 ref
= InterlockedDecrement(&tv
->table
->ref_count
);
2009 if (!tv
->table
->row_count
)
2011 list_remove(&tv
->table
->entry
);
2012 free_table(tv
->table
);
2020 static UINT
TABLE_add_column(struct tagMSIVIEW
*view
, LPCWSTR table
, UINT number
,
2021 LPCWSTR column
, UINT type
, BOOL hold
)
2023 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
2028 rec
= MSI_CreateRecord(4);
2030 return ERROR_OUTOFMEMORY
;
2032 MSI_RecordSetStringW(rec
, 1, table
);
2033 MSI_RecordSetInteger(rec
, 2, number
);
2034 MSI_RecordSetStringW(rec
, 3, column
);
2035 MSI_RecordSetInteger(rec
, 4, type
);
2037 r
= TABLE_insert_row(&tv
->view
, rec
, -1, FALSE
);
2038 if (r
!= ERROR_SUCCESS
)
2041 msi_update_table_columns(tv
->db
, table
);
2046 msitable
= find_cached_table(tv
->db
, table
);
2047 for (i
= 0; i
< msitable
->col_count
; i
++)
2049 if (!strcmpW( msitable
->colinfo
[i
].colname
, column
))
2051 InterlockedIncrement(&msitable
->colinfo
[i
].ref_count
);
2057 msiobj_release(&rec
->hdr
);
2061 static UINT
TABLE_drop(struct tagMSIVIEW
*view
)
2063 MSITABLEVIEW
*tv
= (MSITABLEVIEW
*)view
;
2064 MSIVIEW
*tables
= NULL
;
2065 MSIRECORD
*rec
= NULL
;
2069 TRACE("dropping table %s\n", debugstr_w(tv
->name
));
2071 for (i
= tv
->table
->col_count
- 1; i
>= 0; i
--)
2073 r
= TABLE_remove_column(view
, tv
->table
->colinfo
[i
].tablename
,
2074 tv
->table
->colinfo
[i
].number
);
2075 if (r
!= ERROR_SUCCESS
)
2079 rec
= MSI_CreateRecord(1);
2081 return ERROR_OUTOFMEMORY
;
2083 MSI_RecordSetStringW(rec
, 1, tv
->name
);
2085 r
= TABLE_CreateView(tv
->db
, szTables
, &tables
);
2086 if (r
!= ERROR_SUCCESS
)
2089 r
= msi_table_find_row((MSITABLEVIEW
*)tables
, rec
, &row
, NULL
);
2090 if (r
!= ERROR_SUCCESS
)
2093 r
= TABLE_delete_row(tables
, row
);
2094 if (r
!= ERROR_SUCCESS
)
2097 list_remove(&tv
->table
->entry
);
2098 free_table(tv
->table
);
2101 msiobj_release(&rec
->hdr
);
2102 tables
->ops
->delete(tables
);
2107 static const MSIVIEWOPS table_ops
=
2117 TABLE_get_dimensions
,
2118 TABLE_get_column_info
,
2121 TABLE_find_matching_rows
,
2125 TABLE_remove_column
,
2130 UINT
TABLE_CreateView( MSIDATABASE
*db
, LPCWSTR name
, MSIVIEW
**view
)
2135 TRACE("%p %s %p\n", db
, debugstr_w(name
), view
);
2137 if ( !strcmpW( name
, szStreams
) )
2138 return STREAMS_CreateView( db
, view
);
2139 else if ( !strcmpW( name
, szStorages
) )
2140 return STORAGES_CreateView( db
, view
);
2142 sz
= sizeof *tv
+ lstrlenW(name
)*sizeof name
[0] ;
2143 tv
= msi_alloc_zero( sz
);
2145 return ERROR_FUNCTION_FAILED
;
2147 r
= get_table( db
, name
, &tv
->table
);
2148 if( r
!= ERROR_SUCCESS
)
2151 WARN("table not found\n");
2155 TRACE("table %p found with %d columns\n", tv
->table
, tv
->table
->col_count
);
2157 /* fill the structure */
2158 tv
->view
.ops
= &table_ops
;
2160 tv
->columns
= tv
->table
->colinfo
;
2161 tv
->num_cols
= tv
->table
->col_count
;
2162 tv
->row_size
= msi_table_get_row_size( db
, tv
->table
->colinfo
, tv
->table
->col_count
, LONG_STR_BYTES
);
2164 TRACE("%s one row is %d bytes\n", debugstr_w(name
), tv
->row_size
);
2166 *view
= (MSIVIEW
*) tv
;
2167 lstrcpyW( tv
->name
, name
);
2169 return ERROR_SUCCESS
;
2172 UINT
MSI_CommitTables( MSIDATABASE
*db
)
2174 UINT r
, bytes_per_strref
;
2176 MSITABLE
*table
= NULL
;
2180 r
= msi_save_string_table( db
->strings
, db
->storage
, &bytes_per_strref
);
2181 if( r
!= ERROR_SUCCESS
)
2183 WARN("failed to save string table r=%08x\n",r
);
2187 LIST_FOR_EACH_ENTRY( table
, &db
->tables
, MSITABLE
, entry
)
2189 r
= save_table( db
, table
, bytes_per_strref
);
2190 if( r
!= ERROR_SUCCESS
)
2192 WARN("failed to save table %s (r=%08x)\n",
2193 debugstr_w(table
->name
), r
);
2198 /* force everything to reload next time */
2199 free_cached_tables( db
);
2201 hr
= IStorage_Commit( db
->storage
, 0 );
2204 WARN("failed to commit changes 0x%08x\n", hr
);
2205 r
= ERROR_FUNCTION_FAILED
;
2210 MSICONDITION
MSI_DatabaseIsTablePersistent( MSIDATABASE
*db
, LPCWSTR table
)
2215 TRACE("%p %s\n", db
, debugstr_w(table
));
2218 return MSICONDITION_ERROR
;
2220 r
= get_table( db
, table
, &t
);
2221 if (r
!= ERROR_SUCCESS
)
2222 return MSICONDITION_NONE
;
2224 return t
->persistent
;
2227 static UINT
read_raw_int(const BYTE
*data
, UINT col
, UINT bytes
)
2231 for (i
= 0; i
< bytes
; i
++)
2232 ret
+= (data
[col
+ i
] << i
* 8);
2237 static UINT
msi_record_encoded_stream_name( const MSITABLEVIEW
*tv
, MSIRECORD
*rec
, LPWSTR
*pstname
)
2239 LPWSTR stname
= NULL
, sval
, p
;
2243 TRACE("%p %p\n", tv
, rec
);
2245 len
= lstrlenW( tv
->name
) + 1;
2246 stname
= msi_alloc( len
*sizeof(WCHAR
) );
2249 r
= ERROR_OUTOFMEMORY
;
2253 lstrcpyW( stname
, tv
->name
);
2255 for ( i
= 0; i
< tv
->num_cols
; i
++ )
2257 if ( tv
->columns
[i
].type
& MSITYPE_KEY
)
2259 sval
= msi_dup_record_field( rec
, i
+ 1 );
2262 r
= ERROR_OUTOFMEMORY
;
2266 len
+= lstrlenW( szDot
) + lstrlenW ( sval
);
2267 p
= msi_realloc ( stname
, len
*sizeof(WCHAR
) );
2270 r
= ERROR_OUTOFMEMORY
;
2275 lstrcatW( stname
, szDot
);
2276 lstrcatW( stname
, sval
);
2284 *pstname
= encode_streamname( FALSE
, stname
);
2287 return ERROR_SUCCESS
;
2290 msi_free ( stname
);
2295 static MSIRECORD
*msi_get_transform_record( const MSITABLEVIEW
*tv
, const string_table
*st
,
2297 const BYTE
*rawdata
, UINT bytes_per_strref
)
2299 UINT i
, val
, ofs
= 0;
2301 MSICOLUMNINFO
*columns
= tv
->columns
;
2304 mask
= rawdata
[0] | (rawdata
[1] << 8);
2307 rec
= MSI_CreateRecord( tv
->num_cols
);
2312 for( i
=0; i
<tv
->num_cols
; i
++ )
2314 if ( (mask
&1) && (i
>=(mask
>>8)) )
2316 /* all keys must be present */
2317 if ( (~mask
&1) && (~columns
[i
].type
& MSITYPE_KEY
) && ((1<<i
) & ~mask
) )
2320 if( MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
2323 IStream
*stm
= NULL
;
2326 ofs
+= bytes_per_column( tv
->db
, &columns
[i
], bytes_per_strref
);
2328 r
= msi_record_encoded_stream_name( tv
, rec
, &encname
);
2329 if ( r
!= ERROR_SUCCESS
)
2332 r
= IStorage_OpenStream( stg
, encname
, NULL
,
2333 STGM_READ
| STGM_SHARE_EXCLUSIVE
, 0, &stm
);
2334 msi_free( encname
);
2335 if ( r
!= ERROR_SUCCESS
)
2338 MSI_RecordSetStream( rec
, i
+1, stm
);
2339 TRACE(" field %d [%s]\n", i
+1, debugstr_w(encname
));
2341 else if( columns
[i
].type
& MSITYPE_STRING
)
2345 val
= read_raw_int(rawdata
, ofs
, bytes_per_strref
);
2346 sval
= msi_string_lookup_id( st
, val
);
2347 MSI_RecordSetStringW( rec
, i
+1, sval
);
2348 TRACE(" field %d [%s]\n", i
+1, debugstr_w(sval
));
2349 ofs
+= bytes_per_strref
;
2353 UINT n
= bytes_per_column( tv
->db
, &columns
[i
], bytes_per_strref
);
2357 val
= read_raw_int(rawdata
, ofs
, n
);
2359 MSI_RecordSetInteger( rec
, i
+1, val
-0x8000 );
2360 TRACE(" field %d [0x%04x]\n", i
+1, val
);
2363 val
= read_raw_int(rawdata
, ofs
, n
);
2365 MSI_RecordSetInteger( rec
, i
+1, val
^0x80000000 );
2366 TRACE(" field %d [0x%08x]\n", i
+1, val
);
2369 ERR("oops - unknown column width %d\n", n
);
2378 static void dump_record( MSIRECORD
*rec
)
2382 n
= MSI_RecordGetFieldCount( rec
);
2383 for( i
=1; i
<=n
; i
++ )
2387 if( MSI_RecordIsNull( rec
, i
) )
2388 TRACE("row -> []\n");
2389 else if( (sval
= MSI_RecordGetString( rec
, i
)) )
2390 TRACE("row -> [%s]\n", debugstr_w(sval
));
2392 TRACE("row -> [0x%08x]\n", MSI_RecordGetInteger( rec
, i
) );
2396 static void dump_table( const string_table
*st
, const USHORT
*rawdata
, UINT rawsize
)
2401 for( i
=0; i
<(rawsize
/2); i
++ )
2403 sval
= msi_string_lookup_id( st
, rawdata
[i
] );
2404 MESSAGE(" %04x %s\n", rawdata
[i
], debugstr_w(sval
) );
2408 static UINT
* msi_record_to_row( const MSITABLEVIEW
*tv
, MSIRECORD
*rec
)
2413 data
= msi_alloc( tv
->num_cols
*sizeof (UINT
) );
2414 for( i
=0; i
<tv
->num_cols
; i
++ )
2418 if ( ~tv
->columns
[i
].type
& MSITYPE_KEY
)
2421 /* turn the transform column value into a row value */
2422 if ( ( tv
->columns
[i
].type
& MSITYPE_STRING
) &&
2423 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
2425 str
= MSI_RecordGetString( rec
, i
+1 );
2428 r
= msi_string2idW( tv
->db
->strings
, str
, &data
[i
] );
2430 /* if there's no matching string in the string table,
2431 these keys can't match any record, so fail now. */
2432 if (r
!= ERROR_SUCCESS
)
2442 data
[i
] = MSI_RecordGetInteger( rec
, i
+1 );
2444 if (data
[i
] == MSI_NULL_INTEGER
)
2446 else if ((tv
->columns
[i
].type
&0xff) == 2)
2449 data
[i
] += 0x80000000;
2455 static UINT
msi_row_matches( MSITABLEVIEW
*tv
, UINT row
, const UINT
*data
, UINT
*column
)
2457 UINT i
, r
, x
, ret
= ERROR_FUNCTION_FAILED
;
2459 for( i
=0; i
<tv
->num_cols
; i
++ )
2461 if ( ~tv
->columns
[i
].type
& MSITYPE_KEY
)
2464 /* turn the transform column value into a row value */
2465 r
= TABLE_fetch_int( &tv
->view
, row
, i
+1, &x
);
2466 if ( r
!= ERROR_SUCCESS
)
2468 ERR("TABLE_fetch_int shouldn't fail here\n");
2472 /* if this key matches, move to the next column */
2475 ret
= ERROR_FUNCTION_FAILED
;
2478 if (column
) *column
= i
;
2479 ret
= ERROR_SUCCESS
;
2484 static UINT
msi_table_find_row( MSITABLEVIEW
*tv
, MSIRECORD
*rec
, UINT
*row
, UINT
*column
)
2486 UINT i
, r
= ERROR_FUNCTION_FAILED
, *data
;
2488 data
= msi_record_to_row( tv
, rec
);
2491 for( i
= 0; i
< tv
->table
->row_count
; i
++ )
2493 r
= msi_row_matches( tv
, i
, data
, column
);
2494 if( r
== ERROR_SUCCESS
)
2510 static UINT
msi_table_load_transform( MSIDATABASE
*db
, IStorage
*stg
,
2511 string_table
*st
, TRANSFORMDATA
*transform
,
2512 UINT bytes_per_strref
)
2514 BYTE
*rawdata
= NULL
;
2515 MSITABLEVIEW
*tv
= NULL
;
2516 UINT r
, n
, sz
, i
, mask
, num_cols
, colcol
= 0, rawsize
= 0;
2517 MSIRECORD
*rec
= NULL
;
2522 return ERROR_SUCCESS
;
2524 name
= transform
->name
;
2527 TRACE("%p %p %p %s\n", db
, stg
, st
, debugstr_w(name
) );
2529 /* read the transform data */
2530 read_stream_data( stg
, name
, TRUE
, &rawdata
, &rawsize
);
2533 TRACE("table %s empty\n", debugstr_w(name
) );
2534 return ERROR_INVALID_TABLE
;
2537 /* create a table view */
2538 r
= TABLE_CreateView( db
, name
, (MSIVIEW
**) &tv
);
2539 if( r
!= ERROR_SUCCESS
)
2542 r
= tv
->view
.ops
->execute( &tv
->view
, NULL
);
2543 if( r
!= ERROR_SUCCESS
)
2546 TRACE("name = %s columns = %u row_size = %u raw size = %u\n",
2547 debugstr_w(name
), tv
->num_cols
, tv
->row_size
, rawsize
);
2549 /* interpret the data */
2550 for (n
= 0; n
< rawsize
;)
2552 mask
= rawdata
[n
] | (rawdata
[n
+ 1] << 8);
2556 * if the low bit is set, columns are continuous and
2557 * the number of columns is specified in the high byte
2560 num_cols
= mask
>> 8;
2561 for (i
= 0; i
< num_cols
; i
++)
2563 if( (tv
->columns
[i
].type
& MSITYPE_STRING
) &&
2564 ! MSITYPE_IS_BINARY(tv
->columns
[i
].type
) )
2565 sz
+= bytes_per_strref
;
2567 sz
+= bytes_per_column( tv
->db
, &tv
->columns
[i
], bytes_per_strref
);
2573 * If the low bit is not set, mask is a bitmask.
2574 * Excepting for key fields, which are always present,
2575 * each bit indicates that a field is present in the transform record.
2577 * mask == 0 is a special case ... only the keys will be present
2578 * and it means that this row should be deleted.
2581 num_cols
= tv
->num_cols
;
2582 for (i
= 0; i
< num_cols
; i
++)
2584 if ((tv
->columns
[i
].type
& MSITYPE_KEY
) || ((1 << i
) & mask
))
2586 if ((tv
->columns
[i
].type
& MSITYPE_STRING
) &&
2587 !MSITYPE_IS_BINARY(tv
->columns
[i
].type
))
2588 sz
+= bytes_per_strref
;
2590 sz
+= bytes_per_column( tv
->db
, &tv
->columns
[i
], bytes_per_strref
);
2595 /* check we didn't run of the end of the table */
2596 if (n
+ sz
> rawsize
)
2599 dump_table( st
, (USHORT
*)rawdata
, rawsize
);
2603 rec
= msi_get_transform_record( tv
, st
, stg
, &rawdata
[n
], bytes_per_strref
);
2608 UINT number
= MSI_NULL_INTEGER
;
2611 if (!strcmpW( name
, szColumns
))
2613 MSI_RecordGetStringW( rec
, 1, table
, &sz
);
2614 number
= MSI_RecordGetInteger( rec
, 2 );
2617 * Native msi seems writes nul into the Number (2nd) column of
2618 * the _Columns table, only when the columns are from a new table
2620 if ( number
== MSI_NULL_INTEGER
)
2622 /* reset the column number on a new table */
2623 if (strcmpW( coltable
, table
))
2626 lstrcpyW( coltable
, table
);
2629 /* fix nul column numbers */
2630 MSI_RecordSetInteger( rec
, 2, ++colcol
);
2634 if (TRACE_ON(msidb
)) dump_record( rec
);
2636 r
= msi_table_find_row( tv
, rec
, &row
, NULL
);
2637 if (r
== ERROR_SUCCESS
)
2641 TRACE("deleting row [%d]:\n", row
);
2642 r
= TABLE_delete_row( &tv
->view
, row
);
2643 if (r
!= ERROR_SUCCESS
)
2644 WARN("failed to delete row %u\n", r
);
2648 TRACE("modifying full row [%d]:\n", row
);
2649 r
= TABLE_set_row( &tv
->view
, row
, rec
, (1 << tv
->num_cols
) - 1 );
2650 if (r
!= ERROR_SUCCESS
)
2651 WARN("failed to modify row %u\n", r
);
2655 TRACE("modifying masked row [%d]:\n", row
);
2656 r
= TABLE_set_row( &tv
->view
, row
, rec
, mask
);
2657 if (r
!= ERROR_SUCCESS
)
2658 WARN("failed to modify row %u\n", r
);
2663 TRACE("inserting row\n");
2664 r
= TABLE_insert_row( &tv
->view
, rec
, -1, FALSE
);
2665 if (r
!= ERROR_SUCCESS
)
2666 WARN("failed to insert row %u\n", r
);
2669 if (number
!= MSI_NULL_INTEGER
&& !strcmpW( name
, szColumns
))
2670 msi_update_table_columns( db
, table
);
2672 msiobj_release( &rec
->hdr
);
2679 /* no need to free the table, it's associated with the database */
2680 msi_free( rawdata
);
2682 tv
->view
.ops
->delete( &tv
->view
);
2684 return ERROR_SUCCESS
;
2688 * msi_table_apply_transform
2690 * Enumerate the table transforms in a transform storage and apply each one.
2692 UINT
msi_table_apply_transform( MSIDATABASE
*db
, IStorage
*stg
)
2694 struct list transforms
;
2695 IEnumSTATSTG
*stgenum
= NULL
;
2696 TRANSFORMDATA
*transform
;
2697 TRANSFORMDATA
*tables
= NULL
, *columns
= NULL
;
2700 string_table
*strings
;
2701 UINT ret
= ERROR_FUNCTION_FAILED
;
2702 UINT bytes_per_strref
;
2704 TRACE("%p %p\n", db
, stg
);
2706 strings
= msi_load_string_table( stg
, &bytes_per_strref
);
2710 r
= IStorage_EnumElements( stg
, 0, NULL
, 0, &stgenum
);
2714 list_init(&transforms
);
2718 MSITABLEVIEW
*tv
= NULL
;
2722 r
= IEnumSTATSTG_Next( stgenum
, 1, &stat
, &count
);
2723 if ( FAILED( r
) || !count
)
2726 decode_streamname( stat
.pwcsName
, name
);
2727 CoTaskMemFree( stat
.pwcsName
);
2728 if ( name
[0] != 0x4840 )
2731 if ( !strcmpW( name
+1, szStringPool
) ||
2732 !strcmpW( name
+1, szStringData
) )
2735 transform
= msi_alloc_zero( sizeof(TRANSFORMDATA
) );
2739 list_add_tail( &transforms
, &transform
->entry
);
2741 transform
->name
= strdupW( name
+ 1 );
2743 if ( !strcmpW( transform
->name
, szTables
) )
2745 else if (!strcmpW( transform
->name
, szColumns
) )
2746 columns
= transform
;
2748 TRACE("transform contains stream %s\n", debugstr_w(name
));
2750 /* load the table */
2751 r
= TABLE_CreateView( db
, transform
->name
, (MSIVIEW
**) &tv
);
2752 if( r
!= ERROR_SUCCESS
)
2755 r
= tv
->view
.ops
->execute( &tv
->view
, NULL
);
2756 if( r
!= ERROR_SUCCESS
)
2758 tv
->view
.ops
->delete( &tv
->view
);
2762 tv
->view
.ops
->delete( &tv
->view
);
2766 * Apply _Tables and _Columns transforms first so that
2767 * the table metadata is correct, and empty tables exist.
2769 ret
= msi_table_load_transform( db
, stg
, strings
, tables
, bytes_per_strref
);
2770 if (ret
!= ERROR_SUCCESS
&& ret
!= ERROR_INVALID_TABLE
)
2773 ret
= msi_table_load_transform( db
, stg
, strings
, columns
, bytes_per_strref
);
2774 if (ret
!= ERROR_SUCCESS
&& ret
!= ERROR_INVALID_TABLE
)
2777 ret
= ERROR_SUCCESS
;
2779 while ( !list_empty( &transforms
) )
2781 transform
= LIST_ENTRY( list_head( &transforms
), TRANSFORMDATA
, entry
);
2783 if ( strcmpW( transform
->name
, szColumns
) &&
2784 strcmpW( transform
->name
, szTables
) &&
2785 ret
== ERROR_SUCCESS
)
2787 ret
= msi_table_load_transform( db
, stg
, strings
, transform
, bytes_per_strref
);
2790 list_remove( &transform
->entry
);
2791 msi_free( transform
->name
);
2792 msi_free( transform
);
2795 if ( ret
== ERROR_SUCCESS
)
2796 append_storage_to_db( db
, stg
);
2800 IEnumSTATSTG_Release( stgenum
);
2802 msi_destroy_stringtable( strings
);