2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Aric Stewart for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 * Actions dealing with files These are
29 * RemoveDuplicateFiles(TODO)
38 #include "wine/debug.h"
42 #include "msvcrt/fcntl.h"
45 #include "wine/unicode.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(msi
);
50 extern const WCHAR szInstallFiles
[];
51 extern const WCHAR szDuplicateFiles
[];
52 extern const WCHAR szMoveFiles
[];
53 extern const WCHAR szPatchFiles
[];
54 extern const WCHAR szRemoveDuplicateFiles
[];
55 extern const WCHAR szRemoveFiles
[];
57 static const WCHAR cszTempFolder
[]= {'T','e','m','p','F','o','l','d','e','r',0};
59 static UINT
create_component_directory( MSIPACKAGE
* package
, MSICOMPONENT
*comp
)
61 UINT rc
= ERROR_SUCCESS
;
65 install_path
= resolve_folder(package
, comp
->Directory
, FALSE
, FALSE
, &folder
);
67 return ERROR_FUNCTION_FAILED
;
70 if (folder
->State
== 0)
72 create_full_pathW(install_path
);
75 msi_free(install_path
);
81 * This is a helper function for handling embedded cabinet media
83 static UINT
writeout_cabinet_stream(MSIPACKAGE
*package
, LPCWSTR stream_name
,
93 rc
= read_raw_stream_data(package
->db
,stream_name
,&data
,&size
);
94 if (rc
!= ERROR_SUCCESS
)
98 if (MSI_GetPropertyW(package
, cszTempFolder
, tmp
, &write
))
99 GetTempPathW(MAX_PATH
,tmp
);
101 GetTempFileNameW(tmp
,stream_name
,0,source
);
103 track_tempfile(package
,strrchrW(source
,'\\'), source
);
104 the_file
= CreateFileW(source
, GENERIC_WRITE
, 0, NULL
, CREATE_ALWAYS
,
105 FILE_ATTRIBUTE_NORMAL
, NULL
);
107 if (the_file
== INVALID_HANDLE_VALUE
)
109 ERR("Unable to create file %s\n",debugstr_w(source
));
110 rc
= ERROR_FUNCTION_FAILED
;
114 WriteFile(the_file
,data
,size
,&write
,NULL
);
115 CloseHandle(the_file
);
116 TRACE("wrote %li bytes to %s\n",write
,debugstr_w(source
));
123 /* Support functions for FDI functions */
130 static void * cabinet_alloc(ULONG cb
)
132 return msi_alloc(cb
);
135 static void cabinet_free(void *pv
)
140 static INT_PTR
cabinet_open(char *pszFile
, int oflag
, int pmode
)
143 DWORD dwShareMode
= 0;
144 DWORD dwCreateDisposition
= OPEN_EXISTING
;
145 switch (oflag
& _O_ACCMODE
)
148 dwAccess
= GENERIC_READ
;
149 dwShareMode
= FILE_SHARE_READ
| FILE_SHARE_DELETE
;
152 dwAccess
= GENERIC_WRITE
;
153 dwShareMode
= FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
;
156 dwAccess
= GENERIC_READ
| GENERIC_WRITE
;
157 dwShareMode
= FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
;
160 if ((oflag
& (_O_CREAT
| _O_EXCL
)) == (_O_CREAT
| _O_EXCL
))
161 dwCreateDisposition
= CREATE_NEW
;
162 else if (oflag
& _O_CREAT
)
163 dwCreateDisposition
= CREATE_ALWAYS
;
164 return (INT_PTR
)CreateFileA(pszFile
, dwAccess
, dwShareMode
, NULL
,
165 dwCreateDisposition
, 0, NULL
);
168 static UINT
cabinet_read(INT_PTR hf
, void *pv
, UINT cb
)
171 if (ReadFile((HANDLE
)hf
, pv
, cb
, &dwRead
, NULL
))
176 static UINT
cabinet_write(INT_PTR hf
, void *pv
, UINT cb
)
179 if (WriteFile((HANDLE
)hf
, pv
, cb
, &dwWritten
, NULL
))
184 static int cabinet_close(INT_PTR hf
)
186 return CloseHandle((HANDLE
)hf
) ? 0 : -1;
189 static long cabinet_seek(INT_PTR hf
, long dist
, int seektype
)
191 /* flags are compatible and so are passed straight through */
192 return SetFilePointer((HANDLE
)hf
, dist
, NULL
, seektype
);
195 static INT_PTR
cabinet_notify(FDINOTIFICATIONTYPE fdint
, PFDINOTIFICATION pfdin
)
201 CabData
*data
= (CabData
*) pfdin
->pv
;
202 ULONG len
= strlen(data
->cab_path
) + strlen(pfdin
->psz1
);
208 static const WCHAR tmpprefix
[] = {'C','A','B','T','M','P','_',0};
215 given_file
= strdupAtoW(pfdin
->psz1
);
216 f
= get_loaded_file(data
->package
, given_file
);
217 msi_free(given_file
);
221 ERR("Unknown File in Cabinet (%s)\n",debugstr_a(pfdin
->psz1
));
225 if (!((f
->State
== 1 || f
->State
== 2)))
227 TRACE("Skipping extraction of %s\n",debugstr_a(pfdin
->psz1
));
231 file
= cabinet_alloc((len
+1)*sizeof(char));
232 strcpy(file
, data
->cab_path
);
233 strcat(file
, pfdin
->psz1
);
235 TRACE("file: %s\n", debugstr_a(file
));
237 /* track this file so it can be deleted if not installed */
238 trackpath
=strdupAtoW(file
);
239 tracknametmp
=strdupAtoW(strrchr(file
,'\\')+1);
240 trackname
= msi_alloc((strlenW(tracknametmp
) +
241 strlenW(tmpprefix
)+1) * sizeof(WCHAR
));
243 strcpyW(trackname
,tmpprefix
);
244 strcatW(trackname
,tracknametmp
);
246 track_tempfile(data
->package
, trackname
, trackpath
);
250 msi_free(tracknametmp
);
253 uirow
=MSI_CreateRecord(9);
254 MSI_RecordSetStringW( uirow
, 1, f
->FileName
);
255 uipath
= strdupW( f
->TargetPath
);
256 *(strrchrW(uipath
,'\\')+1)=0;
257 MSI_RecordSetStringW(uirow
,9,uipath
);
258 MSI_RecordSetInteger( uirow
, 6, f
->FileSize
);
259 ui_actiondata(data
->package
,szInstallFiles
,uirow
);
260 msiobj_release( &uirow
->hdr
);
263 ui_progress( data
->package
, 2, f
->FileSize
, 0, 0);
265 return cabinet_open(file
, _O_WRONLY
| _O_CREAT
, 0);
267 case fdintCLOSE_FILE_INFO
:
271 if (!DosDateTimeToFileTime(pfdin
->date
, pfdin
->time
, &ft
))
273 if (!LocalFileTimeToFileTime(&ft
, &ftLocal
))
275 if (!SetFileTime((HANDLE
)pfdin
->hf
, &ftLocal
, 0, &ftLocal
))
278 cabinet_close(pfdin
->hf
);
286 /***********************************************************************
287 * extract_cabinet_file
289 * Extract files from a cab file.
291 static BOOL
extract_cabinet_file(MSIPACKAGE
* package
, LPCWSTR source
,
301 TRACE("Extracting %s to %s\n",debugstr_w(source
), debugstr_w(path
));
303 hfdi
= FDICreate(cabinet_alloc
,
314 ERR("FDICreate failed\n");
318 if (!(cabinet
= strdupWtoA( source
)))
323 if (!(cab_path
= strdupWtoA( path
)))
330 data
.package
= package
;
331 data
.cab_path
= cab_path
;
333 ret
= FDICopy(hfdi
, cabinet
, "", 0, cabinet_notify
, NULL
, &data
);
336 ERR("FDICopy failed\n");
346 static VOID
set_file_source(MSIPACKAGE
* package
, MSIFILE
* file
, MSICOMPONENT
*
349 if (file
->Attributes
& msidbFileAttributesNoncompressed
)
352 p
= resolve_folder(package
, comp
->Directory
, TRUE
, FALSE
, NULL
);
353 file
->SourcePath
= build_directory_name(2, p
, file
->ShortName
);
357 file
->SourcePath
= build_directory_name(2, path
, file
->File
);
360 static BOOL
check_volume(LPCWSTR path
, LPCWSTR want_volume
, LPWSTR volume
,
364 WCHAR name
[MAX_PATH
];
367 if (!(path
[0] && path
[1] == ':'))
374 TRACE("Checking volume %s .. (%s)\n",debugstr_w(drive
), debugstr_w(want_volume
));
375 type
= GetDriveTypeW(drive
);
376 TRACE("drive is of type %x\n",type
);
378 if (type
== DRIVE_UNKNOWN
|| type
== DRIVE_NO_ROOT_DIR
||
379 type
== DRIVE_FIXED
|| type
== DRIVE_RAMDISK
)
382 GetVolumeInformationW(drive
, name
, MAX_PATH
, NULL
, NULL
, NULL
, NULL
, 0);
383 TRACE("Drive contains %s\n", debugstr_w(name
));
384 volume
= strdupW(name
);
387 return (strcmpiW(want_volume
,name
)==0);
390 static BOOL
check_for_sourcefile(LPCWSTR source
)
392 DWORD attrib
= GetFileAttributesW(source
);
393 return (!(attrib
== INVALID_FILE_ATTRIBUTES
));
396 static UINT
ready_volume(MSIPACKAGE
* package
, LPCWSTR path
, LPWSTR last_volume
,
397 MSIRECORD
*row
,UINT
*type
)
399 LPWSTR volume
= NULL
;
400 LPCWSTR want_volume
= MSI_RecordGetString(row
, 5);
401 BOOL ok
= check_volume(path
, want_volume
, volume
, type
);
403 TRACE("Readying Volume for %s (%s, %s)\n",debugstr_w(path
), debugstr_w(want_volume
), debugstr_w(last_volume
));
405 if (check_for_sourcefile(path
) && !ok
)
407 FIXME("Found the Sourcefile but not on the correct volume.(%s,%s,%s)\n",
408 debugstr_w(path
),debugstr_w(want_volume
), debugstr_w(volume
));
409 return ERROR_SUCCESS
;
418 prompt
= MSI_RecordGetString(row
,3);
419 msg
= generate_error_string(package
, 1302, 1, prompt
);
420 rc
= MessageBoxW(NULL
,msg
,NULL
,MB_OKCANCEL
);
424 ok
= check_for_sourcefile(path
);
426 return ERROR_INSTALL_USEREXIT
;
429 msi_free(last_volume
);
430 last_volume
= strdupW(volume
);
431 return ERROR_SUCCESS
;
439 WCHAR source
[MAX_PATH
];
442 static struct media_info
*create_media_info( void )
444 struct media_info
*mi
;
446 mi
= msi_alloc( sizeof *mi
);
449 mi
->last_sequence
= 0;
450 mi
->last_volume
= NULL
;
451 mi
->last_path
= NULL
;
459 static void free_media_info( struct media_info
*mi
)
461 msi_free( mi
->last_path
);
465 static UINT
ready_media_for_file( MSIPACKAGE
*package
, struct media_info
*mi
,
466 MSIFILE
*file
, MSICOMPONENT
* comp
)
468 UINT rc
= ERROR_SUCCESS
;
470 static const WCHAR ExecSeqQuery
[] =
471 {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ',
472 '`','M','e','d','i','a','`',' ','W','H','E','R','E',' ',
473 '`','L','a','s','t','S','e','q','u','e','n','c','e','`',' ','>','=',
474 ' ','%', 'i',' ','O','R','D','E','R',' ','B','Y',' ',
475 '`','L','a','s','t','S','e','q','u','e','n','c','e','`',0};
482 if (file
->Sequence
<= mi
->last_sequence
)
484 set_file_source(package
,file
,comp
,mi
->last_path
);
485 TRACE("Media already ready (%u, %u)\n",file
->Sequence
,mi
->last_sequence
);
486 return ERROR_SUCCESS
;
490 row
= MSI_QueryGetRecord(package
->db
, ExecSeqQuery
, file
->Sequence
);
493 TRACE("Unable to query row\n");
494 return ERROR_FUNCTION_FAILED
;
497 seq
= MSI_RecordGetInteger(row
,2);
498 mi
->last_sequence
= seq
;
500 volume
= MSI_RecordGetString(row
, 5);
501 prompt
= MSI_RecordGetString(row
, 3);
503 msi_free(mi
->last_path
);
504 mi
->last_path
= NULL
;
506 if (file
->Attributes
& msidbFileAttributesNoncompressed
)
508 mi
->last_path
= resolve_folder(package
, comp
->Directory
, TRUE
, FALSE
, NULL
);
509 set_file_source(package
,file
,comp
,mi
->last_path
);
510 rc
= ready_volume(package
, file
->SourcePath
, mi
->last_volume
, row
,&type
);
512 MsiSourceListAddMediaDiskW(package
->ProductCode
, NULL
,
513 MSIINSTALLCONTEXT_USERMANAGED
, MSICODE_PRODUCT
, mi
->count
, volume
,
516 if (type
== DRIVE_REMOVABLE
|| type
== DRIVE_CDROM
||
517 type
== DRIVE_RAMDISK
)
518 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
519 MSIINSTALLCONTEXT_USERMANAGED
,
520 MSICODE_PRODUCT
|MSISOURCETYPE_MEDIA
,
521 INSTALLPROPERTY_LASTUSEDSOURCEW
, mi
->last_path
);
523 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
524 MSIINSTALLCONTEXT_USERMANAGED
,
525 MSICODE_PRODUCT
|MSISOURCETYPE_NETWORK
,
526 INSTALLPROPERTY_LASTUSEDSOURCEW
, mi
->last_path
);
527 msiobj_release(&row
->hdr
);
531 cab
= MSI_RecordGetString(row
,4);
534 TRACE("Source is CAB %s\n",debugstr_w(cab
));
535 /* the stream does not contain the # character */
540 writeout_cabinet_stream(package
,&cab
[1],mi
->source
);
541 mi
->last_path
= strdupW(mi
->source
);
542 *(strrchrW(mi
->last_path
,'\\')+1)=0;
544 path
= msi_dup_property( package
, cszSourceDir
);
546 MsiSourceListAddMediaDiskW(package
->ProductCode
, NULL
,
547 MSIINSTALLCONTEXT_USERMANAGED
, MSICODE_PRODUCT
, mi
->count
,
550 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
551 MSIINSTALLCONTEXT_USERMANAGED
,
552 MSICODE_PRODUCT
|MSISOURCETYPE_NETWORK
,
553 INSTALLPROPERTY_LASTUSEDSOURCEW
, path
);
560 mi
->last_path
= msi_alloc(MAX_PATH
*sizeof(WCHAR
));
561 if (MSI_GetPropertyW(package
, cszSourceDir
, mi
->source
, &sz
))
563 ERR("No Source dir defined \n");
564 rc
= ERROR_FUNCTION_FAILED
;
568 strcpyW(mi
->last_path
,mi
->source
);
569 strcatW(mi
->source
,cab
);
571 rc
= ready_volume(package
, mi
->source
, mi
->last_volume
, row
, &type
);
572 if (type
== DRIVE_REMOVABLE
|| type
== DRIVE_CDROM
||
573 type
== DRIVE_RAMDISK
)
574 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
575 MSIINSTALLCONTEXT_USERMANAGED
,
576 MSICODE_PRODUCT
|MSISOURCETYPE_MEDIA
,
577 INSTALLPROPERTY_LASTUSEDSOURCEW
, mi
->last_path
);
579 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
580 MSIINSTALLCONTEXT_USERMANAGED
,
581 MSICODE_PRODUCT
|MSISOURCETYPE_NETWORK
,
582 INSTALLPROPERTY_LASTUSEDSOURCEW
, mi
->last_path
);
584 /* extract the cab file into a folder in the temp folder */
586 if (MSI_GetPropertyW(package
, cszTempFolder
,mi
->last_path
, &sz
)
588 GetTempPathW(MAX_PATH
,mi
->last_path
);
591 rc
= !extract_cabinet_file(package
, mi
->source
, mi
->last_path
);
596 mi
->last_path
= msi_alloc(MAX_PATH
*sizeof(WCHAR
));
597 MSI_GetPropertyW(package
,cszSourceDir
,mi
->source
,&sz
);
598 strcpyW(mi
->last_path
,mi
->source
);
599 rc
= ready_volume(package
, mi
->last_path
, mi
->last_volume
, row
, &type
);
601 if (type
== DRIVE_REMOVABLE
|| type
== DRIVE_CDROM
||
602 type
== DRIVE_RAMDISK
)
603 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
604 MSIINSTALLCONTEXT_USERMANAGED
,
605 MSICODE_PRODUCT
|MSISOURCETYPE_MEDIA
,
606 INSTALLPROPERTY_LASTUSEDSOURCEW
, mi
->last_path
);
608 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
609 MSIINSTALLCONTEXT_USERMANAGED
,
610 MSICODE_PRODUCT
|MSISOURCETYPE_NETWORK
,
611 INSTALLPROPERTY_LASTUSEDSOURCEW
, mi
->last_path
);
613 set_file_source(package
, file
, comp
, mi
->last_path
);
615 MsiSourceListAddMediaDiskW(package
->ProductCode
, NULL
,
616 MSIINSTALLCONTEXT_USERMANAGED
, MSICODE_PRODUCT
, mi
->count
, volume
,
619 msiobj_release(&row
->hdr
);
624 static UINT
get_file_target(MSIPACKAGE
*package
, LPCWSTR file_key
,
630 return ERROR_INVALID_HANDLE
;
632 LIST_FOR_EACH_ENTRY( file
, &package
->files
, MSIFILE
, entry
)
634 if (lstrcmpW( file_key
, file
->File
)==0)
636 if (file
->State
>= 2)
638 *file_source
= strdupW( file
->TargetPath
);
639 return ERROR_SUCCESS
;
642 return ERROR_FILE_NOT_FOUND
;
646 return ERROR_FUNCTION_FAILED
;
650 * In order to make this work more effeciencly I am going to do this in 2
652 * Pass 1) Correct all the TargetPaths and determin what files are to be
654 * Pass 2) Extract Cabinents and copy files.
656 UINT
ACTION_InstallFiles(MSIPACKAGE
*package
)
658 struct media_info
*mi
;
659 UINT rc
= ERROR_SUCCESS
;
664 return ERROR_INVALID_HANDLE
;
666 /* increment progress bar each time action data is sent */
667 ui_progress(package
,1,1,0,0);
669 /* handle the keys for the SouceList */
670 ptr
= strrchrW(package
->PackagePath
,'\\');
674 MsiSourceListSetInfoW(package
->ProductCode
, NULL
,
675 MSIINSTALLCONTEXT_USERMANAGED
,
677 INSTALLPROPERTY_PACKAGENAMEW
, ptr
);
679 FIXME("Write DiskPrompt\n");
682 LIST_FOR_EACH_ENTRY( file
, &package
->files
, MSIFILE
, entry
)
684 MSICOMPONENT
* comp
= NULL
;
686 if (!ACTION_VerifyComponentForAction(package
, file
->Component
,
689 ui_progress(package
,2,file
->FileSize
,0,0);
690 TRACE("File %s is not scheduled for install\n",
691 debugstr_w(file
->File
));
697 if ((file
->State
== 1) || (file
->State
== 2))
701 TRACE("Pass 1: %s\n",debugstr_w(file
->File
));
703 create_component_directory( package
, file
->Component
);
705 /* recalculate file paths because things may have changed */
707 comp
= file
->Component
;
710 ERR("No Component for file\n");
714 p
= resolve_folder(package
, comp
->Directory
, FALSE
, FALSE
, NULL
);
715 msi_free(file
->TargetPath
);
717 file
->TargetPath
= build_directory_name(2, p
, file
->FileName
);
722 mi
= create_media_info();
725 LIST_FOR_EACH_ENTRY( file
, &package
->files
, MSIFILE
, entry
)
727 if ((file
->State
== 1) || (file
->State
== 2))
729 TRACE("Pass 2: %s\n",debugstr_w(file
->File
));
731 rc
= ready_media_for_file( package
, mi
, file
, file
->Component
);
732 if (rc
!= ERROR_SUCCESS
)
734 ERR("Unable to ready media\n");
735 rc
= ERROR_FUNCTION_FAILED
;
739 TRACE("file paths %s to %s\n",debugstr_w(file
->SourcePath
),
740 debugstr_w(file
->TargetPath
));
742 if (file
->Attributes
& msidbFileAttributesNoncompressed
)
743 rc
= CopyFileW(file
->SourcePath
,file
->TargetPath
,FALSE
);
745 rc
= MoveFileW(file
->SourcePath
, file
->TargetPath
);
750 ERR("Unable to move/copy file (%s -> %s) (error %d)\n",
751 debugstr_w(file
->SourcePath
), debugstr_w(file
->TargetPath
),
753 if (rc
== ERROR_ALREADY_EXISTS
&& file
->State
== 2)
755 if (!CopyFileW(file
->SourcePath
,file
->TargetPath
,FALSE
))
756 ERR("Unable to copy file (%s -> %s) (error %ld)\n",
757 debugstr_w(file
->SourcePath
),
758 debugstr_w(file
->TargetPath
), GetLastError());
759 if (!(file
->Attributes
& msidbFileAttributesNoncompressed
))
760 DeleteFileW(file
->SourcePath
);
763 else if (rc
== ERROR_FILE_NOT_FOUND
)
765 ERR("Source File Not Found! Continuing\n");
768 else if (file
->Attributes
& msidbFileAttributesVital
)
770 ERR("Ignoring Error and continuing (nonvital file)...\n");
783 free_media_info( mi
);
787 static UINT
ITERATE_DuplicateFiles(MSIRECORD
*row
, LPVOID param
)
789 MSIPACKAGE
*package
= (MSIPACKAGE
*)param
;
790 WCHAR
*file_source
= NULL
;
791 WCHAR dest_name
[0x100];
792 LPWSTR dest_path
, dest
;
793 LPCWSTR file_key
, component
;
798 component
= MSI_RecordGetString(row
,2);
799 comp
= get_loaded_component(package
,component
);
801 if (!ACTION_VerifyComponentForAction(package
, comp
, INSTALLSTATE_LOCAL
))
803 TRACE("Skipping copy due to disabled component %s\n",
804 debugstr_w(component
));
806 /* the action taken was the same as the current install state */
807 comp
->Action
= comp
->Installed
;
809 return ERROR_SUCCESS
;
812 comp
->Action
= INSTALLSTATE_LOCAL
;
814 file_key
= MSI_RecordGetString(row
,3);
817 ERR("Unable to get file key\n");
818 return ERROR_FUNCTION_FAILED
;
821 rc
= get_file_target(package
,file_key
,&file_source
);
823 if (rc
!= ERROR_SUCCESS
)
825 ERR("Original file unknown %s\n",debugstr_w(file_key
));
826 msi_free(file_source
);
827 return ERROR_SUCCESS
;
830 if (MSI_RecordIsNull(row
,4))
831 strcpyW(dest_name
,strrchrW(file_source
,'\\')+1);
835 MSI_RecordGetStringW(row
,4,dest_name
,&sz
);
836 reduce_to_longfilename(dest_name
);
839 if (MSI_RecordIsNull(row
,5))
842 dest_path
= strdupW(file_source
);
843 p
= strrchrW(dest_path
,'\\');
850 destkey
= MSI_RecordGetString(row
,5);
851 dest_path
= resolve_folder(package
, destkey
, FALSE
,FALSE
,NULL
);
855 dest_path
= msi_dup_property( package
, destkey
);
858 FIXME("Unable to get destination folder, try AppSearch properties\n");
859 msi_free(file_source
);
860 return ERROR_SUCCESS
;
865 dest
= build_directory_name(2, dest_path
, dest_name
);
867 TRACE("Duplicating file %s to %s\n",debugstr_w(file_source
),
870 if (strcmpW(file_source
,dest
))
871 rc
= !CopyFileW(file_source
,dest
,TRUE
);
875 if (rc
!= ERROR_SUCCESS
)
876 ERR("Failed to copy file %s -> %s, last error %ld\n", debugstr_w(file_source
), debugstr_w(dest_path
), GetLastError());
878 FIXME("We should track these duplicate files as well\n");
882 msi_free(file_source
);
884 return ERROR_SUCCESS
;
887 UINT
ACTION_DuplicateFiles(MSIPACKAGE
*package
)
891 static const WCHAR ExecSeqQuery
[] =
892 {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
893 '`','D','u','p','l','i','c','a','t','e','F','i','l','e','`',0};
896 return ERROR_INVALID_HANDLE
;
898 rc
= MSI_DatabaseOpenViewW(package
->db
, ExecSeqQuery
, &view
);
899 if (rc
!= ERROR_SUCCESS
)
900 return ERROR_SUCCESS
;
902 rc
= MSI_IterateRecords(view
, NULL
, ITERATE_DuplicateFiles
, package
);
903 msiobj_release(&view
->hdr
);