msi: An inactive dialog control does not require a property.
[wine] / dlls / msi / database.c
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2002,2003,2004,2005 Mike McCormack for CodeWeavers
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24 #define NONAMELESSUNION
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winreg.h"
29 #include "winnls.h"
30 #include "wine/debug.h"
31 #include "wine/unicode.h"
32 #include "msi.h"
33 #include "msiquery.h"
34 #include "msipriv.h"
35 #include "objidl.h"
36 #include "objbase.h"
37 #include "msiserver.h"
38 #include "query.h"
39
40 #include "initguid.h"
41
42 WINE_DEFAULT_DEBUG_CHANNEL(msi);
43
44 /*
45  *  .MSI  file format
46  *
47  *  An .msi file is a structured storage file.
48  *  It contains a number of streams.
49  *  A stream for each table in the database.
50  *  Two streams for the string table in the database.
51  *  Any binary data in a table is a reference to a stream.
52  */
53
54 #define IS_INTMSIDBOPEN(x)      (((ULONG_PTR)(x) >> 16) == 0)
55
56 typedef struct tagMSITRANSFORM {
57     struct list entry;
58     IStorage *stg;
59 } MSITRANSFORM;
60
61 typedef struct tagMSISTREAM {
62     struct list entry;
63     IStream *stm;
64 } MSISTREAM;
65
66 static UINT find_open_stream( MSIDATABASE *db, LPCWSTR name, IStream **stm )
67 {
68     MSISTREAM *stream;
69
70     LIST_FOR_EACH_ENTRY( stream, &db->streams, MSISTREAM, entry )
71     {
72         HRESULT r;
73         STATSTG stat;
74
75         r = IStream_Stat( stream->stm, &stat, 0 );
76         if( FAILED( r ) )
77         {
78             WARN("failed to stat stream r = %08x!\n", r);
79             continue;
80         }
81
82         if( !strcmpW( name, stat.pwcsName ) )
83         {
84             TRACE("found %s\n", debugstr_w(name));
85             *stm = stream->stm;
86             CoTaskMemFree( stat.pwcsName );
87             return ERROR_SUCCESS;
88         }
89
90         CoTaskMemFree( stat.pwcsName );
91     }
92
93     return ERROR_FUNCTION_FAILED;
94 }
95
96 static UINT clone_open_stream( MSIDATABASE *db, LPCWSTR name, IStream **stm )
97 {
98     IStream *stream;
99
100     if (find_open_stream( db, name, &stream ) == ERROR_SUCCESS)
101     {
102         HRESULT r;
103         LARGE_INTEGER pos;
104
105         r = IStream_Clone( stream, stm );
106         if( FAILED( r ) )
107         {
108             WARN("failed to clone stream r = %08x!\n", r);
109             return ERROR_FUNCTION_FAILED;
110         }
111
112         pos.QuadPart = 0;
113         r = IStream_Seek( *stm, pos, STREAM_SEEK_SET, NULL );
114         if( FAILED( r ) )
115         {
116             IStream_Release( *stm );
117             return ERROR_FUNCTION_FAILED;
118         }
119
120         return ERROR_SUCCESS;
121     }
122
123     return ERROR_FUNCTION_FAILED;
124 }
125
126 UINT db_get_raw_stream( MSIDATABASE *db, LPCWSTR stname, IStream **stm )
127 {
128     HRESULT r;
129     WCHAR decoded[MAX_STREAM_NAME_LEN];
130
131     decode_streamname( stname, decoded );
132     TRACE("%s -> %s\n", debugstr_w(stname), debugstr_w(decoded));
133
134     if (clone_open_stream( db, stname, stm ) == ERROR_SUCCESS)
135         return ERROR_SUCCESS;
136
137     r = IStorage_OpenStream( db->storage, stname, NULL,
138                              STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm );
139     if( FAILED( r ) )
140     {
141         MSITRANSFORM *transform;
142
143         LIST_FOR_EACH_ENTRY( transform, &db->transforms, MSITRANSFORM, entry )
144         {
145             r = IStorage_OpenStream( transform->stg, stname, NULL,
146                                      STGM_READ | STGM_SHARE_EXCLUSIVE, 0, stm );
147             if (SUCCEEDED(r))
148                 break;
149         }
150     }
151
152     if( SUCCEEDED(r) )
153     {
154         MSISTREAM *stream;
155
156         stream = msi_alloc( sizeof(MSISTREAM) );
157         if( !stream )
158             return ERROR_NOT_ENOUGH_MEMORY;
159
160         stream->stm = *stm;
161         IStream_AddRef( *stm );
162         list_add_tail( &db->streams, &stream->entry );
163     }
164
165     return SUCCEEDED(r) ? ERROR_SUCCESS : ERROR_FUNCTION_FAILED;
166 }
167
168 static void free_transforms( MSIDATABASE *db )
169 {
170     while( !list_empty( &db->transforms ) )
171     {
172         MSITRANSFORM *t = LIST_ENTRY( list_head( &db->transforms ),
173                                       MSITRANSFORM, entry );
174         list_remove( &t->entry );
175         IStorage_Release( t->stg );
176         msi_free( t );
177     }
178 }
179
180 void db_destroy_stream( MSIDATABASE *db, LPCWSTR stname )
181 {
182     MSISTREAM *stream, *stream2;
183
184     LIST_FOR_EACH_ENTRY_SAFE( stream, stream2, &db->streams, MSISTREAM, entry )
185     {
186         HRESULT r;
187         STATSTG stat;
188
189         r = IStream_Stat( stream->stm, &stat, 0 );
190         if (FAILED(r))
191         {
192             WARN("failed to stat stream r = %08x\n", r);
193             continue;
194         }
195
196         if (!strcmpW( stname, stat.pwcsName ))
197         {
198             TRACE("destroying %s\n", debugstr_w(stname));
199
200             list_remove( &stream->entry );
201             IStream_Release( stream->stm );
202             msi_free( stream );
203             IStorage_DestroyElement( db->storage, stname );
204             CoTaskMemFree( stat.pwcsName );
205             break;
206         }
207         CoTaskMemFree( stat.pwcsName );
208     }
209 }
210
211 static void free_streams( MSIDATABASE *db )
212 {
213     while( !list_empty( &db->streams ) )
214     {
215         MSISTREAM *s = LIST_ENTRY( list_head( &db->streams ),
216                                    MSISTREAM, entry );
217         list_remove( &s->entry );
218         IStream_Release( s->stm );
219         msi_free( s );
220     }
221 }
222
223 void append_storage_to_db( MSIDATABASE *db, IStorage *stg )
224 {
225     MSITRANSFORM *t;
226
227     t = msi_alloc( sizeof *t );
228     t->stg = stg;
229     IStorage_AddRef( stg );
230     list_add_head( &db->transforms, &t->entry );
231
232     /* the transform may add or replace streams */
233     free_streams( db );
234 }
235
236 static VOID MSI_CloseDatabase( MSIOBJECTHDR *arg )
237 {
238     MSIDATABASE *db = (MSIDATABASE *) arg;
239
240     msi_free(db->path);
241     free_cached_tables( db );
242     free_streams( db );
243     free_transforms( db );
244     if (db->strings) msi_destroy_stringtable( db->strings );
245     IStorage_Release( db->storage );
246     if (db->deletefile)
247     {
248         DeleteFileW( db->deletefile );
249         msi_free( db->deletefile );
250     }
251     if (db->localfile)
252     {
253         DeleteFileW( db->localfile );
254         msi_free( db->localfile );
255     }
256 }
257
258 static HRESULT db_initialize( IStorage *stg, const GUID *clsid )
259 {
260     static const WCHAR szTables[]  = { '_','T','a','b','l','e','s',0 };
261     HRESULT hr;
262
263     hr = IStorage_SetClass( stg, clsid );
264     if (FAILED( hr ))
265     {
266         WARN("failed to set class id 0x%08x\n", hr);
267         return hr;
268     }
269
270     /* create the _Tables stream */
271     hr = write_stream_data( stg, szTables, NULL, 0, TRUE );
272     if (FAILED( hr ))
273     {
274         WARN("failed to create _Tables stream 0x%08x\n", hr);
275         return hr;
276     }
277
278     hr = msi_init_string_table( stg );
279     if (FAILED( hr ))
280     {
281         WARN("failed to initialize string table 0x%08x\n", hr);
282         return hr;
283     }
284
285     hr = IStorage_Commit( stg, 0 );
286     if (FAILED( hr ))
287     {
288         WARN("failed to commit changes 0x%08x\n", hr);
289         return hr;
290     }
291
292     return S_OK;
293 }
294
295 UINT MSI_OpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIDATABASE **pdb)
296 {
297     IStorage *stg = NULL;
298     HRESULT r;
299     MSIDATABASE *db = NULL;
300     UINT ret = ERROR_FUNCTION_FAILED;
301     LPCWSTR szMode, save_path;
302     STATSTG stat;
303     BOOL created = FALSE, patch = FALSE;
304     WCHAR path[MAX_PATH];
305
306     TRACE("%s %s\n",debugstr_w(szDBPath),debugstr_w(szPersist) );
307
308     if( !pdb )
309         return ERROR_INVALID_PARAMETER;
310
311     if (szPersist - MSIDBOPEN_PATCHFILE >= MSIDBOPEN_READONLY &&
312         szPersist - MSIDBOPEN_PATCHFILE <= MSIDBOPEN_CREATEDIRECT)
313     {
314         TRACE("Database is a patch\n");
315         szPersist -= MSIDBOPEN_PATCHFILE;
316         patch = TRUE;
317     }
318
319     save_path = szDBPath;
320     szMode = szPersist;
321     if( !IS_INTMSIDBOPEN(szPersist) )
322     {
323         if (!CopyFileW( szDBPath, szPersist, FALSE ))
324             return ERROR_OPEN_FAILED;
325
326         szDBPath = szPersist;
327         szPersist = MSIDBOPEN_TRANSACT;
328         created = TRUE;
329     }
330
331     if( szPersist == MSIDBOPEN_READONLY )
332     {
333         r = StgOpenStorage( szDBPath, NULL,
334               STGM_DIRECT|STGM_READ|STGM_SHARE_DENY_WRITE, NULL, 0, &stg);
335     }
336     else if( szPersist == MSIDBOPEN_CREATE )
337     {
338         r = StgCreateDocfile( szDBPath,
339               STGM_CREATE|STGM_TRANSACTED|STGM_READWRITE|STGM_SHARE_EXCLUSIVE, 0, &stg );
340
341         if( SUCCEEDED(r) )
342             r = db_initialize( stg, patch ? &CLSID_MsiPatch : &CLSID_MsiDatabase );
343         created = TRUE;
344     }
345     else if( szPersist == MSIDBOPEN_CREATEDIRECT )
346     {
347         r = StgCreateDocfile( szDBPath,
348               STGM_CREATE|STGM_DIRECT|STGM_READWRITE|STGM_SHARE_EXCLUSIVE, 0, &stg );
349
350         if( SUCCEEDED(r) )
351             r = db_initialize( stg, patch ? &CLSID_MsiPatch : &CLSID_MsiDatabase );
352         created = TRUE;
353     }
354     else if( szPersist == MSIDBOPEN_TRANSACT )
355     {
356         r = StgOpenStorage( szDBPath, NULL,
357               STGM_TRANSACTED|STGM_READWRITE|STGM_SHARE_EXCLUSIVE, NULL, 0, &stg);
358     }
359     else if( szPersist == MSIDBOPEN_DIRECT )
360     {
361         r = StgOpenStorage( szDBPath, NULL,
362               STGM_DIRECT|STGM_READWRITE|STGM_SHARE_EXCLUSIVE, NULL, 0, &stg);
363     }
364     else
365     {
366         ERR("unknown flag %p\n",szPersist);
367         return ERROR_INVALID_PARAMETER;
368     }
369
370     if( FAILED( r ) || !stg )
371     {
372         FIXME("open failed r = %08x for %s\n", r, debugstr_w(szDBPath));
373         return ERROR_FUNCTION_FAILED;
374     }
375
376     r = IStorage_Stat( stg, &stat, STATFLAG_NONAME );
377     if( FAILED( r ) )
378     {
379         FIXME("Failed to stat storage\n");
380         goto end;
381     }
382
383     if ( !IsEqualGUID( &stat.clsid, &CLSID_MsiDatabase ) &&
384          !IsEqualGUID( &stat.clsid, &CLSID_MsiPatch ) &&
385          !IsEqualGUID( &stat.clsid, &CLSID_MsiTransform ) )
386     {
387         ERR("storage GUID is not a MSI database GUID %s\n",
388              debugstr_guid(&stat.clsid) );
389         goto end;
390     }
391
392     if ( patch && !IsEqualGUID( &stat.clsid, &CLSID_MsiPatch ) )
393     {
394         ERR("storage GUID is not the MSI patch GUID %s\n",
395              debugstr_guid(&stat.clsid) );
396         ret = ERROR_OPEN_FAILED;
397         goto end;
398     }
399
400     db = alloc_msiobject( MSIHANDLETYPE_DATABASE, sizeof (MSIDATABASE),
401                               MSI_CloseDatabase );
402     if( !db )
403     {
404         FIXME("Failed to allocate a handle\n");
405         goto end;
406     }
407
408     if (!strchrW( save_path, '\\' ))
409     {
410         GetCurrentDirectoryW( MAX_PATH, path );
411         lstrcatW( path, szBackSlash );
412         lstrcatW( path, save_path );
413     }
414     else
415         lstrcpyW( path, save_path );
416
417     db->path = strdupW( path );
418
419     if( TRACE_ON( msi ) )
420         enum_stream_names( stg );
421
422     db->storage = stg;
423     db->mode = szMode;
424     if (created)
425         db->deletefile = strdupW( szDBPath );
426     list_init( &db->tables );
427     list_init( &db->transforms );
428     list_init( &db->streams );
429
430     db->strings = msi_load_string_table( stg, &db->bytes_per_strref );
431     if( !db->strings )
432         goto end;
433
434     ret = ERROR_SUCCESS;
435
436     msiobj_addref( &db->hdr );
437     IStorage_AddRef( stg );
438     *pdb = db;
439
440 end:
441     if( db )
442         msiobj_release( &db->hdr );
443     if( stg )
444         IStorage_Release( stg );
445
446     return ret;
447 }
448
449 UINT WINAPI MsiOpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIHANDLE *phDB)
450 {
451     MSIDATABASE *db;
452     UINT ret;
453
454     TRACE("%s %s %p\n",debugstr_w(szDBPath),debugstr_w(szPersist), phDB);
455
456     ret = MSI_OpenDatabaseW( szDBPath, szPersist, &db );
457     if( ret == ERROR_SUCCESS )
458     {
459         *phDB = alloc_msihandle( &db->hdr );
460         if (! *phDB)
461             ret = ERROR_NOT_ENOUGH_MEMORY;
462         msiobj_release( &db->hdr );
463     }
464
465     return ret;
466 }
467
468 UINT WINAPI MsiOpenDatabaseA(LPCSTR szDBPath, LPCSTR szPersist, MSIHANDLE *phDB)
469 {
470     HRESULT r = ERROR_FUNCTION_FAILED;
471     LPWSTR szwDBPath = NULL, szwPersist = NULL;
472
473     TRACE("%s %s %p\n", debugstr_a(szDBPath), debugstr_a(szPersist), phDB);
474
475     if( szDBPath )
476     {
477         szwDBPath = strdupAtoW( szDBPath );
478         if( !szwDBPath )
479             goto end;
480     }
481
482     if( !IS_INTMSIDBOPEN(szPersist) )
483     {
484         szwPersist = strdupAtoW( szPersist );
485         if( !szwPersist )
486             goto end;
487     }
488     else
489         szwPersist = (LPWSTR)(DWORD_PTR)szPersist;
490
491     r = MsiOpenDatabaseW( szwDBPath, szwPersist, phDB );
492
493 end:
494     if( !IS_INTMSIDBOPEN(szPersist) )
495         msi_free( szwPersist );
496     msi_free( szwDBPath );
497
498     return r;
499 }
500
501 static LPWSTR msi_read_text_archive(LPCWSTR path)
502 {
503     HANDLE file;
504     LPSTR data = NULL;
505     LPWSTR wdata = NULL;
506     DWORD read, size = 0;
507
508     file = CreateFileW( path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL );
509     if (file == INVALID_HANDLE_VALUE)
510         return NULL;
511
512     size = GetFileSize( file, NULL );
513     data = msi_alloc( size + 1 );
514     if (!data)
515         goto done;
516
517     if (!ReadFile( file, data, size, &read, NULL ))
518         goto done;
519
520     data[size] = '\0';
521     wdata = strdupAtoW( data );
522
523 done:
524     CloseHandle( file );
525     msi_free( data );
526     return wdata;
527 }
528
529 static void msi_parse_line(LPWSTR *line, LPWSTR **entries, DWORD *num_entries)
530 {
531     LPWSTR ptr = *line, save;
532     DWORD i, count = 1;
533
534     *entries = NULL;
535
536     /* stay on this line */
537     while (*ptr && *ptr != '\n')
538     {
539         /* entries are separated by tabs */
540         if (*ptr == '\t')
541             count++;
542
543         ptr++;
544     }
545
546     *entries = msi_alloc(count * sizeof(LPWSTR));
547     if (!*entries)
548         return;
549
550     /* store pointers into the data */
551     for (i = 0, ptr = *line; i < count; i++)
552     {
553         while (*ptr && *ptr == '\r') ptr++;
554         save = ptr;
555
556         while (*ptr && *ptr != '\t' && *ptr != '\n' && *ptr != '\r') ptr++;
557
558         /* NULL-separate the data */
559         if (*ptr == '\n' || *ptr == '\r')
560         {
561             while (*ptr == '\n' || *ptr == '\r')
562                 *(ptr++) = '\0';
563         }
564         else if (*ptr)
565             *ptr++ = '\0';
566
567         (*entries)[i] = save;
568     }
569
570     /* move to the next line if there's more, else EOF */
571     *line = ptr;
572
573     if (num_entries)
574         *num_entries = count;
575 }
576
577 static LPWSTR msi_build_createsql_prelude(LPWSTR table)
578 {
579     LPWSTR prelude;
580     DWORD size;
581
582     static const WCHAR create_fmt[] = {'C','R','E','A','T','E',' ','T','A','B','L','E',' ','`','%','s','`',' ','(',' ',0};
583
584     size = sizeof(create_fmt)/sizeof(create_fmt[0]) + lstrlenW(table) - 2;
585     prelude = msi_alloc(size * sizeof(WCHAR));
586     if (!prelude)
587         return NULL;
588
589     sprintfW(prelude, create_fmt, table);
590     return prelude;
591 }
592
593 static LPWSTR msi_build_createsql_columns(LPWSTR *columns_data, LPWSTR *types, DWORD num_columns)
594 {
595     LPWSTR columns, p;
596     LPCWSTR type;
597     DWORD sql_size = 1, i, len;
598     WCHAR expanded[128], *ptr;
599     WCHAR size[10], comma[2], extra[30];
600
601     static const WCHAR column_fmt[] = {'`','%','s','`',' ','%','s','%','s','%','s','%','s',' ',0};
602     static const WCHAR size_fmt[] = {'(','%','s',')',0};
603     static const WCHAR type_char[] = {'C','H','A','R',0};
604     static const WCHAR type_int[] = {'I','N','T',0};
605     static const WCHAR type_long[] = {'L','O','N','G',0};
606     static const WCHAR type_object[] = {'O','B','J','E','C','T',0};
607     static const WCHAR type_notnull[] = {' ','N','O','T',' ','N','U','L','L',0};
608     static const WCHAR localizable[] = {' ','L','O','C','A','L','I','Z','A','B','L','E',0};
609
610     columns = msi_alloc_zero(sql_size * sizeof(WCHAR));
611     if (!columns)
612         return NULL;
613
614     for (i = 0; i < num_columns; i++)
615     {
616         type = NULL;
617         comma[1] = size[0] = extra[0] = '\0';
618
619         if (i == num_columns - 1)
620             comma[0] = '\0';
621         else
622             comma[0] = ',';
623
624         ptr = &types[i][1];
625         len = atolW(ptr);
626         extra[0] = '\0';
627
628         switch (types[i][0])
629         {
630             case 'l':
631                 lstrcpyW(extra, type_notnull);
632             case 'L':
633                 lstrcatW(extra, localizable);
634                 type = type_char;
635                 sprintfW(size, size_fmt, ptr);
636                 break;
637             case 's':
638                 lstrcpyW(extra, type_notnull);
639             case 'S':
640                 type = type_char;
641                 sprintfW(size, size_fmt, ptr);
642                 break;
643             case 'i':
644                 lstrcpyW(extra, type_notnull);
645             case 'I':
646                 if (len <= 2)
647                     type = type_int;
648                 else if (len == 4)
649                     type = type_long;
650                 else
651                 {
652                     WARN("invalid int width %u\n", len);
653                     msi_free(columns);
654                     return NULL;
655                 }
656                 break;
657             case 'v':
658                 lstrcpyW(extra, type_notnull);
659             case 'V':
660                 type = type_object;
661                 break;
662             default:
663                 ERR("Unknown type: %c\n", types[i][0]);
664                 msi_free(columns);
665                 return NULL;
666         }
667
668         sprintfW(expanded, column_fmt, columns_data[i], type, size, extra, comma);
669         sql_size += lstrlenW(expanded);
670
671         p = msi_realloc(columns, sql_size * sizeof(WCHAR));
672         if (!p)
673         {
674             msi_free(columns);
675             return NULL;
676         }
677         columns = p;
678
679         lstrcatW(columns, expanded);
680     }
681
682     return columns;
683 }
684
685 static LPWSTR msi_build_createsql_postlude(LPWSTR *primary_keys, DWORD num_keys)
686 {
687     LPWSTR postlude, keys, ptr;
688     DWORD size, key_size, i;
689
690     static const WCHAR key_fmt[] = {'`','%','s','`',',',' ',0};
691     static const WCHAR postlude_fmt[] = {'P','R','I','M','A','R','Y',' ','K','E','Y',' ','%','s',')',0};
692
693     for (i = 0, size = 1; i < num_keys; i++)
694         size += lstrlenW(key_fmt) + lstrlenW(primary_keys[i]) - 2;
695
696     keys = msi_alloc(size * sizeof(WCHAR));
697     if (!keys)
698         return NULL;
699
700     for (i = 0, ptr = keys; i < num_keys; i++)
701     {
702         key_size = lstrlenW(key_fmt) + lstrlenW(primary_keys[i]) -2;
703         sprintfW(ptr, key_fmt, primary_keys[i]);
704         ptr += key_size;
705     }
706
707     /* remove final ', ' */
708     *(ptr - 2) = '\0';
709
710     size = lstrlenW(postlude_fmt) + size - 1;
711     postlude = msi_alloc(size * sizeof(WCHAR));
712     if (!postlude)
713         goto done;
714
715     sprintfW(postlude, postlude_fmt, keys);
716
717 done:
718     msi_free(keys);
719     return postlude;
720 }
721
722 static UINT msi_add_table_to_db(MSIDATABASE *db, LPWSTR *columns, LPWSTR *types, LPWSTR *labels, DWORD num_labels, DWORD num_columns)
723 {
724     UINT r = ERROR_OUTOFMEMORY;
725     DWORD size;
726     MSIQUERY *view;
727     LPWSTR create_sql = NULL;
728     LPWSTR prelude, columns_sql, postlude;
729
730     prelude = msi_build_createsql_prelude(labels[0]);
731     columns_sql = msi_build_createsql_columns(columns, types, num_columns);
732     postlude = msi_build_createsql_postlude(labels + 1, num_labels - 1); /* skip over table name */
733
734     if (!prelude || !columns_sql || !postlude)
735         goto done;
736
737     size = lstrlenW(prelude) + lstrlenW(columns_sql) + lstrlenW(postlude) + 1;
738     create_sql = msi_alloc(size * sizeof(WCHAR));
739     if (!create_sql)
740         goto done;
741
742     lstrcpyW(create_sql, prelude);
743     lstrcatW(create_sql, columns_sql);
744     lstrcatW(create_sql, postlude);
745
746     r = MSI_DatabaseOpenViewW( db, create_sql, &view );
747     if (r != ERROR_SUCCESS)
748         goto done;
749
750     r = MSI_ViewExecute(view, NULL);
751     MSI_ViewClose(view);
752     msiobj_release(&view->hdr);
753
754 done:
755     msi_free(prelude);
756     msi_free(columns_sql);
757     msi_free(postlude);
758     msi_free(create_sql);
759     return r;
760 }
761
762 static LPWSTR msi_import_stream_filename(LPCWSTR path, LPCWSTR name)
763 {
764     DWORD len;
765     LPWSTR fullname, ptr;
766
767     len = lstrlenW(path) + lstrlenW(name) + 1;
768     fullname = msi_alloc(len*sizeof(WCHAR));
769     if (!fullname)
770        return NULL;
771
772     lstrcpyW( fullname, path );
773
774     /* chop off extension from path */
775     ptr = strrchrW(fullname, '.');
776     if (!ptr)
777     {
778         msi_free (fullname);
779         return NULL;
780     }
781     *ptr++ = '\\';
782     lstrcpyW( ptr, name );
783     return fullname;
784 }
785
786 static UINT construct_record(DWORD num_columns, LPWSTR *types,
787                              LPWSTR *data, LPWSTR path, MSIRECORD **rec)
788 {
789     UINT i;
790
791     *rec = MSI_CreateRecord(num_columns);
792     if (!*rec)
793         return ERROR_OUTOFMEMORY;
794
795     for (i = 0; i < num_columns; i++)
796     {
797         switch (types[i][0])
798         {
799             case 'L': case 'l': case 'S': case 's':
800                 MSI_RecordSetStringW(*rec, i + 1, data[i]);
801                 break;
802             case 'I': case 'i':
803                 if (*data[i])
804                     MSI_RecordSetInteger(*rec, i + 1, atoiW(data[i]));
805                 break;
806             case 'V': case 'v':
807                 if (*data[i])
808                 {
809                     UINT r;
810                     LPWSTR file = msi_import_stream_filename(path, data[i]);
811                     if (!file)
812                         return ERROR_FUNCTION_FAILED;
813
814                     r = MSI_RecordSetStreamFromFileW(*rec, i + 1, file);
815                     msi_free (file);
816                     if (r != ERROR_SUCCESS)
817                         return ERROR_FUNCTION_FAILED;
818                 }
819                 break;
820             default:
821                 ERR("Unhandled column type: %c\n", types[i][0]);
822                 msiobj_release(&(*rec)->hdr);
823                 return ERROR_FUNCTION_FAILED;
824         }
825     }
826
827     return ERROR_SUCCESS;
828 }
829
830 static UINT msi_add_records_to_table(MSIDATABASE *db, LPWSTR *columns, LPWSTR *types,
831                                      LPWSTR *labels, LPWSTR **records,
832                                      int num_columns, int num_records,
833                                      LPWSTR path)
834 {
835     UINT r;
836     int i;
837     MSIQUERY *view;
838     MSIRECORD *rec;
839
840     static const WCHAR select[] = {
841         'S','E','L','E','C','T',' ','*',' ',
842         'F','R','O','M',' ','`','%','s','`',0
843     };
844
845     r = MSI_OpenQuery(db, &view, select, labels[0]);
846     if (r != ERROR_SUCCESS)
847         return r;
848
849     while (MSI_ViewFetch(view, &rec) != ERROR_NO_MORE_ITEMS)
850     {
851         r = MSI_ViewModify(view, MSIMODIFY_DELETE, rec);
852         msiobj_release(&rec->hdr);
853         if (r != ERROR_SUCCESS)
854             goto done;
855     }
856
857     for (i = 0; i < num_records; i++)
858     {
859         r = construct_record(num_columns, types, records[i], path, &rec);
860         if (r != ERROR_SUCCESS)
861             goto done;
862
863         r = MSI_ViewModify(view, MSIMODIFY_INSERT, rec);
864         if (r != ERROR_SUCCESS)
865         {
866             msiobj_release(&rec->hdr);
867             goto done;
868         }
869
870         msiobj_release(&rec->hdr);
871     }
872
873 done:
874     msiobj_release(&view->hdr);
875     return r;
876 }
877
878 static UINT MSI_DatabaseImport(MSIDATABASE *db, LPCWSTR folder, LPCWSTR file)
879 {
880     UINT r;
881     DWORD len, i;
882     DWORD num_labels, num_types;
883     DWORD num_columns, num_records = 0;
884     LPWSTR *columns, *types, *labels;
885     LPWSTR path, ptr, data;
886     LPWSTR **records = NULL;
887     LPWSTR **temp_records;
888
889     static const WCHAR suminfo[] =
890         {'_','S','u','m','m','a','r','y','I','n','f','o','r','m','a','t','i','o','n',0};
891
892     TRACE("%p %s %s\n", db, debugstr_w(folder), debugstr_w(file) );
893
894     if( folder == NULL || file == NULL )
895         return ERROR_INVALID_PARAMETER;
896
897     len = lstrlenW(folder) + lstrlenW(szBackSlash) + lstrlenW(file) + 1;
898     path = msi_alloc( len * sizeof(WCHAR) );
899     if (!path)
900         return ERROR_OUTOFMEMORY;
901
902     lstrcpyW( path, folder );
903     lstrcatW( path, szBackSlash );
904     lstrcatW( path, file );
905
906     data = msi_read_text_archive( path );
907
908     ptr = data;
909     msi_parse_line( &ptr, &columns, &num_columns );
910     msi_parse_line( &ptr, &types, &num_types );
911     msi_parse_line( &ptr, &labels, &num_labels );
912
913     if (num_columns != num_types)
914     {
915         r = ERROR_FUNCTION_FAILED;
916         goto done;
917     }
918
919     records = msi_alloc(sizeof(LPWSTR *));
920     if (!records)
921     {
922         r = ERROR_OUTOFMEMORY;
923         goto done;
924     }
925
926     /* read in the table records */
927     while (*ptr)
928     {
929         msi_parse_line( &ptr, &records[num_records], NULL );
930
931         num_records++;
932         temp_records = msi_realloc(records, (num_records + 1) * sizeof(LPWSTR *));
933         if (!temp_records)
934         {
935             r = ERROR_OUTOFMEMORY;
936             goto done;
937         }
938         records = temp_records;
939     }
940
941     if (!strcmpW(labels[0], suminfo))
942     {
943         r = msi_add_suminfo( db, records, num_records, num_columns );
944         if (r != ERROR_SUCCESS)
945         {
946             r = ERROR_FUNCTION_FAILED;
947             goto done;
948         }
949     }
950     else
951     {
952         if (!TABLE_Exists(db, labels[0]))
953         {
954             r = msi_add_table_to_db( db, columns, types, labels, num_labels, num_columns );
955             if (r != ERROR_SUCCESS)
956             {
957                 r = ERROR_FUNCTION_FAILED;
958                 goto done;
959             }
960         }
961
962         r = msi_add_records_to_table( db, columns, types, labels, records, num_columns, num_records, path );
963     }
964
965 done:
966     msi_free(path);
967     msi_free(data);
968     msi_free(columns);
969     msi_free(types);
970     msi_free(labels);
971
972     for (i = 0; i < num_records; i++)
973         msi_free(records[i]);
974
975     msi_free(records);
976
977     return r;
978 }
979
980 UINT WINAPI MsiDatabaseImportW(MSIHANDLE handle, LPCWSTR szFolder, LPCWSTR szFilename)
981 {
982     MSIDATABASE *db;
983     UINT r;
984
985     TRACE("%x %s %s\n",handle,debugstr_w(szFolder), debugstr_w(szFilename));
986
987     db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
988     if( !db )
989     {
990         IWineMsiRemoteDatabase *remote_database;
991
992         remote_database = (IWineMsiRemoteDatabase *)msi_get_remote( handle );
993         if ( !remote_database )
994             return ERROR_INVALID_HANDLE;
995
996         IWineMsiRemoteDatabase_Release( remote_database );
997         WARN("MsiDatabaseImport not allowed during a custom action!\n");
998
999         return ERROR_SUCCESS;
1000     }
1001
1002     r = MSI_DatabaseImport( db, szFolder, szFilename );
1003     msiobj_release( &db->hdr );
1004     return r;
1005 }
1006
1007 UINT WINAPI MsiDatabaseImportA( MSIHANDLE handle,
1008                LPCSTR szFolder, LPCSTR szFilename )
1009 {
1010     LPWSTR path = NULL, file = NULL;
1011     UINT r = ERROR_OUTOFMEMORY;
1012
1013     TRACE("%x %s %s\n", handle, debugstr_a(szFolder), debugstr_a(szFilename));
1014
1015     if( szFolder )
1016     {
1017         path = strdupAtoW( szFolder );
1018         if( !path )
1019             goto end;
1020     }
1021
1022     if( szFilename )
1023     {
1024         file = strdupAtoW( szFilename );
1025         if( !file )
1026             goto end;
1027     }
1028
1029     r = MsiDatabaseImportW( handle, path, file );
1030
1031 end:
1032     msi_free( path );
1033     msi_free( file );
1034
1035     return r;
1036 }
1037
1038 static UINT msi_export_record( HANDLE handle, MSIRECORD *row, UINT start )
1039 {
1040     UINT i, count, len, r = ERROR_SUCCESS;
1041     const char *sep;
1042     char *buffer;
1043     DWORD sz;
1044
1045     len = 0x100;
1046     buffer = msi_alloc( len );
1047     if ( !buffer )
1048         return ERROR_OUTOFMEMORY;
1049
1050     count = MSI_RecordGetFieldCount( row );
1051     for ( i=start; i<=count; i++ )
1052     {
1053         sz = len;
1054         r = MSI_RecordGetStringA( row, i, buffer, &sz );
1055         if (r == ERROR_MORE_DATA)
1056         {
1057             char *p = msi_realloc( buffer, sz + 1 );
1058             if (!p)
1059                 break;
1060             len = sz + 1;
1061             buffer = p;
1062         }
1063         sz = len;
1064         r = MSI_RecordGetStringA( row, i, buffer, &sz );
1065         if (r != ERROR_SUCCESS)
1066             break;
1067
1068         if (!WriteFile( handle, buffer, sz, &sz, NULL ))
1069         {
1070             r = ERROR_FUNCTION_FAILED;
1071             break;
1072         }
1073
1074         sep = (i < count) ? "\t" : "\r\n";
1075         if (!WriteFile( handle, sep, strlen(sep), &sz, NULL ))
1076         {
1077             r = ERROR_FUNCTION_FAILED;
1078             break;
1079         }
1080     }
1081     msi_free( buffer );
1082     return r;
1083 }
1084
1085 static UINT msi_export_row( MSIRECORD *row, void *arg )
1086 {
1087     return msi_export_record( arg, row, 1 );
1088 }
1089
1090 static UINT msi_export_forcecodepage( HANDLE handle )
1091 {
1092     DWORD sz;
1093
1094     static const char data[] = "\r\n\r\n0\t_ForceCodepage\r\n";
1095
1096     FIXME("Read the codepage from the strings table!\n");
1097
1098     sz = lstrlenA(data) + 1;
1099     if (!WriteFile(handle, data, sz, &sz, NULL))
1100         return ERROR_FUNCTION_FAILED;
1101
1102     return ERROR_SUCCESS;
1103 }
1104
1105 static UINT MSI_DatabaseExport( MSIDATABASE *db, LPCWSTR table,
1106                LPCWSTR folder, LPCWSTR file )
1107 {
1108     static const WCHAR query[] = {
1109         's','e','l','e','c','t',' ','*',' ','f','r','o','m',' ','%','s',0 };
1110     static const WCHAR forcecodepage[] = {
1111         '_','F','o','r','c','e','C','o','d','e','p','a','g','e',0 };
1112     MSIRECORD *rec = NULL;
1113     MSIQUERY *view = NULL;
1114     LPWSTR filename;
1115     HANDLE handle;
1116     UINT len, r;
1117
1118     TRACE("%p %s %s %s\n", db, debugstr_w(table),
1119           debugstr_w(folder), debugstr_w(file) );
1120
1121     if( folder == NULL || file == NULL )
1122         return ERROR_INVALID_PARAMETER;
1123
1124     len = lstrlenW(folder) + lstrlenW(file) + 2;
1125     filename = msi_alloc(len * sizeof (WCHAR));
1126     if (!filename)
1127         return ERROR_OUTOFMEMORY;
1128
1129     lstrcpyW( filename, folder );
1130     lstrcatW( filename, szBackSlash );
1131     lstrcatW( filename, file );
1132
1133     handle = CreateFileW( filename, GENERIC_READ | GENERIC_WRITE, 0,
1134                           NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL );
1135     msi_free( filename );
1136     if (handle == INVALID_HANDLE_VALUE)
1137         return ERROR_FUNCTION_FAILED;
1138
1139     if (!strcmpW( table, forcecodepage ))
1140     {
1141         r = msi_export_forcecodepage( handle );
1142         goto done;
1143     }
1144
1145     r = MSI_OpenQuery( db, &view, query, table );
1146     if (r == ERROR_SUCCESS)
1147     {
1148         /* write out row 1, the column names */
1149         r = MSI_ViewGetColumnInfo(view, MSICOLINFO_NAMES, &rec);
1150         if (r == ERROR_SUCCESS)
1151         {
1152             msi_export_record( handle, rec, 1 );
1153             msiobj_release( &rec->hdr );
1154         }
1155
1156         /* write out row 2, the column types */
1157         r = MSI_ViewGetColumnInfo(view, MSICOLINFO_TYPES, &rec);
1158         if (r == ERROR_SUCCESS)
1159         {
1160             msi_export_record( handle, rec, 1 );
1161             msiobj_release( &rec->hdr );
1162         }
1163
1164         /* write out row 3, the table name + keys */
1165         r = MSI_DatabaseGetPrimaryKeys( db, table, &rec );
1166         if (r == ERROR_SUCCESS)
1167         {
1168             MSI_RecordSetStringW( rec, 0, table );
1169             msi_export_record( handle, rec, 0 );
1170             msiobj_release( &rec->hdr );
1171         }
1172
1173         /* write out row 4 onwards, the data */
1174         r = MSI_IterateRecords( view, 0, msi_export_row, handle );
1175         msiobj_release( &view->hdr );
1176     }
1177
1178 done:
1179     CloseHandle( handle );
1180     return r;
1181 }
1182
1183 /***********************************************************************
1184  * MsiExportDatabaseW        [MSI.@]
1185  *
1186  * Writes a file containing the table data as tab separated ASCII.
1187  *
1188  * The format is as follows:
1189  *
1190  * row1 : colname1 <tab> colname2 <tab> .... colnameN <cr> <lf>
1191  * row2 : coltype1 <tab> coltype2 <tab> .... coltypeN <cr> <lf>
1192  * row3 : tablename <tab> key1 <tab> key2 <tab> ... keyM <cr> <lf>
1193  *
1194  * Followed by the data, starting at row 1 with one row per line
1195  *
1196  * row4 : data <tab> data <tab> data <tab> ... data <cr> <lf>
1197  */
1198 UINT WINAPI MsiDatabaseExportW( MSIHANDLE handle, LPCWSTR szTable,
1199                LPCWSTR szFolder, LPCWSTR szFilename )
1200 {
1201     MSIDATABASE *db;
1202     UINT r;
1203
1204     TRACE("%x %s %s %s\n", handle, debugstr_w(szTable),
1205           debugstr_w(szFolder), debugstr_w(szFilename));
1206
1207     db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
1208     if( !db )
1209     {
1210         IWineMsiRemoteDatabase *remote_database;
1211
1212         remote_database = (IWineMsiRemoteDatabase *)msi_get_remote( handle );
1213         if ( !remote_database )
1214             return ERROR_INVALID_HANDLE;
1215
1216         IWineMsiRemoteDatabase_Release( remote_database );
1217         WARN("MsiDatabaseExport not allowed during a custom action!\n");
1218
1219         return ERROR_SUCCESS;
1220     }
1221
1222     r = MSI_DatabaseExport( db, szTable, szFolder, szFilename );
1223     msiobj_release( &db->hdr );
1224     return r;
1225 }
1226
1227 UINT WINAPI MsiDatabaseExportA( MSIHANDLE handle, LPCSTR szTable,
1228                LPCSTR szFolder, LPCSTR szFilename )
1229 {
1230     LPWSTR path = NULL, file = NULL, table = NULL;
1231     UINT r = ERROR_OUTOFMEMORY;
1232
1233     TRACE("%x %s %s %s\n", handle, debugstr_a(szTable),
1234           debugstr_a(szFolder), debugstr_a(szFilename));
1235
1236     if( szTable )
1237     {
1238         table = strdupAtoW( szTable );
1239         if( !table )
1240             goto end;
1241     }
1242
1243     if( szFolder )
1244     {
1245         path = strdupAtoW( szFolder );
1246         if( !path )
1247             goto end;
1248     }
1249
1250     if( szFilename )
1251     {
1252         file = strdupAtoW( szFilename );
1253         if( !file )
1254             goto end;
1255     }
1256
1257     r = MsiDatabaseExportW( handle, table, path, file );
1258
1259 end:
1260     msi_free( table );
1261     msi_free( path );
1262     msi_free( file );
1263
1264     return r;
1265 }
1266
1267 UINT WINAPI MsiDatabaseMergeA(MSIHANDLE hDatabase, MSIHANDLE hDatabaseMerge,
1268                               LPCSTR szTableName)
1269 {
1270     UINT r;
1271     LPWSTR table;
1272
1273     TRACE("(%d, %d, %s)\n", hDatabase, hDatabaseMerge,
1274           debugstr_a(szTableName));
1275
1276     table = strdupAtoW(szTableName);
1277     r = MsiDatabaseMergeW(hDatabase, hDatabaseMerge, table);
1278
1279     msi_free(table);
1280     return r;
1281 }
1282
1283 typedef struct _tagMERGETABLE
1284 {
1285     struct list entry;
1286     struct list rows;
1287     LPWSTR name;
1288     DWORD numconflicts;
1289     LPWSTR *columns;
1290     DWORD numcolumns;
1291     LPWSTR *types;
1292     DWORD numtypes;
1293     LPWSTR *labels;
1294     DWORD numlabels;
1295 } MERGETABLE;
1296
1297 typedef struct _tagMERGEROW
1298 {
1299     struct list entry;
1300     MSIRECORD *data;
1301 } MERGEROW;
1302
1303 typedef struct _tagMERGEDATA
1304 {
1305     MSIDATABASE *db;
1306     MSIDATABASE *merge;
1307     MERGETABLE *curtable;
1308     MSIQUERY *curview;
1309     struct list *tabledata;
1310 } MERGEDATA;
1311
1312 static BOOL merge_type_match(LPCWSTR type1, LPCWSTR type2)
1313 {
1314     if (((type1[0] == 'l') || (type1[0] == 's')) &&
1315         ((type2[0] == 'l') || (type2[0] == 's')))
1316         return TRUE;
1317
1318     if (((type1[0] == 'L') || (type1[0] == 'S')) &&
1319         ((type2[0] == 'L') || (type2[0] == 'S')))
1320         return TRUE;
1321
1322     return !strcmpW( type1, type2 );
1323 }
1324
1325 static UINT merge_verify_colnames(MSIQUERY *dbview, MSIQUERY *mergeview)
1326 {
1327     MSIRECORD *dbrec, *mergerec;
1328     UINT r, i, count;
1329
1330     r = MSI_ViewGetColumnInfo(dbview, MSICOLINFO_NAMES, &dbrec);
1331     if (r != ERROR_SUCCESS)
1332         return r;
1333
1334     r = MSI_ViewGetColumnInfo(mergeview, MSICOLINFO_NAMES, &mergerec);
1335     if (r != ERROR_SUCCESS)
1336         return r;
1337
1338     count = MSI_RecordGetFieldCount(dbrec);
1339     for (i = 1; i <= count; i++)
1340     {
1341         if (!MSI_RecordGetString(mergerec, i))
1342             break;
1343
1344         if (strcmpW( MSI_RecordGetString( dbrec, i ), MSI_RecordGetString( mergerec, i ) ))
1345         {
1346             r = ERROR_DATATYPE_MISMATCH;
1347             goto done;
1348         }
1349     }
1350
1351     msiobj_release(&dbrec->hdr);
1352     msiobj_release(&mergerec->hdr);
1353     dbrec = mergerec = NULL;
1354
1355     r = MSI_ViewGetColumnInfo(dbview, MSICOLINFO_TYPES, &dbrec);
1356     if (r != ERROR_SUCCESS)
1357         return r;
1358
1359     r = MSI_ViewGetColumnInfo(mergeview, MSICOLINFO_TYPES, &mergerec);
1360     if (r != ERROR_SUCCESS)
1361         return r;
1362
1363     count = MSI_RecordGetFieldCount(dbrec);
1364     for (i = 1; i <= count; i++)
1365     {
1366         if (!MSI_RecordGetString(mergerec, i))
1367             break;
1368
1369         if (!merge_type_match(MSI_RecordGetString(dbrec, i),
1370                      MSI_RecordGetString(mergerec, i)))
1371         {
1372             r = ERROR_DATATYPE_MISMATCH;
1373             break;
1374         }
1375     }
1376
1377 done:
1378     msiobj_release(&dbrec->hdr);
1379     msiobj_release(&mergerec->hdr);
1380
1381     return r;
1382 }
1383
1384 static UINT merge_verify_primary_keys(MSIDATABASE *db, MSIDATABASE *mergedb,
1385                                       LPCWSTR table)
1386 {
1387     MSIRECORD *dbrec, *mergerec = NULL;
1388     UINT r, i, count;
1389
1390     r = MSI_DatabaseGetPrimaryKeys(db, table, &dbrec);
1391     if (r != ERROR_SUCCESS)
1392         return r;
1393
1394     r = MSI_DatabaseGetPrimaryKeys(mergedb, table, &mergerec);
1395     if (r != ERROR_SUCCESS)
1396         goto done;
1397
1398     count = MSI_RecordGetFieldCount(dbrec);
1399     if (count != MSI_RecordGetFieldCount(mergerec))
1400     {
1401         r = ERROR_DATATYPE_MISMATCH;
1402         goto done;
1403     }
1404
1405     for (i = 1; i <= count; i++)
1406     {
1407         if (strcmpW( MSI_RecordGetString( dbrec, i ), MSI_RecordGetString( mergerec, i ) ))
1408         {
1409             r = ERROR_DATATYPE_MISMATCH;
1410             goto done;
1411         }
1412     }
1413
1414 done:
1415     msiobj_release(&dbrec->hdr);
1416     msiobj_release(&mergerec->hdr);
1417
1418     return r;
1419 }
1420
1421 static LPWSTR get_key_value(MSIQUERY *view, LPCWSTR key, MSIRECORD *rec)
1422 {
1423     MSIRECORD *colnames;
1424     LPWSTR str, val;
1425     UINT r, i = 0, sz = 0;
1426     int cmp;
1427
1428     r = MSI_ViewGetColumnInfo(view, MSICOLINFO_NAMES, &colnames);
1429     if (r != ERROR_SUCCESS)
1430         return NULL;
1431
1432     do
1433     {
1434         str = msi_dup_record_field(colnames, ++i);
1435         cmp = strcmpW( key, str );
1436         msi_free(str);
1437     } while (cmp);
1438
1439     msiobj_release(&colnames->hdr);
1440
1441     r = MSI_RecordGetStringW(rec, i, NULL, &sz);
1442     if (r != ERROR_SUCCESS)
1443         return NULL;
1444     sz++;
1445
1446     if (MSI_RecordGetString(rec, i))  /* check record field is a string */
1447     {
1448         /* quote string record fields */
1449         const WCHAR szQuote[] = {'\'', 0};
1450         sz += 2;
1451         val = msi_alloc(sz*sizeof(WCHAR));
1452         if (!val)
1453             return NULL;
1454
1455         lstrcpyW(val, szQuote);
1456         r = MSI_RecordGetStringW(rec, i, val+1, &sz);
1457         lstrcpyW(val+1+sz, szQuote);
1458     }
1459     else
1460     {
1461         /* do not quote integer record fields */
1462         val = msi_alloc(sz*sizeof(WCHAR));
1463         if (!val)
1464             return NULL;
1465
1466         r = MSI_RecordGetStringW(rec, i, val, &sz);
1467     }
1468
1469     if (r != ERROR_SUCCESS)
1470     {
1471         ERR("failed to get string!\n");
1472         msi_free(val);
1473         return NULL;
1474     }
1475
1476     return val;
1477 }
1478
1479 static LPWSTR create_diff_row_query(MSIDATABASE *merge, MSIQUERY *view,
1480                                     LPWSTR table, MSIRECORD *rec)
1481 {
1482     LPWSTR query = NULL, clause = NULL;
1483     LPWSTR ptr = NULL, val;
1484     LPCWSTR setptr;
1485     DWORD size = 1, oldsize;
1486     LPCWSTR key;
1487     MSIRECORD *keys;
1488     UINT r, i, count;
1489
1490     static const WCHAR keyset[] = {
1491         '`','%','s','`',' ','=',' ','%','s',' ','A','N','D',' ',0};
1492     static const WCHAR lastkeyset[] = {
1493         '`','%','s','`',' ','=',' ','%','s',' ',0};
1494     static const WCHAR fmt[] = {'S','E','L','E','C','T',' ','*',' ',
1495         'F','R','O','M',' ','`','%','s','`',' ',
1496         'W','H','E','R','E',' ','%','s',0};
1497
1498     r = MSI_DatabaseGetPrimaryKeys(merge, table, &keys);
1499     if (r != ERROR_SUCCESS)
1500         return NULL;
1501
1502     clause = msi_alloc_zero(size * sizeof(WCHAR));
1503     if (!clause)
1504         goto done;
1505
1506     ptr = clause;
1507     count = MSI_RecordGetFieldCount(keys);
1508     for (i = 1; i <= count; i++)
1509     {
1510         key = MSI_RecordGetString(keys, i);
1511         val = get_key_value(view, key, rec);
1512
1513         if (i == count)
1514             setptr = lastkeyset;
1515         else
1516             setptr = keyset;
1517
1518         oldsize = size;
1519         size += lstrlenW(setptr) + lstrlenW(key) + lstrlenW(val) - 4;
1520         clause = msi_realloc(clause, size * sizeof (WCHAR));
1521         if (!clause)
1522         {
1523             msi_free(val);
1524             goto done;
1525         }
1526
1527         ptr = clause + oldsize - 1;
1528         sprintfW(ptr, setptr, key, val);
1529         msi_free(val);
1530     }
1531
1532     size = lstrlenW(fmt) + lstrlenW(table) + lstrlenW(clause) + 1;
1533     query = msi_alloc(size * sizeof(WCHAR));
1534     if (!query)
1535         goto done;
1536
1537     sprintfW(query, fmt, table, clause);
1538
1539 done:
1540     msi_free(clause);
1541     msiobj_release(&keys->hdr);
1542     return query;
1543 }
1544
1545 static UINT merge_diff_row(MSIRECORD *rec, LPVOID param)
1546 {
1547     MERGEDATA *data = param;
1548     MERGETABLE *table = data->curtable;
1549     MERGEROW *mergerow;
1550     MSIQUERY *dbview = NULL;
1551     MSIRECORD *row = NULL;
1552     LPWSTR query = NULL;
1553     UINT r = ERROR_SUCCESS;
1554
1555     if (TABLE_Exists(data->db, table->name))
1556     {
1557         query = create_diff_row_query(data->merge, data->curview, table->name, rec);
1558         if (!query)
1559             return ERROR_OUTOFMEMORY;
1560
1561         r = MSI_DatabaseOpenViewW(data->db, query, &dbview);
1562         if (r != ERROR_SUCCESS)
1563             goto done;
1564
1565         r = MSI_ViewExecute(dbview, NULL);
1566         if (r != ERROR_SUCCESS)
1567             goto done;
1568
1569         r = MSI_ViewFetch(dbview, &row);
1570         if (r == ERROR_SUCCESS && !MSI_RecordsAreEqual(rec, row))
1571         {
1572             table->numconflicts++;
1573             goto done;
1574         }
1575         else if (r != ERROR_NO_MORE_ITEMS)
1576             goto done;
1577
1578         r = ERROR_SUCCESS;
1579     }
1580
1581     mergerow = msi_alloc(sizeof(MERGEROW));
1582     if (!mergerow)
1583     {
1584         r = ERROR_OUTOFMEMORY;
1585         goto done;
1586     }
1587
1588     mergerow->data = MSI_CloneRecord(rec);
1589     if (!mergerow->data)
1590     {
1591         r = ERROR_OUTOFMEMORY;
1592         msi_free(mergerow);
1593         goto done;
1594     }
1595
1596     list_add_tail(&table->rows, &mergerow->entry);
1597
1598 done:
1599     msi_free(query);
1600     msiobj_release(&row->hdr);
1601     msiobj_release(&dbview->hdr);
1602     return r;
1603 }
1604
1605 static UINT msi_get_table_labels(MSIDATABASE *db, LPCWSTR table, LPWSTR **labels, DWORD *numlabels)
1606 {
1607     UINT r, i, count;
1608     MSIRECORD *prec = NULL;
1609
1610     r = MSI_DatabaseGetPrimaryKeys(db, table, &prec);
1611     if (r != ERROR_SUCCESS)
1612         return r;
1613
1614     count = MSI_RecordGetFieldCount(prec);
1615     *numlabels = count + 1;
1616     *labels = msi_alloc((*numlabels)*sizeof(LPWSTR));
1617     if (!*labels)
1618     {
1619         r = ERROR_OUTOFMEMORY;
1620         goto end;
1621     }
1622
1623     (*labels)[0] = strdupW(table);
1624     for (i=1; i<=count; i++ )
1625     {
1626         (*labels)[i] = strdupW(MSI_RecordGetString(prec, i));
1627     }
1628
1629 end:
1630     msiobj_release( &prec->hdr );
1631     return r;
1632 }
1633
1634 static UINT msi_get_query_columns(MSIQUERY *query, LPWSTR **columns, DWORD *numcolumns)
1635 {
1636     UINT r, i, count;
1637     MSIRECORD *prec = NULL;
1638
1639     r = MSI_ViewGetColumnInfo(query, MSICOLINFO_NAMES, &prec);
1640     if (r != ERROR_SUCCESS)
1641         return r;
1642
1643     count = MSI_RecordGetFieldCount(prec);
1644     *columns = msi_alloc(count*sizeof(LPWSTR));
1645     if (!*columns)
1646     {
1647         r = ERROR_OUTOFMEMORY;
1648         goto end;
1649     }
1650
1651     for (i=1; i<=count; i++ )
1652     {
1653         (*columns)[i-1] = strdupW(MSI_RecordGetString(prec, i));
1654     }
1655
1656     *numcolumns = count;
1657
1658 end:
1659     msiobj_release( &prec->hdr );
1660     return r;
1661 }
1662
1663 static UINT msi_get_query_types(MSIQUERY *query, LPWSTR **types, DWORD *numtypes)
1664 {
1665     UINT r, i, count;
1666     MSIRECORD *prec = NULL;
1667
1668     r = MSI_ViewGetColumnInfo(query, MSICOLINFO_TYPES, &prec);
1669     if (r != ERROR_SUCCESS)
1670         return r;
1671
1672     count = MSI_RecordGetFieldCount(prec);
1673     *types = msi_alloc(count*sizeof(LPWSTR));
1674     if (!*types)
1675     {
1676         r = ERROR_OUTOFMEMORY;
1677         goto end;
1678     }
1679
1680     *numtypes = count;
1681     for (i=1; i<=count; i++ )
1682     {
1683         (*types)[i-1] = strdupW(MSI_RecordGetString(prec, i));
1684     }
1685
1686 end:
1687     msiobj_release( &prec->hdr );
1688     return r;
1689 }
1690
1691 static void merge_free_rows(MERGETABLE *table)
1692 {
1693     struct list *item, *cursor;
1694
1695     LIST_FOR_EACH_SAFE(item, cursor, &table->rows)
1696     {
1697         MERGEROW *row = LIST_ENTRY(item, MERGEROW, entry);
1698
1699         list_remove(&row->entry);
1700         msiobj_release(&row->data->hdr);
1701         msi_free(row);
1702     }
1703 }
1704
1705 static void free_merge_table(MERGETABLE *table)
1706 {
1707     UINT i;
1708
1709     if (table->labels != NULL)
1710     {
1711         for (i = 0; i < table->numlabels; i++)
1712             msi_free(table->labels[i]);
1713
1714         msi_free(table->labels);
1715     }
1716
1717     if (table->columns != NULL)
1718     {
1719         for (i = 0; i < table->numcolumns; i++)
1720             msi_free(table->columns[i]);
1721
1722         msi_free(table->columns);
1723     }
1724
1725     if (table->types != NULL)
1726     {
1727         for (i = 0; i < table->numtypes; i++)
1728             msi_free(table->types[i]);
1729
1730         msi_free(table->types);
1731     }
1732
1733     msi_free(table->name);
1734     merge_free_rows(table);
1735
1736     msi_free(table);
1737 }
1738
1739 static UINT msi_get_merge_table (MSIDATABASE *db, LPCWSTR name, MERGETABLE **ptable)
1740 {
1741     UINT r;
1742     MERGETABLE *table;
1743     MSIQUERY *mergeview = NULL;
1744
1745     static const WCHAR query[] = {'S','E','L','E','C','T',' ','*',' ',
1746         'F','R','O','M',' ','`','%','s','`',0};
1747
1748     table = msi_alloc_zero(sizeof(MERGETABLE));
1749     if (!table)
1750     {
1751        *ptable = NULL;
1752        return ERROR_OUTOFMEMORY;
1753     }
1754
1755     r = msi_get_table_labels(db, name, &table->labels, &table->numlabels);
1756     if (r != ERROR_SUCCESS)
1757         goto err;
1758
1759     r = MSI_OpenQuery(db, &mergeview, query, name);
1760     if (r != ERROR_SUCCESS)
1761         goto err;
1762
1763     r = msi_get_query_columns(mergeview, &table->columns, &table->numcolumns);
1764     if (r != ERROR_SUCCESS)
1765         goto err;
1766
1767     r = msi_get_query_types(mergeview, &table->types, &table->numtypes);
1768     if (r != ERROR_SUCCESS)
1769         goto err;
1770
1771     list_init(&table->rows);
1772
1773     table->name = strdupW(name);
1774     table->numconflicts = 0;
1775
1776     msiobj_release(&mergeview->hdr);
1777     *ptable = table;
1778     return ERROR_SUCCESS;
1779
1780 err:
1781     msiobj_release(&mergeview->hdr);
1782     free_merge_table(table);
1783     *ptable = NULL;
1784     return r;
1785 }
1786
1787 static UINT merge_diff_tables(MSIRECORD *rec, LPVOID param)
1788 {
1789     MERGEDATA *data = param;
1790     MERGETABLE *table;
1791     MSIQUERY *dbview = NULL;
1792     MSIQUERY *mergeview = NULL;
1793     LPCWSTR name;
1794     UINT r;
1795
1796     static const WCHAR query[] = {'S','E','L','E','C','T',' ','*',' ',
1797         'F','R','O','M',' ','`','%','s','`',0};
1798
1799     name = MSI_RecordGetString(rec, 1);
1800
1801     r = MSI_OpenQuery(data->merge, &mergeview, query, name);
1802     if (r != ERROR_SUCCESS)
1803         goto done;
1804
1805     if (TABLE_Exists(data->db, name))
1806     {
1807         r = MSI_OpenQuery(data->db, &dbview, query, name);
1808         if (r != ERROR_SUCCESS)
1809             goto done;
1810
1811         r = merge_verify_colnames(dbview, mergeview);
1812         if (r != ERROR_SUCCESS)
1813             goto done;
1814
1815         r = merge_verify_primary_keys(data->db, data->merge, name);
1816         if (r != ERROR_SUCCESS)
1817             goto done;
1818     }
1819
1820     r = msi_get_merge_table(data->merge, name, &table);
1821     if (r != ERROR_SUCCESS)
1822         goto done;
1823
1824     data->curtable = table;
1825     data->curview = mergeview;
1826     r = MSI_IterateRecords(mergeview, NULL, merge_diff_row, data);
1827     if (r != ERROR_SUCCESS)
1828     {
1829         free_merge_table(table);
1830         goto done;
1831     }
1832
1833     list_add_tail(data->tabledata, &table->entry);
1834
1835 done:
1836     msiobj_release(&dbview->hdr);
1837     msiobj_release(&mergeview->hdr);
1838     return r;
1839 }
1840
1841 static UINT gather_merge_data(MSIDATABASE *db, MSIDATABASE *merge,
1842                               struct list *tabledata)
1843 {
1844     UINT r;
1845     MSIQUERY *view;
1846     MERGEDATA data;
1847
1848     static const WCHAR query[] = {'S','E','L','E','C','T',' ','*',' ',
1849         'F','R','O','M',' ','`','_','T','a','b','l','e','s','`',0};
1850
1851     r = MSI_DatabaseOpenViewW(merge, query, &view);
1852     if (r != ERROR_SUCCESS)
1853         return r;
1854
1855     data.db = db;
1856     data.merge = merge;
1857     data.tabledata = tabledata;
1858     r = MSI_IterateRecords(view, NULL, merge_diff_tables, &data);
1859
1860     msiobj_release(&view->hdr);
1861     return r;
1862 }
1863
1864 static UINT merge_table(MSIDATABASE *db, MERGETABLE *table)
1865 {
1866     UINT r;
1867     MERGEROW *row;
1868     MSIVIEW *tv;
1869
1870     if (!TABLE_Exists(db, table->name))
1871     {
1872         r = msi_add_table_to_db(db, table->columns, table->types,
1873                table->labels, table->numlabels, table->numcolumns);
1874         if (r != ERROR_SUCCESS)
1875            return ERROR_FUNCTION_FAILED;
1876     }
1877
1878     LIST_FOR_EACH_ENTRY(row, &table->rows, MERGEROW, entry)
1879     {
1880         r = TABLE_CreateView(db, table->name, &tv);
1881         if (r != ERROR_SUCCESS)
1882             return r;
1883
1884         r = tv->ops->insert_row(tv, row->data, -1, FALSE);
1885         tv->ops->delete(tv);
1886
1887         if (r != ERROR_SUCCESS)
1888             return r;
1889     }
1890
1891     return ERROR_SUCCESS;
1892 }
1893
1894 static UINT update_merge_errors(MSIDATABASE *db, LPCWSTR error,
1895                                 LPWSTR table, DWORD numconflicts)
1896 {
1897     UINT r;
1898     MSIQUERY *view;
1899
1900     static const WCHAR create[] = {
1901         'C','R','E','A','T','E',' ','T','A','B','L','E',' ',
1902         '`','%','s','`',' ','(','`','T','a','b','l','e','`',' ',
1903         'C','H','A','R','(','2','5','5',')',' ','N','O','T',' ',
1904         'N','U','L','L',',',' ','`','N','u','m','R','o','w','M','e','r','g','e',
1905         'C','o','n','f','l','i','c','t','s','`',' ','S','H','O','R','T',' ',
1906         'N','O','T',' ','N','U','L','L',' ','P','R','I','M','A','R','Y',' ',
1907         'K','E','Y',' ','`','T','a','b','l','e','`',')',0};
1908     static const WCHAR insert[] = {
1909         'I','N','S','E','R','T',' ','I','N','T','O',' ',
1910         '`','%','s','`',' ','(','`','T','a','b','l','e','`',',',' ',
1911         '`','N','u','m','R','o','w','M','e','r','g','e',
1912         'C','o','n','f','l','i','c','t','s','`',')',' ','V','A','L','U','E','S',
1913         ' ','(','\'','%','s','\'',',',' ','%','d',')',0};
1914
1915     if (!TABLE_Exists(db, error))
1916     {
1917         r = MSI_OpenQuery(db, &view, create, error);
1918         if (r != ERROR_SUCCESS)
1919             return r;
1920
1921         r = MSI_ViewExecute(view, NULL);
1922         msiobj_release(&view->hdr);
1923         if (r != ERROR_SUCCESS)
1924             return r;
1925     }
1926
1927     r = MSI_OpenQuery(db, &view, insert, error, table, numconflicts);
1928     if (r != ERROR_SUCCESS)
1929         return r;
1930
1931     r = MSI_ViewExecute(view, NULL);
1932     msiobj_release(&view->hdr);
1933     return r;
1934 }
1935
1936 UINT WINAPI MsiDatabaseMergeW(MSIHANDLE hDatabase, MSIHANDLE hDatabaseMerge,
1937                               LPCWSTR szTableName)
1938 {
1939     struct list tabledata = LIST_INIT(tabledata);
1940     struct list *item, *cursor;
1941     MSIDATABASE *db, *merge;
1942     MERGETABLE *table;
1943     BOOL conflicts;
1944     UINT r;
1945
1946     TRACE("(%d, %d, %s)\n", hDatabase, hDatabaseMerge,
1947           debugstr_w(szTableName));
1948
1949     if (szTableName && !*szTableName)
1950         return ERROR_INVALID_TABLE;
1951
1952     db = msihandle2msiinfo(hDatabase, MSIHANDLETYPE_DATABASE);
1953     merge = msihandle2msiinfo(hDatabaseMerge, MSIHANDLETYPE_DATABASE);
1954     if (!db || !merge)
1955     {
1956         r = ERROR_INVALID_HANDLE;
1957         goto done;
1958     }
1959
1960     r = gather_merge_data(db, merge, &tabledata);
1961     if (r != ERROR_SUCCESS)
1962         goto done;
1963
1964     conflicts = FALSE;
1965     LIST_FOR_EACH_ENTRY(table, &tabledata, MERGETABLE, entry)
1966     {
1967         if (table->numconflicts)
1968         {
1969             conflicts = TRUE;
1970
1971             r = update_merge_errors(db, szTableName, table->name,
1972                                     table->numconflicts);
1973             if (r != ERROR_SUCCESS)
1974                 break;
1975         }
1976         else
1977         {
1978             r = merge_table(db, table);
1979             if (r != ERROR_SUCCESS)
1980                 break;
1981         }
1982     }
1983
1984     LIST_FOR_EACH_SAFE(item, cursor, &tabledata)
1985     {
1986         MERGETABLE *table = LIST_ENTRY(item, MERGETABLE, entry);
1987         list_remove(&table->entry);
1988         free_merge_table(table);
1989     }
1990
1991     if (conflicts)
1992         r = ERROR_FUNCTION_FAILED;
1993
1994 done:
1995     msiobj_release(&db->hdr);
1996     msiobj_release(&merge->hdr);
1997     return r;
1998 }
1999
2000 MSIDBSTATE WINAPI MsiGetDatabaseState( MSIHANDLE handle )
2001 {
2002     MSIDBSTATE ret = MSIDBSTATE_READ;
2003     MSIDATABASE *db;
2004
2005     TRACE("%d\n", handle);
2006
2007     db = msihandle2msiinfo( handle, MSIHANDLETYPE_DATABASE );
2008     if( !db )
2009     {
2010         IWineMsiRemoteDatabase *remote_database;
2011
2012         remote_database = (IWineMsiRemoteDatabase *)msi_get_remote( handle );
2013         if ( !remote_database )
2014             return MSIDBSTATE_ERROR;
2015
2016         IWineMsiRemoteDatabase_Release( remote_database );
2017         WARN("MsiGetDatabaseState not allowed during a custom action!\n");
2018
2019         return MSIDBSTATE_READ;
2020     }
2021
2022     if (db->mode != MSIDBOPEN_READONLY )
2023         ret = MSIDBSTATE_WRITE;
2024     msiobj_release( &db->hdr );
2025
2026     return ret;
2027 }
2028
2029 typedef struct _msi_remote_database_impl {
2030     const IWineMsiRemoteDatabaseVtbl *lpVtbl;
2031     MSIHANDLE database;
2032     LONG refs;
2033 } msi_remote_database_impl;
2034
2035 static inline msi_remote_database_impl* mrd_from_IWineMsiRemoteDatabase( IWineMsiRemoteDatabase* iface )
2036 {
2037     return (msi_remote_database_impl *)iface;
2038 }
2039
2040 static HRESULT WINAPI mrd_QueryInterface( IWineMsiRemoteDatabase *iface,
2041                                           REFIID riid,LPVOID *ppobj)
2042 {
2043     if( IsEqualCLSID( riid, &IID_IUnknown ) ||
2044         IsEqualCLSID( riid, &IID_IWineMsiRemoteDatabase ) )
2045     {
2046         IUnknown_AddRef( iface );
2047         *ppobj = iface;
2048         return S_OK;
2049     }
2050
2051     return E_NOINTERFACE;
2052 }
2053
2054 static ULONG WINAPI mrd_AddRef( IWineMsiRemoteDatabase *iface )
2055 {
2056     msi_remote_database_impl* This = mrd_from_IWineMsiRemoteDatabase( iface );
2057
2058     return InterlockedIncrement( &This->refs );
2059 }
2060
2061 static ULONG WINAPI mrd_Release( IWineMsiRemoteDatabase *iface )
2062 {
2063     msi_remote_database_impl* This = mrd_from_IWineMsiRemoteDatabase( iface );
2064     ULONG r;
2065
2066     r = InterlockedDecrement( &This->refs );
2067     if (r == 0)
2068     {
2069         MsiCloseHandle( This->database );
2070         msi_free( This );
2071     }
2072     return r;
2073 }
2074
2075 static HRESULT WINAPI mrd_IsTablePersistent( IWineMsiRemoteDatabase *iface,
2076                                              LPCWSTR table, MSICONDITION *persistent )
2077 {
2078     msi_remote_database_impl *This = mrd_from_IWineMsiRemoteDatabase( iface );
2079     *persistent = MsiDatabaseIsTablePersistentW(This->database, table);
2080     return S_OK;
2081 }
2082
2083 static HRESULT WINAPI mrd_GetPrimaryKeys( IWineMsiRemoteDatabase *iface,
2084                                           LPCWSTR table, MSIHANDLE *keys )
2085 {
2086     msi_remote_database_impl *This = mrd_from_IWineMsiRemoteDatabase( iface );
2087     UINT r = MsiDatabaseGetPrimaryKeysW(This->database, table, keys);
2088     return HRESULT_FROM_WIN32(r);
2089 }
2090
2091 static HRESULT WINAPI mrd_GetSummaryInformation( IWineMsiRemoteDatabase *iface,
2092                                                 UINT updatecount, MSIHANDLE *suminfo )
2093 {
2094     msi_remote_database_impl *This = mrd_from_IWineMsiRemoteDatabase( iface );
2095     UINT r = MsiGetSummaryInformationW(This->database, NULL, updatecount, suminfo);
2096     return HRESULT_FROM_WIN32(r);
2097 }
2098
2099 static HRESULT WINAPI mrd_OpenView( IWineMsiRemoteDatabase *iface,
2100                                     LPCWSTR query, MSIHANDLE *view )
2101 {
2102     msi_remote_database_impl *This = mrd_from_IWineMsiRemoteDatabase( iface );
2103     UINT r = MsiDatabaseOpenViewW(This->database, query, view);
2104     return HRESULT_FROM_WIN32(r);
2105 }
2106
2107 static HRESULT WINAPI mrd_SetMsiHandle( IWineMsiRemoteDatabase *iface, MSIHANDLE handle )
2108 {
2109     msi_remote_database_impl* This = mrd_from_IWineMsiRemoteDatabase( iface );
2110     This->database = handle;
2111     return S_OK;
2112 }
2113
2114 static const IWineMsiRemoteDatabaseVtbl msi_remote_database_vtbl =
2115 {
2116     mrd_QueryInterface,
2117     mrd_AddRef,
2118     mrd_Release,
2119     mrd_IsTablePersistent,
2120     mrd_GetPrimaryKeys,
2121     mrd_GetSummaryInformation,
2122     mrd_OpenView,
2123     mrd_SetMsiHandle,
2124 };
2125
2126 HRESULT create_msi_remote_database( IUnknown *pOuter, LPVOID *ppObj )
2127 {
2128     msi_remote_database_impl *This;
2129
2130     This = msi_alloc( sizeof *This );
2131     if (!This)
2132         return E_OUTOFMEMORY;
2133
2134     This->lpVtbl = &msi_remote_database_vtbl;
2135     This->database = 0;
2136     This->refs = 1;
2137
2138     *ppObj = This;
2139
2140     return S_OK;
2141 }