2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2002,2003,2004,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
30 #include "wine/debug.h"
36 #include "msiserver.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(msi
);
46 * An .msi file is a structured storage file.
47 * It contains a number of streams.
48 * A stream for each table in the database.
49 * Two streams for the string table in the database.
50 * Any binary data in a table is a reference to a stream.
53 #define IS_INTMSIDBOPEN(x) (((ULONG_PTR)(x) >> 16) == 0)
55 static void free_transforms( MSIDATABASE
*db
)
57 while( !list_empty( &db
->transforms
) )
59 MSITRANSFORM
*t
= LIST_ENTRY( list_head( &db
->transforms
), MSITRANSFORM
, entry
);
60 list_remove( &t
->entry
);
61 IStorage_Release( t
->stg
);
66 static void free_streams( MSIDATABASE
*db
)
69 for (i
= 0; i
< db
->num_streams
; i
++)
71 if (db
->streams
[i
].stream
) IStream_Release( db
->streams
[i
].stream
);
73 msi_free( db
->streams
);
76 void append_storage_to_db( MSIDATABASE
*db
, IStorage
*stg
)
80 t
= msi_alloc( sizeof *t
);
82 IStorage_AddRef( stg
);
83 list_add_head( &db
->transforms
, &t
->entry
);
86 static VOID
MSI_CloseDatabase( MSIOBJECTHDR
*arg
)
88 MSIDATABASE
*db
= (MSIDATABASE
*) arg
;
92 free_cached_tables( db
);
93 free_transforms( db
);
94 if (db
->strings
) msi_destroy_stringtable( db
->strings
);
95 IStorage_Release( db
->storage
);
98 DeleteFileW( db
->deletefile
);
99 msi_free( db
->deletefile
);
101 msi_free( db
->tempfolder
);
104 static HRESULT
db_initialize( IStorage
*stg
, const GUID
*clsid
)
108 hr
= IStorage_SetClass( stg
, clsid
);
111 WARN("failed to set class id 0x%08x\n", hr
);
115 /* create the _Tables stream */
116 hr
= write_stream_data( stg
, L
"_Tables", NULL
, 0, TRUE
);
119 WARN("failed to create _Tables stream 0x%08x\n", hr
);
123 hr
= msi_init_string_table( stg
);
126 WARN("failed to initialize string table 0x%08x\n", hr
);
130 hr
= IStorage_Commit( stg
, 0 );
133 WARN("failed to commit changes 0x%08x\n", hr
);
140 UINT
MSI_OpenDatabaseW(LPCWSTR szDBPath
, LPCWSTR szPersist
, MSIDATABASE
**pdb
)
142 IStorage
*stg
= NULL
;
144 MSIDATABASE
*db
= NULL
;
145 UINT ret
= ERROR_FUNCTION_FAILED
;
149 BOOL created
= FALSE
, patch
= FALSE
;
150 WCHAR path
[MAX_PATH
];
152 TRACE("%s %s\n",debugstr_w(szDBPath
),debugstr_w(szPersist
) );
155 return ERROR_INVALID_PARAMETER
;
157 save_path
= szDBPath
;
158 if ( IS_INTMSIDBOPEN(szPersist
) )
160 mode
= LOWORD(szPersist
);
164 if (!CopyFileW( szDBPath
, szPersist
, FALSE
))
165 return ERROR_OPEN_FAILED
;
167 szDBPath
= szPersist
;
168 mode
= MSI_OPEN_TRANSACT
;
172 if ((mode
& MSI_OPEN_PATCHFILE
) == MSI_OPEN_PATCHFILE
)
174 TRACE("Database is a patch\n");
175 mode
&= ~MSI_OPEN_PATCHFILE
;
179 if( mode
== MSI_OPEN_READONLY
)
181 r
= StgOpenStorage( szDBPath
, NULL
,
182 STGM_DIRECT
|STGM_READ
|STGM_SHARE_DENY_WRITE
, NULL
, 0, &stg
);
184 else if( mode
== MSI_OPEN_CREATE
)
186 r
= StgCreateDocfile( szDBPath
,
187 STGM_CREATE
|STGM_TRANSACTED
|STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, 0, &stg
);
190 r
= db_initialize( stg
, patch
? &CLSID_MsiPatch
: &CLSID_MsiDatabase
);
193 else if( mode
== MSI_OPEN_CREATEDIRECT
)
195 r
= StgCreateDocfile( szDBPath
,
196 STGM_CREATE
|STGM_DIRECT
|STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, 0, &stg
);
199 r
= db_initialize( stg
, patch
? &CLSID_MsiPatch
: &CLSID_MsiDatabase
);
202 else if( mode
== MSI_OPEN_TRANSACT
)
204 r
= StgOpenStorage( szDBPath
, NULL
,
205 STGM_TRANSACTED
|STGM_READWRITE
|STGM_SHARE_DENY_WRITE
, NULL
, 0, &stg
);
207 else if( mode
== MSI_OPEN_DIRECT
)
209 r
= StgOpenStorage( szDBPath
, NULL
,
210 STGM_DIRECT
|STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, NULL
, 0, &stg
);
214 ERR("unknown flag %x\n",mode
);
215 return ERROR_INVALID_PARAMETER
;
218 if( FAILED( r
) || !stg
)
220 WARN("open failed r = %08x for %s\n", r
, debugstr_w(szDBPath
));
221 return ERROR_FUNCTION_FAILED
;
224 r
= IStorage_Stat( stg
, &stat
, STATFLAG_NONAME
);
227 FIXME("Failed to stat storage\n");
231 if ( !IsEqualGUID( &stat
.clsid
, &CLSID_MsiDatabase
) &&
232 !IsEqualGUID( &stat
.clsid
, &CLSID_MsiPatch
) &&
233 !IsEqualGUID( &stat
.clsid
, &CLSID_MsiTransform
) )
235 ERR("storage GUID is not a MSI database GUID %s\n",
236 debugstr_guid(&stat
.clsid
) );
240 if ( patch
&& !IsEqualGUID( &stat
.clsid
, &CLSID_MsiPatch
) )
242 ERR("storage GUID is not the MSI patch GUID %s\n",
243 debugstr_guid(&stat
.clsid
) );
244 ret
= ERROR_OPEN_FAILED
;
248 db
= alloc_msiobject( MSIHANDLETYPE_DATABASE
, sizeof (MSIDATABASE
),
252 FIXME("Failed to allocate a handle\n");
256 if (!wcschr( save_path
, '\\' ))
258 GetCurrentDirectoryW( MAX_PATH
, path
);
259 lstrcatW( path
, L
"\\" );
260 lstrcatW( path
, save_path
);
263 lstrcpyW( path
, save_path
);
265 db
->path
= strdupW( path
);
266 db
->media_transform_offset
= MSI_INITIAL_MEDIA_TRANSFORM_OFFSET
;
267 db
->media_transform_disk_id
= MSI_INITIAL_MEDIA_TRANSFORM_DISKID
;
269 if( TRACE_ON( msi
) )
270 enum_stream_names( stg
);
275 db
->deletefile
= strdupW( szDBPath
);
276 list_init( &db
->tables
);
277 list_init( &db
->transforms
);
279 db
->strings
= msi_load_string_table( stg
, &db
->bytes_per_strref
);
285 msiobj_addref( &db
->hdr
);
286 IStorage_AddRef( stg
);
291 msiobj_release( &db
->hdr
);
293 IStorage_Release( stg
);
298 UINT WINAPI
MsiOpenDatabaseW(LPCWSTR szDBPath
, LPCWSTR szPersist
, MSIHANDLE
*phDB
)
303 TRACE("%s %s %p\n",debugstr_w(szDBPath
),debugstr_w(szPersist
), phDB
);
305 ret
= MSI_OpenDatabaseW( szDBPath
, szPersist
, &db
);
306 if( ret
== ERROR_SUCCESS
)
308 *phDB
= alloc_msihandle( &db
->hdr
);
310 ret
= ERROR_NOT_ENOUGH_MEMORY
;
311 msiobj_release( &db
->hdr
);
317 UINT WINAPI
MsiOpenDatabaseA(LPCSTR szDBPath
, LPCSTR szPersist
, MSIHANDLE
*phDB
)
319 HRESULT r
= ERROR_FUNCTION_FAILED
;
320 LPWSTR szwDBPath
= NULL
, szwPersist
= NULL
;
322 TRACE("%s %s %p\n", debugstr_a(szDBPath
), debugstr_a(szPersist
), phDB
);
326 szwDBPath
= strdupAtoW( szDBPath
);
331 if( !IS_INTMSIDBOPEN(szPersist
) )
333 szwPersist
= strdupAtoW( szPersist
);
338 szwPersist
= (LPWSTR
)(DWORD_PTR
)szPersist
;
340 r
= MsiOpenDatabaseW( szwDBPath
, szwPersist
, phDB
);
343 if( !IS_INTMSIDBOPEN(szPersist
) )
344 msi_free( szwPersist
);
345 msi_free( szwDBPath
);
350 static LPWSTR
msi_read_text_archive(LPCWSTR path
, DWORD
*len
)
355 DWORD read
, size
= 0;
357 file
= CreateFileW( path
, GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
358 if (file
== INVALID_HANDLE_VALUE
)
361 size
= GetFileSize( file
, NULL
);
362 if (!(data
= msi_alloc( size
))) goto done
;
364 if (!ReadFile( file
, data
, size
, &read
, NULL
) || read
!= size
) goto done
;
366 while (!data
[size
- 1]) size
--;
367 *len
= MultiByteToWideChar( CP_ACP
, 0, data
, size
, NULL
, 0 );
368 if ((wdata
= msi_alloc( (*len
+ 1) * sizeof(WCHAR
) )))
370 MultiByteToWideChar( CP_ACP
, 0, data
, size
, wdata
, *len
);
380 static void msi_parse_line(LPWSTR
*line
, LPWSTR
**entries
, DWORD
*num_entries
, DWORD
*len
)
382 LPWSTR ptr
= *line
, save
;
383 DWORD i
, count
= 1, chars_left
= *len
;
387 /* stay on this line */
388 while (chars_left
&& *ptr
!= '\n')
390 /* entries are separated by tabs */
398 *entries
= msi_alloc(count
* sizeof(LPWSTR
));
402 /* store pointers into the data */
404 for (i
= 0, ptr
= *line
; i
< count
; i
++)
406 while (chars_left
&& *ptr
== '\r')
413 while (chars_left
&& *ptr
!= '\t' && *ptr
!= '\n' && *ptr
!= '\r')
415 if (!*ptr
) *ptr
= '\n'; /* convert embedded nulls to \n */
416 if (ptr
> *line
&& *ptr
== '\x19' && *(ptr
- 1) == '\x11')
425 /* NULL-separate the data */
426 if (*ptr
== '\n' || *ptr
== '\r')
428 while (chars_left
&& (*ptr
== '\n' || *ptr
== '\r'))
439 (*entries
)[i
] = save
;
442 /* move to the next line if there's more, else EOF */
446 *num_entries
= count
;
449 static LPWSTR
msi_build_createsql_prelude(LPWSTR table
)
454 size
= ARRAY_SIZE(L
"CREATE TABLE `%s` ( ") + lstrlenW(table
) - 2;
455 prelude
= msi_alloc(size
* sizeof(WCHAR
));
459 swprintf(prelude
, size
, L
"CREATE TABLE `%s` ( ", table
);
463 static LPWSTR
msi_build_createsql_columns(LPWSTR
*columns_data
, LPWSTR
*types
, DWORD num_columns
)
467 DWORD sql_size
= 1, i
, len
;
468 WCHAR expanded
[128], *ptr
;
469 WCHAR size
[10], comma
[2], extra
[30];
471 columns
= msi_alloc_zero(sql_size
* sizeof(WCHAR
));
475 for (i
= 0; i
< num_columns
; i
++)
478 comma
[1] = size
[0] = extra
[0] = '\0';
480 if (i
== num_columns
- 1)
486 len
= wcstol(ptr
, NULL
, 10);
492 lstrcpyW(extra
, L
" NOT NULL");
495 lstrcatW(extra
, L
" LOCALIZABLE");
497 swprintf(size
, ARRAY_SIZE(size
), L
"(%s)", ptr
);
500 lstrcpyW(extra
, L
" NOT NULL");
504 swprintf(size
, ARRAY_SIZE(size
), L
"(%s)", ptr
);
507 lstrcpyW(extra
, L
" NOT NULL");
516 WARN("invalid int width %u\n", len
);
522 lstrcpyW(extra
, L
" NOT NULL");
528 ERR("Unknown type: %c\n", types
[i
][0]);
533 swprintf(expanded
, ARRAY_SIZE(expanded
), L
"`%s` %s%s%s%s ", columns_data
[i
], type
, size
, extra
, comma
);
534 sql_size
+= lstrlenW(expanded
);
536 p
= msi_realloc(columns
, sql_size
* sizeof(WCHAR
));
544 lstrcatW(columns
, expanded
);
550 static LPWSTR
msi_build_createsql_postlude(LPWSTR
*primary_keys
, DWORD num_keys
)
552 LPWSTR postlude
, keys
, ptr
;
555 for (i
= 0, size
= 1; i
< num_keys
; i
++)
556 size
+= lstrlenW(L
"`%s`, ") + lstrlenW(primary_keys
[i
]) - 2;
558 keys
= msi_alloc(size
* sizeof(WCHAR
));
562 for (i
= 0, ptr
= keys
; i
< num_keys
; i
++)
564 ptr
+= swprintf(ptr
, size
- (ptr
- keys
), L
"`%s`, ", primary_keys
[i
]);
567 /* remove final ', ' */
570 size
= lstrlenW(L
"PRIMARY KEY %s)") + size
- 1;
571 postlude
= msi_alloc(size
* sizeof(WCHAR
));
575 swprintf(postlude
, size
, L
"PRIMARY KEY %s)", keys
);
582 static UINT
msi_add_table_to_db(MSIDATABASE
*db
, LPWSTR
*columns
, LPWSTR
*types
, LPWSTR
*labels
, DWORD num_labels
, DWORD num_columns
)
584 UINT r
= ERROR_OUTOFMEMORY
;
587 LPWSTR create_sql
= NULL
;
588 LPWSTR prelude
, columns_sql
, postlude
;
590 prelude
= msi_build_createsql_prelude(labels
[0]);
591 columns_sql
= msi_build_createsql_columns(columns
, types
, num_columns
);
592 postlude
= msi_build_createsql_postlude(labels
+ 1, num_labels
- 1); /* skip over table name */
594 if (!prelude
|| !columns_sql
|| !postlude
)
597 size
= lstrlenW(prelude
) + lstrlenW(columns_sql
) + lstrlenW(postlude
) + 1;
598 create_sql
= msi_alloc(size
* sizeof(WCHAR
));
602 lstrcpyW(create_sql
, prelude
);
603 lstrcatW(create_sql
, columns_sql
);
604 lstrcatW(create_sql
, postlude
);
606 r
= MSI_DatabaseOpenViewW( db
, create_sql
, &view
);
607 if (r
!= ERROR_SUCCESS
)
610 r
= MSI_ViewExecute(view
, NULL
);
612 msiobj_release(&view
->hdr
);
616 msi_free(columns_sql
);
618 msi_free(create_sql
);
622 static LPWSTR
msi_import_stream_filename(LPCWSTR path
, LPCWSTR name
)
625 LPWSTR fullname
, ptr
;
627 len
= lstrlenW(path
) + lstrlenW(name
) + 1;
628 fullname
= msi_alloc(len
*sizeof(WCHAR
));
632 lstrcpyW( fullname
, path
);
634 /* chop off extension from path */
635 ptr
= wcsrchr(fullname
, '.');
642 lstrcpyW( ptr
, name
);
646 static UINT
construct_record(DWORD num_columns
, LPWSTR
*types
,
647 LPWSTR
*data
, LPWSTR path
, MSIRECORD
**rec
)
651 *rec
= MSI_CreateRecord(num_columns
);
653 return ERROR_OUTOFMEMORY
;
655 for (i
= 0; i
< num_columns
; i
++)
659 case 'L': case 'l': case 'S': case 's':
660 MSI_RecordSetStringW(*rec
, i
+ 1, data
[i
]);
664 MSI_RecordSetInteger(*rec
, i
+ 1, wcstol(data
[i
], NULL
, 10));
670 LPWSTR file
= msi_import_stream_filename(path
, data
[i
]);
672 return ERROR_FUNCTION_FAILED
;
674 r
= MSI_RecordSetStreamFromFileW(*rec
, i
+ 1, file
);
676 if (r
!= ERROR_SUCCESS
)
677 return ERROR_FUNCTION_FAILED
;
681 ERR("Unhandled column type: %c\n", types
[i
][0]);
682 msiobj_release(&(*rec
)->hdr
);
683 return ERROR_FUNCTION_FAILED
;
687 return ERROR_SUCCESS
;
690 static UINT
msi_add_records_to_table(MSIDATABASE
*db
, LPWSTR
*columns
, LPWSTR
*types
,
691 LPWSTR
*labels
, LPWSTR
**records
,
692 int num_columns
, int num_records
,
700 r
= MSI_OpenQuery(db
, &view
, L
"SELECT * FROM `%s`", labels
[0]);
701 if (r
!= ERROR_SUCCESS
)
704 while (MSI_ViewFetch(view
, &rec
) != ERROR_NO_MORE_ITEMS
)
706 r
= MSI_ViewModify(view
, MSIMODIFY_DELETE
, rec
);
707 msiobj_release(&rec
->hdr
);
708 if (r
!= ERROR_SUCCESS
)
712 for (i
= 0; i
< num_records
; i
++)
714 r
= construct_record(num_columns
, types
, records
[i
], path
, &rec
);
715 if (r
!= ERROR_SUCCESS
)
718 r
= MSI_ViewModify(view
, MSIMODIFY_INSERT
, rec
);
719 if (r
!= ERROR_SUCCESS
)
721 msiobj_release(&rec
->hdr
);
725 msiobj_release(&rec
->hdr
);
729 msiobj_release(&view
->hdr
);
733 static UINT
MSI_DatabaseImport(MSIDATABASE
*db
, LPCWSTR folder
, LPCWSTR file
)
736 DWORD len
, i
, num_labels
, num_types
, num_columns
, num_records
= 0;
737 WCHAR
**columns
, **types
, **labels
, *path
, *ptr
, *data
, ***records
= NULL
, ***temp_records
;
739 TRACE("%p %s %s\n", db
, debugstr_w(folder
), debugstr_w(file
) );
741 if (!folder
|| !file
)
742 return ERROR_INVALID_PARAMETER
;
744 len
= lstrlenW(folder
) + lstrlenW(L
"\\") + lstrlenW(file
) + 1;
745 path
= msi_alloc( len
* sizeof(WCHAR
) );
747 return ERROR_OUTOFMEMORY
;
749 lstrcpyW( path
, folder
);
750 lstrcatW( path
, L
"\\" );
751 lstrcatW( path
, file
);
753 data
= msi_read_text_archive( path
, &len
);
757 return ERROR_FUNCTION_FAILED
;
761 msi_parse_line( &ptr
, &columns
, &num_columns
, &len
);
762 msi_parse_line( &ptr
, &types
, &num_types
, &len
);
763 msi_parse_line( &ptr
, &labels
, &num_labels
, &len
);
765 if (num_columns
== 1 && !columns
[0][0] && num_labels
== 1 && !labels
[0][0] &&
766 num_types
== 2 && !wcscmp( types
[1], L
"_ForceCodepage" ))
768 r
= msi_set_string_table_codepage( db
->strings
, wcstol( types
[0], NULL
, 10 ) );
772 if (num_columns
!= num_types
)
774 r
= ERROR_FUNCTION_FAILED
;
778 records
= msi_alloc(sizeof(WCHAR
**));
781 r
= ERROR_OUTOFMEMORY
;
785 /* read in the table records */
788 msi_parse_line( &ptr
, &records
[num_records
], NULL
, &len
);
791 temp_records
= msi_realloc(records
, (num_records
+ 1) * sizeof(WCHAR
**));
794 r
= ERROR_OUTOFMEMORY
;
797 records
= temp_records
;
800 if (!wcscmp(labels
[0], L
"_SummaryInformation"))
802 r
= msi_add_suminfo( db
, records
, num_records
, num_columns
);
803 if (r
!= ERROR_SUCCESS
)
805 r
= ERROR_FUNCTION_FAILED
;
811 if (!TABLE_Exists(db
, labels
[0]))
813 r
= msi_add_table_to_db( db
, columns
, types
, labels
, num_labels
, num_columns
);
814 if (r
!= ERROR_SUCCESS
)
816 r
= ERROR_FUNCTION_FAILED
;
821 r
= msi_add_records_to_table( db
, columns
, types
, labels
, records
, num_columns
, num_records
, path
);
831 for (i
= 0; i
< num_records
; i
++)
832 msi_free(records
[i
]);
838 UINT WINAPI
MsiDatabaseImportW(MSIHANDLE handle
, LPCWSTR szFolder
, LPCWSTR szFilename
)
843 TRACE("%x %s %s\n",handle
,debugstr_w(szFolder
), debugstr_w(szFilename
));
845 if (!(db
= msihandle2msiinfo(handle
, MSIHANDLETYPE_DATABASE
)))
846 return ERROR_INVALID_HANDLE
;
848 r
= MSI_DatabaseImport( db
, szFolder
, szFilename
);
849 msiobj_release( &db
->hdr
);
853 UINT WINAPI
MsiDatabaseImportA( MSIHANDLE handle
,
854 LPCSTR szFolder
, LPCSTR szFilename
)
856 LPWSTR path
= NULL
, file
= NULL
;
857 UINT r
= ERROR_OUTOFMEMORY
;
859 TRACE("%x %s %s\n", handle
, debugstr_a(szFolder
), debugstr_a(szFilename
));
863 path
= strdupAtoW( szFolder
);
870 file
= strdupAtoW( szFilename
);
875 r
= MsiDatabaseImportW( handle
, path
, file
);
884 static UINT
msi_export_field( HANDLE handle
, MSIRECORD
*row
, UINT field
)
891 buffer
= msi_alloc( sz
);
893 return ERROR_OUTOFMEMORY
;
895 r
= MSI_RecordGetStringA( row
, field
, buffer
, &sz
);
896 if (r
== ERROR_MORE_DATA
)
900 sz
++; /* leave room for NULL terminator */
901 tmp
= msi_realloc( buffer
, sz
);
905 return ERROR_OUTOFMEMORY
;
909 r
= MSI_RecordGetStringA( row
, field
, buffer
, &sz
);
910 if (r
!= ERROR_SUCCESS
)
916 else if (r
!= ERROR_SUCCESS
)
922 ret
= WriteFile( handle
, buffer
, sz
, &sz
, NULL
);
924 return ret
? ERROR_SUCCESS
: ERROR_FUNCTION_FAILED
;
927 static UINT
msi_export_stream( const WCHAR
*folder
, const WCHAR
*table
, MSIRECORD
*row
, UINT field
, UINT start
)
929 WCHAR stream
[MAX_STREAM_NAME_LEN
+ 1], *path
;
930 DWORD sz
, read_size
, write_size
;
935 sz
= ARRAY_SIZE( stream
);
936 r
= MSI_RecordGetStringW( row
, start
, stream
, &sz
);
937 if (r
!= ERROR_SUCCESS
)
940 len
= sz
+ lstrlenW( folder
) + lstrlenW( table
) + ARRAY_SIZE( L
"%s\\%s" ) + 1;
941 if (!(path
= msi_alloc( len
* sizeof(WCHAR
) )))
942 return ERROR_OUTOFMEMORY
;
944 len
= swprintf( path
, len
, L
"%s\\%s", folder
, table
);
945 if (!CreateDirectoryW( path
, NULL
) && GetLastError() != ERROR_ALREADY_EXISTS
)
948 return ERROR_FUNCTION_FAILED
;
952 lstrcpyW( path
+ len
, stream
);
953 file
= CreateFileW( path
, GENERIC_WRITE
, FILE_SHARE_READ
| FILE_SHARE_WRITE
,
954 NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
956 if (file
== INVALID_HANDLE_VALUE
)
957 return ERROR_FUNCTION_FAILED
;
959 read_size
= sizeof(buffer
);
960 while (read_size
== sizeof(buffer
))
962 r
= MSI_RecordReadStream( row
, field
, buffer
, &read_size
);
963 if (r
!= ERROR_SUCCESS
)
968 if (!WriteFile( file
, buffer
, read_size
, &write_size
, NULL
) || read_size
!= write_size
)
971 return ERROR_WRITE_FAULT
;
978 struct row_export_info
985 static UINT
msi_export_record( struct row_export_info
*row_export_info
, MSIRECORD
*row
, UINT start
)
987 HANDLE handle
= row_export_info
->handle
;
988 UINT i
, count
, r
= ERROR_SUCCESS
;
992 count
= MSI_RecordGetFieldCount( row
);
993 for (i
= start
; i
<= count
; i
++)
995 r
= msi_export_field( handle
, row
, i
);
996 if (r
== ERROR_INVALID_PARAMETER
)
998 r
= msi_export_stream( row_export_info
->folder
, row_export_info
->table
, row
, i
, start
);
999 if (r
!= ERROR_SUCCESS
)
1002 /* exporting a binary stream, repeat the "Name" field */
1003 r
= msi_export_field( handle
, row
, start
);
1004 if (r
!= ERROR_SUCCESS
)
1007 else if (r
!= ERROR_SUCCESS
)
1010 sep
= (i
< count
) ? "\t" : "\r\n";
1011 if (!WriteFile( handle
, sep
, strlen(sep
), &sz
, NULL
))
1012 return ERROR_FUNCTION_FAILED
;
1017 static UINT
msi_export_row( MSIRECORD
*row
, void *arg
)
1019 return msi_export_record( arg
, row
, 1 );
1022 static UINT
msi_export_forcecodepage( HANDLE handle
, UINT codepage
)
1024 static const char fmt
[] = "\r\n\r\n%u\t_ForceCodepage\r\n";
1025 char data
[sizeof(fmt
) + 10];
1026 DWORD sz
= sprintf( data
, fmt
, codepage
);
1028 if (!WriteFile(handle
, data
, sz
, &sz
, NULL
))
1029 return ERROR_FUNCTION_FAILED
;
1031 return ERROR_SUCCESS
;
1034 static UINT
msi_export_summaryinformation( MSIDATABASE
*db
, HANDLE handle
)
1036 static const char header
[] = "PropertyId\tValue\r\n"
1038 "_SummaryInformation\tPropertyId\r\n";
1039 DWORD sz
= ARRAY_SIZE(header
) - 1;
1041 if (!WriteFile(handle
, header
, sz
, &sz
, NULL
))
1042 return ERROR_WRITE_FAULT
;
1044 return msi_export_suminfo( db
, handle
);
1047 static UINT
MSI_DatabaseExport( MSIDATABASE
*db
, LPCWSTR table
, LPCWSTR folder
, LPCWSTR file
)
1049 MSIRECORD
*rec
= NULL
;
1050 MSIQUERY
*view
= NULL
;
1055 TRACE("%p %s %s %s\n", db
, debugstr_w(table
),
1056 debugstr_w(folder
), debugstr_w(file
) );
1058 if (!folder
|| !file
)
1059 return ERROR_INVALID_PARAMETER
;
1061 len
= lstrlenW(folder
) + lstrlenW(file
) + 2;
1062 filename
= msi_alloc(len
* sizeof (WCHAR
));
1064 return ERROR_OUTOFMEMORY
;
1066 lstrcpyW( filename
, folder
);
1067 lstrcatW( filename
, L
"\\" );
1068 lstrcatW( filename
, file
);
1070 handle
= CreateFileW( filename
, GENERIC_READ
| GENERIC_WRITE
, 0,
1071 NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
1072 msi_free( filename
);
1073 if (handle
== INVALID_HANDLE_VALUE
)
1074 return ERROR_FUNCTION_FAILED
;
1076 if (!wcscmp( table
, L
"_ForceCodepage" ))
1078 UINT codepage
= msi_get_string_table_codepage( db
->strings
);
1079 r
= msi_export_forcecodepage( handle
, codepage
);
1083 if (!wcscmp( table
, L
"_SummaryInformation" ))
1085 r
= msi_export_summaryinformation( db
, handle
);
1089 r
= MSI_OpenQuery( db
, &view
, L
"SELECT * FROM %s", table
);
1090 if (r
== ERROR_SUCCESS
)
1092 struct row_export_info row_export_info
= { handle
, folder
, table
};
1094 /* write out row 1, the column names */
1095 r
= MSI_ViewGetColumnInfo(view
, MSICOLINFO_NAMES
, &rec
);
1096 if (r
== ERROR_SUCCESS
)
1098 msi_export_record( &row_export_info
, rec
, 1 );
1099 msiobj_release( &rec
->hdr
);
1102 /* write out row 2, the column types */
1103 r
= MSI_ViewGetColumnInfo(view
, MSICOLINFO_TYPES
, &rec
);
1104 if (r
== ERROR_SUCCESS
)
1106 msi_export_record( &row_export_info
, rec
, 1 );
1107 msiobj_release( &rec
->hdr
);
1110 /* write out row 3, the table name + keys */
1111 r
= MSI_DatabaseGetPrimaryKeys( db
, table
, &rec
);
1112 if (r
== ERROR_SUCCESS
)
1114 MSI_RecordSetStringW( rec
, 0, table
);
1115 msi_export_record( &row_export_info
, rec
, 0 );
1116 msiobj_release( &rec
->hdr
);
1119 /* write out row 4 onwards, the data */
1120 r
= MSI_IterateRecords( view
, 0, msi_export_row
, &row_export_info
);
1121 msiobj_release( &view
->hdr
);
1125 CloseHandle( handle
);
1129 /***********************************************************************
1130 * MsiExportDatabaseW [MSI.@]
1132 * Writes a file containing the table data as tab separated ASCII.
1134 * The format is as follows:
1136 * row1 : colname1 <tab> colname2 <tab> .... colnameN <cr> <lf>
1137 * row2 : coltype1 <tab> coltype2 <tab> .... coltypeN <cr> <lf>
1138 * row3 : tablename <tab> key1 <tab> key2 <tab> ... keyM <cr> <lf>
1140 * Followed by the data, starting at row 1 with one row per line
1142 * row4 : data <tab> data <tab> data <tab> ... data <cr> <lf>
1144 UINT WINAPI
MsiDatabaseExportW( MSIHANDLE handle
, LPCWSTR szTable
,
1145 LPCWSTR szFolder
, LPCWSTR szFilename
)
1150 TRACE("%x %s %s %s\n", handle
, debugstr_w(szTable
),
1151 debugstr_w(szFolder
), debugstr_w(szFilename
));
1153 if (!(db
= msihandle2msiinfo(handle
, MSIHANDLETYPE_DATABASE
)))
1154 return ERROR_INVALID_HANDLE
;
1156 r
= MSI_DatabaseExport( db
, szTable
, szFolder
, szFilename
);
1157 msiobj_release( &db
->hdr
);
1161 UINT WINAPI
MsiDatabaseExportA( MSIHANDLE handle
, LPCSTR szTable
,
1162 LPCSTR szFolder
, LPCSTR szFilename
)
1164 LPWSTR path
= NULL
, file
= NULL
, table
= NULL
;
1165 UINT r
= ERROR_OUTOFMEMORY
;
1167 TRACE("%x %s %s %s\n", handle
, debugstr_a(szTable
),
1168 debugstr_a(szFolder
), debugstr_a(szFilename
));
1172 table
= strdupAtoW( szTable
);
1179 path
= strdupAtoW( szFolder
);
1186 file
= strdupAtoW( szFilename
);
1191 r
= MsiDatabaseExportW( handle
, table
, path
, file
);
1201 UINT WINAPI
MsiDatabaseMergeA(MSIHANDLE hDatabase
, MSIHANDLE hDatabaseMerge
,
1207 TRACE("(%d, %d, %s)\n", hDatabase
, hDatabaseMerge
,
1208 debugstr_a(szTableName
));
1210 table
= strdupAtoW(szTableName
);
1211 r
= MsiDatabaseMergeW(hDatabase
, hDatabaseMerge
, table
);
1217 typedef struct _tagMERGETABLE
1231 typedef struct _tagMERGEROW
1237 typedef struct _tagMERGEDATA
1241 MERGETABLE
*curtable
;
1243 struct list
*tabledata
;
1246 static BOOL
merge_type_match(LPCWSTR type1
, LPCWSTR type2
)
1248 if (((type1
[0] == 'l') || (type1
[0] == 's')) &&
1249 ((type2
[0] == 'l') || (type2
[0] == 's')))
1252 if (((type1
[0] == 'L') || (type1
[0] == 'S')) &&
1253 ((type2
[0] == 'L') || (type2
[0] == 'S')))
1256 return !wcscmp( type1
, type2
);
1259 static UINT
merge_verify_colnames(MSIQUERY
*dbview
, MSIQUERY
*mergeview
)
1261 MSIRECORD
*dbrec
, *mergerec
;
1264 r
= MSI_ViewGetColumnInfo(dbview
, MSICOLINFO_NAMES
, &dbrec
);
1265 if (r
!= ERROR_SUCCESS
)
1268 r
= MSI_ViewGetColumnInfo(mergeview
, MSICOLINFO_NAMES
, &mergerec
);
1269 if (r
!= ERROR_SUCCESS
)
1271 msiobj_release(&dbrec
->hdr
);
1275 count
= MSI_RecordGetFieldCount(dbrec
);
1276 for (i
= 1; i
<= count
; i
++)
1278 if (!MSI_RecordGetString(mergerec
, i
))
1281 if (wcscmp( MSI_RecordGetString( dbrec
, i
), MSI_RecordGetString( mergerec
, i
) ))
1283 r
= ERROR_DATATYPE_MISMATCH
;
1288 msiobj_release(&dbrec
->hdr
);
1289 msiobj_release(&mergerec
->hdr
);
1290 dbrec
= mergerec
= NULL
;
1292 r
= MSI_ViewGetColumnInfo(dbview
, MSICOLINFO_TYPES
, &dbrec
);
1293 if (r
!= ERROR_SUCCESS
)
1296 r
= MSI_ViewGetColumnInfo(mergeview
, MSICOLINFO_TYPES
, &mergerec
);
1297 if (r
!= ERROR_SUCCESS
)
1299 msiobj_release(&dbrec
->hdr
);
1303 count
= MSI_RecordGetFieldCount(dbrec
);
1304 for (i
= 1; i
<= count
; i
++)
1306 if (!MSI_RecordGetString(mergerec
, i
))
1309 if (!merge_type_match(MSI_RecordGetString(dbrec
, i
),
1310 MSI_RecordGetString(mergerec
, i
)))
1312 r
= ERROR_DATATYPE_MISMATCH
;
1318 msiobj_release(&dbrec
->hdr
);
1319 msiobj_release(&mergerec
->hdr
);
1324 static UINT
merge_verify_primary_keys(MSIDATABASE
*db
, MSIDATABASE
*mergedb
,
1327 MSIRECORD
*dbrec
, *mergerec
= NULL
;
1330 r
= MSI_DatabaseGetPrimaryKeys(db
, table
, &dbrec
);
1331 if (r
!= ERROR_SUCCESS
)
1334 r
= MSI_DatabaseGetPrimaryKeys(mergedb
, table
, &mergerec
);
1335 if (r
!= ERROR_SUCCESS
)
1338 count
= MSI_RecordGetFieldCount(dbrec
);
1339 if (count
!= MSI_RecordGetFieldCount(mergerec
))
1341 r
= ERROR_DATATYPE_MISMATCH
;
1345 for (i
= 1; i
<= count
; i
++)
1347 if (wcscmp( MSI_RecordGetString( dbrec
, i
), MSI_RecordGetString( mergerec
, i
) ))
1349 r
= ERROR_DATATYPE_MISMATCH
;
1355 msiobj_release(&dbrec
->hdr
);
1356 msiobj_release(&mergerec
->hdr
);
1361 static LPWSTR
get_key_value(MSIQUERY
*view
, LPCWSTR key
, MSIRECORD
*rec
)
1363 MSIRECORD
*colnames
;
1365 UINT r
, i
= 0, sz
= 0;
1368 r
= MSI_ViewGetColumnInfo(view
, MSICOLINFO_NAMES
, &colnames
);
1369 if (r
!= ERROR_SUCCESS
)
1374 str
= msi_dup_record_field(colnames
, ++i
);
1375 cmp
= wcscmp( key
, str
);
1379 msiobj_release(&colnames
->hdr
);
1381 r
= MSI_RecordGetStringW(rec
, i
, NULL
, &sz
);
1382 if (r
!= ERROR_SUCCESS
)
1386 if (MSI_RecordGetString(rec
, i
)) /* check record field is a string */
1388 /* quote string record fields */
1390 val
= msi_alloc(sz
* sizeof(WCHAR
));
1394 lstrcpyW(val
, L
"'");
1395 r
= MSI_RecordGetStringW(rec
, i
, val
+ 1, &sz
);
1396 lstrcpyW(val
+ 1 + sz
, L
"'");
1400 /* do not quote integer record fields */
1401 val
= msi_alloc(sz
* sizeof(WCHAR
));
1405 r
= MSI_RecordGetStringW(rec
, i
, val
, &sz
);
1408 if (r
!= ERROR_SUCCESS
)
1410 ERR("failed to get string!\n");
1418 static LPWSTR
create_diff_row_query(MSIDATABASE
*merge
, MSIQUERY
*view
,
1419 LPWSTR table
, MSIRECORD
*rec
)
1421 LPWSTR query
= NULL
, clause
= NULL
, val
;
1422 LPCWSTR setptr
, key
;
1423 DWORD size
, oldsize
;
1427 r
= MSI_DatabaseGetPrimaryKeys(merge
, table
, &keys
);
1428 if (r
!= ERROR_SUCCESS
)
1431 clause
= msi_alloc_zero(sizeof(WCHAR
));
1436 count
= MSI_RecordGetFieldCount(keys
);
1437 for (i
= 1; i
<= count
; i
++)
1439 key
= MSI_RecordGetString(keys
, i
);
1440 val
= get_key_value(view
, key
, rec
);
1443 setptr
= L
"`%s` = %s ";
1445 setptr
= L
"`%s` = %s AND ";
1448 size
+= lstrlenW(setptr
) + lstrlenW(key
) + lstrlenW(val
) - 4;
1449 clause
= msi_realloc(clause
, size
* sizeof (WCHAR
));
1456 swprintf(clause
+ oldsize
- 1, size
- (oldsize
- 1), setptr
, key
, val
);
1460 size
= lstrlenW(L
"SELECT * FROM `%s` WHERE %s") + lstrlenW(table
) + lstrlenW(clause
) + 1;
1461 query
= msi_alloc(size
* sizeof(WCHAR
));
1465 swprintf(query
, size
, L
"SELECT * FROM `%s` WHERE %s", table
, clause
);
1469 msiobj_release(&keys
->hdr
);
1473 static UINT
merge_diff_row(MSIRECORD
*rec
, LPVOID param
)
1475 MERGEDATA
*data
= param
;
1476 MERGETABLE
*table
= data
->curtable
;
1478 MSIQUERY
*dbview
= NULL
;
1479 MSIRECORD
*row
= NULL
;
1480 LPWSTR query
= NULL
;
1481 UINT r
= ERROR_SUCCESS
;
1483 if (TABLE_Exists(data
->db
, table
->name
))
1485 query
= create_diff_row_query(data
->merge
, data
->curview
, table
->name
, rec
);
1487 return ERROR_OUTOFMEMORY
;
1489 r
= MSI_DatabaseOpenViewW(data
->db
, query
, &dbview
);
1490 if (r
!= ERROR_SUCCESS
)
1493 r
= MSI_ViewExecute(dbview
, NULL
);
1494 if (r
!= ERROR_SUCCESS
)
1497 r
= MSI_ViewFetch(dbview
, &row
);
1498 if (r
== ERROR_SUCCESS
&& !MSI_RecordsAreEqual(rec
, row
))
1500 table
->numconflicts
++;
1503 else if (r
!= ERROR_NO_MORE_ITEMS
)
1509 mergerow
= msi_alloc(sizeof(MERGEROW
));
1512 r
= ERROR_OUTOFMEMORY
;
1516 mergerow
->data
= MSI_CloneRecord(rec
);
1517 if (!mergerow
->data
)
1519 r
= ERROR_OUTOFMEMORY
;
1524 list_add_tail(&table
->rows
, &mergerow
->entry
);
1528 msiobj_release(&row
->hdr
);
1529 msiobj_release(&dbview
->hdr
);
1533 static UINT
msi_get_table_labels(MSIDATABASE
*db
, LPCWSTR table
, LPWSTR
**labels
, DWORD
*numlabels
)
1536 MSIRECORD
*prec
= NULL
;
1538 r
= MSI_DatabaseGetPrimaryKeys(db
, table
, &prec
);
1539 if (r
!= ERROR_SUCCESS
)
1542 count
= MSI_RecordGetFieldCount(prec
);
1543 *numlabels
= count
+ 1;
1544 *labels
= msi_alloc((*numlabels
)*sizeof(LPWSTR
));
1547 r
= ERROR_OUTOFMEMORY
;
1551 (*labels
)[0] = strdupW(table
);
1552 for (i
=1; i
<=count
; i
++ )
1554 (*labels
)[i
] = strdupW(MSI_RecordGetString(prec
, i
));
1558 msiobj_release( &prec
->hdr
);
1562 static UINT
msi_get_query_columns(MSIQUERY
*query
, LPWSTR
**columns
, DWORD
*numcolumns
)
1565 MSIRECORD
*prec
= NULL
;
1567 r
= MSI_ViewGetColumnInfo(query
, MSICOLINFO_NAMES
, &prec
);
1568 if (r
!= ERROR_SUCCESS
)
1571 count
= MSI_RecordGetFieldCount(prec
);
1572 *columns
= msi_alloc(count
*sizeof(LPWSTR
));
1575 r
= ERROR_OUTOFMEMORY
;
1579 for (i
=1; i
<=count
; i
++ )
1581 (*columns
)[i
-1] = strdupW(MSI_RecordGetString(prec
, i
));
1584 *numcolumns
= count
;
1587 msiobj_release( &prec
->hdr
);
1591 static UINT
msi_get_query_types(MSIQUERY
*query
, LPWSTR
**types
, DWORD
*numtypes
)
1594 MSIRECORD
*prec
= NULL
;
1596 r
= MSI_ViewGetColumnInfo(query
, MSICOLINFO_TYPES
, &prec
);
1597 if (r
!= ERROR_SUCCESS
)
1600 count
= MSI_RecordGetFieldCount(prec
);
1601 *types
= msi_alloc(count
*sizeof(LPWSTR
));
1604 r
= ERROR_OUTOFMEMORY
;
1609 for (i
=1; i
<=count
; i
++ )
1611 (*types
)[i
-1] = strdupW(MSI_RecordGetString(prec
, i
));
1615 msiobj_release( &prec
->hdr
);
1619 static void merge_free_rows(MERGETABLE
*table
)
1621 struct list
*item
, *cursor
;
1623 LIST_FOR_EACH_SAFE(item
, cursor
, &table
->rows
)
1625 MERGEROW
*row
= LIST_ENTRY(item
, MERGEROW
, entry
);
1627 list_remove(&row
->entry
);
1628 msiobj_release(&row
->data
->hdr
);
1633 static void free_merge_table(MERGETABLE
*table
)
1637 if (table
->labels
!= NULL
)
1639 for (i
= 0; i
< table
->numlabels
; i
++)
1640 msi_free(table
->labels
[i
]);
1642 msi_free(table
->labels
);
1645 if (table
->columns
!= NULL
)
1647 for (i
= 0; i
< table
->numcolumns
; i
++)
1648 msi_free(table
->columns
[i
]);
1650 msi_free(table
->columns
);
1653 if (table
->types
!= NULL
)
1655 for (i
= 0; i
< table
->numtypes
; i
++)
1656 msi_free(table
->types
[i
]);
1658 msi_free(table
->types
);
1661 msi_free(table
->name
);
1662 merge_free_rows(table
);
1667 static UINT
msi_get_merge_table (MSIDATABASE
*db
, LPCWSTR name
, MERGETABLE
**ptable
)
1671 MSIQUERY
*mergeview
= NULL
;
1673 table
= msi_alloc_zero(sizeof(MERGETABLE
));
1677 return ERROR_OUTOFMEMORY
;
1680 r
= msi_get_table_labels(db
, name
, &table
->labels
, &table
->numlabels
);
1681 if (r
!= ERROR_SUCCESS
)
1684 r
= MSI_OpenQuery(db
, &mergeview
, L
"SELECT * FROM `%s`", name
);
1685 if (r
!= ERROR_SUCCESS
)
1688 r
= msi_get_query_columns(mergeview
, &table
->columns
, &table
->numcolumns
);
1689 if (r
!= ERROR_SUCCESS
)
1692 r
= msi_get_query_types(mergeview
, &table
->types
, &table
->numtypes
);
1693 if (r
!= ERROR_SUCCESS
)
1696 list_init(&table
->rows
);
1698 table
->name
= strdupW(name
);
1699 table
->numconflicts
= 0;
1701 msiobj_release(&mergeview
->hdr
);
1703 return ERROR_SUCCESS
;
1706 msiobj_release(&mergeview
->hdr
);
1707 free_merge_table(table
);
1712 static UINT
merge_diff_tables(MSIRECORD
*rec
, LPVOID param
)
1714 MERGEDATA
*data
= param
;
1716 MSIQUERY
*dbview
= NULL
;
1717 MSIQUERY
*mergeview
= NULL
;
1721 name
= MSI_RecordGetString(rec
, 1);
1723 r
= MSI_OpenQuery(data
->merge
, &mergeview
, L
"SELECT * FROM `%s`", name
);
1724 if (r
!= ERROR_SUCCESS
)
1727 if (TABLE_Exists(data
->db
, name
))
1729 r
= MSI_OpenQuery(data
->db
, &dbview
, L
"SELECT * FROM `%s`", name
);
1730 if (r
!= ERROR_SUCCESS
)
1733 r
= merge_verify_colnames(dbview
, mergeview
);
1734 if (r
!= ERROR_SUCCESS
)
1737 r
= merge_verify_primary_keys(data
->db
, data
->merge
, name
);
1738 if (r
!= ERROR_SUCCESS
)
1742 r
= msi_get_merge_table(data
->merge
, name
, &table
);
1743 if (r
!= ERROR_SUCCESS
)
1746 data
->curtable
= table
;
1747 data
->curview
= mergeview
;
1748 r
= MSI_IterateRecords(mergeview
, NULL
, merge_diff_row
, data
);
1749 if (r
!= ERROR_SUCCESS
)
1751 free_merge_table(table
);
1755 list_add_tail(data
->tabledata
, &table
->entry
);
1758 msiobj_release(&dbview
->hdr
);
1759 msiobj_release(&mergeview
->hdr
);
1763 static UINT
gather_merge_data(MSIDATABASE
*db
, MSIDATABASE
*merge
,
1764 struct list
*tabledata
)
1770 r
= MSI_DatabaseOpenViewW(merge
, L
"SELECT * FROM `_Tables`", &view
);
1771 if (r
!= ERROR_SUCCESS
)
1776 data
.tabledata
= tabledata
;
1777 r
= MSI_IterateRecords(view
, NULL
, merge_diff_tables
, &data
);
1778 msiobj_release(&view
->hdr
);
1782 static UINT
merge_table(MSIDATABASE
*db
, MERGETABLE
*table
)
1788 if (!TABLE_Exists(db
, table
->name
))
1790 r
= msi_add_table_to_db(db
, table
->columns
, table
->types
,
1791 table
->labels
, table
->numlabels
, table
->numcolumns
);
1792 if (r
!= ERROR_SUCCESS
)
1793 return ERROR_FUNCTION_FAILED
;
1796 LIST_FOR_EACH_ENTRY(row
, &table
->rows
, MERGEROW
, entry
)
1798 r
= TABLE_CreateView(db
, table
->name
, &tv
);
1799 if (r
!= ERROR_SUCCESS
)
1802 r
= tv
->ops
->insert_row(tv
, row
->data
, -1, FALSE
);
1803 tv
->ops
->delete(tv
);
1805 if (r
!= ERROR_SUCCESS
)
1809 return ERROR_SUCCESS
;
1812 static UINT
update_merge_errors(MSIDATABASE
*db
, LPCWSTR error
,
1813 LPWSTR table
, DWORD numconflicts
)
1818 if (!TABLE_Exists(db
, error
))
1820 r
= MSI_OpenQuery(db
, &view
, L
"CREATE TABLE `%s` (`Table` CHAR(255) NOT NULL, `NumRowMergeConflicts` SHORT "
1821 "NOT NULL PRIMARY KEY `Table`)" , error
);
1822 if (r
!= ERROR_SUCCESS
)
1825 r
= MSI_ViewExecute(view
, NULL
);
1826 msiobj_release(&view
->hdr
);
1827 if (r
!= ERROR_SUCCESS
)
1831 r
= MSI_OpenQuery(db
, &view
, L
"INSERT INTO `%s` (`Table`, `NumRowMergeConflicts`) VALUES ('%s', %d)", error
,
1832 table
, numconflicts
);
1833 if (r
!= ERROR_SUCCESS
)
1836 r
= MSI_ViewExecute(view
, NULL
);
1837 msiobj_release(&view
->hdr
);
1841 UINT WINAPI
MsiDatabaseMergeW(MSIHANDLE hDatabase
, MSIHANDLE hDatabaseMerge
, LPCWSTR szTableName
)
1843 struct list tabledata
= LIST_INIT(tabledata
);
1844 struct list
*item
, *cursor
;
1845 MSIDATABASE
*db
, *merge
;
1850 TRACE("(%d, %d, %s)\n", hDatabase
, hDatabaseMerge
, debugstr_w(szTableName
));
1852 if (szTableName
&& !*szTableName
)
1853 return ERROR_INVALID_TABLE
;
1855 db
= msihandle2msiinfo(hDatabase
, MSIHANDLETYPE_DATABASE
);
1856 merge
= msihandle2msiinfo(hDatabaseMerge
, MSIHANDLETYPE_DATABASE
);
1859 r
= ERROR_INVALID_HANDLE
;
1863 r
= gather_merge_data(db
, merge
, &tabledata
);
1864 if (r
!= ERROR_SUCCESS
)
1868 LIST_FOR_EACH_ENTRY(table
, &tabledata
, MERGETABLE
, entry
)
1870 if (table
->numconflicts
)
1874 r
= update_merge_errors(db
, szTableName
, table
->name
,
1875 table
->numconflicts
);
1876 if (r
!= ERROR_SUCCESS
)
1881 r
= merge_table(db
, table
);
1882 if (r
!= ERROR_SUCCESS
)
1887 LIST_FOR_EACH_SAFE(item
, cursor
, &tabledata
)
1889 MERGETABLE
*table
= LIST_ENTRY(item
, MERGETABLE
, entry
);
1890 list_remove(&table
->entry
);
1891 free_merge_table(table
);
1895 r
= ERROR_FUNCTION_FAILED
;
1898 msiobj_release(&db
->hdr
);
1899 msiobj_release(&merge
->hdr
);
1903 MSIDBSTATE WINAPI
MsiGetDatabaseState( MSIHANDLE handle
)
1905 MSIDBSTATE ret
= MSIDBSTATE_READ
;
1908 TRACE("%d\n", handle
);
1910 if (!(db
= msihandle2msiinfo( handle
, MSIHANDLETYPE_DATABASE
)))
1911 return MSIDBSTATE_ERROR
;
1913 if (db
->mode
!= MSI_OPEN_READONLY
)
1914 ret
= MSIDBSTATE_WRITE
;
1915 msiobj_release( &db
->hdr
);
1920 MSICONDITION __cdecl
s_remote_DatabaseIsTablePersistent(MSIHANDLE db
, LPCWSTR table
)
1922 return MsiDatabaseIsTablePersistentW(db
, table
);
1925 UINT __cdecl
s_remote_DatabaseGetPrimaryKeys(MSIHANDLE db
, LPCWSTR table
, struct wire_record
**rec
)
1928 UINT r
= MsiDatabaseGetPrimaryKeysW(db
, table
, &handle
);
1931 *rec
= marshal_record(handle
);
1932 MsiCloseHandle(handle
);
1936 UINT __cdecl
s_remote_DatabaseGetSummaryInformation(MSIHANDLE db
, UINT updatecount
, MSIHANDLE
*suminfo
)
1938 return MsiGetSummaryInformationW(db
, NULL
, updatecount
, suminfo
);
1941 UINT __cdecl
s_remote_DatabaseOpenView(MSIHANDLE db
, LPCWSTR query
, MSIHANDLE
*view
)
1943 return MsiDatabaseOpenViewW(db
, query
, view
);