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