msi: Implement MsiSetMode.
[wine.git] / dlls / msi / install.c
blob7a71867262c30951b25ad02ae5e170a23a5e9f8e
1 /*
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 /* Msi top level apis directly related to installs */
23 #define COBJMACROS
25 #include <stdarg.h>
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winerror.h"
30 #include "wine/debug.h"
31 #include "msi.h"
32 #include "msidefs.h"
33 #include "objbase.h"
34 #include "oleauto.h"
36 #include "msipriv.h"
37 #include "msiserver.h"
38 #include "wine/unicode.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(msi);
42 /***********************************************************************
43 * MsiDoActionA (MSI.@)
45 UINT WINAPI MsiDoActionA( MSIHANDLE hInstall, LPCSTR szAction )
47 LPWSTR szwAction;
48 UINT ret;
50 TRACE("%s\n", debugstr_a(szAction));
52 szwAction = strdupAtoW(szAction);
53 if (szAction && !szwAction)
54 return ERROR_FUNCTION_FAILED;
56 ret = MsiDoActionW( hInstall, szwAction );
57 msi_free( szwAction );
58 return ret;
61 /***********************************************************************
62 * MsiDoActionW (MSI.@)
64 UINT WINAPI MsiDoActionW( MSIHANDLE hInstall, LPCWSTR szAction )
66 MSIPACKAGE *package;
67 UINT ret;
69 TRACE("%s\n",debugstr_w(szAction));
71 if (!szAction)
72 return ERROR_INVALID_PARAMETER;
74 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
75 if (!package)
77 HRESULT hr;
78 BSTR action;
79 IWineMsiRemotePackage *remote_package;
81 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
82 if (!remote_package)
83 return ERROR_INVALID_HANDLE;
85 action = SysAllocString( szAction );
86 if (!action)
88 IWineMsiRemotePackage_Release( remote_package );
89 return ERROR_OUTOFMEMORY;
92 hr = IWineMsiRemotePackage_DoAction( remote_package, action );
94 SysFreeString( action );
95 IWineMsiRemotePackage_Release( remote_package );
97 if (FAILED(hr))
99 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
100 return HRESULT_CODE(hr);
102 return ERROR_FUNCTION_FAILED;
105 return ERROR_SUCCESS;
108 ret = ACTION_PerformUIAction( package, szAction, -1 );
109 msiobj_release( &package->hdr );
111 return ret;
114 /***********************************************************************
115 * MsiSequenceA (MSI.@)
117 UINT WINAPI MsiSequenceA( MSIHANDLE hInstall, LPCSTR szTable, INT iSequenceMode )
119 LPWSTR szwTable;
120 UINT ret;
122 TRACE("%s\n", debugstr_a(szTable));
124 szwTable = strdupAtoW(szTable);
125 if (szTable && !szwTable)
126 return ERROR_FUNCTION_FAILED;
128 ret = MsiSequenceW( hInstall, szwTable, iSequenceMode );
129 msi_free( szwTable );
130 return ret;
133 /***********************************************************************
134 * MsiSequenceW (MSI.@)
136 UINT WINAPI MsiSequenceW( MSIHANDLE hInstall, LPCWSTR szTable, INT iSequenceMode )
138 MSIPACKAGE *package;
139 UINT ret;
141 TRACE("%s\n", debugstr_w(szTable));
143 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
144 if (!package)
146 HRESULT hr;
147 BSTR table;
148 IWineMsiRemotePackage *remote_package;
150 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
151 if (!remote_package)
152 return ERROR_INVALID_HANDLE;
154 table = SysAllocString( szTable );
155 if (!table)
157 IWineMsiRemotePackage_Release( remote_package );
158 return ERROR_OUTOFMEMORY;
161 hr = IWineMsiRemotePackage_Sequence( remote_package, table, iSequenceMode );
163 SysFreeString( table );
164 IWineMsiRemotePackage_Release( remote_package );
166 if (FAILED(hr))
168 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
169 return HRESULT_CODE(hr);
171 return ERROR_FUNCTION_FAILED;
174 return ERROR_SUCCESS;
177 ret = MSI_Sequence( package, szTable, iSequenceMode );
178 msiobj_release( &package->hdr );
180 return ret;
183 UINT msi_strcpy_to_awstring( LPCWSTR str, awstring *awbuf, DWORD *sz )
185 UINT len, r = ERROR_SUCCESS;
187 if (awbuf->str.w && !sz )
188 return ERROR_INVALID_PARAMETER;
190 if (!sz)
191 return r;
193 if (awbuf->unicode)
195 len = lstrlenW( str );
196 if (awbuf->str.w)
197 lstrcpynW( awbuf->str.w, str, *sz );
199 else
201 len = WideCharToMultiByte( CP_ACP, 0, str, -1, NULL, 0, NULL, NULL );
202 if (len)
203 len--;
204 WideCharToMultiByte( CP_ACP, 0, str, -1, awbuf->str.a, *sz, NULL, NULL );
205 if ( awbuf->str.a && *sz && (len >= *sz) )
206 awbuf->str.a[*sz - 1] = 0;
209 if (awbuf->str.w && len >= *sz)
210 r = ERROR_MORE_DATA;
211 *sz = len;
212 return r;
215 /***********************************************************************
216 * MsiGetTargetPath (internal)
218 static UINT MSI_GetTargetPath( MSIHANDLE hInstall, LPCWSTR szFolder,
219 awstring *szPathBuf, LPDWORD pcchPathBuf )
221 MSIPACKAGE *package;
222 LPWSTR path;
223 UINT r = ERROR_FUNCTION_FAILED;
225 if (!szFolder)
226 return ERROR_INVALID_PARAMETER;
228 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
229 if (!package)
231 HRESULT hr;
232 IWineMsiRemotePackage *remote_package;
233 LPWSTR value = NULL;
234 BSTR folder;
235 DWORD len;
237 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
238 if (!remote_package)
239 return ERROR_INVALID_HANDLE;
241 folder = SysAllocString( szFolder );
242 if (!folder)
244 IWineMsiRemotePackage_Release( remote_package );
245 return ERROR_OUTOFMEMORY;
248 len = 0;
249 hr = IWineMsiRemotePackage_GetTargetPath( remote_package, folder,
250 NULL, &len );
251 if (FAILED(hr))
252 goto done;
254 len++;
255 value = msi_alloc(len * sizeof(WCHAR));
256 if (!value)
258 r = ERROR_OUTOFMEMORY;
259 goto done;
262 hr = IWineMsiRemotePackage_GetTargetPath( remote_package, folder,
263 (BSTR *)value, &len);
264 if (FAILED(hr))
265 goto done;
267 r = msi_strcpy_to_awstring( value, szPathBuf, pcchPathBuf );
269 done:
270 IWineMsiRemotePackage_Release( remote_package );
271 SysFreeString( folder );
272 msi_free( value );
274 if (FAILED(hr))
276 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
277 return HRESULT_CODE(hr);
279 return ERROR_FUNCTION_FAILED;
282 return r;
285 path = resolve_folder( package, szFolder, FALSE, FALSE, TRUE, NULL );
286 msiobj_release( &package->hdr );
288 if (!path)
289 return ERROR_DIRECTORY;
291 r = msi_strcpy_to_awstring( path, szPathBuf, pcchPathBuf );
292 msi_free( path );
293 return r;
296 /***********************************************************************
297 * MsiGetTargetPathA (MSI.@)
299 UINT WINAPI MsiGetTargetPathA( MSIHANDLE hInstall, LPCSTR szFolder,
300 LPSTR szPathBuf, LPDWORD pcchPathBuf )
302 LPWSTR szwFolder;
303 awstring path;
304 UINT r;
306 TRACE("%s %p %p\n", debugstr_a(szFolder), szPathBuf, pcchPathBuf);
308 szwFolder = strdupAtoW(szFolder);
309 if (szFolder && !szwFolder)
310 return ERROR_FUNCTION_FAILED;
312 path.unicode = FALSE;
313 path.str.a = szPathBuf;
315 r = MSI_GetTargetPath( hInstall, szwFolder, &path, pcchPathBuf );
317 msi_free( szwFolder );
319 return r;
322 /***********************************************************************
323 * MsiGetTargetPathW (MSI.@)
325 UINT WINAPI MsiGetTargetPathW( MSIHANDLE hInstall, LPCWSTR szFolder,
326 LPWSTR szPathBuf, LPDWORD pcchPathBuf )
328 awstring path;
330 TRACE("%s %p %p\n", debugstr_w(szFolder), szPathBuf, pcchPathBuf);
332 path.unicode = TRUE;
333 path.str.w = szPathBuf;
335 return MSI_GetTargetPath( hInstall, szFolder, &path, pcchPathBuf );
338 /***********************************************************************
339 * MsiGetSourcePath (internal)
341 static UINT MSI_GetSourcePath( MSIHANDLE hInstall, LPCWSTR szFolder,
342 awstring *szPathBuf, LPDWORD pcchPathBuf )
344 MSIPACKAGE *package;
345 LPWSTR path;
346 UINT r = ERROR_FUNCTION_FAILED;
348 TRACE("%s %p %p\n", debugstr_w(szFolder), szPathBuf, pcchPathBuf );
350 if (!szFolder)
351 return ERROR_INVALID_PARAMETER;
353 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
354 if (!package)
356 HRESULT hr;
357 IWineMsiRemotePackage *remote_package;
358 LPWSTR value = NULL;
359 BSTR folder;
360 DWORD len;
362 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
363 if (!remote_package)
364 return ERROR_INVALID_HANDLE;
366 folder = SysAllocString( szFolder );
367 if (!folder)
369 IWineMsiRemotePackage_Release( remote_package );
370 return ERROR_OUTOFMEMORY;
373 len = 0;
374 hr = IWineMsiRemotePackage_GetSourcePath( remote_package, folder,
375 NULL, &len );
376 if (FAILED(hr))
377 goto done;
379 len++;
380 value = msi_alloc(len * sizeof(WCHAR));
381 if (!value)
383 r = ERROR_OUTOFMEMORY;
384 goto done;
387 hr = IWineMsiRemotePackage_GetSourcePath( remote_package, folder,
388 (BSTR *)value, &len);
389 if (FAILED(hr))
390 goto done;
392 r = msi_strcpy_to_awstring( value, szPathBuf, pcchPathBuf );
394 done:
395 IWineMsiRemotePackage_Release( remote_package );
396 SysFreeString( folder );
397 msi_free( value );
399 if (FAILED(hr))
401 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
402 return HRESULT_CODE(hr);
404 return ERROR_FUNCTION_FAILED;
407 return r;
410 if (szPathBuf->str.w && !pcchPathBuf )
412 msiobj_release( &package->hdr );
413 return ERROR_INVALID_PARAMETER;
416 path = resolve_folder(package, szFolder, TRUE, FALSE, TRUE, NULL);
417 msiobj_release( &package->hdr );
419 TRACE("path = %s\n",debugstr_w(path));
420 if (!path)
421 return ERROR_DIRECTORY;
423 r = msi_strcpy_to_awstring( path, szPathBuf, pcchPathBuf );
424 msi_free( path );
425 return r;
428 /***********************************************************************
429 * MsiGetSourcePathA (MSI.@)
431 UINT WINAPI MsiGetSourcePathA( MSIHANDLE hInstall, LPCSTR szFolder,
432 LPSTR szPathBuf, LPDWORD pcchPathBuf )
434 LPWSTR folder;
435 awstring str;
436 UINT r;
438 TRACE("%s %p %p\n", szFolder, debugstr_a(szPathBuf), pcchPathBuf);
440 str.unicode = FALSE;
441 str.str.a = szPathBuf;
443 folder = strdupAtoW( szFolder );
444 r = MSI_GetSourcePath( hInstall, folder, &str, pcchPathBuf );
445 msi_free( folder );
447 return r;
450 /***********************************************************************
451 * MsiGetSourcePathW (MSI.@)
453 UINT WINAPI MsiGetSourcePathW( MSIHANDLE hInstall, LPCWSTR szFolder,
454 LPWSTR szPathBuf, LPDWORD pcchPathBuf )
456 awstring str;
458 TRACE("%s %p %p\n", debugstr_w(szFolder), szPathBuf, pcchPathBuf );
460 str.unicode = TRUE;
461 str.str.w = szPathBuf;
463 return MSI_GetSourcePath( hInstall, szFolder, &str, pcchPathBuf );
466 /***********************************************************************
467 * MsiSetTargetPathA (MSI.@)
469 UINT WINAPI MsiSetTargetPathA( MSIHANDLE hInstall, LPCSTR szFolder,
470 LPCSTR szFolderPath )
472 LPWSTR szwFolder = NULL, szwFolderPath = NULL;
473 UINT rc = ERROR_OUTOFMEMORY;
475 if ( !szFolder || !szFolderPath )
476 return ERROR_INVALID_PARAMETER;
478 szwFolder = strdupAtoW(szFolder);
479 szwFolderPath = strdupAtoW(szFolderPath);
480 if (!szwFolder || !szwFolderPath)
481 goto end;
483 rc = MsiSetTargetPathW( hInstall, szwFolder, szwFolderPath );
485 end:
486 msi_free(szwFolder);
487 msi_free(szwFolderPath);
489 return rc;
493 * Ok my original interpretation of this was wrong. And it looks like msdn has
494 * changed a bit also. The given folder path does not have to actually already
495 * exist, it just cannot be read only and must be a legal folder path.
497 UINT MSI_SetTargetPathW(MSIPACKAGE *package, LPCWSTR szFolder,
498 LPCWSTR szFolderPath)
500 DWORD attrib;
501 LPWSTR path = NULL;
502 LPWSTR path2 = NULL;
503 MSIFOLDER *folder;
504 MSIFILE *file;
506 TRACE("%p %s %s\n",package, debugstr_w(szFolder),debugstr_w(szFolderPath));
508 attrib = GetFileAttributesW(szFolderPath);
509 /* native MSI tests writeability by making temporary files at each drive */
510 if ( attrib != INVALID_FILE_ATTRIBUTES &&
511 (attrib & FILE_ATTRIBUTE_OFFLINE ||
512 attrib & FILE_ATTRIBUTE_READONLY))
513 return ERROR_FUNCTION_FAILED;
515 path = resolve_folder(package,szFolder,FALSE,FALSE,FALSE,&folder);
516 if (!path)
517 return ERROR_DIRECTORY;
519 msi_free(folder->Property);
520 folder->Property = build_directory_name(2, szFolderPath, NULL);
522 if (lstrcmpiW(path, folder->Property) == 0)
525 * Resolved Target has not really changed, so just
526 * set this folder and do not recalculate everything.
528 msi_free(folder->ResolvedTarget);
529 folder->ResolvedTarget = NULL;
530 path2 = resolve_folder(package,szFolder,FALSE,TRUE,FALSE,NULL);
531 msi_free(path2);
533 else
535 MSIFOLDER *f;
537 LIST_FOR_EACH_ENTRY( f, &package->folders, MSIFOLDER, entry )
539 msi_free(f->ResolvedTarget);
540 f->ResolvedTarget=NULL;
543 LIST_FOR_EACH_ENTRY( f, &package->folders, MSIFOLDER, entry )
545 path2 = resolve_folder(package, f->Directory, FALSE, TRUE, FALSE, NULL);
546 msi_free(path2);
549 LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry )
551 MSICOMPONENT *comp = file->Component;
552 LPWSTR p;
554 if (!comp)
555 continue;
557 p = resolve_folder(package, comp->Directory, FALSE, FALSE, FALSE, NULL);
558 msi_free(file->TargetPath);
560 file->TargetPath = build_directory_name(2, p, file->FileName);
561 msi_free(p);
564 msi_free(path);
566 return ERROR_SUCCESS;
569 /***********************************************************************
570 * MsiSetTargetPathW (MSI.@)
572 UINT WINAPI MsiSetTargetPathW(MSIHANDLE hInstall, LPCWSTR szFolder,
573 LPCWSTR szFolderPath)
575 MSIPACKAGE *package;
576 UINT ret;
578 TRACE("%s %s\n",debugstr_w(szFolder),debugstr_w(szFolderPath));
580 if ( !szFolder || !szFolderPath )
581 return ERROR_INVALID_PARAMETER;
583 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
584 if (!package)
586 HRESULT hr;
587 BSTR folder, path;
588 IWineMsiRemotePackage *remote_package;
590 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
591 if (!remote_package)
592 return ERROR_INVALID_HANDLE;
594 folder = SysAllocString( szFolder );
595 path = SysAllocString( szFolderPath );
596 if (!folder || !path)
598 SysFreeString(folder);
599 SysFreeString(path);
600 IWineMsiRemotePackage_Release( remote_package );
601 return ERROR_OUTOFMEMORY;
604 hr = IWineMsiRemotePackage_SetTargetPath( remote_package, folder, path );
606 SysFreeString(folder);
607 SysFreeString(path);
608 IWineMsiRemotePackage_Release( remote_package );
610 if (FAILED(hr))
612 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
613 return HRESULT_CODE(hr);
615 return ERROR_FUNCTION_FAILED;
618 return ERROR_SUCCESS;
621 ret = MSI_SetTargetPathW( package, szFolder, szFolderPath );
622 msiobj_release( &package->hdr );
623 return ret;
626 /***********************************************************************
627 * MsiGetMode (MSI.@)
629 * Returns an internal installer state (if it is running in a mode iRunMode)
631 * PARAMS
632 * hInstall [I] Handle to the installation
633 * hRunMode [I] Checking run mode
634 * MSIRUNMODE_ADMIN Administrative mode
635 * MSIRUNMODE_ADVERTISE Advertisement mode
636 * MSIRUNMODE_MAINTENANCE Maintenance mode
637 * MSIRUNMODE_ROLLBACKENABLED Rollback is enabled
638 * MSIRUNMODE_LOGENABLED Log file is writing
639 * MSIRUNMODE_OPERATIONS Operations in progress??
640 * MSIRUNMODE_REBOOTATEND We need to reboot after installation completed
641 * MSIRUNMODE_REBOOTNOW We need to reboot to continue the installation
642 * MSIRUNMODE_CABINET Files from cabinet are installed
643 * MSIRUNMODE_SOURCESHORTNAMES Long names in source files is suppressed
644 * MSIRUNMODE_TARGETSHORTNAMES Long names in destination files is suppressed
645 * MSIRUNMODE_RESERVED11 Reserved
646 * MSIRUNMODE_WINDOWS9X Running under Windows95/98
647 * MSIRUNMODE_ZAWENABLED Demand installation is supported
648 * MSIRUNMODE_RESERVED14 Reserved
649 * MSIRUNMODE_RESERVED15 Reserved
650 * MSIRUNMODE_SCHEDULED called from install script
651 * MSIRUNMODE_ROLLBACK called from rollback script
652 * MSIRUNMODE_COMMIT called from commit script
654 * RETURNS
655 * In the state: TRUE
656 * Not in the state: FALSE
659 BOOL WINAPI MsiGetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode)
661 MSIPACKAGE *package;
662 BOOL r = FALSE;
664 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
665 if (!package)
667 BOOL ret;
668 HRESULT hr;
669 IWineMsiRemotePackage *remote_package;
671 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
672 if (!remote_package)
673 return FALSE;
675 hr = IWineMsiRemotePackage_GetMode(remote_package, iRunMode, &ret);
676 IWineMsiRemotePackage_Release(remote_package);
678 if (hr == S_OK)
679 return ret;
681 return FALSE;
684 switch (iRunMode)
686 case MSIRUNMODE_WINDOWS9X:
687 if (GetVersion() & 0x80000000)
688 r = TRUE;
689 break;
691 case MSIRUNMODE_OPERATIONS:
692 case MSIRUNMODE_RESERVED11:
693 case MSIRUNMODE_RESERVED14:
694 case MSIRUNMODE_RESERVED15:
695 break;
697 case MSIRUNMODE_SCHEDULED:
698 r = package->scheduled_action_running;
699 break;
701 case MSIRUNMODE_ROLLBACK:
702 r = package->rollback_action_running;
703 break;
705 case MSIRUNMODE_COMMIT:
706 r = package->commit_action_running;
707 break;
709 default:
710 FIXME("%d %d\n", hInstall, iRunMode);
711 r = TRUE;
714 return r;
717 /***********************************************************************
718 * MsiSetMode (MSI.@)
720 UINT WINAPI MsiSetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode, BOOL fState)
722 MSIPACKAGE *package;
723 UINT r;
725 TRACE("%d %d %d\n", hInstall, iRunMode, fState);
727 package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
728 if (!package)
730 HRESULT hr;
731 IWineMsiRemotePackage *remote_package;
733 remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
734 if (!remote_package)
735 return FALSE;
737 hr = IWineMsiRemotePackage_SetMode( remote_package, iRunMode, fState );
738 IWineMsiRemotePackage_Release( remote_package );
740 if (FAILED(hr))
742 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
743 return HRESULT_CODE(hr);
745 return ERROR_FUNCTION_FAILED;
748 return ERROR_SUCCESS;
751 switch (iRunMode)
753 case MSIRUNMODE_REBOOTATEND:
754 package->need_reboot = 1;
755 r = ERROR_SUCCESS;
756 break;
758 case MSIRUNMODE_REBOOTNOW:
759 FIXME("unimplemented run mode\n");
760 r = ERROR_FUNCTION_FAILED;
761 break;
763 default:
764 r = ERROR_ACCESS_DENIED;
767 return r;
770 /***********************************************************************
771 * MsiSetFeatureStateA (MSI.@)
773 * According to the docs, when this is called it immediately recalculates
774 * all the component states as well
776 UINT WINAPI MsiSetFeatureStateA(MSIHANDLE hInstall, LPCSTR szFeature,
777 INSTALLSTATE iState)
779 LPWSTR szwFeature = NULL;
780 UINT rc;
782 szwFeature = strdupAtoW(szFeature);
784 if (!szwFeature)
785 return ERROR_FUNCTION_FAILED;
787 rc = MsiSetFeatureStateW(hInstall,szwFeature, iState);
789 msi_free(szwFeature);
791 return rc;
796 UINT WINAPI MSI_SetFeatureStateW(MSIPACKAGE* package, LPCWSTR szFeature,
797 INSTALLSTATE iState)
799 UINT rc = ERROR_SUCCESS;
800 MSIFEATURE *feature, *child;
802 TRACE("%s %i\n", debugstr_w(szFeature), iState);
804 feature = get_loaded_feature(package,szFeature);
805 if (!feature)
806 return ERROR_UNKNOWN_FEATURE;
808 if (iState == INSTALLSTATE_ADVERTISED &&
809 feature->Attributes & msidbFeatureAttributesDisallowAdvertise)
810 return ERROR_FUNCTION_FAILED;
812 msi_feature_set_state(package, feature, iState);
814 ACTION_UpdateComponentStates(package,szFeature);
816 /* update all the features that are children of this feature */
817 LIST_FOR_EACH_ENTRY( child, &package->features, MSIFEATURE, entry )
819 if (lstrcmpW(szFeature, child->Feature_Parent) == 0)
820 MSI_SetFeatureStateW(package, child->Feature, iState);
823 return rc;
826 /***********************************************************************
827 * MsiSetFeatureStateW (MSI.@)
829 UINT WINAPI MsiSetFeatureStateW(MSIHANDLE hInstall, LPCWSTR szFeature,
830 INSTALLSTATE iState)
832 MSIPACKAGE* package;
833 UINT rc = ERROR_SUCCESS;
835 TRACE("%s %i\n",debugstr_w(szFeature), iState);
837 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
838 if (!package)
840 HRESULT hr;
841 BSTR feature;
842 IWineMsiRemotePackage *remote_package;
844 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
845 if (!remote_package)
846 return ERROR_INVALID_HANDLE;
848 feature = SysAllocString(szFeature);
849 if (!feature)
851 IWineMsiRemotePackage_Release(remote_package);
852 return ERROR_OUTOFMEMORY;
855 hr = IWineMsiRemotePackage_SetFeatureState(remote_package, feature, iState);
857 SysFreeString(feature);
858 IWineMsiRemotePackage_Release(remote_package);
860 if (FAILED(hr))
862 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
863 return HRESULT_CODE(hr);
865 return ERROR_FUNCTION_FAILED;
868 return ERROR_SUCCESS;
871 rc = MSI_SetFeatureStateW(package,szFeature,iState);
873 msiobj_release( &package->hdr );
874 return rc;
877 /***********************************************************************
878 * MsiGetFeatureStateA (MSI.@)
880 UINT WINAPI MsiGetFeatureStateA(MSIHANDLE hInstall, LPCSTR szFeature,
881 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
883 LPWSTR szwFeature = NULL;
884 UINT rc;
886 szwFeature = strdupAtoW(szFeature);
888 rc = MsiGetFeatureStateW(hInstall,szwFeature,piInstalled, piAction);
890 msi_free( szwFeature);
892 return rc;
895 UINT MSI_GetFeatureStateW(MSIPACKAGE *package, LPCWSTR szFeature,
896 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
898 MSIFEATURE *feature;
900 feature = get_loaded_feature(package,szFeature);
901 if (!feature)
902 return ERROR_UNKNOWN_FEATURE;
904 if (piInstalled)
905 *piInstalled = feature->Installed;
907 if (piAction)
908 *piAction = feature->Action;
910 TRACE("returning %i %i\n", feature->Installed, feature->Action);
912 return ERROR_SUCCESS;
915 /***********************************************************************
916 * MsiGetFeatureStateW (MSI.@)
918 UINT WINAPI MsiGetFeatureStateW(MSIHANDLE hInstall, LPCWSTR szFeature,
919 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
921 MSIPACKAGE* package;
922 UINT ret;
924 TRACE("%d %s %p %p\n", hInstall, debugstr_w(szFeature), piInstalled, piAction);
926 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
927 if (!package)
929 HRESULT hr;
930 BSTR feature;
931 IWineMsiRemotePackage *remote_package;
933 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
934 if (!remote_package)
935 return ERROR_INVALID_HANDLE;
937 feature = SysAllocString(szFeature);
938 if (!feature)
940 IWineMsiRemotePackage_Release(remote_package);
941 return ERROR_OUTOFMEMORY;
944 hr = IWineMsiRemotePackage_GetFeatureState(remote_package, feature,
945 piInstalled, piAction);
947 SysFreeString(feature);
948 IWineMsiRemotePackage_Release(remote_package);
950 if (FAILED(hr))
952 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
953 return HRESULT_CODE(hr);
955 return ERROR_FUNCTION_FAILED;
958 return ERROR_SUCCESS;
961 ret = MSI_GetFeatureStateW(package, szFeature, piInstalled, piAction);
962 msiobj_release( &package->hdr );
963 return ret;
966 /***********************************************************************
967 * MsiGetFeatureCostA (MSI.@)
969 UINT WINAPI MsiGetFeatureCostA(MSIHANDLE hInstall, LPCSTR szFeature,
970 MSICOSTTREE iCostTree, INSTALLSTATE iState, LPINT piCost)
972 LPWSTR szwFeature = NULL;
973 UINT rc;
975 szwFeature = strdupAtoW(szFeature);
977 rc = MsiGetFeatureCostW(hInstall, szwFeature, iCostTree, iState, piCost);
979 msi_free(szwFeature);
981 return rc;
984 UINT MSI_GetFeatureCost(MSIPACKAGE *package, MSIFEATURE *feature,
985 MSICOSTTREE iCostTree, INSTALLSTATE iState,
986 LPINT piCost)
988 FIXME("(%s %i %i %p): not implemented yet\n",
989 debugstr_w(feature->Feature), iCostTree, iState, piCost);
990 if (piCost) *piCost = 0;
991 return ERROR_SUCCESS;
994 /***********************************************************************
995 * MsiGetFeatureCostW (MSI.@)
997 UINT WINAPI MsiGetFeatureCostW(MSIHANDLE hInstall, LPCWSTR szFeature,
998 MSICOSTTREE iCostTree, INSTALLSTATE iState, LPINT piCost)
1000 MSIPACKAGE *package;
1001 MSIFEATURE *feature;
1002 UINT ret;
1004 TRACE("(%d %s %i %i %p)\n", hInstall, debugstr_w(szFeature),
1005 iCostTree, iState, piCost);
1007 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
1008 if (!package)
1010 HRESULT hr;
1011 BSTR feature;
1012 IWineMsiRemotePackage *remote_package;
1014 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
1015 if (!remote_package)
1016 return ERROR_INVALID_HANDLE;
1018 feature = SysAllocString(szFeature);
1019 if (!feature)
1021 IWineMsiRemotePackage_Release(remote_package);
1022 return ERROR_OUTOFMEMORY;
1025 hr = IWineMsiRemotePackage_GetFeatureCost(remote_package, feature,
1026 iCostTree, iState, piCost);
1028 SysFreeString(feature);
1029 IWineMsiRemotePackage_Release(remote_package);
1031 if (FAILED(hr))
1033 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1034 return HRESULT_CODE(hr);
1036 return ERROR_FUNCTION_FAILED;
1039 return ERROR_SUCCESS;
1042 feature = get_loaded_feature(package, szFeature);
1044 if (feature)
1045 ret = MSI_GetFeatureCost(package, feature, iCostTree, iState, piCost);
1046 else
1047 ret = ERROR_UNKNOWN_FEATURE;
1049 msiobj_release( &package->hdr );
1050 return ret;
1053 /***********************************************************************
1054 * MsiSetComponentStateA (MSI.@)
1056 UINT WINAPI MsiSetComponentStateA(MSIHANDLE hInstall, LPCSTR szComponent,
1057 INSTALLSTATE iState)
1059 UINT rc;
1060 LPWSTR szwComponent = strdupAtoW(szComponent);
1062 rc = MsiSetComponentStateW(hInstall, szwComponent, iState);
1064 msi_free(szwComponent);
1066 return rc;
1069 /***********************************************************************
1070 * MsiGetComponentStateA (MSI.@)
1072 UINT WINAPI MsiGetComponentStateA(MSIHANDLE hInstall, LPCSTR szComponent,
1073 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
1075 LPWSTR szwComponent= NULL;
1076 UINT rc;
1078 szwComponent= strdupAtoW(szComponent);
1080 rc = MsiGetComponentStateW(hInstall,szwComponent,piInstalled, piAction);
1082 msi_free( szwComponent);
1084 return rc;
1087 static UINT MSI_SetComponentStateW(MSIPACKAGE *package, LPCWSTR szComponent,
1088 INSTALLSTATE iState)
1090 MSICOMPONENT *comp;
1092 TRACE("%p %s %d\n", package, debugstr_w(szComponent), iState);
1094 comp = get_loaded_component(package, szComponent);
1095 if (!comp)
1096 return ERROR_UNKNOWN_COMPONENT;
1098 comp->Installed = iState;
1100 return ERROR_SUCCESS;
1103 UINT MSI_GetComponentStateW(MSIPACKAGE *package, LPCWSTR szComponent,
1104 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
1106 MSICOMPONENT *comp;
1108 TRACE("%p %s %p %p\n", package, debugstr_w(szComponent),
1109 piInstalled, piAction);
1111 comp = get_loaded_component(package,szComponent);
1112 if (!comp)
1113 return ERROR_UNKNOWN_COMPONENT;
1115 if (piInstalled)
1116 *piInstalled = comp->Installed;
1118 if (piAction)
1119 *piAction = comp->Action;
1121 TRACE("states (%i, %i)\n", comp->Installed, comp->Action );
1123 return ERROR_SUCCESS;
1126 /***********************************************************************
1127 * MsiSetComponentStateW (MSI.@)
1129 UINT WINAPI MsiSetComponentStateW(MSIHANDLE hInstall, LPCWSTR szComponent,
1130 INSTALLSTATE iState)
1132 MSIPACKAGE* package;
1133 UINT ret;
1135 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
1136 if (!package)
1138 HRESULT hr;
1139 BSTR component;
1140 IWineMsiRemotePackage *remote_package;
1142 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
1143 if (!remote_package)
1144 return ERROR_INVALID_HANDLE;
1146 component = SysAllocString(szComponent);
1147 if (!component)
1149 IWineMsiRemotePackage_Release(remote_package);
1150 return ERROR_OUTOFMEMORY;
1153 hr = IWineMsiRemotePackage_SetComponentState(remote_package, component, iState);
1155 SysFreeString(component);
1156 IWineMsiRemotePackage_Release(remote_package);
1158 if (FAILED(hr))
1160 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1161 return HRESULT_CODE(hr);
1163 return ERROR_FUNCTION_FAILED;
1166 return ERROR_SUCCESS;
1169 ret = MSI_SetComponentStateW(package, szComponent, iState);
1170 msiobj_release(&package->hdr);
1171 return ret;
1174 /***********************************************************************
1175 * MsiGetComponentStateW (MSI.@)
1177 UINT WINAPI MsiGetComponentStateW(MSIHANDLE hInstall, LPCWSTR szComponent,
1178 INSTALLSTATE *piInstalled, INSTALLSTATE *piAction)
1180 MSIPACKAGE* package;
1181 UINT ret;
1183 TRACE("%d %s %p %p\n", hInstall, debugstr_w(szComponent),
1184 piInstalled, piAction);
1186 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
1187 if (!package)
1189 HRESULT hr;
1190 BSTR component;
1191 IWineMsiRemotePackage *remote_package;
1193 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
1194 if (!remote_package)
1195 return ERROR_INVALID_HANDLE;
1197 component = SysAllocString(szComponent);
1198 if (!component)
1200 IWineMsiRemotePackage_Release(remote_package);
1201 return ERROR_OUTOFMEMORY;
1204 hr = IWineMsiRemotePackage_GetComponentState(remote_package, component,
1205 piInstalled, piAction);
1207 SysFreeString(component);
1208 IWineMsiRemotePackage_Release(remote_package);
1210 if (FAILED(hr))
1212 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1213 return HRESULT_CODE(hr);
1215 return ERROR_FUNCTION_FAILED;
1218 return ERROR_SUCCESS;
1221 ret = MSI_GetComponentStateW( package, szComponent, piInstalled, piAction);
1222 msiobj_release( &package->hdr );
1223 return ret;
1226 /***********************************************************************
1227 * MsiGetLanguage (MSI.@)
1229 LANGID WINAPI MsiGetLanguage(MSIHANDLE hInstall)
1231 MSIPACKAGE* package;
1232 LANGID langid;
1233 static const WCHAR szProductLanguage[] =
1234 {'P','r','o','d','u','c','t','L','a','n','g','u','a','g','e',0};
1236 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
1237 if (!package)
1239 HRESULT hr;
1240 LANGID lang;
1241 IWineMsiRemotePackage *remote_package;
1243 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
1244 if (!remote_package)
1245 return ERROR_INVALID_HANDLE;
1247 hr = IWineMsiRemotePackage_GetLanguage(remote_package, &lang);
1249 if (SUCCEEDED(hr))
1250 return lang;
1252 return 0;
1255 langid = msi_get_property_int( package, szProductLanguage, 0 );
1256 msiobj_release( &package->hdr );
1257 return langid;
1260 UINT MSI_SetInstallLevel( MSIPACKAGE *package, int iInstallLevel )
1262 static const WCHAR szInstallLevel[] = {
1263 'I','N','S','T','A','L','L','L','E','V','E','L',0 };
1264 static const WCHAR fmt[] = { '%','d',0 };
1265 WCHAR level[6];
1266 UINT r;
1268 TRACE("%p %i\n", package, iInstallLevel);
1270 if (iInstallLevel > 32767)
1271 return ERROR_INVALID_PARAMETER;
1273 if (iInstallLevel < 1)
1274 return MSI_SetFeatureStates( package );
1276 sprintfW( level, fmt, iInstallLevel );
1277 r = MSI_SetPropertyW( package, szInstallLevel, level );
1278 if ( r == ERROR_SUCCESS )
1279 r = MSI_SetFeatureStates( package );
1281 return r;
1284 /***********************************************************************
1285 * MsiSetInstallLevel (MSI.@)
1287 UINT WINAPI MsiSetInstallLevel(MSIHANDLE hInstall, int iInstallLevel)
1289 MSIPACKAGE* package;
1290 UINT r;
1292 TRACE("%d %i\n", hInstall, iInstallLevel);
1294 package = msihandle2msiinfo(hInstall, MSIHANDLETYPE_PACKAGE);
1295 if (!package)
1297 HRESULT hr;
1298 IWineMsiRemotePackage *remote_package;
1300 remote_package = (IWineMsiRemotePackage *)msi_get_remote(hInstall);
1301 if (!remote_package)
1302 return ERROR_INVALID_HANDLE;
1304 hr = IWineMsiRemotePackage_SetInstallLevel(remote_package, iInstallLevel);
1306 IWineMsiRemotePackage_Release(remote_package);
1308 if (FAILED(hr))
1310 if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
1311 return HRESULT_CODE(hr);
1313 return ERROR_FUNCTION_FAILED;
1316 return ERROR_SUCCESS;
1319 r = MSI_SetInstallLevel( package, iInstallLevel );
1321 msiobj_release( &package->hdr );
1323 return r;
1326 /***********************************************************************
1327 * MsiGetFeatureValidStatesW (MSI.@)
1329 UINT WINAPI MsiGetFeatureValidStatesW(MSIHANDLE hInstall, LPCWSTR szFeature,
1330 LPDWORD pInstallState)
1332 if(pInstallState) *pInstallState = 1<<INSTALLSTATE_LOCAL;
1333 FIXME("%d %s %p stub returning %d\n",
1334 hInstall, debugstr_w(szFeature), pInstallState, pInstallState ? *pInstallState : 0);
1336 return ERROR_SUCCESS;
1339 /***********************************************************************
1340 * MsiGetFeatureValidStatesA (MSI.@)
1342 UINT WINAPI MsiGetFeatureValidStatesA(MSIHANDLE hInstall, LPCSTR szFeature,
1343 LPDWORD pInstallState)
1345 UINT ret;
1346 LPWSTR szwFeature = strdupAtoW(szFeature);
1348 ret = MsiGetFeatureValidStatesW(hInstall, szwFeature, pInstallState);
1350 msi_free(szwFeature);
1352 return ret;