Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Implementation of the Microsoft Installer (msi.dll) |
| 3 | * |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 4 | * Copyright 2004,2005 Aric Stewart for CodeWeavers |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | /* |
Mike McCormack | 6e2bca3 | 2004-07-04 00:25:00 +0000 | [diff] [blame] | 22 | * Pages I need |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 23 | * |
| 24 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/installexecutesequence_table.asp |
| 25 | |
| 26 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/standard_actions_reference.asp |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 27 | */ |
| 28 | |
| 29 | #include <stdarg.h> |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 30 | |
Francois Gouget | 486d020 | 2004-10-07 03:06:48 +0000 | [diff] [blame] | 31 | #define COBJMACROS |
| 32 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 33 | #include "windef.h" |
| 34 | #include "winbase.h" |
| 35 | #include "winerror.h" |
| 36 | #include "winreg.h" |
| 37 | #include "wine/debug.h" |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 38 | #include "msidefs.h" |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 39 | #include "msipriv.h" |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 40 | #include "winuser.h" |
| 41 | #include "shlobj.h" |
| 42 | #include "wine/unicode.h" |
Steven Edwards | 98efef1 | 2005-04-11 16:10:33 +0000 | [diff] [blame] | 43 | #include "winver.h" |
Aric Stewart | 54c67dd | 2005-01-25 20:17:09 +0000 | [diff] [blame] | 44 | #include "action.h" |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 45 | |
Aric Stewart | bd1bbc1 | 2005-01-03 20:00:13 +0000 | [diff] [blame] | 46 | #define REG_PROGRESS_VALUE 13200 |
| 47 | #define COMPONENT_PROGRESS_VALUE 24000 |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 48 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 49 | WINE_DEFAULT_DEBUG_CHANNEL(msi); |
| 50 | |
| 51 | /* |
| 52 | * Prototypes |
| 53 | */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 54 | static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran); |
| 55 | static UINT ACTION_ProcessUISequence(MSIPACKAGE *package); |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 56 | static UINT ACTION_PerformActionSequence(MSIPACKAGE *package, UINT seq, BOOL UI); |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 57 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 58 | /* |
| 59 | * consts and values used |
| 60 | */ |
Juan Lang | 014ad3b | 2005-03-01 10:41:52 +0000 | [diff] [blame] | 61 | static const WCHAR c_colon[] = {'C',':','\\',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 62 | |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 63 | static const WCHAR szCreateFolders[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 64 | {'C','r','e','a','t','e','F','o','l','d','e','r','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 65 | static const WCHAR szCostFinalize[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 66 | {'C','o','s','t','F','i','n','a','l','i','z','e',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 67 | const WCHAR szInstallFiles[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 68 | {'I','n','s','t','a','l','l','F','i','l','e','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 69 | const WCHAR szDuplicateFiles[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 70 | {'D','u','p','l','i','c','a','t','e','F','i','l','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 71 | static const WCHAR szWriteRegistryValues[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 72 | {'W','r','i','t','e','R','e','g','i','s','t','r','y', |
| 73 | 'V','a','l','u','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 74 | static const WCHAR szCostInitialize[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 75 | {'C','o','s','t','I','n','i','t','i','a','l','i','z','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 76 | static const WCHAR szFileCost[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 77 | {'F','i','l','e','C','o','s','t',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 78 | static const WCHAR szInstallInitialize[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 79 | {'I','n','s','t','a','l','l','I','n','i','t','i','a','l','i','z','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 80 | static const WCHAR szInstallValidate[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 81 | {'I','n','s','t','a','l','l','V','a','l','i','d','a','t','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 82 | static const WCHAR szLaunchConditions[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 83 | {'L','a','u','n','c','h','C','o','n','d','i','t','i','o','n','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 84 | static const WCHAR szProcessComponents[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 85 | {'P','r','o','c','e','s','s','C','o','m','p','o','n','e','n','t','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 86 | static const WCHAR szRegisterTypeLibraries[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 87 | {'R','e','g','i','s','t','e','r','T','y','p','e', |
| 88 | 'L','i','b','r','a','r','i','e','s',0}; |
Aric Stewart | db982e2 | 2005-06-16 15:51:44 +0000 | [diff] [blame] | 89 | const WCHAR szRegisterClassInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 90 | {'R','e','g','i','s','t','e','r','C','l','a','s','s','I','n','f','o',0}; |
Aric Stewart | db982e2 | 2005-06-16 15:51:44 +0000 | [diff] [blame] | 91 | const WCHAR szRegisterProgIdInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 92 | {'R','e','g','i','s','t','e','r','P','r','o','g','I','d','I','n','f','o',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 93 | static const WCHAR szCreateShortcuts[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 94 | {'C','r','e','a','t','e','S','h','o','r','t','c','u','t','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 95 | static const WCHAR szPublishProduct[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 96 | {'P','u','b','l','i','s','h','P','r','o','d','u','c','t',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 97 | static const WCHAR szWriteIniValues[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 98 | {'W','r','i','t','e','I','n','i','V','a','l','u','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 99 | static const WCHAR szSelfRegModules[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 100 | {'S','e','l','f','R','e','g','M','o','d','u','l','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 101 | static const WCHAR szPublishFeatures[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 102 | {'P','u','b','l','i','s','h','F','e','a','t','u','r','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 103 | static const WCHAR szRegisterProduct[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 104 | {'R','e','g','i','s','t','e','r','P','r','o','d','u','c','t',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 105 | static const WCHAR szInstallExecute[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 106 | {'I','n','s','t','a','l','l','E','x','e','c','u','t','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 107 | static const WCHAR szInstallExecuteAgain[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 108 | {'I','n','s','t','a','l','l','E','x','e','c','u','t','e', |
| 109 | 'A','g','a','i','n',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 110 | static const WCHAR szInstallFinalize[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 111 | {'I','n','s','t','a','l','l','F','i','n','a','l','i','z','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 112 | static const WCHAR szForceReboot[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 113 | {'F','o','r','c','e','R','e','b','o','o','t',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 114 | static const WCHAR szResolveSource[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 115 | {'R','e','s','o','l','v','e','S','o','u','r','c','e',0}; |
Aric Stewart | db982e2 | 2005-06-16 15:51:44 +0000 | [diff] [blame] | 116 | const WCHAR szAppSearch[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 117 | {'A','p','p','S','e','a','r','c','h',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 118 | static const WCHAR szAllocateRegistrySpace[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 119 | {'A','l','l','o','c','a','t','e','R','e','g','i','s','t','r','y', |
| 120 | 'S','p','a','c','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 121 | static const WCHAR szBindImage[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 122 | {'B','i','n','d','I','m','a','g','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 123 | static const WCHAR szCCPSearch[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 124 | {'C','C','P','S','e','a','r','c','h',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 125 | static const WCHAR szDeleteServices[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 126 | {'D','e','l','e','t','e','S','e','r','v','i','c','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 127 | static const WCHAR szDisableRollback[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 128 | {'D','i','s','a','b','l','e','R','o','l','l','b','a','c','k',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 129 | static const WCHAR szExecuteAction[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 130 | {'E','x','e','c','u','t','e','A','c','t','i','o','n',0}; |
Aric Stewart | db982e2 | 2005-06-16 15:51:44 +0000 | [diff] [blame] | 131 | const WCHAR szFindRelatedProducts[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 132 | {'F','i','n','d','R','e','l','a','t','e','d', |
| 133 | 'P','r','o','d','u','c','t','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 134 | static const WCHAR szInstallAdminPackage[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 135 | {'I','n','s','t','a','l','l','A','d','m','i','n', |
| 136 | 'P','a','c','k','a','g','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 137 | static const WCHAR szInstallSFPCatalogFile[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 138 | {'I','n','s','t','a','l','l','S','F','P','C','a','t','a','l','o','g', |
| 139 | 'F','i','l','e',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 140 | static const WCHAR szIsolateComponents[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 141 | {'I','s','o','l','a','t','e','C','o','m','p','o','n','e','n','t','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 142 | const WCHAR szMigrateFeatureStates[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 143 | {'M','i','g','r','a','t','e','F','e','a','t','u','r','e', |
| 144 | 'S','t','a','t','e','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 145 | const WCHAR szMoveFiles[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 146 | {'M','o','v','e','F','i','l','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 147 | static const WCHAR szMsiPublishAssemblies[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 148 | {'M','s','i','P','u','b','l','i','s','h', |
| 149 | 'A','s','s','e','m','b','l','i','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 150 | static const WCHAR szMsiUnpublishAssemblies[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 151 | {'M','s','i','U','n','p','u','b','l','i','s','h', |
| 152 | 'A','s','s','e','m','b','l','i','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 153 | static const WCHAR szInstallODBC[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 154 | {'I','n','s','t','a','l','l','O','D','B','C',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 155 | static const WCHAR szInstallServices[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 156 | {'I','n','s','t','a','l','l','S','e','r','v','i','c','e','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 157 | const WCHAR szPatchFiles[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 158 | {'P','a','t','c','h','F','i','l','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 159 | static const WCHAR szPublishComponents[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 160 | {'P','u','b','l','i','s','h','C','o','m','p','o','n','e','n','t','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 161 | static const WCHAR szRegisterComPlus[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 162 | {'R','e','g','i','s','t','e','r','C','o','m','P','l','u','s',0}; |
Aric Stewart | db982e2 | 2005-06-16 15:51:44 +0000 | [diff] [blame] | 163 | const WCHAR szRegisterExtensionInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 164 | {'R','e','g','i','s','t','e','r','E','x','t','e','n','s','i','o','n', |
| 165 | 'I','n','f','o',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 166 | static const WCHAR szRegisterFonts[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 167 | {'R','e','g','i','s','t','e','r','F','o','n','t','s',0}; |
Aric Stewart | db982e2 | 2005-06-16 15:51:44 +0000 | [diff] [blame] | 168 | const WCHAR szRegisterMIMEInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 169 | {'R','e','g','i','s','t','e','r','M','I','M','E','I','n','f','o',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 170 | static const WCHAR szRegisterUser[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 171 | {'R','e','g','i','s','t','e','r','U','s','e','r',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 172 | const WCHAR szRemoveDuplicateFiles[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 173 | {'R','e','m','o','v','e','D','u','p','l','i','c','a','t','e', |
| 174 | 'F','i','l','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 175 | static const WCHAR szRemoveEnvironmentStrings[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 176 | {'R','e','m','o','v','e','E','n','v','i','r','o','n','m','e','n','t', |
| 177 | 'S','t','r','i','n','g','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 178 | const WCHAR szRemoveExistingProducts[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 179 | {'R','e','m','o','v','e','E','x','i','s','t','i','n','g', |
| 180 | 'P','r','o','d','u','c','t','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 181 | const WCHAR szRemoveFiles[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 182 | {'R','e','m','o','v','e','F','i','l','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 183 | static const WCHAR szRemoveFolders[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 184 | {'R','e','m','o','v','e','F','o','l','d','e','r','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 185 | static const WCHAR szRemoveIniValues[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 186 | {'R','e','m','o','v','e','I','n','i','V','a','l','u','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 187 | static const WCHAR szRemoveODBC[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 188 | {'R','e','m','o','v','e','O','D','B','C',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 189 | static const WCHAR szRemoveRegistryValues[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 190 | {'R','e','m','o','v','e','R','e','g','i','s','t','r','y', |
| 191 | 'V','a','l','u','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 192 | static const WCHAR szRemoveShortcuts[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 193 | {'R','e','m','o','v','e','S','h','o','r','t','c','u','t','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 194 | static const WCHAR szRMCCPSearch[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 195 | {'R','M','C','C','P','S','e','a','r','c','h',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 196 | static const WCHAR szScheduleReboot[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 197 | {'S','c','h','e','d','u','l','e','R','e','b','o','o','t',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 198 | static const WCHAR szSelfUnregModules[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 199 | {'S','e','l','f','U','n','r','e','g','M','o','d','u','l','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 200 | static const WCHAR szSetODBCFolders[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 201 | {'S','e','t','O','D','B','C','F','o','l','d','e','r','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 202 | static const WCHAR szStartServices[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 203 | {'S','t','a','r','t','S','e','r','v','i','c','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 204 | static const WCHAR szStopServices[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 205 | {'S','t','o','p','S','e','r','v','i','c','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 206 | static const WCHAR szUnpublishComponents[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 207 | {'U','n','p','u','b','l','i','s','h', |
| 208 | 'C','o','m','p','o','n','e','n','t','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 209 | static const WCHAR szUnpublishFeatures[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 210 | {'U','n','p','u','b','l','i','s','h','F','e','a','t','u','r','e','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 211 | const WCHAR szUnregisterClassInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 212 | {'U','n','r','e','g','i','s','t','e','r','C','l','a','s','s', |
| 213 | 'I','n','f','o',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 214 | static const WCHAR szUnregisterComPlus[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 215 | {'U','n','r','e','g','i','s','t','e','r','C','o','m','P','l','u','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 216 | const WCHAR szUnregisterExtensionInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 217 | {'U','n','r','e','g','i','s','t','e','r', |
| 218 | 'E','x','t','e','n','s','i','o','n','I','n','f','o',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 219 | static const WCHAR szUnregisterFonts[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 220 | {'U','n','r','e','g','i','s','t','e','r','F','o','n','t','s',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 221 | const WCHAR szUnregisterMIMEInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 222 | {'U','n','r','e','g','i','s','t','e','r','M','I','M','E','I','n','f','o',0}; |
Aric Stewart | c668952 | 2005-06-17 20:56:55 +0000 | [diff] [blame] | 223 | const WCHAR szUnregisterProgIdInfo[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 224 | {'U','n','r','e','g','i','s','t','e','r','P','r','o','g','I','d', |
| 225 | 'I','n','f','o',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 226 | static const WCHAR szUnregisterTypeLibraries[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 227 | {'U','n','r','e','g','i','s','t','e','r','T','y','p','e', |
| 228 | 'L','i','b','r','a','r','i','e','s',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 229 | static const WCHAR szValidateProductID[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 230 | {'V','a','l','i','d','a','t','e','P','r','o','d','u','c','t','I','D',0}; |
Mike McCormack | 9ba8ba3 | 2005-10-30 19:04:26 +0000 | [diff] [blame] | 231 | static const WCHAR szWriteEnvironmentStrings[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 232 | {'W','r','i','t','e','E','n','v','i','r','o','n','m','e','n','t', |
| 233 | 'S','t','r','i','n','g','s',0}; |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 234 | |
Mike McCormack | 3b95515 | 2005-09-28 18:10:44 +0000 | [diff] [blame] | 235 | /* action handlers */ |
| 236 | typedef UINT (*STANDARDACTIONHANDLER)(MSIPACKAGE*); |
| 237 | |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 238 | struct _actions { |
| 239 | LPCWSTR action; |
| 240 | STANDARDACTIONHANDLER handler; |
| 241 | }; |
| 242 | |
Mike McCormack | 3b95515 | 2005-09-28 18:10:44 +0000 | [diff] [blame] | 243 | static struct _actions StandardActions[]; |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 244 | |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 245 | |
| 246 | /******************************************************** |
| 247 | * helper functions |
| 248 | ********************************************************/ |
| 249 | |
Alexandre Julliard | d757bfe | 2005-05-27 09:11:18 +0000 | [diff] [blame] | 250 | static void ce_actiontext(MSIPACKAGE* package, LPCWSTR action) |
| 251 | { |
| 252 | static const WCHAR szActionText[] = |
| 253 | {'A','c','t','i','o','n','T','e','x','t',0}; |
| 254 | MSIRECORD *row; |
| 255 | |
| 256 | row = MSI_CreateRecord(1); |
| 257 | MSI_RecordSetStringW(row,1,action); |
| 258 | ControlEvent_FireSubscribedEvent(package,szActionText, row); |
| 259 | msiobj_release(&row->hdr); |
Aric Stewart | 51cf7d1 | 2005-01-03 14:29:09 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 262 | static void ui_actionstart(MSIPACKAGE *package, LPCWSTR action) |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 263 | { |
| 264 | static const WCHAR template_s[]= |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 265 | {'A','c','t','i','o','n',' ','%','s',':',' ','%','s','.',' ', '%','s', |
| 266 | '.',0}; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 267 | static const WCHAR format[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 268 | {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0}; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 269 | static const WCHAR Query_t[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 270 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 271 | '`','A','c','t','i','o', 'n','T','e','x','t','`',' ', |
| 272 | 'W','H','E','R','E', ' ','`','A','c','t','i','o','n','`',' ','=', |
| 273 | ' ','\'','%','s','\'',0}; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 274 | WCHAR message[1024]; |
| 275 | WCHAR timet[0x100]; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 276 | MSIRECORD * row = 0; |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 277 | LPCWSTR ActionText; |
Aric Stewart | 43ec0a4 | 2005-08-25 09:50:08 +0000 | [diff] [blame] | 278 | LPWSTR deformated; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 279 | |
| 280 | GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100); |
| 281 | |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 282 | row = MSI_QueryGetRecord( package->db, Query_t, action ); |
| 283 | if (!row) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 284 | return; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 285 | |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 286 | ActionText = MSI_RecordGetString(row,2); |
Aric Stewart | 43ec0a4 | 2005-08-25 09:50:08 +0000 | [diff] [blame] | 287 | deformat_string(package, ActionText, &deformated); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 288 | |
Aric Stewart | 43ec0a4 | 2005-08-25 09:50:08 +0000 | [diff] [blame] | 289 | sprintfW(message,template_s,timet,action,deformated); |
| 290 | ce_actiontext(package, deformated); |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 291 | msiobj_release(&row->hdr); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 292 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 293 | row = MSI_CreateRecord(1); |
| 294 | MSI_RecordSetStringW(row,1,message); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 295 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 296 | MSI_ProcessMessage(package, INSTALLMESSAGE_ACTIONSTART, row); |
| 297 | msiobj_release(&row->hdr); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 298 | msi_free(deformated); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 299 | } |
| 300 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 301 | static void ui_actioninfo(MSIPACKAGE *package, LPCWSTR action, BOOL start, |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 302 | UINT rc) |
| 303 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 304 | MSIRECORD * row; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 305 | static const WCHAR template_s[]= |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 306 | {'A','c','t','i','o','n',' ','s','t','a','r','t',' ','%','s',':',' ', |
| 307 | '%','s', '.',0}; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 308 | static const WCHAR template_e[]= |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 309 | {'A','c','t','i','o','n',' ','e','n','d','e','d',' ','%','s',':',' ', |
| 310 | '%','s', '.',' ','R','e','t','u','r','n',' ','v','a','l','u','e',' ', |
| 311 | '%','i','.',0}; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 312 | static const WCHAR format[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 313 | {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0}; |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 314 | WCHAR message[1024]; |
| 315 | WCHAR timet[0x100]; |
| 316 | |
| 317 | GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100); |
| 318 | if (start) |
| 319 | sprintfW(message,template_s,timet,action); |
| 320 | else |
| 321 | sprintfW(message,template_e,timet,action,rc); |
| 322 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 323 | row = MSI_CreateRecord(1); |
| 324 | MSI_RecordSetStringW(row,1,message); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 325 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 326 | MSI_ProcessMessage(package, INSTALLMESSAGE_INFO, row); |
| 327 | msiobj_release(&row->hdr); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 330 | static int msi_get_property_int( MSIPACKAGE *package, LPCWSTR prop, int def ) |
| 331 | { |
| 332 | LPWSTR str = msi_dup_property( package, prop ); |
| 333 | int val = str ? atoiW( str ) : def; |
| 334 | msi_free( str ); |
| 335 | return val; |
| 336 | } |
| 337 | |
Mike McCormack | e345222 | 2005-09-28 15:12:32 +0000 | [diff] [blame] | 338 | static UINT msi_parse_command_line( MSIPACKAGE *package, LPCWSTR szCommandLine ) |
| 339 | { |
| 340 | LPCWSTR ptr,ptr2; |
| 341 | BOOL quote; |
| 342 | DWORD len; |
| 343 | LPWSTR prop = NULL, val = NULL; |
| 344 | |
| 345 | if (!szCommandLine) |
| 346 | return ERROR_SUCCESS; |
| 347 | |
| 348 | ptr = szCommandLine; |
| 349 | |
| 350 | while (*ptr) |
| 351 | { |
| 352 | if (*ptr==' ') |
| 353 | { |
| 354 | ptr++; |
| 355 | continue; |
| 356 | } |
| 357 | |
| 358 | TRACE("Looking at %s\n",debugstr_w(ptr)); |
| 359 | |
| 360 | ptr2 = strchrW(ptr,'='); |
| 361 | if (!ptr2) |
| 362 | { |
| 363 | ERR("command line contains unknown string : %s\n", debugstr_w(ptr)); |
| 364 | break; |
| 365 | } |
| 366 | |
| 367 | quote = FALSE; |
| 368 | |
| 369 | len = ptr2-ptr; |
| 370 | prop = msi_alloc((len+1)*sizeof(WCHAR)); |
| 371 | memcpy(prop,ptr,len*sizeof(WCHAR)); |
| 372 | prop[len]=0; |
| 373 | ptr2++; |
| 374 | |
| 375 | len = 0; |
| 376 | ptr = ptr2; |
| 377 | while (*ptr && (quote || (!quote && *ptr!=' '))) |
| 378 | { |
| 379 | if (*ptr == '"') |
| 380 | quote = !quote; |
| 381 | ptr++; |
| 382 | len++; |
| 383 | } |
| 384 | |
| 385 | if (*ptr2=='"') |
| 386 | { |
| 387 | ptr2++; |
| 388 | len -= 2; |
| 389 | } |
| 390 | val = msi_alloc((len+1)*sizeof(WCHAR)); |
| 391 | memcpy(val,ptr2,len*sizeof(WCHAR)); |
| 392 | val[len] = 0; |
| 393 | |
| 394 | if (lstrlenW(prop) > 0) |
| 395 | { |
| 396 | TRACE("Found commandline property (%s) = (%s)\n", |
| 397 | debugstr_w(prop), debugstr_w(val)); |
| 398 | MSI_SetPropertyW(package,prop,val); |
| 399 | } |
| 400 | msi_free(val); |
| 401 | msi_free(prop); |
| 402 | } |
| 403 | |
| 404 | return ERROR_SUCCESS; |
| 405 | } |
| 406 | |
Mike McCormack | 965a72a | 2005-10-26 12:06:21 +0000 | [diff] [blame] | 407 | |
| 408 | static LPWSTR* msi_split_string( LPCWSTR str, WCHAR sep ) |
| 409 | { |
| 410 | LPWSTR p, *ret = NULL; |
| 411 | UINT count = 0; |
| 412 | |
| 413 | if (!str) |
| 414 | return ret; |
| 415 | |
| 416 | /* count the number of substrings */ |
| 417 | for ( p = (LPWSTR)str, count = 0; p; count++ ) |
| 418 | { |
| 419 | p = strchrW( p, sep ); |
| 420 | if (p) |
| 421 | p++; |
| 422 | } |
| 423 | |
| 424 | /* allocate space for an array of substring pointers and the substrings */ |
| 425 | ret = msi_alloc( (count+1) * sizeof (LPWSTR) + |
| 426 | (lstrlenW(str)+1) * sizeof(WCHAR) ); |
| 427 | if (!ret) |
| 428 | return ret; |
| 429 | |
| 430 | /* copy the string and set the pointers */ |
| 431 | p = (LPWSTR) &ret[count+1]; |
| 432 | lstrcpyW( p, str ); |
| 433 | for( count = 0; (ret[count] = p); count++ ) |
| 434 | { |
| 435 | p = strchrW( p, sep ); |
| 436 | if (p) |
| 437 | *p++ = 0; |
| 438 | } |
| 439 | |
| 440 | return ret; |
| 441 | } |
| 442 | |
| 443 | static UINT msi_apply_substorage_transform( MSIPACKAGE *package, |
| 444 | MSIDATABASE *patch_db, LPCWSTR name ) |
| 445 | { |
| 446 | UINT ret = ERROR_FUNCTION_FAILED; |
| 447 | IStorage *stg = NULL; |
| 448 | HRESULT r; |
| 449 | |
| 450 | TRACE("%p %s\n", package, debugstr_w(name) ); |
| 451 | |
| 452 | if (*name++ != ':') |
| 453 | { |
| 454 | ERR("expected a colon in %s\n", debugstr_w(name)); |
| 455 | return ERROR_FUNCTION_FAILED; |
| 456 | } |
| 457 | |
| 458 | r = IStorage_OpenStorage( patch_db->storage, name, NULL, STGM_SHARE_EXCLUSIVE, NULL, 0, &stg ); |
| 459 | if (SUCCEEDED(r)) |
| 460 | { |
Mike McCormack | f8fef6e | 2005-10-26 13:56:33 +0000 | [diff] [blame] | 461 | ret = msi_table_apply_transform( package->db, stg ); |
Mike McCormack | 965a72a | 2005-10-26 12:06:21 +0000 | [diff] [blame] | 462 | IStorage_Release( stg ); |
| 463 | ret = ERROR_SUCCESS; |
| 464 | } |
| 465 | else |
| 466 | ERR("failed to open substorage %s\n", debugstr_w(name)); |
| 467 | |
| 468 | return ret; |
| 469 | } |
| 470 | |
| 471 | static UINT msi_check_patch_applicable( MSIPACKAGE *package, MSISUMMARYINFO *si ) |
| 472 | { |
| 473 | static const WCHAR szProdID[] = { 'P','r','o','d','u','c','t','I','D',0 }; |
| 474 | LPWSTR guid_list, *guids, product_id; |
| 475 | UINT i, ret = ERROR_FUNCTION_FAILED; |
| 476 | |
| 477 | product_id = msi_dup_property( package, szProdID ); |
| 478 | if (!product_id) |
| 479 | { |
| 480 | /* FIXME: the property ProductID should be written into the DB somewhere */ |
| 481 | ERR("no product ID to check\n"); |
| 482 | return ERROR_SUCCESS; |
| 483 | } |
| 484 | |
| 485 | guid_list = msi_suminfo_dup_string( si, PID_TEMPLATE ); |
| 486 | guids = msi_split_string( guid_list, ';' ); |
| 487 | for ( i = 0; guids[i] && ret != ERROR_SUCCESS; i++ ) |
| 488 | { |
| 489 | if (!lstrcmpW( guids[i], product_id )) |
| 490 | ret = ERROR_SUCCESS; |
| 491 | } |
| 492 | msi_free( guids ); |
| 493 | msi_free( guid_list ); |
| 494 | msi_free( product_id ); |
| 495 | |
| 496 | return ret; |
| 497 | } |
| 498 | |
| 499 | static UINT msi_parse_patch_summary( MSIPACKAGE *package, MSIDATABASE *patch_db ) |
| 500 | { |
| 501 | MSISUMMARYINFO *si; |
| 502 | LPWSTR str, *substorage; |
| 503 | UINT i, r = ERROR_SUCCESS; |
| 504 | |
| 505 | si = MSI_GetSummaryInformationW( patch_db, 0 ); |
| 506 | if (!si) |
| 507 | return ERROR_FUNCTION_FAILED; |
| 508 | |
| 509 | msi_check_patch_applicable( package, si ); |
| 510 | |
| 511 | /* enumerate the substorage */ |
| 512 | str = msi_suminfo_dup_string( si, PID_LASTAUTHOR ); |
| 513 | substorage = msi_split_string( str, ';' ); |
| 514 | for ( i = 0; substorage && substorage[i] && r == ERROR_SUCCESS; i++ ) |
| 515 | r = msi_apply_substorage_transform( package, patch_db, substorage[i] ); |
| 516 | msi_free( substorage ); |
| 517 | msi_free( str ); |
| 518 | |
| 519 | /* FIXME: parse the sources in PID_REVNUMBER and do something with them... */ |
| 520 | |
| 521 | msiobj_release( &si->hdr ); |
| 522 | |
| 523 | return r; |
| 524 | } |
| 525 | |
| 526 | static UINT msi_apply_patch_package( MSIPACKAGE *package, LPCWSTR file ) |
| 527 | { |
| 528 | MSIDATABASE *patch_db = NULL; |
| 529 | UINT r; |
| 530 | |
| 531 | TRACE("%p %s\n", package, debugstr_w( file ) ); |
| 532 | |
| 533 | /* FIXME: |
| 534 | * We probably want to make sure we only open a patch collection here. |
| 535 | * Patch collections (.msp) and databases (.msi) have different GUIDs |
| 536 | * but currently MSI_OpenDatabaseW will accept both. |
| 537 | */ |
| 538 | r = MSI_OpenDatabaseW( file, MSIDBOPEN_READONLY, &patch_db ); |
| 539 | if ( r != ERROR_SUCCESS ) |
| 540 | { |
| 541 | ERR("failed to open patch collection %s\n", debugstr_w( file ) ); |
| 542 | return r; |
| 543 | } |
| 544 | |
| 545 | msi_parse_patch_summary( package, patch_db ); |
| 546 | msiobj_release( &patch_db->hdr ); |
| 547 | |
| 548 | return ERROR_SUCCESS; |
| 549 | } |
| 550 | |
| 551 | /* get the PATCH property, and apply all the patches it specifies */ |
| 552 | static UINT msi_apply_patches( MSIPACKAGE *package ) |
| 553 | { |
| 554 | static const WCHAR szPatch[] = { 'P','A','T','C','H',0 }; |
| 555 | LPWSTR patch_list, *patches; |
| 556 | UINT i, r = ERROR_SUCCESS; |
| 557 | |
| 558 | patch_list = msi_dup_property( package, szPatch ); |
| 559 | |
| 560 | TRACE("patches to be applied: %s\n", debugstr_w( patch_list ) ); |
| 561 | |
| 562 | patches = msi_split_string( patch_list, ';' ); |
| 563 | for( i=0; patches && patches[i] && r == ERROR_SUCCESS; i++ ) |
| 564 | r = msi_apply_patch_package( package, patches[i] ); |
| 565 | |
| 566 | msi_free( patches ); |
| 567 | msi_free( patch_list ); |
| 568 | |
| 569 | return r; |
| 570 | } |
| 571 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 572 | /**************************************************** |
| 573 | * TOP level entry points |
| 574 | *****************************************************/ |
| 575 | |
Mike McCormack | 61f24a4 | 2005-09-30 10:32:41 +0000 | [diff] [blame] | 576 | UINT MSI_InstallPackage( MSIPACKAGE *package, LPCWSTR szPackagePath, |
| 577 | LPCWSTR szCommandLine ) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 578 | { |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 579 | UINT rc; |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 580 | BOOL ui = FALSE; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 581 | static const WCHAR szUILevel[] = {'U','I','L','e','v','e','l',0}; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 582 | static const WCHAR szAction[] = {'A','C','T','I','O','N',0}; |
| 583 | static const WCHAR szInstall[] = {'I','N','S','T','A','L','L',0}; |
| 584 | |
| 585 | MSI_SetPropertyW(package, szAction, szInstall); |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 586 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 587 | package->script = msi_alloc(sizeof(MSISCRIPT)); |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 588 | memset(package->script,0,sizeof(MSISCRIPT)); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 589 | |
Aric Stewart | c980293 | 2005-06-30 20:45:43 +0000 | [diff] [blame] | 590 | package->script->InWhatSequence = SEQUENCE_INSTALL; |
| 591 | |
Aric Stewart | e95136b | 2004-06-29 03:44:01 +0000 | [diff] [blame] | 592 | if (szPackagePath) |
| 593 | { |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 594 | LPWSTR p, check, path; |
Aric Stewart | e95136b | 2004-06-29 03:44:01 +0000 | [diff] [blame] | 595 | |
Mike McCormack | 95dea49 | 2005-03-16 11:31:35 +0000 | [diff] [blame] | 596 | package->PackagePath = strdupW(szPackagePath); |
| 597 | path = strdupW(szPackagePath); |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 598 | p = strrchrW(path,'\\'); |
Aric Stewart | e95136b | 2004-06-29 03:44:01 +0000 | [diff] [blame] | 599 | if (p) |
| 600 | { |
| 601 | p++; |
| 602 | *p=0; |
| 603 | } |
Aric Stewart | c1e5c4a | 2005-02-08 14:26:49 +0000 | [diff] [blame] | 604 | else |
| 605 | { |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 606 | msi_free(path); |
| 607 | path = msi_alloc(MAX_PATH*sizeof(WCHAR)); |
Aric Stewart | c1e5c4a | 2005-02-08 14:26:49 +0000 | [diff] [blame] | 608 | GetCurrentDirectoryW(MAX_PATH,path); |
| 609 | strcatW(path,cszbs); |
| 610 | } |
Aric Stewart | e95136b | 2004-06-29 03:44:01 +0000 | [diff] [blame] | 611 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 612 | check = msi_dup_property( package, cszSourceDir ); |
Aric Stewart | d0c971a | 2004-12-22 18:15:50 +0000 | [diff] [blame] | 613 | if (!check) |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 614 | MSI_SetPropertyW(package, cszSourceDir, path); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 615 | msi_free(check); |
| 616 | msi_free(path); |
Aric Stewart | e95136b | 2004-06-29 03:44:01 +0000 | [diff] [blame] | 617 | } |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 618 | |
Mike McCormack | e345222 | 2005-09-28 15:12:32 +0000 | [diff] [blame] | 619 | msi_parse_command_line( package, szCommandLine ); |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 620 | |
Mike McCormack | 965a72a | 2005-10-26 12:06:21 +0000 | [diff] [blame] | 621 | msi_apply_patches( package ); |
| 622 | |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 623 | if ( msi_get_property_int(package, szUILevel, 0) >= INSTALLUILEVEL_REDUCED ) |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 624 | { |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 625 | package->script->InWhatSequence |= SEQUENCE_UI; |
| 626 | rc = ACTION_ProcessUISequence(package); |
| 627 | ui = TRUE; |
| 628 | if (rc == ERROR_SUCCESS) |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 629 | { |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 630 | package->script->InWhatSequence |= SEQUENCE_EXEC; |
| 631 | rc = ACTION_ProcessExecSequence(package,TRUE); |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 632 | } |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 633 | } |
| 634 | else |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 635 | rc = ACTION_ProcessExecSequence(package,FALSE); |
Aric Stewart | 6b16f29 | 2005-01-27 11:12:56 +0000 | [diff] [blame] | 636 | |
| 637 | if (rc == -1) |
| 638 | { |
| 639 | /* install was halted but should be considered a success */ |
| 640 | rc = ERROR_SUCCESS; |
| 641 | } |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 642 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 643 | package->script->CurrentlyScripting= FALSE; |
| 644 | |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 645 | /* process the ending type action */ |
| 646 | if (rc == ERROR_SUCCESS) |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 647 | ACTION_PerformActionSequence(package,-1,ui); |
Aric Stewart | 6b16f29 | 2005-01-27 11:12:56 +0000 | [diff] [blame] | 648 | else if (rc == ERROR_INSTALL_USEREXIT) |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 649 | ACTION_PerformActionSequence(package,-2,ui); |
Aric Stewart | 6b16f29 | 2005-01-27 11:12:56 +0000 | [diff] [blame] | 650 | else if (rc == ERROR_INSTALL_SUSPEND) |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 651 | ACTION_PerformActionSequence(package,-4,ui); |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 652 | else /* failed */ |
| 653 | ACTION_PerformActionSequence(package,-3,ui); |
Aric Stewart | 54c67dd | 2005-01-25 20:17:09 +0000 | [diff] [blame] | 654 | |
| 655 | /* finish up running custom actions */ |
| 656 | ACTION_FinishCustomActions(package); |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 657 | |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 658 | return rc; |
| 659 | } |
| 660 | |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 661 | static UINT ACTION_PerformActionSequence(MSIPACKAGE *package, UINT seq, BOOL UI) |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 662 | { |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 663 | UINT rc = ERROR_SUCCESS; |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 664 | MSIRECORD * row = 0; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 665 | static const WCHAR ExecSeqQuery[] = |
| 666 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 667 | '`','I','n','s','t','a','l','l','E','x','e','c','u','t','e', |
| 668 | 'S','e','q','u','e','n','c','e','`',' ', 'W','H','E','R','E',' ', |
| 669 | '`','S','e','q','u','e','n','c','e','`',' ', '=',' ','%','i',0}; |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 670 | |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 671 | static const WCHAR UISeqQuery[] = |
| 672 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 673 | '`','I','n','s','t','a','l','l','U','I','S','e','q','u','e','n','c','e', |
| 674 | '`', ' ', 'W','H','E','R','E',' ','`','S','e','q','u','e','n','c','e','`', |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 675 | ' ', '=',' ','%','i',0}; |
| 676 | |
| 677 | if (UI) |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 678 | row = MSI_QueryGetRecord(package->db, UISeqQuery, seq); |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 679 | else |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 680 | row = MSI_QueryGetRecord(package->db, ExecSeqQuery, seq); |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 681 | |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 682 | if (row) |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 683 | { |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 684 | LPCWSTR action, cond; |
| 685 | |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 686 | TRACE("Running the actions\n"); |
| 687 | |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 688 | /* check conditions */ |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 689 | cond = MSI_RecordGetString(row,2); |
| 690 | if (cond) |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 691 | { |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 692 | /* this is a hack to skip errors in the condition code */ |
| 693 | if (MSI_EvaluateConditionW(package, cond) == MSICONDITION_FALSE) |
| 694 | goto end; |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 695 | } |
| 696 | |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 697 | action = MSI_RecordGetString(row,1); |
| 698 | if (!action) |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 699 | { |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 700 | ERR("failed to fetch action\n"); |
| 701 | rc = ERROR_FUNCTION_FAILED; |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 702 | goto end; |
| 703 | } |
| 704 | |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 705 | if (UI) |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 706 | rc = ACTION_PerformUIAction(package,action); |
Aric Stewart | f8f6440 | 2005-03-24 19:03:45 +0000 | [diff] [blame] | 707 | else |
Mike McCormack | 20806c7 | 2005-06-07 21:34:05 +0000 | [diff] [blame] | 708 | rc = ACTION_PerformAction(package,action,FALSE); |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 709 | end: |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 710 | msiobj_release(&row->hdr); |
Aric Stewart | 09d35c3 | 2004-12-27 19:00:26 +0000 | [diff] [blame] | 711 | } |
| 712 | else |
| 713 | rc = ERROR_SUCCESS; |
| 714 | |
| 715 | return rc; |
| 716 | } |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 717 | |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 718 | typedef struct { |
| 719 | MSIPACKAGE* package; |
| 720 | BOOL UI; |
| 721 | } iterate_action_param; |
| 722 | |
| 723 | static UINT ITERATE_Actions(MSIRECORD *row, LPVOID param) |
| 724 | { |
| 725 | iterate_action_param *iap= (iterate_action_param*)param; |
| 726 | UINT rc; |
| 727 | LPCWSTR cond, action; |
| 728 | |
| 729 | action = MSI_RecordGetString(row,1); |
| 730 | if (!action) |
| 731 | { |
| 732 | ERR("Error is retrieving action name\n"); |
| 733 | return ERROR_FUNCTION_FAILED; |
| 734 | } |
| 735 | |
| 736 | /* check conditions */ |
| 737 | cond = MSI_RecordGetString(row,2); |
| 738 | if (cond) |
| 739 | { |
| 740 | /* this is a hack to skip errors in the condition code */ |
| 741 | if (MSI_EvaluateConditionW(iap->package, cond) == MSICONDITION_FALSE) |
| 742 | { |
| 743 | TRACE("Skipping action: %s (condition is false)\n", |
| 744 | debugstr_w(action)); |
| 745 | return ERROR_SUCCESS; |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | if (iap->UI) |
| 750 | rc = ACTION_PerformUIAction(iap->package,action); |
| 751 | else |
| 752 | rc = ACTION_PerformAction(iap->package,action,FALSE); |
| 753 | |
Mike McCormack | 4f634a3 | 2005-07-06 15:44:51 +0000 | [diff] [blame] | 754 | msi_dialog_check_messages( NULL ); |
| 755 | |
| 756 | if (iap->package->CurrentInstallState != ERROR_SUCCESS ) |
| 757 | rc = iap->package->CurrentInstallState; |
| 758 | |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 759 | if (rc == ERROR_FUNCTION_NOT_CALLED) |
| 760 | rc = ERROR_SUCCESS; |
| 761 | |
| 762 | if (rc != ERROR_SUCCESS) |
Mike McCormack | 558abec | 2005-10-27 12:39:28 +0000 | [diff] [blame] | 763 | ERR("Execution halted, action %s returned %i\n", debugstr_w(action), rc); |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 764 | |
| 765 | return rc; |
| 766 | } |
| 767 | |
Mike McCormack | d34b1c2 | 2005-09-21 10:55:23 +0000 | [diff] [blame] | 768 | UINT MSI_Sequence( MSIPACKAGE *package, LPCWSTR szTable, INT iSequenceMode ) |
| 769 | { |
| 770 | MSIQUERY * view; |
| 771 | UINT r; |
| 772 | static const WCHAR query[] = |
| 773 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
| 774 | '`','%','s','`', |
| 775 | ' ','W','H','E','R','E',' ', |
| 776 | '`','S','e','q','u','e','n','c','e','`',' ', |
| 777 | '>',' ','0',' ','O','R','D','E','R',' ','B','Y',' ', |
| 778 | '`','S','e','q','u','e','n','c','e','`',0}; |
| 779 | iterate_action_param iap; |
| 780 | |
| 781 | /* |
| 782 | * FIXME: probably should be checking UILevel in the |
| 783 | * ACTION_PerformUIAction/ACTION_PerformAction |
| 784 | * rather than saving the UI level here. Those |
| 785 | * two functions can be merged too. |
| 786 | */ |
| 787 | iap.package = package; |
| 788 | iap.UI = TRUE; |
| 789 | |
| 790 | TRACE("%p %s %i\n", package, debugstr_w(szTable), iSequenceMode ); |
| 791 | |
| 792 | r = MSI_OpenQuery( package->db, &view, query, szTable ); |
| 793 | if (r == ERROR_SUCCESS) |
| 794 | { |
| 795 | r = MSI_IterateRecords( view, NULL, ITERATE_Actions, &iap ); |
| 796 | msiobj_release(&view->hdr); |
| 797 | } |
| 798 | |
| 799 | return r; |
| 800 | } |
| 801 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 802 | static UINT ACTION_ProcessExecSequence(MSIPACKAGE *package, BOOL UIran) |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 803 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 804 | MSIQUERY * view; |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 805 | UINT rc; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 806 | static const WCHAR ExecSeqQuery[] = |
| 807 | {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 808 | '`','I','n','s','t','a','l','l','E','x','e','c','u','t','e', |
| 809 | 'S','e','q','u','e','n','c','e','`',' ', 'W','H','E','R','E',' ', |
| 810 | '`','S','e','q','u','e','n','c','e','`',' ', '>',' ','%','i',' ', |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 811 | 'O','R','D','E','R',' ', 'B','Y',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 812 | '`','S','e','q','u','e','n','c','e','`',0 }; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 813 | MSIRECORD * row = 0; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 814 | static const WCHAR IVQuery[] = |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 815 | {'S','E','L','E','C','T',' ','`','S','e','q','u','e','n','c','e','`', |
| 816 | ' ', 'F','R','O','M',' ','`','I','n','s','t','a','l','l', |
| 817 | 'E','x','e','c','u','t','e','S','e','q','u','e','n','c','e','`',' ', |
| 818 | 'W','H','E','R','E',' ','`','A','c','t','i','o','n','`',' ','=', |
| 819 | ' ','\'', 'I','n','s','t','a','l','l', |
| 820 | 'V','a','l','i','d','a','t','e','\'', 0}; |
Mike McCormack | 9db0e07 | 2004-12-22 15:05:07 +0000 | [diff] [blame] | 821 | INT seq = 0; |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 822 | iterate_action_param iap; |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 823 | |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 824 | iap.package = package; |
| 825 | iap.UI = FALSE; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 826 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 827 | if (package->script->ExecuteSequenceRun) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 828 | { |
| 829 | TRACE("Execute Sequence already Run\n"); |
| 830 | return ERROR_SUCCESS; |
| 831 | } |
| 832 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 833 | package->script->ExecuteSequenceRun = TRUE; |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 834 | |
Mike McCormack | 9db0e07 | 2004-12-22 15:05:07 +0000 | [diff] [blame] | 835 | /* get the sequence number */ |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 836 | if (UIran) |
| 837 | { |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 838 | row = MSI_QueryGetRecord(package->db, IVQuery); |
| 839 | if( !row ) |
| 840 | return ERROR_FUNCTION_FAILED; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 841 | seq = MSI_RecordGetInteger(row,1); |
| 842 | msiobj_release(&row->hdr); |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 843 | } |
Mike McCormack | 9db0e07 | 2004-12-22 15:05:07 +0000 | [diff] [blame] | 844 | |
Mike McCormack | 0c23885 | 2005-01-21 16:19:11 +0000 | [diff] [blame] | 845 | rc = MSI_OpenQuery(package->db, &view, ExecSeqQuery, seq); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 846 | if (rc == ERROR_SUCCESS) |
| 847 | { |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 848 | TRACE("Running the actions\n"); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 849 | |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 850 | rc = MSI_IterateRecords(view, NULL, ITERATE_Actions, &iap); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 851 | msiobj_release(&view->hdr); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 852 | } |
| 853 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 854 | return rc; |
| 855 | } |
| 856 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 857 | static UINT ACTION_ProcessUISequence(MSIPACKAGE *package) |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 858 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 859 | MSIQUERY * view; |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 860 | UINT rc; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 861 | static const WCHAR ExecSeqQuery [] = |
| 862 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 863 | '`','I','n','s','t','a','l','l', |
| 864 | 'U','I','S','e','q','u','e','n','c','e','`', |
| 865 | ' ','W','H','E','R','E',' ', |
| 866 | '`','S','e','q','u','e','n','c','e','`',' ', |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 867 | '>',' ','0',' ','O','R','D','E','R',' ','B','Y',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 868 | '`','S','e','q','u','e','n','c','e','`',0}; |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 869 | iterate_action_param iap; |
| 870 | |
| 871 | iap.package = package; |
| 872 | iap.UI = TRUE; |
| 873 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 874 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 875 | |
| 876 | if (rc == ERROR_SUCCESS) |
| 877 | { |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 878 | TRACE("Running the actions \n"); |
| 879 | |
Aric Stewart | 2703d71 | 2005-06-20 15:33:10 +0000 | [diff] [blame] | 880 | rc = MSI_IterateRecords(view, NULL, ITERATE_Actions, &iap); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 881 | msiobj_release(&view->hdr); |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 882 | } |
| 883 | |
Aric Stewart | ed7c4bc | 2004-07-04 00:26:54 +0000 | [diff] [blame] | 884 | return rc; |
| 885 | } |
| 886 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 887 | /******************************************************** |
| 888 | * ACTION helper functions and functions that perform the actions |
| 889 | *******************************************************/ |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 890 | static BOOL ACTION_HandleStandardAction(MSIPACKAGE *package, LPCWSTR action, |
| 891 | UINT* rc, BOOL force ) |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 892 | { |
| 893 | BOOL ret = FALSE; |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 894 | BOOL run = force; |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 895 | int i; |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 896 | |
Mike McCormack | a977b2c | 2005-11-03 09:56:29 +0000 | [diff] [blame] | 897 | if (!package) |
| 898 | { |
| 899 | ERR("package was null!\n"); |
| 900 | return FALSE; |
| 901 | } |
| 902 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 903 | if (!run && !package->script->CurrentlyScripting) |
| 904 | run = TRUE; |
| 905 | |
| 906 | if (!run) |
| 907 | { |
| 908 | if (strcmpW(action,szInstallFinalize) == 0 || |
| 909 | strcmpW(action,szInstallExecute) == 0 || |
| 910 | strcmpW(action,szInstallExecuteAgain) == 0) |
| 911 | run = TRUE; |
| 912 | } |
| 913 | |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 914 | i = 0; |
| 915 | while (StandardActions[i].action != NULL) |
| 916 | { |
| 917 | if (strcmpW(StandardActions[i].action, action)==0) |
| 918 | { |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 919 | if (!run) |
Aric Stewart | d6ecf58 | 2005-02-02 09:29:30 +0000 | [diff] [blame] | 920 | { |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 921 | ui_actioninfo(package, action, TRUE, 0); |
| 922 | *rc = schedule_action(package,INSTALL_SCRIPT,action); |
| 923 | ui_actioninfo(package, action, FALSE, *rc); |
Aric Stewart | d6ecf58 | 2005-02-02 09:29:30 +0000 | [diff] [blame] | 924 | } |
| 925 | else |
| 926 | { |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 927 | ui_actionstart(package, action); |
| 928 | if (StandardActions[i].handler) |
| 929 | { |
| 930 | *rc = StandardActions[i].handler(package); |
| 931 | } |
| 932 | else |
| 933 | { |
Mike McCormack | 54a2891 | 2005-09-06 09:23:18 +0000 | [diff] [blame] | 934 | FIXME("unhandled standard action %s\n",debugstr_w(action)); |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 935 | *rc = ERROR_SUCCESS; |
| 936 | } |
Aric Stewart | d6ecf58 | 2005-02-02 09:29:30 +0000 | [diff] [blame] | 937 | } |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 938 | ret = TRUE; |
| 939 | break; |
| 940 | } |
| 941 | i++; |
| 942 | } |
| 943 | return ret; |
| 944 | } |
| 945 | |
Mike McCormack | f9acfe6 | 2005-06-07 20:29:51 +0000 | [diff] [blame] | 946 | static BOOL ACTION_HandleCustomAction( MSIPACKAGE* package, LPCWSTR action, |
| 947 | UINT* rc, BOOL force ) |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 948 | { |
| 949 | BOOL ret=FALSE; |
| 950 | UINT arc; |
| 951 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 952 | arc = ACTION_CustomAction(package,action, force); |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 953 | |
| 954 | if (arc != ERROR_CALL_NOT_IMPLEMENTED) |
| 955 | { |
| 956 | *rc = arc; |
| 957 | ret = TRUE; |
| 958 | } |
| 959 | return ret; |
| 960 | } |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 961 | |
| 962 | /* |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 963 | * A lot of actions are really important even if they don't do anything |
| 964 | * explicit... Lots of properties are set at the beginning of the installation |
| 965 | * CostFinalize does a bunch of work to translate the directories and such |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 966 | * |
Mike McCormack | 6e2bca3 | 2004-07-04 00:25:00 +0000 | [diff] [blame] | 967 | * But until I get write access to the database that is hard, so I am going to |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 968 | * hack it to see if I can get something to run. |
| 969 | */ |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 970 | UINT ACTION_PerformAction(MSIPACKAGE *package, const WCHAR *action, BOOL force) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 971 | { |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 972 | UINT rc = ERROR_SUCCESS; |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 973 | BOOL handled; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 974 | |
| 975 | TRACE("Performing action (%s)\n",debugstr_w(action)); |
| 976 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 977 | handled = ACTION_HandleStandardAction(package, action, &rc, force); |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 978 | |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 979 | if (!handled) |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 980 | handled = ACTION_HandleCustomAction(package, action, &rc, force); |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 981 | |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 982 | if (!handled) |
| 983 | { |
Mike McCormack | 54a2891 | 2005-09-06 09:23:18 +0000 | [diff] [blame] | 984 | FIXME("unhandled msi action %s\n",debugstr_w(action)); |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 985 | rc = ERROR_FUNCTION_NOT_CALLED; |
| 986 | } |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 987 | |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 988 | return rc; |
| 989 | } |
| 990 | |
| 991 | UINT ACTION_PerformUIAction(MSIPACKAGE *package, const WCHAR *action) |
| 992 | { |
| 993 | UINT rc = ERROR_SUCCESS; |
| 994 | BOOL handled = FALSE; |
| 995 | |
| 996 | TRACE("Performing action (%s)\n",debugstr_w(action)); |
| 997 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 998 | handled = ACTION_HandleStandardAction(package, action, &rc,TRUE); |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 999 | |
| 1000 | if (!handled) |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 1001 | handled = ACTION_HandleCustomAction(package, action, &rc, FALSE); |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 1002 | |
Mike McCormack | 4f634a3 | 2005-07-06 15:44:51 +0000 | [diff] [blame] | 1003 | if( !handled && ACTION_DialogBox(package,action) == ERROR_SUCCESS ) |
| 1004 | handled = TRUE; |
Mike McCormack | 34d4a02 | 2005-02-09 13:24:31 +0000 | [diff] [blame] | 1005 | |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 1006 | if (!handled) |
| 1007 | { |
Mike McCormack | 54a2891 | 2005-09-06 09:23:18 +0000 | [diff] [blame] | 1008 | FIXME("unhandled msi action %s\n",debugstr_w(action)); |
Aric Stewart | 3f31860 | 2005-02-01 18:46:26 +0000 | [diff] [blame] | 1009 | rc = ERROR_FUNCTION_NOT_CALLED; |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 1010 | } |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1011 | |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 1012 | return rc; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
Aric Stewart | 2274ff1 | 2005-06-21 20:03:46 +0000 | [diff] [blame] | 1015 | |
| 1016 | /* |
| 1017 | * Actual Action Handlers |
| 1018 | */ |
| 1019 | |
| 1020 | static UINT ITERATE_CreateFolders(MSIRECORD *row, LPVOID param) |
| 1021 | { |
| 1022 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
| 1023 | LPCWSTR dir; |
| 1024 | LPWSTR full_path; |
| 1025 | MSIRECORD *uirow; |
| 1026 | MSIFOLDER *folder; |
| 1027 | |
| 1028 | dir = MSI_RecordGetString(row,1); |
| 1029 | if (!dir) |
| 1030 | { |
| 1031 | ERR("Unable to get folder id \n"); |
| 1032 | return ERROR_SUCCESS; |
| 1033 | } |
| 1034 | |
| 1035 | full_path = resolve_folder(package,dir,FALSE,FALSE,&folder); |
| 1036 | if (!full_path) |
| 1037 | { |
| 1038 | ERR("Unable to resolve folder id %s\n",debugstr_w(dir)); |
| 1039 | return ERROR_SUCCESS; |
| 1040 | } |
| 1041 | |
| 1042 | TRACE("Folder is %s\n",debugstr_w(full_path)); |
| 1043 | |
| 1044 | /* UI stuff */ |
| 1045 | uirow = MSI_CreateRecord(1); |
| 1046 | MSI_RecordSetStringW(uirow,1,full_path); |
| 1047 | ui_actiondata(package,szCreateFolders,uirow); |
| 1048 | msiobj_release( &uirow->hdr ); |
| 1049 | |
| 1050 | if (folder->State == 0) |
| 1051 | create_full_pathW(full_path); |
| 1052 | |
| 1053 | folder->State = 3; |
| 1054 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1055 | msi_free(full_path); |
Aric Stewart | 2274ff1 | 2005-06-21 20:03:46 +0000 | [diff] [blame] | 1056 | return ERROR_SUCCESS; |
| 1057 | } |
| 1058 | |
Mike McCormack | 03b4dbb | 2005-10-28 09:39:29 +0000 | [diff] [blame] | 1059 | /* FIXME: probably should merge this with the above function */ |
| 1060 | static UINT msi_create_directory( MSIPACKAGE* package, LPCWSTR dir ) |
| 1061 | { |
| 1062 | UINT rc = ERROR_SUCCESS; |
| 1063 | MSIFOLDER *folder; |
| 1064 | LPWSTR install_path; |
| 1065 | |
| 1066 | install_path = resolve_folder(package, dir, FALSE, FALSE, &folder); |
| 1067 | if (!install_path) |
| 1068 | return ERROR_FUNCTION_FAILED; |
| 1069 | |
| 1070 | /* create the path */ |
| 1071 | if (folder->State == 0) |
| 1072 | { |
| 1073 | create_full_pathW(install_path); |
| 1074 | folder->State = 2; |
| 1075 | } |
| 1076 | msi_free(install_path); |
| 1077 | |
| 1078 | return rc; |
| 1079 | } |
Aric Stewart | 2274ff1 | 2005-06-21 20:03:46 +0000 | [diff] [blame] | 1080 | |
Mike McCormack | 9c84585 | 2005-10-29 11:29:17 +0000 | [diff] [blame] | 1081 | UINT msi_create_component_directories( MSIPACKAGE *package ) |
| 1082 | { |
| 1083 | MSICOMPONENT *comp; |
| 1084 | |
| 1085 | /* create all the folders required by the components are going to install */ |
| 1086 | LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry ) |
| 1087 | { |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 1088 | if (!ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL)) |
Mike McCormack | 9c84585 | 2005-10-29 11:29:17 +0000 | [diff] [blame] | 1089 | continue; |
| 1090 | msi_create_directory( package, comp->Directory ); |
| 1091 | } |
| 1092 | |
| 1093 | return ERROR_SUCCESS; |
| 1094 | } |
| 1095 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1096 | /* |
| 1097 | * Also we cannot enable/disable components either, so for now I am just going |
Mike McCormack | 6e2bca3 | 2004-07-04 00:25:00 +0000 | [diff] [blame] | 1098 | * to do all the directories for all the components. |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1099 | */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1100 | static UINT ACTION_CreateFolders(MSIPACKAGE *package) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1101 | { |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1102 | static const WCHAR ExecSeqQuery[] = |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1103 | {'S','E','L','E','C','T',' ', |
| 1104 | '`','D','i','r','e','c','t','o','r','y','_','`', |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1105 | ' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1106 | '`','C','r','e','a','t','e','F','o','l','d','e','r','`',0 }; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1107 | UINT rc; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1108 | MSIQUERY *view; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1109 | |
Mike McCormack | 03b4dbb | 2005-10-28 09:39:29 +0000 | [diff] [blame] | 1110 | /* create all the empty folders specified in the CreateFolder table */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1111 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view ); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1112 | if (rc != ERROR_SUCCESS) |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 1113 | return ERROR_SUCCESS; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1114 | |
Aric Stewart | 2274ff1 | 2005-06-21 20:03:46 +0000 | [diff] [blame] | 1115 | rc = MSI_IterateRecords(view, NULL, ITERATE_CreateFolders, package); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1116 | msiobj_release(&view->hdr); |
Mike McCormack | 03b4dbb | 2005-10-28 09:39:29 +0000 | [diff] [blame] | 1117 | |
Mike McCormack | 9c84585 | 2005-10-29 11:29:17 +0000 | [diff] [blame] | 1118 | msi_create_component_directories( package ); |
Mike McCormack | 03b4dbb | 2005-10-28 09:39:29 +0000 | [diff] [blame] | 1119 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1120 | return rc; |
| 1121 | } |
| 1122 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1123 | static MSICOMPONENT* load_component( MSIRECORD * row ) |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1124 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1125 | MSICOMPONENT *comp; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1126 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1127 | comp = msi_alloc_zero( sizeof(MSICOMPONENT) ); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1128 | if (!comp) |
| 1129 | return comp; |
| 1130 | |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1131 | /* fill in the data */ |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1132 | comp->Component = msi_dup_record_field( row, 1 ); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1133 | |
Mike McCormack | efcc1ec | 2005-09-12 12:07:15 +0000 | [diff] [blame] | 1134 | TRACE("Loading Component %s\n", debugstr_w(comp->Component)); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1135 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1136 | comp->ComponentId = msi_dup_record_field( row, 2 ); |
| 1137 | comp->Directory = msi_dup_record_field( row, 3 ); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1138 | comp->Attributes = MSI_RecordGetInteger(row,4); |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1139 | comp->Condition = msi_dup_record_field( row, 5 ); |
| 1140 | comp->KeyPath = msi_dup_record_field( row, 6 ); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1141 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1142 | comp->Installed = INSTALLSTATE_ABSENT; |
| 1143 | comp->Action = INSTALLSTATE_UNKNOWN; |
| 1144 | comp->ActionRequest = INSTALLSTATE_UNKNOWN; |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1145 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1146 | comp->Enabled = TRUE; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1147 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1148 | return comp; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1149 | } |
| 1150 | |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1151 | typedef struct { |
| 1152 | MSIPACKAGE *package; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1153 | MSIFEATURE *feature; |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1154 | } _ilfs; |
| 1155 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1156 | static UINT add_feature_component( MSIFEATURE *feature, MSICOMPONENT *comp ) |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 1157 | { |
| 1158 | ComponentList *cl; |
| 1159 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1160 | cl = msi_alloc( sizeof (*cl) ); |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 1161 | if ( !cl ) |
| 1162 | return ERROR_NOT_ENOUGH_MEMORY; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1163 | cl->component = comp; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1164 | list_add_tail( &feature->Components, &cl->entry ); |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 1165 | |
| 1166 | return ERROR_SUCCESS; |
| 1167 | } |
| 1168 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1169 | static UINT iterate_component_check( MSIRECORD *row, LPVOID param ) |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1170 | { |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1171 | _ilfs* ilfs= (_ilfs*)param; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1172 | MSIPACKAGE *package = ilfs->package; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1173 | MSIFEATURE *feature = ilfs->feature; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1174 | MSICOMPONENT *comp; |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1175 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1176 | comp = load_component( row ); |
| 1177 | if (!comp) |
| 1178 | return ERROR_FUNCTION_FAILED; |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1179 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1180 | list_add_tail( &package->components, &comp->entry ); |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1181 | add_feature_component( feature, comp ); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1182 | |
| 1183 | TRACE("Loaded new component %p\n", comp); |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1184 | |
| 1185 | return ERROR_SUCCESS; |
| 1186 | } |
| 1187 | |
| 1188 | static UINT iterate_load_featurecomponents(MSIRECORD *row, LPVOID param) |
| 1189 | { |
| 1190 | _ilfs* ilfs= (_ilfs*)param; |
| 1191 | LPCWSTR component; |
| 1192 | DWORD rc; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1193 | MSICOMPONENT *comp; |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1194 | MSIQUERY * view; |
| 1195 | static const WCHAR Query[] = |
| 1196 | {'S','E','L','E','C','T',' ','*',' ','F','R', 'O','M',' ', |
| 1197 | '`','C','o','m','p','o','n','e','n','t','`',' ', |
| 1198 | 'W','H','E','R','E',' ', |
| 1199 | '`','C','o','m','p','o','n','e','n','t','`',' ', |
| 1200 | '=','\'','%','s','\'',0}; |
| 1201 | |
| 1202 | component = MSI_RecordGetString(row,1); |
| 1203 | |
| 1204 | /* check to see if the component is already loaded */ |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1205 | comp = get_loaded_component( ilfs->package, component ); |
| 1206 | if (comp) |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1207 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1208 | TRACE("Component %s already loaded\n", debugstr_w(component) ); |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1209 | add_feature_component( ilfs->feature, comp ); |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1210 | return ERROR_SUCCESS; |
| 1211 | } |
| 1212 | |
| 1213 | rc = MSI_OpenQuery(ilfs->package->db, &view, Query, component); |
| 1214 | if (rc != ERROR_SUCCESS) |
| 1215 | return ERROR_SUCCESS; |
| 1216 | |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1217 | rc = MSI_IterateRecords(view, NULL, iterate_component_check, ilfs); |
| 1218 | msiobj_release( &view->hdr ); |
| 1219 | |
| 1220 | return ERROR_SUCCESS; |
| 1221 | } |
| 1222 | |
| 1223 | static UINT load_feature(MSIRECORD * row, LPVOID param) |
| 1224 | { |
| 1225 | MSIPACKAGE* package = (MSIPACKAGE*)param; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1226 | MSIFEATURE* feature; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1227 | static const WCHAR Query1[] = |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1228 | {'S','E','L','E','C','T',' ', |
| 1229 | '`','C','o','m','p','o','n','e','n','t','_','`', |
| 1230 | ' ','F','R','O','M',' ','`','F','e','a','t','u','r','e', |
| 1231 | 'C','o','m','p','o','n','e','n','t','s','`',' ', |
| 1232 | 'W','H','E','R','E',' ', |
| 1233 | '`','F','e', 'a','t','u','r','e','_','`',' ','=','\'','%','s','\'',0}; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1234 | MSIQUERY * view; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1235 | UINT rc; |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1236 | _ilfs ilfs; |
| 1237 | |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1238 | /* fill in the data */ |
| 1239 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1240 | feature = msi_alloc_zero( sizeof (MSIFEATURE) ); |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1241 | if (!feature) |
| 1242 | return ERROR_NOT_ENOUGH_MEMORY; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1243 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1244 | list_init( &feature->Components ); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1245 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1246 | feature->Feature = msi_dup_record_field( row, 1 ); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1247 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1248 | TRACE("Loading feature %s\n",debugstr_w(feature->Feature)); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1249 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1250 | feature->Feature_Parent = msi_dup_record_field( row, 2 ); |
| 1251 | feature->Title = msi_dup_record_field( row, 3 ); |
| 1252 | feature->Description = msi_dup_record_field( row, 4 ); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1253 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1254 | if (!MSI_RecordIsNull(row,5)) |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1255 | feature->Display = MSI_RecordGetInteger(row,5); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1256 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1257 | feature->Level= MSI_RecordGetInteger(row,6); |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1258 | feature->Directory = msi_dup_record_field( row, 7 ); |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1259 | feature->Attributes = MSI_RecordGetInteger(row,8); |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1260 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1261 | feature->Installed = INSTALLSTATE_ABSENT; |
| 1262 | feature->Action = INSTALLSTATE_UNKNOWN; |
| 1263 | feature->ActionRequest = INSTALLSTATE_UNKNOWN; |
| 1264 | |
| 1265 | list_add_tail( &package->features, &feature->entry ); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1266 | |
| 1267 | /* load feature components */ |
| 1268 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1269 | rc = MSI_OpenQuery( package->db, &view, Query1, feature->Feature ); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1270 | if (rc != ERROR_SUCCESS) |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1271 | return ERROR_SUCCESS; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1272 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1273 | ilfs.package = package; |
| 1274 | ilfs.feature = feature; |
| 1275 | |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1276 | MSI_IterateRecords(view, NULL, iterate_load_featurecomponents , &ilfs); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1277 | msiobj_release(&view->hdr); |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1278 | |
| 1279 | return ERROR_SUCCESS; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1280 | } |
| 1281 | |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1282 | static UINT load_file(MSIRECORD *row, LPVOID param) |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1283 | { |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1284 | MSIPACKAGE* package = (MSIPACKAGE*)param; |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 1285 | LPCWSTR component; |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1286 | MSIFILE *file; |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1287 | |
| 1288 | /* fill in the data */ |
| 1289 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1290 | file = msi_alloc_zero( sizeof (MSIFILE) ); |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1291 | if (!file) |
| 1292 | return ERROR_NOT_ENOUGH_MEMORY; |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1293 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1294 | file->File = msi_dup_record_field( row, 1 ); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1295 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1296 | component = MSI_RecordGetString( row, 2 ); |
| 1297 | file->Component = get_loaded_component( package, component ); |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 1298 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1299 | if (!file->Component) |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 1300 | ERR("Unfound Component %s\n",debugstr_w(component)); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1301 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1302 | file->FileName = msi_dup_record_field( row, 3 ); |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1303 | reduce_to_longfilename( file->FileName ); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1304 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1305 | file->ShortName = msi_dup_record_field( row, 3 ); |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1306 | reduce_to_shortfilename( file->ShortName ); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1307 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1308 | file->FileSize = MSI_RecordGetInteger( row, 4 ); |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1309 | file->Version = msi_dup_record_field( row, 5 ); |
| 1310 | file->Language = msi_dup_record_field( row, 6 ); |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1311 | file->Attributes = MSI_RecordGetInteger( row, 7 ); |
| 1312 | file->Sequence = MSI_RecordGetInteger( row, 8 ); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1313 | |
Mike McCormack | dded8fb | 2005-11-02 10:56:42 +0000 | [diff] [blame] | 1314 | file->state = msifs_invalid; |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1315 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1316 | TRACE("File Loaded (%s)\n",debugstr_w(file->File)); |
| 1317 | |
| 1318 | list_add_tail( &package->files, &file->entry ); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1319 | |
| 1320 | return ERROR_SUCCESS; |
| 1321 | } |
| 1322 | |
| 1323 | static UINT load_all_files(MSIPACKAGE *package) |
| 1324 | { |
| 1325 | MSIQUERY * view; |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1326 | UINT rc; |
| 1327 | static const WCHAR Query[] = |
| 1328 | {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1329 | '`','F','i','l','e','`',' ', 'O','R','D','E','R',' ','B','Y',' ', |
| 1330 | '`','S','e','q','u','e','n','c','e','`', 0}; |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1331 | |
| 1332 | if (!package) |
| 1333 | return ERROR_INVALID_HANDLE; |
| 1334 | |
| 1335 | rc = MSI_DatabaseOpenViewW(package->db, Query, &view); |
| 1336 | if (rc != ERROR_SUCCESS) |
| 1337 | return ERROR_SUCCESS; |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1338 | |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1339 | rc = MSI_IterateRecords(view, NULL, load_file, package); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1340 | msiobj_release(&view->hdr); |
| 1341 | |
| 1342 | return ERROR_SUCCESS; |
| 1343 | } |
| 1344 | |
| 1345 | |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1346 | /* |
| 1347 | * I am not doing any of the costing functionality yet. |
| 1348 | * Mostly looking at doing the Component and Feature loading |
| 1349 | * |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 1350 | * The native MSI does A LOT of modification to tables here. Mostly adding |
| 1351 | * a lot of temporary columns to the Feature and Component tables. |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1352 | * |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 1353 | * note: Native msi also tracks the short filename. But I am only going to |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1354 | * track the long ones. Also looking at this directory table |
| 1355 | * it appears that the directory table does not get the parents |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 1356 | * resolved base on property only based on their entries in the |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1357 | * directory table. |
| 1358 | */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1359 | static UINT ACTION_CostInitialize(MSIPACKAGE *package) |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1360 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1361 | MSIQUERY * view; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1362 | UINT rc; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1363 | static const WCHAR Query_all[] = |
| 1364 | {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1365 | '`','F','e','a','t','u','r','e','`',0}; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1366 | static const WCHAR szCosting[] = |
| 1367 | {'C','o','s','t','i','n','g','C','o','m','p','l','e','t','e',0 }; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1368 | static const WCHAR szZero[] = { '0', 0 }; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1369 | |
Mike McCormack | 9293f86 | 2005-10-30 19:16:45 +0000 | [diff] [blame] | 1370 | if ( 1 == msi_get_property_int( package, szCosting, 0 ) ) |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1371 | return ERROR_SUCCESS; |
| 1372 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1373 | MSI_SetPropertyW(package, szCosting, szZero); |
Juan Lang | 014ad3b | 2005-03-01 10:41:52 +0000 | [diff] [blame] | 1374 | MSI_SetPropertyW(package, cszRootDrive , c_colon); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1375 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1376 | rc = MSI_DatabaseOpenViewW(package->db,Query_all,&view); |
| 1377 | if (rc != ERROR_SUCCESS) |
| 1378 | return rc; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1379 | |
Aric Stewart | 0459824 | 2005-06-23 16:43:24 +0000 | [diff] [blame] | 1380 | rc = MSI_IterateRecords(view, NULL, load_feature, package); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1381 | msiobj_release(&view->hdr); |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1382 | |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1383 | load_all_files(package); |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1384 | |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1385 | return ERROR_SUCCESS; |
| 1386 | } |
| 1387 | |
Mike McCormack | f9acfe6 | 2005-06-07 20:29:51 +0000 | [diff] [blame] | 1388 | static UINT execute_script(MSIPACKAGE *package, UINT script ) |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 1389 | { |
| 1390 | int i; |
| 1391 | UINT rc = ERROR_SUCCESS; |
| 1392 | |
| 1393 | TRACE("Executing Script %i\n",script); |
| 1394 | |
| 1395 | for (i = 0; i < package->script->ActionCount[script]; i++) |
| 1396 | { |
| 1397 | LPWSTR action; |
| 1398 | action = package->script->Actions[script][i]; |
| 1399 | ui_actionstart(package, action); |
| 1400 | TRACE("Executing Action (%s)\n",debugstr_w(action)); |
| 1401 | rc = ACTION_PerformAction(package, action, TRUE); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1402 | msi_free(package->script->Actions[script][i]); |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 1403 | if (rc != ERROR_SUCCESS) |
| 1404 | break; |
| 1405 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1406 | msi_free(package->script->Actions[script]); |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 1407 | |
| 1408 | package->script->ActionCount[script] = 0; |
| 1409 | package->script->Actions[script] = NULL; |
| 1410 | return rc; |
| 1411 | } |
| 1412 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1413 | static UINT ACTION_FileCost(MSIPACKAGE *package) |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1414 | { |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1415 | return ERROR_SUCCESS; |
| 1416 | } |
| 1417 | |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 1418 | |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1419 | static MSIFOLDER *load_folder( MSIPACKAGE *package, LPCWSTR dir ) |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1420 | { |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1421 | static const WCHAR Query[] = |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1422 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1423 | '`','D','i','r','e','c', 't','o','r','y','`',' ', |
| 1424 | 'W','H','E','R','E',' ', '`', 'D','i','r','e','c','t', 'o','r','y','`', |
| 1425 | ' ','=',' ','\'','%','s','\'', |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1426 | 0}; |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 1427 | LPWSTR ptargetdir, targetdir, srcdir; |
| 1428 | LPCWSTR parent; |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1429 | LPWSTR shortname = NULL; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1430 | MSIRECORD * row = 0; |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1431 | MSIFOLDER *folder; |
Aric Stewart | e95136b | 2004-06-29 03:44:01 +0000 | [diff] [blame] | 1432 | |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1433 | TRACE("Looking for dir %s\n",debugstr_w(dir)); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1434 | |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1435 | folder = get_loaded_folder( package, dir ); |
| 1436 | if (folder) |
| 1437 | return folder; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1438 | |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1439 | TRACE("Working to load %s\n",debugstr_w(dir)); |
| 1440 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1441 | folder = msi_alloc_zero( sizeof (MSIFOLDER) ); |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1442 | if (!folder) |
| 1443 | return NULL; |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1444 | |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1445 | folder->Directory = strdupW(dir); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1446 | |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 1447 | row = MSI_QueryGetRecord(package->db, Query, dir); |
| 1448 | if (!row) |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1449 | return NULL; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1450 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 1451 | ptargetdir = targetdir = msi_dup_record_field(row,3); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1452 | |
| 1453 | /* split src and target dir */ |
| 1454 | if (strchrW(targetdir,':')) |
| 1455 | { |
| 1456 | srcdir=strchrW(targetdir,':'); |
| 1457 | *srcdir=0; |
| 1458 | srcdir ++; |
| 1459 | } |
| 1460 | else |
| 1461 | srcdir=NULL; |
| 1462 | |
| 1463 | /* for now only pick long filename versions */ |
| 1464 | if (strchrW(targetdir,'|')) |
| 1465 | { |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1466 | shortname = targetdir; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1467 | targetdir = strchrW(targetdir,'|'); |
| 1468 | *targetdir = 0; |
| 1469 | targetdir ++; |
| 1470 | } |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1471 | /* for the sourcedir pick the short filename */ |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1472 | if (srcdir && strchrW(srcdir,'|')) |
| 1473 | { |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1474 | LPWSTR p = strchrW(srcdir,'|'); |
| 1475 | *p = 0; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | /* now check for root dirs */ |
| 1479 | if (targetdir[0] == '.' && targetdir[1] == 0) |
| 1480 | targetdir = NULL; |
| 1481 | |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1482 | if (targetdir) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1483 | { |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1484 | TRACE(" TargetDefault = %s\n",debugstr_w(targetdir)); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1485 | msi_free( folder->TargetDefault); |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1486 | folder->TargetDefault = strdupW(targetdir); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1487 | } |
| 1488 | |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1489 | if (srcdir) |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1490 | folder->SourceDefault = strdupW(srcdir); |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1491 | else if (shortname) |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1492 | folder->SourceDefault = strdupW(shortname); |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1493 | else if (targetdir) |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1494 | folder->SourceDefault = strdupW(targetdir); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1495 | msi_free(ptargetdir); |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1496 | TRACE(" SourceDefault = %s\n", debugstr_w( folder->SourceDefault )); |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1497 | |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 1498 | parent = MSI_RecordGetString(row,2); |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1499 | if (parent) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1500 | { |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1501 | folder->Parent = load_folder( package, parent ); |
| 1502 | if ( folder->Parent ) |
| 1503 | TRACE("loaded parent %p %s\n", folder->Parent, |
| 1504 | debugstr_w(folder->Parent->Directory)); |
| 1505 | else |
| 1506 | ERR("failed to load parent folder %s\n", debugstr_w(parent)); |
Aric Stewart | bdb2955 | 2004-07-04 00:32:48 +0000 | [diff] [blame] | 1507 | } |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1508 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 1509 | folder->Property = msi_dup_property( package, dir ); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1510 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1511 | msiobj_release(&row->hdr); |
Mike McCormack | 979511f | 2005-08-23 18:15:44 +0000 | [diff] [blame] | 1512 | |
| 1513 | list_add_tail( &package->folders, &folder->entry ); |
| 1514 | |
| 1515 | TRACE("%s returning %p\n",debugstr_w(dir),folder); |
| 1516 | |
| 1517 | return folder; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1520 | /* scan for and update current install states */ |
Mike McCormack | f9acfe6 | 2005-06-07 20:29:51 +0000 | [diff] [blame] | 1521 | static void ACTION_UpdateInstallStates(MSIPACKAGE *package) |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1522 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1523 | MSICOMPONENT *comp; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1524 | MSIFEATURE *feature; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1525 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1526 | LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry ) |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1527 | { |
| 1528 | INSTALLSTATE res; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1529 | res = MsiGetComponentPathW( package->ProductCode, |
| 1530 | comp->ComponentId, NULL, NULL); |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1531 | if (res < 0) |
| 1532 | res = INSTALLSTATE_ABSENT; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1533 | comp->Installed = res; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1534 | } |
| 1535 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1536 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1537 | { |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 1538 | ComponentList *cl; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1539 | INSTALLSTATE res = -10; |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 1540 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1541 | LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1542 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1543 | comp= cl->component; |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 1544 | |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1545 | if (res == -10) |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1546 | res = comp->Installed; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1547 | else |
| 1548 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1549 | if (res == comp->Installed) |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1550 | continue; |
| 1551 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1552 | if (res != comp->Installed) |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1553 | res = INSTALLSTATE_INCOMPLETE; |
| 1554 | } |
| 1555 | } |
Mike McCormack | 8aa1a91 | 2005-08-25 19:19:10 +0000 | [diff] [blame] | 1556 | feature->Installed = res; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1557 | } |
| 1558 | } |
| 1559 | |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1560 | static BOOL process_state_property (MSIPACKAGE* package, LPCWSTR property, |
| 1561 | INSTALLSTATE state) |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1562 | { |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1563 | static const WCHAR all[]={'A','L','L',0}; |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1564 | LPWSTR override; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1565 | MSIFEATURE *feature; |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1566 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 1567 | override = msi_dup_property( package, property ); |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1568 | if (!override) |
| 1569 | return FALSE; |
| 1570 | |
| 1571 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1572 | { |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1573 | if (strcmpiW(override,all)==0) |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1574 | { |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1575 | feature->ActionRequest= state; |
| 1576 | feature->Action = state; |
| 1577 | } |
| 1578 | else |
| 1579 | { |
| 1580 | LPWSTR ptr = override; |
| 1581 | LPWSTR ptr2 = strchrW(override,','); |
Aric Stewart | d900b53 | 2004-12-27 19:12:35 +0000 | [diff] [blame] | 1582 | |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1583 | while (ptr) |
| 1584 | { |
| 1585 | if ((ptr2 && strncmpW(ptr,feature->Feature, ptr2-ptr)==0) |
| 1586 | || (!ptr2 && strcmpW(ptr,feature->Feature)==0)) |
Aric Stewart | d900b53 | 2004-12-27 19:12:35 +0000 | [diff] [blame] | 1587 | { |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1588 | feature->ActionRequest= state; |
| 1589 | feature->Action = state; |
| 1590 | break; |
Aric Stewart | d900b53 | 2004-12-27 19:12:35 +0000 | [diff] [blame] | 1591 | } |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1592 | if (ptr2) |
| 1593 | { |
| 1594 | ptr=ptr2+1; |
| 1595 | ptr2 = strchrW(ptr,','); |
| 1596 | } |
| 1597 | else |
| 1598 | break; |
Aric Stewart | d900b53 | 2004-12-27 19:12:35 +0000 | [diff] [blame] | 1599 | } |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1600 | } |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1601 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1602 | msi_free(override); |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1603 | |
Mike McCormack | 72faac0 | 2005-09-08 11:03:35 +0000 | [diff] [blame] | 1604 | return TRUE; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1605 | } |
| 1606 | |
| 1607 | static UINT SetFeatureStates(MSIPACKAGE *package) |
| 1608 | { |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 1609 | int install_level; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1610 | static const WCHAR szlevel[] = |
| 1611 | {'I','N','S','T','A','L','L','L','E','V','E','L',0}; |
| 1612 | static const WCHAR szAddLocal[] = |
| 1613 | {'A','D','D','L','O','C','A','L',0}; |
| 1614 | static const WCHAR szRemove[] = |
| 1615 | {'R','E','M','O','V','E',0}; |
Aric Stewart | d5655f9 | 2005-11-02 14:21:17 +0000 | [diff] [blame] | 1616 | static const WCHAR szReinstall[] = |
| 1617 | {'R','E','I','N','S','T','A','L','L',0}; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1618 | BOOL override = FALSE; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1619 | MSICOMPONENT* component; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1620 | MSIFEATURE *feature; |
| 1621 | |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1622 | |
| 1623 | /* I do not know if this is where it should happen.. but */ |
| 1624 | |
| 1625 | TRACE("Checking Install Level\n"); |
| 1626 | |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 1627 | install_level = msi_get_property_int( package, szlevel, 1 ); |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1628 | |
| 1629 | /* ok hereis the _real_ rub |
Francois Gouget | fbb3343 | 2005-03-02 13:53:50 +0000 | [diff] [blame] | 1630 | * all these activation/deactivation things happen in order and things |
| 1631 | * later on the list override things earlier on the list. |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1632 | * 1) INSTALLLEVEL processing |
| 1633 | * 2) ADDLOCAL |
| 1634 | * 3) REMOVE |
| 1635 | * 4) ADDSOURCE |
| 1636 | * 5) ADDDEFAULT |
| 1637 | * 6) REINSTALL |
| 1638 | * 7) COMPADDLOCAL |
| 1639 | * 8) COMPADDSOURCE |
| 1640 | * 9) FILEADDLOCAL |
| 1641 | * 10) FILEADDSOURCE |
| 1642 | * 11) FILEADDDEFAULT |
Francois Gouget | fbb3343 | 2005-03-02 13:53:50 +0000 | [diff] [blame] | 1643 | * I have confirmed that if ADDLOCAL is stated then the INSTALLLEVEL is |
| 1644 | * ignored for all the features. seems strange, especially since it is not |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1645 | * documented anywhere, but it is how it works. |
| 1646 | * |
Francois Gouget | fbb3343 | 2005-03-02 13:53:50 +0000 | [diff] [blame] | 1647 | * I am still ignoring a lot of these. But that is ok for now, ADDLOCAL and |
| 1648 | * REMOVE are the big ones, since we don't handle administrative installs |
| 1649 | * yet anyway. |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1650 | */ |
| 1651 | override |= process_state_property(package,szAddLocal,INSTALLSTATE_LOCAL); |
| 1652 | override |= process_state_property(package,szRemove,INSTALLSTATE_ABSENT); |
Aric Stewart | d5655f9 | 2005-11-02 14:21:17 +0000 | [diff] [blame] | 1653 | override |= process_state_property(package,szReinstall,INSTALLSTATE_LOCAL); |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1654 | |
| 1655 | if (!override) |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1656 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1657 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1658 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1659 | BOOL feature_state = ((feature->Level > 0) && |
| 1660 | (feature->Level <= install_level)); |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1661 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1662 | if ((feature_state) && (feature->Action == INSTALLSTATE_UNKNOWN)) |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1663 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1664 | if (feature->Attributes & msidbFeatureAttributesFavorSource) |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1665 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1666 | feature->ActionRequest = INSTALLSTATE_SOURCE; |
| 1667 | feature->Action = INSTALLSTATE_SOURCE; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1668 | } |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1669 | else if (feature->Attributes & msidbFeatureAttributesFavorAdvertise) |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1670 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1671 | feature->ActionRequest = INSTALLSTATE_ADVERTISED; |
| 1672 | feature->Action = INSTALLSTATE_ADVERTISED; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1673 | } |
| 1674 | else |
| 1675 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1676 | feature->ActionRequest = INSTALLSTATE_LOCAL; |
| 1677 | feature->Action = INSTALLSTATE_LOCAL; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1678 | } |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1679 | } |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1680 | } |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1681 | } |
Aric Stewart | 6999a04 | 2005-06-08 19:20:02 +0000 | [diff] [blame] | 1682 | else |
| 1683 | { |
| 1684 | /* set the Preselected Property */ |
| 1685 | static const WCHAR szPreselected[] = {'P','r','e','s','e','l','e','c','t','e','d',0}; |
| 1686 | static const WCHAR szOne[] = { '1', 0 }; |
| 1687 | |
| 1688 | MSI_SetPropertyW(package,szPreselected,szOne); |
| 1689 | } |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1690 | |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1691 | /* |
| 1692 | * now we want to enable or disable components base on feature |
| 1693 | */ |
| 1694 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1695 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1696 | { |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 1697 | ComponentList *cl; |
| 1698 | |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1699 | TRACE("Examining Feature %s (Installed %i, Action %i, Request %i)\n", |
| 1700 | debugstr_w(feature->Feature), feature->Installed, feature->Action, |
| 1701 | feature->ActionRequest); |
| 1702 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1703 | LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1704 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1705 | component = cl->component; |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1706 | |
| 1707 | if (!component->Enabled) |
| 1708 | { |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1709 | component->Action = INSTALLSTATE_UNKNOWN; |
| 1710 | component->ActionRequest = INSTALLSTATE_UNKNOWN; |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1711 | } |
| 1712 | else |
| 1713 | { |
| 1714 | if (feature->Action == INSTALLSTATE_LOCAL) |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1715 | { |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1716 | component->Action = INSTALLSTATE_LOCAL; |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1717 | component->ActionRequest = INSTALLSTATE_LOCAL; |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1718 | } |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1719 | else if (feature->ActionRequest == INSTALLSTATE_SOURCE) |
| 1720 | { |
| 1721 | if ((component->Action == INSTALLSTATE_UNKNOWN) || |
| 1722 | (component->Action == INSTALLSTATE_ABSENT) || |
| 1723 | (component->Action == INSTALLSTATE_ADVERTISED)) |
| 1724 | |
| 1725 | { |
| 1726 | component->Action = INSTALLSTATE_SOURCE; |
| 1727 | component->ActionRequest = INSTALLSTATE_SOURCE; |
| 1728 | } |
| 1729 | } |
| 1730 | else if (feature->ActionRequest == INSTALLSTATE_ADVERTISED) |
| 1731 | { |
| 1732 | if ((component->Action == INSTALLSTATE_UNKNOWN) || |
| 1733 | (component->Action == INSTALLSTATE_ABSENT)) |
| 1734 | |
| 1735 | { |
| 1736 | component->Action = INSTALLSTATE_ADVERTISED; |
| 1737 | component->ActionRequest = INSTALLSTATE_ADVERTISED; |
| 1738 | } |
| 1739 | } |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1740 | else if (feature->ActionRequest == INSTALLSTATE_ABSENT) |
| 1741 | { |
| 1742 | if (component->Action == INSTALLSTATE_UNKNOWN) |
| 1743 | { |
| 1744 | component->Action = INSTALLSTATE_ABSENT; |
| 1745 | component->ActionRequest = INSTALLSTATE_ABSENT; |
| 1746 | } |
| 1747 | } |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1748 | } |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1749 | } |
| 1750 | } |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1751 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1752 | LIST_FOR_EACH_ENTRY( component, &package->components, MSICOMPONENT, entry ) |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1753 | { |
Aric Stewart | fbdd709 | 2004-12-27 19:06:22 +0000 | [diff] [blame] | 1754 | TRACE("Result: Component %s (Installed %i, Action %i, Request %i)\n", |
| 1755 | debugstr_w(component->Component), component->Installed, |
| 1756 | component->Action, component->ActionRequest); |
| 1757 | } |
| 1758 | |
| 1759 | |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1760 | return ERROR_SUCCESS; |
| 1761 | } |
| 1762 | |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1763 | static UINT ITERATE_CostFinalizeDirectories(MSIRECORD *row, LPVOID param) |
| 1764 | { |
| 1765 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
| 1766 | LPCWSTR name; |
| 1767 | LPWSTR path; |
| 1768 | |
| 1769 | name = MSI_RecordGetString(row,1); |
| 1770 | |
| 1771 | /* This helper function now does ALL the work */ |
| 1772 | TRACE("Dir %s ...\n",debugstr_w(name)); |
| 1773 | load_folder(package,name); |
| 1774 | path = resolve_folder(package,name,FALSE,TRUE,NULL); |
| 1775 | TRACE("resolves to %s\n",debugstr_w(path)); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1776 | msi_free(path); |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1777 | |
| 1778 | return ERROR_SUCCESS; |
| 1779 | } |
| 1780 | |
| 1781 | static UINT ITERATE_CostFinalizeConditions(MSIRECORD *row, LPVOID param) |
| 1782 | { |
| 1783 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1784 | LPCWSTR name; |
| 1785 | MSIFEATURE *feature; |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1786 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1787 | name = MSI_RecordGetString( row, 1 ); |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1788 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1789 | feature = get_loaded_feature( package, name ); |
| 1790 | if (!feature) |
| 1791 | ERR("FAILED to find loaded feature %s\n",debugstr_w(name)); |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1792 | else |
| 1793 | { |
| 1794 | LPCWSTR Condition; |
| 1795 | Condition = MSI_RecordGetString(row,3); |
| 1796 | |
Aric Stewart | 0713f09 | 2005-06-24 11:51:29 +0000 | [diff] [blame] | 1797 | if (MSI_EvaluateConditionW(package,Condition) == MSICONDITION_TRUE) |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1798 | { |
| 1799 | int level = MSI_RecordGetInteger(row,2); |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 1800 | TRACE("Reseting feature %s to level %i\n", debugstr_w(name), level); |
| 1801 | feature->Level = level; |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1802 | } |
| 1803 | } |
| 1804 | return ERROR_SUCCESS; |
| 1805 | } |
| 1806 | |
| 1807 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1808 | /* |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 1809 | * A lot is done in this function aside from just the costing. |
Mike McCormack | 6e2bca3 | 2004-07-04 00:25:00 +0000 | [diff] [blame] | 1810 | * The costing needs to be implemented at some point but for now I am going |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1811 | * to focus on the directory building |
| 1812 | * |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1813 | */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1814 | static UINT ACTION_CostFinalize(MSIPACKAGE *package) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1815 | { |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1816 | static const WCHAR ExecSeqQuery[] = |
| 1817 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1818 | '`','D','i','r','e','c','t','o','r','y','`',0}; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1819 | static const WCHAR ConditionQuery[] = |
| 1820 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 1821 | '`','C','o','n','d','i','t','i','o','n','`',0}; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 1822 | static const WCHAR szCosting[] = |
| 1823 | {'C','o','s','t','i','n','g','C','o','m','p','l','e','t','e',0 }; |
| 1824 | static const WCHAR szlevel[] = |
| 1825 | {'I','N','S','T','A','L','L','L','E','V','E','L',0}; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1826 | static const WCHAR szOne[] = { '1', 0 }; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1827 | MSICOMPONENT *comp; |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1828 | MSIFILE *file; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1829 | UINT rc; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1830 | MSIQUERY * view; |
Aric Stewart | 8cc14a9 | 2004-12-27 18:56:30 +0000 | [diff] [blame] | 1831 | LPWSTR level; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1832 | |
Mike McCormack | 9293f86 | 2005-10-30 19:16:45 +0000 | [diff] [blame] | 1833 | if ( 1 == msi_get_property_int( package, szCosting, 0 ) ) |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 1834 | return ERROR_SUCCESS; |
Mike McCormack | 9293f86 | 2005-10-30 19:16:45 +0000 | [diff] [blame] | 1835 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1836 | TRACE("Building Directory properties\n"); |
| 1837 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1838 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 1839 | if (rc == ERROR_SUCCESS) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1840 | { |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1841 | rc = MSI_IterateRecords(view, NULL, ITERATE_CostFinalizeDirectories, |
| 1842 | package); |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 1843 | msiobj_release(&view->hdr); |
| 1844 | } |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1845 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1846 | TRACE("File calculations\n"); |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1847 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 1848 | LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry ) |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1849 | { |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1850 | MSICOMPONENT* comp = file->Component; |
| 1851 | LPWSTR p; |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1852 | |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1853 | if (!comp) |
| 1854 | continue; |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1855 | |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1856 | /* calculate target */ |
| 1857 | p = resolve_folder(package, comp->Directory, FALSE, FALSE, NULL); |
| 1858 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1859 | msi_free(file->TargetPath); |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1860 | |
| 1861 | TRACE("file %s is named %s\n", |
| 1862 | debugstr_w(file->File),debugstr_w(file->FileName)); |
| 1863 | |
| 1864 | file->TargetPath = build_directory_name(2, p, file->FileName); |
| 1865 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1866 | msi_free(p); |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1867 | |
| 1868 | TRACE("file %s resolves to %s\n", |
| 1869 | debugstr_w(file->File),debugstr_w(file->TargetPath)); |
| 1870 | |
| 1871 | if (GetFileAttributesW(file->TargetPath) == INVALID_FILE_ATTRIBUTES) |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1872 | { |
Mike McCormack | dded8fb | 2005-11-02 10:56:42 +0000 | [diff] [blame] | 1873 | file->state = msifs_missing; |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1874 | comp->Cost += file->FileSize; |
| 1875 | continue; |
| 1876 | } |
Mike McCormack | ba8200b | 2004-12-22 15:25:30 +0000 | [diff] [blame] | 1877 | |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1878 | if (file->Version) |
| 1879 | { |
| 1880 | DWORD handle; |
| 1881 | DWORD versize; |
| 1882 | UINT sz; |
| 1883 | LPVOID version; |
Ivan Leo Puoti | 5b22e4d | 2005-11-03 11:35:11 +0000 | [diff] [blame^] | 1884 | static WCHAR name[] = {'\\',0}; |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1885 | static const WCHAR name_fmt[] = |
| 1886 | {'%','u','.','%','u','.','%','u','.','%','u',0}; |
| 1887 | WCHAR filever[0x100]; |
| 1888 | VS_FIXEDFILEINFO *lpVer; |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 1889 | |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1890 | TRACE("Version comparison.. \n"); |
| 1891 | versize = GetFileVersionInfoSizeW(file->TargetPath,&handle); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1892 | version = msi_alloc(versize); |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1893 | GetFileVersionInfoW(file->TargetPath, 0, versize, version); |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 1894 | |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1895 | VerQueryValueW(version, name, (LPVOID*)&lpVer, &sz); |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 1896 | |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1897 | sprintfW(filever,name_fmt, |
| 1898 | HIWORD(lpVer->dwFileVersionMS), |
| 1899 | LOWORD(lpVer->dwFileVersionMS), |
| 1900 | HIWORD(lpVer->dwFileVersionLS), |
| 1901 | LOWORD(lpVer->dwFileVersionLS)); |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1902 | |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1903 | TRACE("new %s old %s\n", debugstr_w(file->Version), |
| 1904 | debugstr_w(filever)); |
| 1905 | if (strcmpiW(filever,file->Version)<0) |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1906 | { |
Mike McCormack | dded8fb | 2005-11-02 10:56:42 +0000 | [diff] [blame] | 1907 | file->state = msifs_overwrite; |
| 1908 | /* FIXME: cost should be diff in size */ |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1909 | comp->Cost += file->FileSize; |
| 1910 | } |
| 1911 | else |
Mike McCormack | dded8fb | 2005-11-02 10:56:42 +0000 | [diff] [blame] | 1912 | file->state = msifs_present; |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1913 | msi_free(version); |
Mike McCormack | f11c8b0 | 2005-09-09 14:48:51 +0000 | [diff] [blame] | 1914 | } |
| 1915 | else |
Mike McCormack | dded8fb | 2005-11-02 10:56:42 +0000 | [diff] [blame] | 1916 | file->state = msifs_present; |
Aric Stewart | ec688fb | 2004-07-04 00:35:52 +0000 | [diff] [blame] | 1917 | } |
| 1918 | |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 1919 | TRACE("Evaluating Condition Table\n"); |
Aric Stewart | 2e9b5f7 | 2004-07-04 00:31:17 +0000 | [diff] [blame] | 1920 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1921 | rc = MSI_DatabaseOpenViewW(package->db, ConditionQuery, &view); |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 1922 | if (rc == ERROR_SUCCESS) |
| 1923 | { |
Aric Stewart | 443ad4d | 2005-06-21 20:50:12 +0000 | [diff] [blame] | 1924 | rc = MSI_IterateRecords(view, NULL, ITERATE_CostFinalizeConditions, |
| 1925 | package); |
Mike McCormack | ac6a413 | 2005-01-04 20:36:12 +0000 | [diff] [blame] | 1926 | msiobj_release(&view->hdr); |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 1927 | } |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 1928 | |
| 1929 | TRACE("Enabling or Disabling Components\n"); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1930 | LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry ) |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 1931 | { |
Mike McCormack | 298cdae | 2005-09-06 11:39:01 +0000 | [diff] [blame] | 1932 | if (comp->Condition) |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 1933 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1934 | if (MSI_EvaluateConditionW(package, |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1935 | comp->Condition) == MSICONDITION_FALSE) |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 1936 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 1937 | TRACE("Disabling component %s\n", debugstr_w(comp->Component)); |
| 1938 | comp->Enabled = FALSE; |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 1939 | } |
| 1940 | } |
| 1941 | } |
| 1942 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1943 | MSI_SetPropertyW(package,szCosting,szOne); |
Aric Stewart | 8cc14a9 | 2004-12-27 18:56:30 +0000 | [diff] [blame] | 1944 | /* set default run level if not set */ |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 1945 | level = msi_dup_property( package, szlevel ); |
Aric Stewart | 8cc14a9 | 2004-12-27 18:56:30 +0000 | [diff] [blame] | 1946 | if (!level) |
| 1947 | MSI_SetPropertyW(package,szlevel, szOne); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1948 | msi_free(level); |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1949 | |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1950 | ACTION_UpdateInstallStates(package); |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 1951 | |
Aric Stewart | 78a04e3 | 2005-02-22 15:47:00 +0000 | [diff] [blame] | 1952 | return SetFeatureStates(package); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1953 | } |
| 1954 | |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 1955 | /* OK this value is "interpreted" and then formatted based on the |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 1956 | first few characters */ |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 1957 | static LPSTR parse_value(MSIPACKAGE *package, LPCWSTR value, DWORD *type, |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1958 | DWORD *size) |
| 1959 | { |
| 1960 | LPSTR data = NULL; |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 1961 | if (value[0]=='#' && value[1]!='#' && value[1]!='%') |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 1962 | { |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 1963 | if (value[1]=='x') |
| 1964 | { |
| 1965 | LPWSTR ptr; |
| 1966 | CHAR byte[5]; |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1967 | LPWSTR deformated = NULL; |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 1968 | int count; |
| 1969 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 1970 | deformat_string(package, &value[2], &deformated); |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 1971 | |
| 1972 | /* binary value type */ |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1973 | ptr = deformated; |
| 1974 | *type = REG_BINARY; |
| 1975 | if (strlenW(ptr)%2) |
| 1976 | *size = (strlenW(ptr)/2)+1; |
| 1977 | else |
| 1978 | *size = strlenW(ptr)/2; |
| 1979 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 1980 | data = msi_alloc(*size); |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1981 | |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 1982 | byte[0] = '0'; |
| 1983 | byte[1] = 'x'; |
| 1984 | byte[4] = 0; |
| 1985 | count = 0; |
Aric Stewart | 6186b2b | 2005-05-16 21:37:35 +0000 | [diff] [blame] | 1986 | /* if uneven pad with a zero in front */ |
| 1987 | if (strlenW(ptr)%2) |
| 1988 | { |
| 1989 | byte[2]= '0'; |
| 1990 | byte[3]= *ptr; |
| 1991 | ptr++; |
| 1992 | data[count] = (BYTE)strtol(byte,NULL,0); |
| 1993 | count ++; |
| 1994 | TRACE("Uneven byte count\n"); |
| 1995 | } |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 1996 | while (*ptr) |
| 1997 | { |
| 1998 | byte[2]= *ptr; |
| 1999 | ptr++; |
| 2000 | byte[3]= *ptr; |
| 2001 | ptr++; |
| 2002 | data[count] = (BYTE)strtol(byte,NULL,0); |
| 2003 | count ++; |
| 2004 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2005 | msi_free(deformated); |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 2006 | |
| 2007 | TRACE("Data %li bytes(%i)\n",*size,count); |
| 2008 | } |
| 2009 | else |
| 2010 | { |
| 2011 | LPWSTR deformated; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2012 | LPWSTR p; |
| 2013 | DWORD d = 0; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2014 | deformat_string(package, &value[1], &deformated); |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 2015 | |
| 2016 | *type=REG_DWORD; |
| 2017 | *size = sizeof(DWORD); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2018 | data = msi_alloc(*size); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2019 | p = deformated; |
| 2020 | if (*p == '-') |
| 2021 | p++; |
| 2022 | while (*p) |
| 2023 | { |
| 2024 | if ( (*p < '0') || (*p > '9') ) |
| 2025 | break; |
| 2026 | d *= 10; |
| 2027 | d += (*p - '0'); |
| 2028 | p++; |
| 2029 | } |
| 2030 | if (deformated[0] == '-') |
| 2031 | d = -d; |
| 2032 | *(LPDWORD)data = d; |
| 2033 | TRACE("DWORD %li\n",*(LPDWORD)data); |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 2034 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2035 | msi_free(deformated); |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 2036 | } |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2037 | } |
| 2038 | else |
| 2039 | { |
Aric Stewart | 54c67dd | 2005-01-25 20:17:09 +0000 | [diff] [blame] | 2040 | static const WCHAR szMulti[] = {'[','~',']',0}; |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 2041 | LPCWSTR ptr; |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 2042 | *type=REG_SZ; |
| 2043 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2044 | if (value[0]=='#') |
Aric Stewart | 6e160f1 | 2004-06-29 04:07:22 +0000 | [diff] [blame] | 2045 | { |
| 2046 | if (value[1]=='%') |
| 2047 | { |
| 2048 | ptr = &value[2]; |
| 2049 | *type=REG_EXPAND_SZ; |
| 2050 | } |
| 2051 | else |
| 2052 | ptr = &value[1]; |
| 2053 | } |
| 2054 | else |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2055 | ptr=value; |
| 2056 | |
Aric Stewart | 54c67dd | 2005-01-25 20:17:09 +0000 | [diff] [blame] | 2057 | if (strstrW(value,szMulti)) |
| 2058 | *type = REG_MULTI_SZ; |
| 2059 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2060 | *size = deformat_string(package, ptr,(LPWSTR*)&data); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2061 | } |
| 2062 | return data; |
| 2063 | } |
| 2064 | |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2065 | static UINT ITERATE_WriteRegistryValues(MSIRECORD *row, LPVOID param) |
| 2066 | { |
| 2067 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
| 2068 | static const WCHAR szHCR[] = |
| 2069 | {'H','K','E','Y','_','C','L','A','S','S','E','S','_', |
| 2070 | 'R','O','O','T','\\',0}; |
| 2071 | static const WCHAR szHCU[] = |
| 2072 | {'H','K','E','Y','_','C','U','R','R','E','N','T','_', |
| 2073 | 'U','S','E','R','\\',0}; |
| 2074 | static const WCHAR szHLM[] = |
| 2075 | {'H','K','E','Y','_','L','O','C','A','L','_', |
| 2076 | 'M','A','C','H','I','N','E','\\',0}; |
| 2077 | static const WCHAR szHU[] = |
| 2078 | {'H','K','E','Y','_','U','S','E','R','S','\\',0}; |
| 2079 | |
| 2080 | LPSTR value_data = NULL; |
| 2081 | HKEY root_key, hkey; |
| 2082 | DWORD type,size; |
| 2083 | LPWSTR deformated; |
| 2084 | LPCWSTR szRoot, component, name, key, value; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2085 | MSICOMPONENT *comp; |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2086 | MSIRECORD * uirow; |
| 2087 | LPWSTR uikey; |
| 2088 | INT root; |
| 2089 | BOOL check_first = FALSE; |
| 2090 | UINT rc; |
| 2091 | |
| 2092 | ui_progress(package,2,0,0,0); |
| 2093 | |
| 2094 | value = NULL; |
| 2095 | key = NULL; |
| 2096 | uikey = NULL; |
| 2097 | name = NULL; |
| 2098 | |
| 2099 | component = MSI_RecordGetString(row, 6); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2100 | comp = get_loaded_component(package,component); |
Johan Dahlin | 0946c42 | 2005-08-24 10:57:27 +0000 | [diff] [blame] | 2101 | if (!comp) |
| 2102 | return ERROR_SUCCESS; |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2103 | |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 2104 | if (!ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL)) |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2105 | { |
| 2106 | TRACE("Skipping write due to disabled component %s\n", |
| 2107 | debugstr_w(component)); |
| 2108 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2109 | comp->Action = comp->Installed; |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2110 | |
| 2111 | return ERROR_SUCCESS; |
| 2112 | } |
| 2113 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2114 | comp->Action = INSTALLSTATE_LOCAL; |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2115 | |
| 2116 | name = MSI_RecordGetString(row, 4); |
| 2117 | if( MSI_RecordIsNull(row,5) && name ) |
| 2118 | { |
| 2119 | /* null values can have special meanings */ |
| 2120 | if (name[0]=='-' && name[1] == 0) |
| 2121 | return ERROR_SUCCESS; |
| 2122 | else if ((name[0]=='+' && name[1] == 0) || |
| 2123 | (name[0] == '*' && name[1] == 0)) |
| 2124 | name = NULL; |
| 2125 | check_first = TRUE; |
| 2126 | } |
| 2127 | |
| 2128 | root = MSI_RecordGetInteger(row,2); |
| 2129 | key = MSI_RecordGetString(row, 3); |
| 2130 | |
| 2131 | /* get the root key */ |
| 2132 | switch (root) |
| 2133 | { |
Aric Stewart | 0713f09 | 2005-06-24 11:51:29 +0000 | [diff] [blame] | 2134 | case -1: |
| 2135 | { |
| 2136 | static const WCHAR szALLUSER[] = {'A','L','L','U','S','E','R','S',0}; |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 2137 | LPWSTR all_users = msi_dup_property( package, szALLUSER ); |
Aric Stewart | 0713f09 | 2005-06-24 11:51:29 +0000 | [diff] [blame] | 2138 | if (all_users && all_users[0] == '1') |
| 2139 | { |
| 2140 | root_key = HKEY_LOCAL_MACHINE; |
| 2141 | szRoot = szHLM; |
| 2142 | } |
| 2143 | else |
| 2144 | { |
| 2145 | root_key = HKEY_CURRENT_USER; |
| 2146 | szRoot = szHCU; |
| 2147 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2148 | msi_free(all_users); |
Aric Stewart | 0713f09 | 2005-06-24 11:51:29 +0000 | [diff] [blame] | 2149 | } |
| 2150 | break; |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2151 | case 0: root_key = HKEY_CLASSES_ROOT; |
| 2152 | szRoot = szHCR; |
| 2153 | break; |
| 2154 | case 1: root_key = HKEY_CURRENT_USER; |
| 2155 | szRoot = szHCU; |
| 2156 | break; |
| 2157 | case 2: root_key = HKEY_LOCAL_MACHINE; |
| 2158 | szRoot = szHLM; |
| 2159 | break; |
| 2160 | case 3: root_key = HKEY_USERS; |
| 2161 | szRoot = szHU; |
| 2162 | break; |
| 2163 | default: |
| 2164 | ERR("Unknown root %i\n",root); |
| 2165 | root_key=NULL; |
| 2166 | szRoot = NULL; |
| 2167 | break; |
| 2168 | } |
| 2169 | if (!root_key) |
| 2170 | return ERROR_SUCCESS; |
| 2171 | |
| 2172 | deformat_string(package, key , &deformated); |
| 2173 | size = strlenW(deformated) + strlenW(szRoot) + 1; |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2174 | uikey = msi_alloc(size*sizeof(WCHAR)); |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2175 | strcpyW(uikey,szRoot); |
| 2176 | strcatW(uikey,deformated); |
| 2177 | |
| 2178 | if (RegCreateKeyW( root_key, deformated, &hkey)) |
| 2179 | { |
| 2180 | ERR("Could not create key %s\n",debugstr_w(deformated)); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2181 | msi_free(deformated); |
| 2182 | msi_free(uikey); |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2183 | return ERROR_SUCCESS; |
| 2184 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2185 | msi_free(deformated); |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2186 | |
| 2187 | value = MSI_RecordGetString(row,5); |
| 2188 | if (value) |
| 2189 | value_data = parse_value(package, value, &type, &size); |
| 2190 | else |
| 2191 | { |
| 2192 | static const WCHAR szEmpty[] = {0}; |
| 2193 | value_data = (LPSTR)strdupW(szEmpty); |
| 2194 | size = 0; |
| 2195 | type = REG_SZ; |
| 2196 | } |
| 2197 | |
| 2198 | deformat_string(package, name, &deformated); |
| 2199 | |
| 2200 | /* get the double nulls to terminate SZ_MULTI */ |
| 2201 | if (type == REG_MULTI_SZ) |
| 2202 | size +=sizeof(WCHAR); |
| 2203 | |
| 2204 | if (!check_first) |
| 2205 | { |
| 2206 | TRACE("Setting value %s of %s\n",debugstr_w(deformated), |
| 2207 | debugstr_w(uikey)); |
Mike McCormack | 16466af | 2005-07-06 10:33:30 +0000 | [diff] [blame] | 2208 | RegSetValueExW(hkey, deformated, 0, type, (LPBYTE)value_data, size); |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2209 | } |
| 2210 | else |
| 2211 | { |
| 2212 | DWORD sz = 0; |
| 2213 | rc = RegQueryValueExW(hkey, deformated, NULL, NULL, NULL, &sz); |
| 2214 | if (rc == ERROR_SUCCESS || rc == ERROR_MORE_DATA) |
| 2215 | { |
| 2216 | TRACE("value %s of %s checked already exists\n", |
| 2217 | debugstr_w(deformated), debugstr_w(uikey)); |
| 2218 | } |
| 2219 | else |
| 2220 | { |
| 2221 | TRACE("Checked and setting value %s of %s\n", |
| 2222 | debugstr_w(deformated), debugstr_w(uikey)); |
| 2223 | if (deformated || size) |
Mike McCormack | 16466af | 2005-07-06 10:33:30 +0000 | [diff] [blame] | 2224 | RegSetValueExW(hkey, deformated, 0, type, (LPBYTE) value_data, size); |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2225 | } |
| 2226 | } |
| 2227 | RegCloseKey(hkey); |
| 2228 | |
| 2229 | uirow = MSI_CreateRecord(3); |
| 2230 | MSI_RecordSetStringW(uirow,2,deformated); |
| 2231 | MSI_RecordSetStringW(uirow,1,uikey); |
| 2232 | |
| 2233 | if (type == REG_SZ) |
| 2234 | MSI_RecordSetStringW(uirow,3,(LPWSTR)value_data); |
| 2235 | else |
| 2236 | MSI_RecordSetStringW(uirow,3,value); |
| 2237 | |
| 2238 | ui_actiondata(package,szWriteRegistryValues,uirow); |
| 2239 | msiobj_release( &uirow->hdr ); |
| 2240 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2241 | msi_free(value_data); |
| 2242 | msi_free(deformated); |
| 2243 | msi_free(uikey); |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2244 | |
| 2245 | return ERROR_SUCCESS; |
| 2246 | } |
| 2247 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2248 | static UINT ACTION_WriteRegistryValues(MSIPACKAGE *package) |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2249 | { |
| 2250 | UINT rc; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2251 | MSIQUERY * view; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2252 | static const WCHAR ExecSeqQuery[] = |
| 2253 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 2254 | '`','R','e','g','i','s','t','r','y','`',0 }; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2255 | |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2256 | if (!package) |
| 2257 | return ERROR_INVALID_HANDLE; |
| 2258 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2259 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2260 | if (rc != ERROR_SUCCESS) |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 2261 | return ERROR_SUCCESS; |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2262 | |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 2263 | /* increment progress bar each time action data is sent */ |
Aric Stewart | bd1bbc1 | 2005-01-03 20:00:13 +0000 | [diff] [blame] | 2264 | ui_progress(package,1,REG_PROGRESS_VALUE,1,0); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 2265 | |
Aric Stewart | 92ef78e | 2005-06-21 20:21:18 +0000 | [diff] [blame] | 2266 | rc = MSI_IterateRecords(view, NULL, ITERATE_WriteRegistryValues, package); |
Aric Stewart | d2c395a | 2004-07-06 18:48:15 +0000 | [diff] [blame] | 2267 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2268 | msiobj_release(&view->hdr); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 2269 | return rc; |
| 2270 | } |
| 2271 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2272 | static UINT ACTION_InstallInitialize(MSIPACKAGE *package) |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2273 | { |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 2274 | package->script->CurrentlyScripting = TRUE; |
| 2275 | |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2276 | return ERROR_SUCCESS; |
| 2277 | } |
| 2278 | |
Aric Stewart | ae1aa32 | 2004-12-27 19:02:59 +0000 | [diff] [blame] | 2279 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2280 | static UINT ACTION_InstallValidate(MSIPACKAGE *package) |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2281 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2282 | MSICOMPONENT *comp; |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2283 | DWORD progress = 0; |
Aric Stewart | bd1bbc1 | 2005-01-03 20:00:13 +0000 | [diff] [blame] | 2284 | DWORD total = 0; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2285 | static const WCHAR q1[]= |
| 2286 | {'S','E','L','E','C','T',' ','*',' ', 'F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 2287 | '`','R','e','g','i','s','t','r','y','`',0}; |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2288 | UINT rc; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2289 | MSIQUERY * view; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2290 | MSIFEATURE *feature; |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2291 | MSIFILE *file; |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2292 | |
Mike McCormack | f3f12ab | 2005-09-21 10:20:03 +0000 | [diff] [blame] | 2293 | TRACE("InstallValidate\n"); |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2294 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2295 | rc = MSI_DatabaseOpenViewW(package->db, q1, &view); |
Mike McCormack | f3f12ab | 2005-09-21 10:20:03 +0000 | [diff] [blame] | 2296 | if (rc == ERROR_SUCCESS) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2297 | { |
Mike McCormack | f3f12ab | 2005-09-21 10:20:03 +0000 | [diff] [blame] | 2298 | MSI_IterateRecords( view, &progress, NULL, package ); |
| 2299 | msiobj_release( &view->hdr ); |
| 2300 | total += progress * REG_PROGRESS_VALUE; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2301 | } |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2302 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2303 | LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry ) |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2304 | total += COMPONENT_PROGRESS_VALUE; |
Mike McCormack | f3f12ab | 2005-09-21 10:20:03 +0000 | [diff] [blame] | 2305 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2306 | LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry ) |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2307 | total += file->FileSize; |
Mike McCormack | f3f12ab | 2005-09-21 10:20:03 +0000 | [diff] [blame] | 2308 | |
Aric Stewart | bd1bbc1 | 2005-01-03 20:00:13 +0000 | [diff] [blame] | 2309 | ui_progress(package,0,total,0,0); |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2310 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2311 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 2312 | { |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 2313 | TRACE("Feature: %s; Installed: %i; Action %i; Request %i\n", |
| 2314 | debugstr_w(feature->Feature), feature->Installed, feature->Action, |
| 2315 | feature->ActionRequest); |
| 2316 | } |
| 2317 | |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2318 | return ERROR_SUCCESS; |
| 2319 | } |
| 2320 | |
Aric Stewart | c79f4e2 | 2005-06-22 18:03:08 +0000 | [diff] [blame] | 2321 | static UINT ITERATE_LaunchConditions(MSIRECORD *row, LPVOID param) |
| 2322 | { |
| 2323 | MSIPACKAGE* package = (MSIPACKAGE*)param; |
| 2324 | LPCWSTR cond = NULL; |
| 2325 | LPCWSTR message = NULL; |
| 2326 | static const WCHAR title[]= |
| 2327 | {'I','n','s','t','a','l','l',' ','F','a', 'i','l','e','d',0}; |
| 2328 | |
| 2329 | cond = MSI_RecordGetString(row,1); |
| 2330 | |
| 2331 | if (MSI_EvaluateConditionW(package,cond) != MSICONDITION_TRUE) |
| 2332 | { |
| 2333 | LPWSTR deformated; |
| 2334 | message = MSI_RecordGetString(row,2); |
| 2335 | deformat_string(package,message,&deformated); |
| 2336 | MessageBoxW(NULL,deformated,title,MB_OK); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2337 | msi_free(deformated); |
Aric Stewart | c79f4e2 | 2005-06-22 18:03:08 +0000 | [diff] [blame] | 2338 | return ERROR_FUNCTION_FAILED; |
| 2339 | } |
| 2340 | |
| 2341 | return ERROR_SUCCESS; |
| 2342 | } |
| 2343 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2344 | static UINT ACTION_LaunchConditions(MSIPACKAGE *package) |
Aric Stewart | 5b936ca | 2004-07-06 18:47:09 +0000 | [diff] [blame] | 2345 | { |
| 2346 | UINT rc; |
Mike McCormack | f3c8b83 | 2004-07-19 19:35:05 +0000 | [diff] [blame] | 2347 | MSIQUERY * view = NULL; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2348 | static const WCHAR ExecSeqQuery[] = |
| 2349 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 2350 | '`','L','a','u','n','c','h','C','o','n','d','i','t','i','o','n','`',0}; |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2351 | |
Aric Stewart | 5b936ca | 2004-07-06 18:47:09 +0000 | [diff] [blame] | 2352 | TRACE("Checking launch conditions\n"); |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2353 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2354 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
Aric Stewart | 5b936ca | 2004-07-06 18:47:09 +0000 | [diff] [blame] | 2355 | if (rc != ERROR_SUCCESS) |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 2356 | return ERROR_SUCCESS; |
Aric Stewart | 5b936ca | 2004-07-06 18:47:09 +0000 | [diff] [blame] | 2357 | |
Aric Stewart | c79f4e2 | 2005-06-22 18:03:08 +0000 | [diff] [blame] | 2358 | rc = MSI_IterateRecords(view, NULL, ITERATE_LaunchConditions, package); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2359 | msiobj_release(&view->hdr); |
Aric Stewart | c79f4e2 | 2005-06-22 18:03:08 +0000 | [diff] [blame] | 2360 | |
Aric Stewart | 5b936ca | 2004-07-06 18:47:09 +0000 | [diff] [blame] | 2361 | return rc; |
| 2362 | } |
Aric Stewart | 7d3e597 | 2004-07-04 00:36:58 +0000 | [diff] [blame] | 2363 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2364 | static LPWSTR resolve_keypath( MSIPACKAGE* package, MSICOMPONENT *cmp ) |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2365 | { |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2366 | |
Mike McCormack | efcc1ec | 2005-09-12 12:07:15 +0000 | [diff] [blame] | 2367 | if (!cmp->KeyPath) |
| 2368 | return resolve_folder(package,cmp->Directory,FALSE,FALSE,NULL); |
| 2369 | |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2370 | if (cmp->Attributes & msidbComponentAttributesRegistryKeyPath) |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2371 | { |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2372 | MSIRECORD * row = 0; |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 2373 | UINT root,len; |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 2374 | LPWSTR deformated,buffer,deformated_name; |
| 2375 | LPCWSTR key,name; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2376 | static const WCHAR ExecSeqQuery[] = |
| 2377 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 2378 | '`','R','e','g','i','s','t','r','y','`',' ', |
| 2379 | 'W','H','E','R','E',' ', '`','R','e','g','i','s','t','r','y','`', |
| 2380 | ' ','=',' ' ,'\'','%','s','\'',0 }; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2381 | static const WCHAR fmt[]={'%','0','2','i',':','\\','%','s','\\',0}; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2382 | static const WCHAR fmt2[]= |
| 2383 | {'%','0','2','i',':','\\','%','s','\\','%','s',0}; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2384 | |
Mike McCormack | 0b352c7 | 2005-06-02 10:29:57 +0000 | [diff] [blame] | 2385 | row = MSI_QueryGetRecord(package->db, ExecSeqQuery,cmp->KeyPath); |
| 2386 | if (!row) |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2387 | return NULL; |
| 2388 | |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2389 | root = MSI_RecordGetInteger(row,2); |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 2390 | key = MSI_RecordGetString(row, 3); |
| 2391 | name = MSI_RecordGetString(row, 4); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2392 | deformat_string(package, key , &deformated); |
| 2393 | deformat_string(package, name, &deformated_name); |
| 2394 | |
Ulrich Czekalla | e15e517 | 2005-03-08 16:44:51 +0000 | [diff] [blame] | 2395 | len = strlenW(deformated) + 6; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2396 | if (deformated_name) |
| 2397 | len+=strlenW(deformated_name); |
| 2398 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2399 | buffer = msi_alloc( len *sizeof(WCHAR)); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2400 | |
| 2401 | if (deformated_name) |
| 2402 | sprintfW(buffer,fmt2,root,deformated,deformated_name); |
| 2403 | else |
| 2404 | sprintfW(buffer,fmt,root,deformated); |
| 2405 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2406 | msi_free(deformated); |
| 2407 | msi_free(deformated_name); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2408 | msiobj_release(&row->hdr); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2409 | |
| 2410 | return buffer; |
| 2411 | } |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2412 | else if (cmp->Attributes & msidbComponentAttributesODBCDataSource) |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 2413 | { |
| 2414 | FIXME("UNIMPLEMENTED keypath as ODBC Source\n"); |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 2415 | return NULL; |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2416 | } |
| 2417 | else |
| 2418 | { |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2419 | MSIFILE *file = get_loaded_file( package, cmp->KeyPath ); |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2420 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2421 | if (file) |
| 2422 | return strdupW( file->TargetPath ); |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2423 | } |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 2424 | return NULL; |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2425 | } |
| 2426 | |
Stefan Huehner | ac6f562 | 2005-06-20 14:18:03 +0000 | [diff] [blame] | 2427 | static HKEY openSharedDLLsKey(void) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2428 | { |
| 2429 | HKEY hkey=0; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2430 | static const WCHAR path[] = |
| 2431 | {'S','o','f','t','w','a','r','e','\\', |
| 2432 | 'M','i','c','r','o','s','o','f','t','\\', |
| 2433 | 'W','i','n','d','o','w','s','\\', |
| 2434 | 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\', |
| 2435 | 'S','h','a','r','e','d','D','L','L','s',0}; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2436 | |
| 2437 | RegCreateKeyW(HKEY_LOCAL_MACHINE,path,&hkey); |
| 2438 | return hkey; |
| 2439 | } |
| 2440 | |
| 2441 | static UINT ACTION_GetSharedDLLsCount(LPCWSTR dll) |
| 2442 | { |
| 2443 | HKEY hkey; |
| 2444 | DWORD count=0; |
| 2445 | DWORD type; |
| 2446 | DWORD sz = sizeof(count); |
| 2447 | DWORD rc; |
| 2448 | |
| 2449 | hkey = openSharedDLLsKey(); |
| 2450 | rc = RegQueryValueExW(hkey, dll, NULL, &type, (LPBYTE)&count, &sz); |
| 2451 | if (rc != ERROR_SUCCESS) |
| 2452 | count = 0; |
| 2453 | RegCloseKey(hkey); |
| 2454 | return count; |
| 2455 | } |
| 2456 | |
| 2457 | static UINT ACTION_WriteSharedDLLsCount(LPCWSTR path, UINT count) |
| 2458 | { |
| 2459 | HKEY hkey; |
| 2460 | |
| 2461 | hkey = openSharedDLLsKey(); |
| 2462 | if (count > 0) |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 2463 | msi_reg_set_val_dword( hkey, path, count ); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2464 | else |
| 2465 | RegDeleteValueW(hkey,path); |
| 2466 | RegCloseKey(hkey); |
| 2467 | return count; |
| 2468 | } |
| 2469 | |
| 2470 | /* |
| 2471 | * Return TRUE if the count should be written out and FALSE if not |
| 2472 | */ |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2473 | static void ACTION_RefCountComponent( MSIPACKAGE* package, MSICOMPONENT *comp ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2474 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2475 | MSIFEATURE *feature; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2476 | INT count = 0; |
| 2477 | BOOL write = FALSE; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2478 | |
| 2479 | /* only refcount DLLs */ |
Mike McCormack | efcc1ec | 2005-09-12 12:07:15 +0000 | [diff] [blame] | 2480 | if (comp->KeyPath == NULL || |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2481 | comp->Attributes & msidbComponentAttributesRegistryKeyPath || |
| 2482 | comp->Attributes & msidbComponentAttributesODBCDataSource) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2483 | write = FALSE; |
| 2484 | else |
| 2485 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2486 | count = ACTION_GetSharedDLLsCount( comp->FullKeypath); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2487 | write = (count > 0); |
| 2488 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2489 | if (comp->Attributes & msidbComponentAttributesSharedDllRefCount) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2490 | write = TRUE; |
| 2491 | } |
| 2492 | |
| 2493 | /* increment counts */ |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2494 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2495 | { |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 2496 | ComponentList *cl; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2497 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2498 | if (!ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_LOCAL )) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2499 | continue; |
| 2500 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2501 | LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2502 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2503 | if ( cl->component == comp ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2504 | count++; |
| 2505 | } |
| 2506 | } |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2507 | |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2508 | /* decrement counts */ |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2509 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2510 | { |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 2511 | ComponentList *cl; |
| 2512 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2513 | if (!ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ABSENT )) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2514 | continue; |
| 2515 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 2516 | LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2517 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2518 | if ( cl->component == comp ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2519 | count--; |
| 2520 | } |
| 2521 | } |
| 2522 | |
| 2523 | /* ref count all the files in the component */ |
| 2524 | if (write) |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2525 | { |
| 2526 | MSIFILE *file; |
| 2527 | |
| 2528 | LIST_FOR_EACH_ENTRY( file, &package->files, MSIFILE, entry ) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2529 | { |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2530 | if (file->Component == comp) |
| 2531 | ACTION_WriteSharedDLLsCount( file->TargetPath, count ); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2532 | } |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2533 | } |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2534 | |
| 2535 | /* add a count for permenent */ |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2536 | if (comp->Attributes & msidbComponentAttributesPermanent) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2537 | count ++; |
| 2538 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2539 | comp->RefCount = count; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2540 | |
| 2541 | if (write) |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2542 | ACTION_WriteSharedDLLsCount( comp->FullKeypath, comp->RefCount ); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2543 | } |
| 2544 | |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 2545 | /* |
| 2546 | * Ok further analysis makes me think that this work is |
| 2547 | * actually done in the PublishComponents and PublishFeatures |
Mike McCormack | 3ece246 | 2004-07-09 19:33:25 +0000 | [diff] [blame] | 2548 | * step, and not here. It appears like the keypath and all that is |
| 2549 | * resolved in this step, however actually written in the Publish steps. |
Alexandre Julliard | 77b1276 | 2004-07-09 19:43:29 +0000 | [diff] [blame] | 2550 | * But we will leave it here for now because it is unclear |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 2551 | */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2552 | static UINT ACTION_ProcessComponents(MSIPACKAGE *package) |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2553 | { |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 2554 | WCHAR squished_pc[GUID_SIZE]; |
| 2555 | WCHAR squished_cc[GUID_SIZE]; |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2556 | UINT rc; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2557 | MSICOMPONENT *comp; |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 2558 | HKEY hkey=0,hkey2=0; |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2559 | |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2560 | /* writes the Component and Features values to the registry */ |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2561 | |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 2562 | rc = MSIREG_OpenComponents(&hkey); |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2563 | if (rc != ERROR_SUCCESS) |
| 2564 | goto end; |
Aric Stewart | bd1bbc1 | 2005-01-03 20:00:13 +0000 | [diff] [blame] | 2565 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 2566 | squash_guid(package->ProductCode,squished_pc); |
Aric Stewart | bd1bbc1 | 2005-01-03 20:00:13 +0000 | [diff] [blame] | 2567 | ui_progress(package,1,COMPONENT_PROGRESS_VALUE,1,0); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2568 | |
| 2569 | LIST_FOR_EACH_ENTRY( comp, &package->components, MSICOMPONENT, entry ) |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2570 | { |
Aric Stewart | bd1bbc1 | 2005-01-03 20:00:13 +0000 | [diff] [blame] | 2571 | ui_progress(package,2,0,0,0); |
Mike McCormack | efcc1ec | 2005-09-12 12:07:15 +0000 | [diff] [blame] | 2572 | if (comp->ComponentId) |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2573 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2574 | MSIRECORD * uirow; |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2575 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2576 | squash_guid(comp->ComponentId,squished_cc); |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2577 | |
Mike McCormack | 566c69e | 2005-09-22 10:49:17 +0000 | [diff] [blame] | 2578 | msi_free(comp->FullKeypath); |
| 2579 | comp->FullKeypath = resolve_keypath( package, comp ); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2580 | |
| 2581 | /* do the refcounting */ |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2582 | ACTION_RefCountComponent( package, comp ); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2583 | |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 2584 | TRACE("Component %s (%s), Keypath=%s, RefCount=%i\n", |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2585 | debugstr_w(comp->Component), |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 2586 | debugstr_w(squished_cc), |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2587 | debugstr_w(comp->FullKeypath), |
| 2588 | comp->RefCount); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2589 | /* |
| 2590 | * Write the keypath out if the component is to be registered |
| 2591 | * and delete the key if the component is to be deregistered |
| 2592 | */ |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 2593 | if (ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL)) |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 2594 | { |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 2595 | rc = RegCreateKeyW(hkey,squished_cc,&hkey2); |
| 2596 | if (rc != ERROR_SUCCESS) |
| 2597 | continue; |
| 2598 | |
Mike McCormack | 566c69e | 2005-09-22 10:49:17 +0000 | [diff] [blame] | 2599 | if (comp->FullKeypath) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2600 | { |
Mike McCormack | 566c69e | 2005-09-22 10:49:17 +0000 | [diff] [blame] | 2601 | msi_reg_set_val_str( hkey2, squished_pc, comp->FullKeypath ); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2602 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2603 | if (comp->Attributes & msidbComponentAttributesPermanent) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2604 | { |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2605 | static const WCHAR szPermKey[] = |
| 2606 | { '0','0','0','0','0','0','0','0','0','0','0','0', |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 2607 | '0','0','0','0','0','0','0','0','0','0','0','0', |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2608 | '0','0','0','0','0','0','0','0',0}; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2609 | |
Mike McCormack | 566c69e | 2005-09-22 10:49:17 +0000 | [diff] [blame] | 2610 | msi_reg_set_val_str( hkey2, szPermKey, comp->FullKeypath ); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2611 | } |
| 2612 | |
| 2613 | RegCloseKey(hkey2); |
| 2614 | |
| 2615 | /* UI stuff */ |
| 2616 | uirow = MSI_CreateRecord(3); |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 2617 | MSI_RecordSetStringW(uirow,1,package->ProductCode); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2618 | MSI_RecordSetStringW(uirow,2,comp->ComponentId); |
Mike McCormack | 566c69e | 2005-09-22 10:49:17 +0000 | [diff] [blame] | 2619 | MSI_RecordSetStringW(uirow,3,comp->FullKeypath); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2620 | ui_actiondata(package,szProcessComponents,uirow); |
| 2621 | msiobj_release( &uirow->hdr ); |
| 2622 | } |
| 2623 | } |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 2624 | else if (ACTION_VerifyComponentForAction( comp, INSTALLSTATE_ABSENT)) |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2625 | { |
| 2626 | DWORD res; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 2627 | |
| 2628 | rc = RegOpenKeyW(hkey,squished_cc,&hkey2); |
| 2629 | if (rc != ERROR_SUCCESS) |
| 2630 | continue; |
| 2631 | |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2632 | RegDeleteValueW(hkey2,squished_pc); |
| 2633 | |
| 2634 | /* if the key is empty delete it */ |
| 2635 | res = RegEnumKeyExW(hkey2,0,NULL,0,0,NULL,0,NULL); |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 2636 | RegCloseKey(hkey2); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2637 | if (res == ERROR_NO_MORE_ITEMS) |
| 2638 | RegDeleteKeyW(hkey,squished_cc); |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2639 | |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 2640 | /* UI stuff */ |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 2641 | uirow = MSI_CreateRecord(2); |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 2642 | MSI_RecordSetStringW(uirow,1,package->ProductCode); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2643 | MSI_RecordSetStringW(uirow,2,comp->ComponentId); |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 2644 | ui_actiondata(package,szProcessComponents,uirow); |
| 2645 | msiobj_release( &uirow->hdr ); |
Aric Stewart | fa384f6 | 2004-12-22 18:46:17 +0000 | [diff] [blame] | 2646 | } |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2647 | } |
| 2648 | } |
| 2649 | end: |
Aric Stewart | b942e18 | 2004-07-06 18:50:02 +0000 | [diff] [blame] | 2650 | RegCloseKey(hkey); |
| 2651 | return rc; |
| 2652 | } |
| 2653 | |
Aric Stewart | 6e82173 | 2005-03-30 10:19:08 +0000 | [diff] [blame] | 2654 | typedef struct { |
| 2655 | CLSID clsid; |
| 2656 | LPWSTR source; |
| 2657 | |
| 2658 | LPWSTR path; |
| 2659 | ITypeLib *ptLib; |
| 2660 | } typelib_struct; |
| 2661 | |
Mike McCormack | f9acfe6 | 2005-06-07 20:29:51 +0000 | [diff] [blame] | 2662 | static BOOL CALLBACK Typelib_EnumResNameProc( HMODULE hModule, LPCWSTR lpszType, |
Aric Stewart | 6e82173 | 2005-03-30 10:19:08 +0000 | [diff] [blame] | 2663 | LPWSTR lpszName, LONG_PTR lParam) |
| 2664 | { |
| 2665 | TLIBATTR *attr; |
| 2666 | typelib_struct *tl_struct = (typelib_struct*) lParam; |
| 2667 | static const WCHAR fmt[] = {'%','s','\\','%','i',0}; |
| 2668 | int sz; |
| 2669 | HRESULT res; |
| 2670 | |
| 2671 | if (!IS_INTRESOURCE(lpszName)) |
| 2672 | { |
| 2673 | ERR("Not Int Resource Name %s\n",debugstr_w(lpszName)); |
| 2674 | return TRUE; |
| 2675 | } |
| 2676 | |
| 2677 | sz = strlenW(tl_struct->source)+4; |
| 2678 | sz *= sizeof(WCHAR); |
| 2679 | |
Aric Stewart | ca8c4e4 | 2005-06-02 15:13:57 +0000 | [diff] [blame] | 2680 | if ((INT)lpszName == 1) |
| 2681 | tl_struct->path = strdupW(tl_struct->source); |
| 2682 | else |
| 2683 | { |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2684 | tl_struct->path = msi_alloc(sz); |
Aric Stewart | ca8c4e4 | 2005-06-02 15:13:57 +0000 | [diff] [blame] | 2685 | sprintfW(tl_struct->path,fmt,tl_struct->source, lpszName); |
| 2686 | } |
Aric Stewart | 6e82173 | 2005-03-30 10:19:08 +0000 | [diff] [blame] | 2687 | |
| 2688 | TRACE("trying %s\n", debugstr_w(tl_struct->path)); |
| 2689 | res = LoadTypeLib(tl_struct->path,&tl_struct->ptLib); |
| 2690 | if (!SUCCEEDED(res)) |
| 2691 | { |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2692 | msi_free(tl_struct->path); |
Aric Stewart | 6e82173 | 2005-03-30 10:19:08 +0000 | [diff] [blame] | 2693 | tl_struct->path = NULL; |
| 2694 | |
| 2695 | return TRUE; |
| 2696 | } |
| 2697 | |
| 2698 | ITypeLib_GetLibAttr(tl_struct->ptLib, &attr); |
| 2699 | if (IsEqualGUID(&(tl_struct->clsid),&(attr->guid))) |
| 2700 | { |
| 2701 | ITypeLib_ReleaseTLibAttr(tl_struct->ptLib, attr); |
| 2702 | return FALSE; |
| 2703 | } |
| 2704 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2705 | msi_free(tl_struct->path); |
Aric Stewart | 6e82173 | 2005-03-30 10:19:08 +0000 | [diff] [blame] | 2706 | tl_struct->path = NULL; |
| 2707 | |
| 2708 | ITypeLib_ReleaseTLibAttr(tl_struct->ptLib, attr); |
| 2709 | ITypeLib_Release(tl_struct->ptLib); |
| 2710 | |
| 2711 | return TRUE; |
| 2712 | } |
| 2713 | |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2714 | static UINT ITERATE_RegisterTypeLibraries(MSIRECORD *row, LPVOID param) |
| 2715 | { |
| 2716 | MSIPACKAGE* package = (MSIPACKAGE*)param; |
| 2717 | LPCWSTR component; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2718 | MSICOMPONENT *comp; |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2719 | MSIFILE *file; |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2720 | typelib_struct tl_struct; |
| 2721 | HMODULE module; |
| 2722 | static const WCHAR szTYPELIB[] = {'T','Y','P','E','L','I','B',0}; |
| 2723 | |
| 2724 | component = MSI_RecordGetString(row,3); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2725 | comp = get_loaded_component(package,component); |
| 2726 | if (!comp) |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2727 | return ERROR_SUCCESS; |
| 2728 | |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 2729 | if (!ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL)) |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2730 | { |
| 2731 | TRACE("Skipping typelib reg due to disabled component\n"); |
| 2732 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2733 | comp->Action = comp->Installed; |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2734 | |
| 2735 | return ERROR_SUCCESS; |
| 2736 | } |
| 2737 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2738 | comp->Action = INSTALLSTATE_LOCAL; |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2739 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2740 | file = get_loaded_file( package, comp->KeyPath ); |
| 2741 | if (!file) |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2742 | return ERROR_SUCCESS; |
| 2743 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2744 | module = LoadLibraryExW( file->TargetPath, NULL, LOAD_LIBRARY_AS_DATAFILE ); |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 2745 | if (module) |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2746 | { |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 2747 | LPCWSTR guid; |
| 2748 | guid = MSI_RecordGetString(row,1); |
| 2749 | CLSIDFromString((LPWSTR)guid, &tl_struct.clsid); |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2750 | tl_struct.source = strdupW( file->TargetPath ); |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2751 | tl_struct.path = NULL; |
| 2752 | |
| 2753 | EnumResourceNamesW(module, szTYPELIB, Typelib_EnumResNameProc, |
| 2754 | (LONG_PTR)&tl_struct); |
| 2755 | |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 2756 | if (tl_struct.path) |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2757 | { |
| 2758 | LPWSTR help = NULL; |
| 2759 | LPCWSTR helpid; |
| 2760 | HRESULT res; |
| 2761 | |
| 2762 | helpid = MSI_RecordGetString(row,6); |
| 2763 | |
| 2764 | if (helpid) |
| 2765 | help = resolve_folder(package,helpid,FALSE,FALSE,NULL); |
| 2766 | res = RegisterTypeLib(tl_struct.ptLib,tl_struct.path,help); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2767 | msi_free(help); |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2768 | |
| 2769 | if (!SUCCEEDED(res)) |
| 2770 | ERR("Failed to register type library %s\n", |
| 2771 | debugstr_w(tl_struct.path)); |
| 2772 | else |
| 2773 | { |
| 2774 | ui_actiondata(package,szRegisterTypeLibraries,row); |
| 2775 | |
| 2776 | TRACE("Registered %s\n", debugstr_w(tl_struct.path)); |
| 2777 | } |
| 2778 | |
| 2779 | ITypeLib_Release(tl_struct.ptLib); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2780 | msi_free(tl_struct.path); |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2781 | } |
| 2782 | else |
| 2783 | ERR("Failed to load type library %s\n", |
| 2784 | debugstr_w(tl_struct.source)); |
| 2785 | |
| 2786 | FreeLibrary(module); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2787 | msi_free(tl_struct.source); |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2788 | } |
| 2789 | else |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 2790 | ERR("Could not load file! %s\n", debugstr_w(file->TargetPath)); |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2791 | |
| 2792 | return ERROR_SUCCESS; |
| 2793 | } |
| 2794 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2795 | static UINT ACTION_RegisterTypeLibraries(MSIPACKAGE *package) |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2796 | { |
| 2797 | /* |
Mike McCormack | c90c781 | 2004-07-09 22:58:27 +0000 | [diff] [blame] | 2798 | * OK this is a bit confusing.. I am given a _Component key and I believe |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2799 | * that the file that is being registered as a type library is the "key file |
Mike McCormack | c90c781 | 2004-07-09 22:58:27 +0000 | [diff] [blame] | 2800 | * of that component" which I interpret to mean "The file in the KeyPath of |
| 2801 | * that component". |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2802 | */ |
| 2803 | UINT rc; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2804 | MSIQUERY * view; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 2805 | static const WCHAR Query[] = |
| 2806 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 2807 | '`','T','y','p','e','L','i','b','`',0}; |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2808 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2809 | rc = MSI_DatabaseOpenViewW(package->db, Query, &view); |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2810 | if (rc != ERROR_SUCCESS) |
Aric Stewart | 84837d9 | 2004-07-20 01:22:37 +0000 | [diff] [blame] | 2811 | return ERROR_SUCCESS; |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2812 | |
Aric Stewart | 234dc4b | 2005-06-22 18:27:34 +0000 | [diff] [blame] | 2813 | rc = MSI_IterateRecords(view, NULL, ITERATE_RegisterTypeLibraries, package); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2814 | msiobj_release(&view->hdr); |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2815 | return rc; |
Aric Stewart | fcb20c5 | 2004-07-06 18:51:16 +0000 | [diff] [blame] | 2816 | } |
| 2817 | |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2818 | static UINT ITERATE_CreateShortcuts(MSIRECORD *row, LPVOID param) |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 2819 | { |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2820 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
| 2821 | LPWSTR target_file, target_folder; |
| 2822 | LPCWSTR buffer; |
| 2823 | WCHAR filename[0x100]; |
| 2824 | DWORD sz; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2825 | MSICOMPONENT *comp; |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2826 | static const WCHAR szlnk[]={'.','l','n','k',0}; |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 2827 | IShellLinkW *sl; |
| 2828 | IPersistFile *pf; |
| 2829 | HRESULT res; |
| 2830 | |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2831 | buffer = MSI_RecordGetString(row,4); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2832 | comp = get_loaded_component(package,buffer); |
| 2833 | if (!comp) |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2834 | return ERROR_SUCCESS; |
| 2835 | |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 2836 | if (!ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL )) |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2837 | { |
| 2838 | TRACE("Skipping shortcut creation due to disabled component\n"); |
| 2839 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2840 | comp->Action = comp->Installed; |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2841 | |
| 2842 | return ERROR_SUCCESS; |
| 2843 | } |
| 2844 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 2845 | comp->Action = INSTALLSTATE_LOCAL; |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2846 | |
| 2847 | ui_actiondata(package,szCreateShortcuts,row); |
| 2848 | |
| 2849 | res = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, |
| 2850 | &IID_IShellLinkW, (LPVOID *) &sl ); |
| 2851 | |
| 2852 | if (FAILED(res)) |
| 2853 | { |
| 2854 | ERR("Is IID_IShellLink\n"); |
| 2855 | return ERROR_SUCCESS; |
| 2856 | } |
| 2857 | |
| 2858 | res = IShellLinkW_QueryInterface( sl, &IID_IPersistFile,(LPVOID*) &pf ); |
| 2859 | if( FAILED( res ) ) |
| 2860 | { |
| 2861 | ERR("Is IID_IPersistFile\n"); |
| 2862 | return ERROR_SUCCESS; |
| 2863 | } |
| 2864 | |
| 2865 | buffer = MSI_RecordGetString(row,2); |
| 2866 | target_folder = resolve_folder(package, buffer,FALSE,FALSE,NULL); |
| 2867 | |
| 2868 | /* may be needed because of a bug somehwere else */ |
| 2869 | create_full_pathW(target_folder); |
| 2870 | |
| 2871 | sz = 0x100; |
| 2872 | MSI_RecordGetStringW(row,3,filename,&sz); |
| 2873 | reduce_to_longfilename(filename); |
| 2874 | if (!strchrW(filename,'.') || strcmpiW(strchrW(filename,'.'),szlnk)) |
| 2875 | strcatW(filename,szlnk); |
| 2876 | target_file = build_directory_name(2, target_folder, filename); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2877 | msi_free(target_folder); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2878 | |
| 2879 | buffer = MSI_RecordGetString(row,5); |
| 2880 | if (strchrW(buffer,'[')) |
| 2881 | { |
| 2882 | LPWSTR deformated; |
| 2883 | deformat_string(package,buffer,&deformated); |
| 2884 | IShellLinkW_SetPath(sl,deformated); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2885 | msi_free(deformated); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2886 | } |
| 2887 | else |
| 2888 | { |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2889 | FIXME("poorly handled shortcut format, advertised shortcut\n"); |
Mike McCormack | 566c69e | 2005-09-22 10:49:17 +0000 | [diff] [blame] | 2890 | IShellLinkW_SetPath(sl,comp->FullKeypath); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2891 | } |
| 2892 | |
| 2893 | if (!MSI_RecordIsNull(row,6)) |
| 2894 | { |
| 2895 | LPWSTR deformated; |
| 2896 | buffer = MSI_RecordGetString(row,6); |
| 2897 | deformat_string(package,buffer,&deformated); |
| 2898 | IShellLinkW_SetArguments(sl,deformated); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2899 | msi_free(deformated); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2900 | } |
| 2901 | |
| 2902 | if (!MSI_RecordIsNull(row,7)) |
| 2903 | { |
| 2904 | buffer = MSI_RecordGetString(row,7); |
| 2905 | IShellLinkW_SetDescription(sl,buffer); |
| 2906 | } |
| 2907 | |
| 2908 | if (!MSI_RecordIsNull(row,8)) |
| 2909 | IShellLinkW_SetHotkey(sl,MSI_RecordGetInteger(row,8)); |
| 2910 | |
| 2911 | if (!MSI_RecordIsNull(row,9)) |
| 2912 | { |
Mike McCormack | 75658d7 | 2005-09-22 10:33:57 +0000 | [diff] [blame] | 2913 | LPWSTR Path; |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2914 | INT index; |
| 2915 | |
| 2916 | buffer = MSI_RecordGetString(row,9); |
| 2917 | |
Mike McCormack | 75658d7 | 2005-09-22 10:33:57 +0000 | [diff] [blame] | 2918 | Path = build_icon_path(package,buffer); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2919 | index = MSI_RecordGetInteger(row,10); |
| 2920 | |
| 2921 | IShellLinkW_SetIconLocation(sl,Path,index); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2922 | msi_free(Path); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2923 | } |
| 2924 | |
| 2925 | if (!MSI_RecordIsNull(row,11)) |
| 2926 | IShellLinkW_SetShowCmd(sl,MSI_RecordGetInteger(row,11)); |
| 2927 | |
| 2928 | if (!MSI_RecordIsNull(row,12)) |
| 2929 | { |
| 2930 | LPWSTR Path; |
| 2931 | buffer = MSI_RecordGetString(row,12); |
| 2932 | Path = resolve_folder(package, buffer, FALSE, FALSE, NULL); |
| 2933 | IShellLinkW_SetWorkingDirectory(sl,Path); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2934 | msi_free(Path); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2935 | } |
| 2936 | |
| 2937 | TRACE("Writing shortcut to %s\n",debugstr_w(target_file)); |
| 2938 | IPersistFile_Save(pf,target_file,FALSE); |
| 2939 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 2940 | msi_free(target_file); |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2941 | |
| 2942 | IPersistFile_Release( pf ); |
| 2943 | IShellLinkW_Release( sl ); |
| 2944 | |
| 2945 | return ERROR_SUCCESS; |
| 2946 | } |
| 2947 | |
| 2948 | static UINT ACTION_CreateShortcuts(MSIPACKAGE *package) |
| 2949 | { |
| 2950 | UINT rc; |
| 2951 | HRESULT res; |
| 2952 | MSIQUERY * view; |
| 2953 | static const WCHAR Query[] = |
| 2954 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
| 2955 | '`','S','h','o','r','t','c','u','t','`',0}; |
| 2956 | |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2957 | rc = MSI_DatabaseOpenViewW(package->db, Query, &view); |
| 2958 | if (rc != ERROR_SUCCESS) |
| 2959 | return ERROR_SUCCESS; |
| 2960 | |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 2961 | res = CoInitialize( NULL ); |
| 2962 | if (FAILED (res)) |
| 2963 | { |
| 2964 | ERR("CoInitialize failed\n"); |
| 2965 | return ERROR_FUNCTION_FAILED; |
| 2966 | } |
| 2967 | |
Aric Stewart | 9adacf6 | 2005-06-24 11:58:21 +0000 | [diff] [blame] | 2968 | rc = MSI_IterateRecords(view, NULL, ITERATE_CreateShortcuts, package); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 2969 | msiobj_release(&view->hdr); |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 2970 | |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 2971 | CoUninitialize(); |
| 2972 | |
| 2973 | return rc; |
| 2974 | } |
| 2975 | |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 2976 | static UINT ITERATE_PublishProduct(MSIRECORD *row, LPVOID param) |
| 2977 | { |
| 2978 | MSIPACKAGE* package = (MSIPACKAGE*)param; |
| 2979 | HANDLE the_file; |
Mike McCormack | 75658d7 | 2005-09-22 10:33:57 +0000 | [diff] [blame] | 2980 | LPWSTR FilePath; |
| 2981 | LPCWSTR FileName; |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 2982 | CHAR buffer[1024]; |
| 2983 | DWORD sz; |
| 2984 | UINT rc; |
| 2985 | |
| 2986 | FileName = MSI_RecordGetString(row,1); |
| 2987 | if (!FileName) |
| 2988 | { |
| 2989 | ERR("Unable to get FileName\n"); |
| 2990 | return ERROR_SUCCESS; |
| 2991 | } |
| 2992 | |
Mike McCormack | 75658d7 | 2005-09-22 10:33:57 +0000 | [diff] [blame] | 2993 | FilePath = build_icon_path(package,FileName); |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 2994 | |
| 2995 | TRACE("Creating icon file at %s\n",debugstr_w(FilePath)); |
| 2996 | |
| 2997 | the_file = CreateFileW(FilePath, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, |
| 2998 | FILE_ATTRIBUTE_NORMAL, NULL); |
| 2999 | |
| 3000 | if (the_file == INVALID_HANDLE_VALUE) |
| 3001 | { |
| 3002 | ERR("Unable to create file %s\n",debugstr_w(FilePath)); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3003 | msi_free(FilePath); |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 3004 | return ERROR_SUCCESS; |
| 3005 | } |
| 3006 | |
| 3007 | do |
| 3008 | { |
| 3009 | DWORD write; |
| 3010 | sz = 1024; |
| 3011 | rc = MSI_RecordReadStream(row,2,buffer,&sz); |
| 3012 | if (rc != ERROR_SUCCESS) |
| 3013 | { |
| 3014 | ERR("Failed to get stream\n"); |
| 3015 | CloseHandle(the_file); |
| 3016 | DeleteFileW(FilePath); |
| 3017 | break; |
| 3018 | } |
| 3019 | WriteFile(the_file,buffer,sz,&write,NULL); |
| 3020 | } while (sz == 1024); |
| 3021 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3022 | msi_free(FilePath); |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 3023 | |
| 3024 | CloseHandle(the_file); |
| 3025 | return ERROR_SUCCESS; |
| 3026 | } |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3027 | |
| 3028 | /* |
| 3029 | * 99% of the work done here is only done for |
| 3030 | * advertised installs. However this is where the |
| 3031 | * Icon table is processed and written out |
Francois Gouget | 817c520 | 2004-07-16 19:15:40 +0000 | [diff] [blame] | 3032 | * so that is what I am going to do here. |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3033 | */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 3034 | static UINT ACTION_PublishProduct(MSIPACKAGE *package) |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3035 | { |
| 3036 | UINT rc; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 3037 | MSIQUERY * view; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 3038 | static const WCHAR Query[]= |
| 3039 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 3040 | '`','I','c','o','n','`',0}; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3041 | /* for registry stuff */ |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3042 | HKEY hkey=0; |
| 3043 | HKEY hukey=0; |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3044 | static const WCHAR szProductLanguage[] = |
| 3045 | {'P','r','o','d','u','c','t','L','a','n','g','u','a','g','e',0}; |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3046 | static const WCHAR szARPProductIcon[] = |
| 3047 | {'A','R','P','P','R','O','D','U','C','T','I','C','O','N',0}; |
Aric Stewart | c28bb54 | 2005-06-09 15:49:11 +0000 | [diff] [blame] | 3048 | static const WCHAR szProductVersion[] = |
| 3049 | {'P','r','o','d','u','c','t','V','e','r','s','i','o','n',0}; |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3050 | DWORD langid; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3051 | LPWSTR buffer; |
| 3052 | DWORD size; |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3053 | MSIHANDLE hDb, hSumInfo; |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3054 | |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 3055 | /* write out icon files */ |
| 3056 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 3057 | rc = MSI_DatabaseOpenViewW(package->db, Query, &view); |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 3058 | if (rc == ERROR_SUCCESS) |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3059 | { |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 3060 | MSI_IterateRecords(view, NULL, ITERATE_PublishProduct, package); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 3061 | msiobj_release(&view->hdr); |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3062 | } |
| 3063 | |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 3064 | /* ok there is a lot more done here but i need to figure out what */ |
Aric Stewart | 916ef94 | 2005-06-22 18:42:19 +0000 | [diff] [blame] | 3065 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3066 | rc = MSIREG_OpenProductsKey(package->ProductCode,&hkey,TRUE); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3067 | if (rc != ERROR_SUCCESS) |
| 3068 | goto end; |
| 3069 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3070 | rc = MSIREG_OpenUserProductsKey(package->ProductCode,&hukey,TRUE); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3071 | if (rc != ERROR_SUCCESS) |
| 3072 | goto end; |
| 3073 | |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3074 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3075 | buffer = msi_dup_property( package, INSTALLPROPERTY_PRODUCTNAMEW ); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3076 | msi_reg_set_val_str( hukey, INSTALLPROPERTY_PRODUCTNAMEW, buffer ); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3077 | msi_free(buffer); |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3078 | |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 3079 | langid = msi_get_property_int( package, szProductLanguage, 0 ); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3080 | msi_reg_set_val_dword( hkey, INSTALLPROPERTY_LANGUAGEW, langid ); |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3081 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3082 | buffer = msi_dup_property( package, szARPProductIcon ); |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3083 | if (buffer) |
| 3084 | { |
Mike McCormack | 75658d7 | 2005-09-22 10:33:57 +0000 | [diff] [blame] | 3085 | LPWSTR path = build_icon_path(package,buffer); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3086 | msi_reg_set_val_str( hukey, INSTALLPROPERTY_PRODUCTICONW, path ); |
Mike McCormack | 75658d7 | 2005-09-22 10:33:57 +0000 | [diff] [blame] | 3087 | msi_free( path ); |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3088 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3089 | msi_free(buffer); |
Aric Stewart | c28bb54 | 2005-06-09 15:49:11 +0000 | [diff] [blame] | 3090 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3091 | buffer = msi_dup_property( package, szProductVersion ); |
Aric Stewart | c28bb54 | 2005-06-09 15:49:11 +0000 | [diff] [blame] | 3092 | if (buffer) |
| 3093 | { |
| 3094 | DWORD verdword = build_version_dword(buffer); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3095 | msi_reg_set_val_dword( hkey, INSTALLPROPERTY_VERSIONW, verdword ); |
Aric Stewart | c28bb54 | 2005-06-09 15:49:11 +0000 | [diff] [blame] | 3096 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3097 | msi_free(buffer); |
Aric Stewart | 6957e4a | 2005-06-08 19:16:45 +0000 | [diff] [blame] | 3098 | |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3099 | FIXME("Need to write more keys to the user registry\n"); |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3100 | |
Aric Stewart | 7e7b8cf | 2005-02-18 20:00:34 +0000 | [diff] [blame] | 3101 | hDb= alloc_msihandle( &package->db->hdr ); |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3102 | rc = MsiGetSummaryInformationW(hDb, NULL, 0, &hSumInfo); |
Aric Stewart | 7e7b8cf | 2005-02-18 20:00:34 +0000 | [diff] [blame] | 3103 | MsiCloseHandle(hDb); |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3104 | if (rc == ERROR_SUCCESS) |
| 3105 | { |
| 3106 | WCHAR guidbuffer[0x200]; |
| 3107 | size = 0x200; |
Aric Stewart | 7e7b8cf | 2005-02-18 20:00:34 +0000 | [diff] [blame] | 3108 | rc = MsiSummaryInfoGetPropertyW(hSumInfo, 9, NULL, NULL, NULL, |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3109 | guidbuffer, &size); |
| 3110 | if (rc == ERROR_SUCCESS) |
| 3111 | { |
| 3112 | WCHAR squashed[GUID_SIZE]; |
| 3113 | /* for now we only care about the first guid */ |
| 3114 | LPWSTR ptr = strchrW(guidbuffer,';'); |
| 3115 | if (ptr) *ptr = 0; |
| 3116 | squash_guid(guidbuffer,squashed); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3117 | msi_reg_set_val_str( hukey, INSTALLPROPERTY_PACKAGECODEW, squashed ); |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3118 | } |
| 3119 | else |
| 3120 | { |
| 3121 | ERR("Unable to query Revision_Number... \n"); |
| 3122 | rc = ERROR_SUCCESS; |
| 3123 | } |
| 3124 | MsiCloseHandle(hSumInfo); |
| 3125 | } |
| 3126 | else |
| 3127 | { |
| 3128 | ERR("Unable to open Summary Information\n"); |
| 3129 | rc = ERROR_SUCCESS; |
| 3130 | } |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3131 | |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3132 | end: |
| 3133 | |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3134 | RegCloseKey(hkey); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3135 | RegCloseKey(hukey); |
| 3136 | |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3137 | return rc; |
Aric Stewart | 2cf222f | 2004-07-06 19:00:23 +0000 | [diff] [blame] | 3138 | } |
| 3139 | |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3140 | static UINT ITERATE_WriteIniValues(MSIRECORD *row, LPVOID param) |
| 3141 | { |
| 3142 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
| 3143 | LPCWSTR component,section,key,value,identifier,filename,dirproperty; |
| 3144 | LPWSTR deformated_section, deformated_key, deformated_value; |
| 3145 | LPWSTR folder, fullname = NULL; |
| 3146 | MSIRECORD * uirow; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 3147 | INT action; |
| 3148 | MSICOMPONENT *comp; |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3149 | static const WCHAR szWindowsFolder[] = |
| 3150 | {'W','i','n','d','o','w','s','F','o','l','d','e','r',0}; |
| 3151 | |
| 3152 | component = MSI_RecordGetString(row, 8); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 3153 | comp = get_loaded_component(package,component); |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3154 | |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 3155 | if (!ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL)) |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3156 | { |
| 3157 | TRACE("Skipping ini file due to disabled component %s\n", |
| 3158 | debugstr_w(component)); |
| 3159 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 3160 | comp->Action = comp->Installed; |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3161 | |
| 3162 | return ERROR_SUCCESS; |
| 3163 | } |
| 3164 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 3165 | comp->Action = INSTALLSTATE_LOCAL; |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3166 | |
| 3167 | identifier = MSI_RecordGetString(row,1); |
| 3168 | filename = MSI_RecordGetString(row,2); |
| 3169 | dirproperty = MSI_RecordGetString(row,3); |
| 3170 | section = MSI_RecordGetString(row,4); |
| 3171 | key = MSI_RecordGetString(row,5); |
| 3172 | value = MSI_RecordGetString(row,6); |
| 3173 | action = MSI_RecordGetInteger(row,7); |
| 3174 | |
| 3175 | deformat_string(package,section,&deformated_section); |
| 3176 | deformat_string(package,key,&deformated_key); |
| 3177 | deformat_string(package,value,&deformated_value); |
| 3178 | |
| 3179 | if (dirproperty) |
| 3180 | { |
| 3181 | folder = resolve_folder(package, dirproperty, FALSE, FALSE, NULL); |
| 3182 | if (!folder) |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3183 | folder = msi_dup_property( package, dirproperty ); |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3184 | } |
| 3185 | else |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3186 | folder = msi_dup_property( package, szWindowsFolder ); |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3187 | |
| 3188 | if (!folder) |
| 3189 | { |
| 3190 | ERR("Unable to resolve folder! (%s)\n",debugstr_w(dirproperty)); |
| 3191 | goto cleanup; |
| 3192 | } |
| 3193 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3194 | fullname = build_directory_name(2, folder, filename); |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3195 | |
| 3196 | if (action == 0) |
| 3197 | { |
| 3198 | TRACE("Adding value %s to section %s in %s\n", |
| 3199 | debugstr_w(deformated_key), debugstr_w(deformated_section), |
| 3200 | debugstr_w(fullname)); |
| 3201 | WritePrivateProfileStringW(deformated_section, deformated_key, |
| 3202 | deformated_value, fullname); |
| 3203 | } |
| 3204 | else if (action == 1) |
| 3205 | { |
| 3206 | WCHAR returned[10]; |
| 3207 | GetPrivateProfileStringW(deformated_section, deformated_key, NULL, |
| 3208 | returned, 10, fullname); |
| 3209 | if (returned[0] == 0) |
| 3210 | { |
| 3211 | TRACE("Adding value %s to section %s in %s\n", |
| 3212 | debugstr_w(deformated_key), debugstr_w(deformated_section), |
| 3213 | debugstr_w(fullname)); |
| 3214 | |
| 3215 | WritePrivateProfileStringW(deformated_section, deformated_key, |
| 3216 | deformated_value, fullname); |
| 3217 | } |
| 3218 | } |
| 3219 | else if (action == 3) |
| 3220 | FIXME("Append to existing section not yet implemented\n"); |
| 3221 | |
| 3222 | uirow = MSI_CreateRecord(4); |
| 3223 | MSI_RecordSetStringW(uirow,1,identifier); |
| 3224 | MSI_RecordSetStringW(uirow,2,deformated_section); |
| 3225 | MSI_RecordSetStringW(uirow,3,deformated_key); |
| 3226 | MSI_RecordSetStringW(uirow,4,deformated_value); |
| 3227 | ui_actiondata(package,szWriteIniValues,uirow); |
| 3228 | msiobj_release( &uirow->hdr ); |
| 3229 | cleanup: |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3230 | msi_free(fullname); |
| 3231 | msi_free(folder); |
| 3232 | msi_free(deformated_key); |
| 3233 | msi_free(deformated_value); |
| 3234 | msi_free(deformated_section); |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3235 | return ERROR_SUCCESS; |
| 3236 | } |
| 3237 | |
Aric Stewart | 516a9c7 | 2005-01-14 15:59:26 +0000 | [diff] [blame] | 3238 | static UINT ACTION_WriteIniValues(MSIPACKAGE *package) |
| 3239 | { |
| 3240 | UINT rc; |
| 3241 | MSIQUERY * view; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 3242 | static const WCHAR ExecSeqQuery[] = |
| 3243 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 3244 | '`','I','n','i','F','i','l','e','`',0}; |
Aric Stewart | 516a9c7 | 2005-01-14 15:59:26 +0000 | [diff] [blame] | 3245 | |
| 3246 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
| 3247 | if (rc != ERROR_SUCCESS) |
| 3248 | { |
| 3249 | TRACE("no IniFile table\n"); |
| 3250 | return ERROR_SUCCESS; |
| 3251 | } |
| 3252 | |
Aric Stewart | aded32f | 2005-06-23 09:46:31 +0000 | [diff] [blame] | 3253 | rc = MSI_IterateRecords(view, NULL, ITERATE_WriteIniValues, package); |
Aric Stewart | 516a9c7 | 2005-01-14 15:59:26 +0000 | [diff] [blame] | 3254 | msiobj_release(&view->hdr); |
| 3255 | return rc; |
| 3256 | } |
| 3257 | |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3258 | static UINT ITERATE_SelfRegModules(MSIRECORD *row, LPVOID param) |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3259 | { |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3260 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
| 3261 | LPCWSTR filename; |
| 3262 | LPWSTR FullName; |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3263 | MSIFILE *file; |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3264 | DWORD len; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 3265 | static const WCHAR ExeStr[] = |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 3266 | {'r','e','g','s','v','r','3','2','.','e','x','e',' ','\"',0}; |
| 3267 | static const WCHAR close[] = {'\"',0}; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3268 | STARTUPINFOW si; |
| 3269 | PROCESS_INFORMATION info; |
| 3270 | BOOL brc; |
| 3271 | |
| 3272 | memset(&si,0,sizeof(STARTUPINFOW)); |
| 3273 | |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3274 | filename = MSI_RecordGetString(row,1); |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3275 | file = get_loaded_file( package, filename ); |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3276 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3277 | if (!file) |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3278 | { |
| 3279 | ERR("Unable to find file id %s\n",debugstr_w(filename)); |
| 3280 | return ERROR_SUCCESS; |
| 3281 | } |
| 3282 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3283 | len = strlenW(ExeStr) + strlenW( file->TargetPath ) + 2; |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3284 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3285 | FullName = msi_alloc(len*sizeof(WCHAR)); |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3286 | strcpyW(FullName,ExeStr); |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3287 | strcatW( FullName, file->TargetPath ); |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3288 | strcatW(FullName,close); |
| 3289 | |
| 3290 | TRACE("Registering %s\n",debugstr_w(FullName)); |
| 3291 | brc = CreateProcessW(NULL, FullName, NULL, NULL, FALSE, 0, NULL, c_colon, |
| 3292 | &si, &info); |
| 3293 | |
| 3294 | if (brc) |
| 3295 | msi_dialog_check_messages(info.hProcess); |
| 3296 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3297 | msi_free(FullName); |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3298 | return ERROR_SUCCESS; |
| 3299 | } |
| 3300 | |
| 3301 | static UINT ACTION_SelfRegModules(MSIPACKAGE *package) |
| 3302 | { |
| 3303 | UINT rc; |
| 3304 | MSIQUERY * view; |
| 3305 | static const WCHAR ExecSeqQuery[] = |
| 3306 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
| 3307 | '`','S','e','l','f','R','e','g','`',0}; |
| 3308 | |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3309 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
| 3310 | if (rc != ERROR_SUCCESS) |
| 3311 | { |
| 3312 | TRACE("no SelfReg table\n"); |
| 3313 | return ERROR_SUCCESS; |
| 3314 | } |
| 3315 | |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3316 | MSI_IterateRecords(view, NULL, ITERATE_SelfRegModules, package); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3317 | msiobj_release(&view->hdr); |
Aric Stewart | 854bfc4 | 2005-06-24 11:33:02 +0000 | [diff] [blame] | 3318 | |
| 3319 | return ERROR_SUCCESS; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3320 | } |
| 3321 | |
| 3322 | static UINT ACTION_PublishFeatures(MSIPACKAGE *package) |
| 3323 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3324 | MSIFEATURE *feature; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3325 | UINT rc; |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3326 | HKEY hkey=0; |
| 3327 | HKEY hukey=0; |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3328 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3329 | rc = MSIREG_OpenFeaturesKey(package->ProductCode,&hkey,TRUE); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3330 | if (rc != ERROR_SUCCESS) |
| 3331 | goto end; |
| 3332 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3333 | rc = MSIREG_OpenUserFeaturesKey(package->ProductCode,&hukey,TRUE); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3334 | if (rc != ERROR_SUCCESS) |
| 3335 | goto end; |
| 3336 | |
| 3337 | /* here the guids are base 85 encoded */ |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3338 | LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry ) |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3339 | { |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 3340 | ComponentList *cl; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3341 | LPWSTR data = NULL; |
| 3342 | GUID clsid; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3343 | INT size; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 3344 | BOOL absent = FALSE; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3345 | |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3346 | if (!ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_LOCAL ) && |
| 3347 | !ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_SOURCE ) && |
| 3348 | !ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ADVERTISED )) |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 3349 | absent = TRUE; |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 3350 | |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 3351 | size = 1; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3352 | LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 3353 | { |
| 3354 | size += 21; |
| 3355 | } |
Mike McCormack | 79ca56c | 2005-09-13 10:37:37 +0000 | [diff] [blame] | 3356 | if (feature->Feature_Parent) |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3357 | size += strlenW( feature->Feature_Parent )+2; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3358 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3359 | data = msi_alloc(size * sizeof(WCHAR)); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3360 | |
| 3361 | data[0] = 0; |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3362 | LIST_FOR_EACH_ENTRY( cl, &feature->Components, ComponentList, entry ) |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3363 | { |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 3364 | MSICOMPONENT* component = cl->component; |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3365 | WCHAR buf[21]; |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 3366 | |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3367 | memset(buf,0,sizeof(buf)); |
Mike McCormack | efcc1ec | 2005-09-12 12:07:15 +0000 | [diff] [blame] | 3368 | if (component->ComponentId) |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 3369 | { |
Mike McCormack | 3f2d5d7 | 2005-08-19 10:03:11 +0000 | [diff] [blame] | 3370 | TRACE("From %s\n",debugstr_w(component->ComponentId)); |
| 3371 | CLSIDFromString(component->ComponentId, &clsid); |
Aric Stewart | c5a1443 | 2005-05-18 17:46:12 +0000 | [diff] [blame] | 3372 | encode_base85_guid(&clsid,buf); |
| 3373 | TRACE("to %s\n",debugstr_w(buf)); |
| 3374 | strcatW(data,buf); |
| 3375 | } |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3376 | } |
Mike McCormack | 79ca56c | 2005-09-13 10:37:37 +0000 | [diff] [blame] | 3377 | if (feature->Feature_Parent) |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3378 | { |
| 3379 | static const WCHAR sep[] = {'\2',0}; |
| 3380 | strcatW(data,sep); |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3381 | strcatW(data,feature->Feature_Parent); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3382 | } |
| 3383 | |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3384 | msi_reg_set_val_str( hkey, feature->Feature, data ); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3385 | msi_free(data); |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3386 | |
Mike McCormack | 79ca56c | 2005-09-13 10:37:37 +0000 | [diff] [blame] | 3387 | size = 0; |
| 3388 | if (feature->Feature_Parent) |
| 3389 | size = strlenW(feature->Feature_Parent)*sizeof(WCHAR); |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 3390 | if (!absent) |
| 3391 | { |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3392 | RegSetValueExW(hukey,feature->Feature,0,REG_SZ, |
| 3393 | (LPBYTE)feature->Feature_Parent,size); |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 3394 | } |
| 3395 | else |
| 3396 | { |
Mike McCormack | 79ca56c | 2005-09-13 10:37:37 +0000 | [diff] [blame] | 3397 | size += 2*sizeof(WCHAR); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3398 | data = msi_alloc(size); |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 3399 | data[0] = 0x6; |
Mike McCormack | 79ca56c | 2005-09-13 10:37:37 +0000 | [diff] [blame] | 3400 | data[1] = 0; |
| 3401 | if (feature->Feature_Parent) |
| 3402 | strcpyW( &data[1], feature->Feature_Parent ); |
Mike McCormack | 1da2858 | 2005-08-22 14:09:17 +0000 | [diff] [blame] | 3403 | RegSetValueExW(hukey,feature->Feature,0,REG_SZ, |
Mike McCormack | 16466af | 2005-07-06 10:33:30 +0000 | [diff] [blame] | 3404 | (LPBYTE)data,size); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3405 | msi_free(data); |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 3406 | } |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3407 | } |
| 3408 | |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3409 | end: |
Aric Stewart | 6269f00 | 2005-01-17 13:40:39 +0000 | [diff] [blame] | 3410 | RegCloseKey(hkey); |
| 3411 | RegCloseKey(hukey); |
| 3412 | return rc; |
| 3413 | } |
| 3414 | |
Mike McCormack | 61f24a4 | 2005-09-30 10:32:41 +0000 | [diff] [blame] | 3415 | static UINT msi_make_package_local( MSIPACKAGE *package, HKEY hkey ) |
| 3416 | { |
| 3417 | static const WCHAR installerPathFmt[] = { |
| 3418 | '%','s','\\','I','n','s','t','a','l','l','e','r','\\',0}; |
| 3419 | static const WCHAR fmt[] = { |
| 3420 | '%','s','\\', |
| 3421 | 'I','n','s','t','a','l','l','e','r','\\', |
| 3422 | '%','x','.','m','s','i',0}; |
| 3423 | static const WCHAR szOriginalDatabase[] = |
| 3424 | {'O','r','i','g','i','n','a','l','D','a','t','a','b','a','s','e',0}; |
| 3425 | WCHAR windir[MAX_PATH], path[MAX_PATH], packagefile[MAX_PATH]; |
| 3426 | INT num, start; |
| 3427 | LPWSTR msiFilePath; |
| 3428 | BOOL r; |
| 3429 | |
| 3430 | /* copy the package locally */ |
| 3431 | num = GetTickCount() & 0xffff; |
| 3432 | if (!num) |
| 3433 | num = 1; |
| 3434 | start = num; |
| 3435 | GetWindowsDirectoryW( windir, MAX_PATH ); |
| 3436 | snprintfW( packagefile, MAX_PATH, fmt, windir, num ); |
| 3437 | do |
| 3438 | { |
| 3439 | HANDLE handle = CreateFileW(packagefile,GENERIC_WRITE, 0, NULL, |
| 3440 | CREATE_NEW, FILE_ATTRIBUTE_NORMAL, 0 ); |
| 3441 | if (handle != INVALID_HANDLE_VALUE) |
| 3442 | { |
| 3443 | CloseHandle(handle); |
| 3444 | break; |
| 3445 | } |
| 3446 | if (GetLastError() != ERROR_FILE_EXISTS && |
| 3447 | GetLastError() != ERROR_SHARING_VIOLATION) |
| 3448 | break; |
| 3449 | if (!(++num & 0xffff)) num = 1; |
| 3450 | sprintfW(packagefile,fmt,num); |
| 3451 | } while (num != start); |
| 3452 | |
| 3453 | snprintfW( path, MAX_PATH, installerPathFmt, windir ); |
| 3454 | create_full_pathW(path); |
| 3455 | |
| 3456 | TRACE("Copying to local package %s\n",debugstr_w(packagefile)); |
| 3457 | |
| 3458 | msiFilePath = msi_dup_property( package, szOriginalDatabase ); |
| 3459 | r = CopyFileW( msiFilePath, packagefile, FALSE); |
| 3460 | msi_free( msiFilePath ); |
| 3461 | |
| 3462 | if (!r) |
| 3463 | { |
| 3464 | ERR("Unable to copy package (%s -> %s) (error %ld)\n", |
| 3465 | debugstr_w(msiFilePath), debugstr_w(packagefile), GetLastError()); |
| 3466 | return ERROR_FUNCTION_FAILED; |
| 3467 | } |
| 3468 | |
| 3469 | /* FIXME: maybe set this key in ACTION_RegisterProduct instead */ |
| 3470 | msi_reg_set_val_str( hkey, INSTALLPROPERTY_LOCALPACKAGEW, packagefile ); |
| 3471 | return ERROR_SUCCESS; |
| 3472 | } |
| 3473 | |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3474 | static UINT msi_write_uninstall_property_vals( MSIPACKAGE *package, HKEY hkey ) |
| 3475 | { |
| 3476 | LPWSTR prop, val, key; |
| 3477 | static const LPCSTR propval[] = { |
| 3478 | "ARPAUTHORIZEDCDFPREFIX", "AuthorizedCDFPrefix", |
| 3479 | "ARPCONTACT", "Contact", |
| 3480 | "ARPCOMMENTS", "Comments", |
| 3481 | "ProductName", "DisplayName", |
| 3482 | "ProductVersion", "DisplayVersion", |
| 3483 | "ARPHELPLINK", "HelpLink", |
| 3484 | "ARPHELPTELEPHONE", "HelpTelephone", |
| 3485 | "ARPINSTALLLOCATION", "InstallLocation", |
| 3486 | "SourceDir", "InstallSource", |
| 3487 | "Manufacturer", "Publisher", |
| 3488 | "ARPREADME", "Readme", |
| 3489 | "ARPSIZE", "Size", |
| 3490 | "ARPURLINFOABOUT", "URLInfoAbout", |
| 3491 | "ARPURLUPDATEINFO", "URLUpdateInfo", |
| 3492 | NULL, |
| 3493 | }; |
| 3494 | const LPCSTR *p = propval; |
| 3495 | |
| 3496 | while( *p ) |
| 3497 | { |
| 3498 | prop = strdupAtoW( *p++ ); |
| 3499 | key = strdupAtoW( *p++ ); |
| 3500 | val = msi_dup_property( package, prop ); |
| 3501 | msi_reg_set_val_str( hkey, key, val ); |
| 3502 | msi_free(val); |
| 3503 | msi_free(key); |
| 3504 | msi_free(prop); |
| 3505 | } |
| 3506 | return ERROR_SUCCESS; |
| 3507 | } |
| 3508 | |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3509 | static UINT ACTION_RegisterProduct(MSIPACKAGE *package) |
| 3510 | { |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3511 | HKEY hkey=0; |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3512 | LPWSTR buffer = NULL; |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3513 | UINT rc; |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 3514 | DWORD size, langid; |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3515 | static const WCHAR szWindowsInstaller[] = |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3516 | {'W','i','n','d','o','w','s','I','n','s','t','a','l','l','e','r',0}; |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3517 | static const WCHAR szUpgradeCode[] = |
| 3518 | {'U','p','g','r','a','d','e','C','o','d','e',0}; |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3519 | static const WCHAR modpath_fmt[] = |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3520 | {'M','s','i','E','x','e','c','.','e','x','e',' ', |
| 3521 | '/','I','[','P','r','o','d','u','c','t','C','o','d','e',']',0}; |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3522 | static const WCHAR szModifyPath[] = |
| 3523 | {'M','o','d','i','f','y','P','a','t','h',0}; |
| 3524 | static const WCHAR szUninstallString[] = |
| 3525 | {'U','n','i','n','s','t','a','l','l','S','t','r','i','n','g',0}; |
| 3526 | static const WCHAR szEstimatedSize[] = |
| 3527 | {'E','s','t','i','m','a','t','e','d','S','i','z','e',0}; |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3528 | static const WCHAR szProductLanguage[] = |
| 3529 | {'P','r','o','d','u','c','t','L','a','n','g','u','a','g','e',0}; |
| 3530 | static const WCHAR szProductVersion[] = |
| 3531 | {'P','r','o','d','u','c','t','V','e','r','s','i','o','n',0}; |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3532 | |
| 3533 | SYSTEMTIME systime; |
| 3534 | static const WCHAR date_fmt[] = {'%','i','%','i','%','i',0}; |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3535 | LPWSTR upgrade_code; |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3536 | WCHAR szDate[9]; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3537 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3538 | rc = MSIREG_OpenUninstallKey(package->ProductCode,&hkey,TRUE); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3539 | if (rc != ERROR_SUCCESS) |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3540 | return rc; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3541 | |
| 3542 | /* dump all the info i can grab */ |
| 3543 | FIXME("Flesh out more information \n"); |
| 3544 | |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3545 | msi_write_uninstall_property_vals( package, hkey ); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3546 | |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3547 | msi_reg_set_val_dword( hkey, szWindowsInstaller, 1 ); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3548 | |
Mike McCormack | 61f24a4 | 2005-09-30 10:32:41 +0000 | [diff] [blame] | 3549 | msi_make_package_local( package, hkey ); |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3550 | |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3551 | /* do ModifyPath and UninstallString */ |
| 3552 | size = deformat_string(package,modpath_fmt,&buffer); |
Mike McCormack | 16466af | 2005-07-06 10:33:30 +0000 | [diff] [blame] | 3553 | RegSetValueExW(hkey,szModifyPath,0,REG_EXPAND_SZ,(LPBYTE)buffer,size); |
| 3554 | RegSetValueExW(hkey,szUninstallString,0,REG_EXPAND_SZ,(LPBYTE)buffer,size); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3555 | msi_free(buffer); |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3556 | |
| 3557 | FIXME("Write real Estimated Size when we have it\n"); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3558 | msi_reg_set_val_dword( hkey, szEstimatedSize, 0 ); |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3559 | |
| 3560 | GetLocalTime(&systime); |
Mike McCormack | ba293ee | 2005-10-27 12:08:16 +0000 | [diff] [blame] | 3561 | sprintfW(szDate,date_fmt,systime.wYear,systime.wMonth,systime.wDay); |
| 3562 | msi_reg_set_val_str( hkey, INSTALLPROPERTY_INSTALLDATEW, szDate ); |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3563 | |
Mike McCormack | 74f0de9 | 2005-09-29 10:32:39 +0000 | [diff] [blame] | 3564 | langid = msi_get_property_int( package, szProductLanguage, 0 ); |
| 3565 | msi_reg_set_val_dword( hkey, INSTALLPROPERTY_LANGUAGEW, langid ); |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3566 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3567 | buffer = msi_dup_property( package, szProductVersion ); |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3568 | if (buffer) |
| 3569 | { |
| 3570 | DWORD verdword = build_version_dword(buffer); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3571 | |
| 3572 | msi_reg_set_val_dword( hkey, INSTALLPROPERTY_VERSIONW, verdword ); |
| 3573 | msi_reg_set_val_dword( hkey, INSTALLPROPERTY_VERSIONMAJORW, verdword>>24 ); |
| 3574 | msi_reg_set_val_dword( hkey, INSTALLPROPERTY_VERSIONMINORW, (verdword>>16)&0x00FF ); |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3575 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3576 | msi_free(buffer); |
Aric Stewart | e9db87b | 2005-06-17 21:25:41 +0000 | [diff] [blame] | 3577 | |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3578 | /* Handle Upgrade Codes */ |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3579 | upgrade_code = msi_dup_property( package, szUpgradeCode ); |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3580 | if (upgrade_code) |
| 3581 | { |
| 3582 | HKEY hkey2; |
| 3583 | WCHAR squashed[33]; |
| 3584 | MSIREG_OpenUpgradeCodesKey(upgrade_code, &hkey2, TRUE); |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3585 | squash_guid(package->ProductCode,squashed); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3586 | msi_reg_set_val_str( hkey2, squashed, NULL ); |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3587 | RegCloseKey(hkey2); |
| 3588 | MSIREG_OpenUserUpgradeCodesKey(upgrade_code, &hkey2, TRUE); |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3589 | squash_guid(package->ProductCode,squashed); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3590 | msi_reg_set_val_str( hkey2, squashed, NULL ); |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3591 | RegCloseKey(hkey2); |
| 3592 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3593 | msi_free(upgrade_code); |
Aric Stewart | 36a0150 | 2005-06-08 19:07:52 +0000 | [diff] [blame] | 3594 | } |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3595 | |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3596 | RegCloseKey(hkey); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3597 | |
| 3598 | return ERROR_SUCCESS; |
| 3599 | } |
| 3600 | |
| 3601 | static UINT ACTION_InstallExecute(MSIPACKAGE *package) |
| 3602 | { |
Mike McCormack | a977b2c | 2005-11-03 09:56:29 +0000 | [diff] [blame] | 3603 | return execute_script(package,INSTALL_SCRIPT); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3604 | } |
| 3605 | |
| 3606 | static UINT ACTION_InstallFinalize(MSIPACKAGE *package) |
| 3607 | { |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 3608 | UINT rc; |
| 3609 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 3610 | /* turn off scheduleing */ |
| 3611 | package->script->CurrentlyScripting= FALSE; |
| 3612 | |
Aric Stewart | 54c67dd | 2005-01-25 20:17:09 +0000 | [diff] [blame] | 3613 | /* first do the same as an InstallExecute */ |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 3614 | rc = ACTION_InstallExecute(package); |
| 3615 | if (rc != ERROR_SUCCESS) |
| 3616 | return rc; |
Aric Stewart | 54c67dd | 2005-01-25 20:17:09 +0000 | [diff] [blame] | 3617 | |
| 3618 | /* then handle Commit Actions */ |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 3619 | rc = execute_script(package,COMMIT_SCRIPT); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3620 | |
Aric Stewart | 9cd707d | 2005-05-27 19:24:22 +0000 | [diff] [blame] | 3621 | return rc; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3622 | } |
| 3623 | |
| 3624 | static UINT ACTION_ForceReboot(MSIPACKAGE *package) |
| 3625 | { |
| 3626 | static const WCHAR RunOnce[] = { |
| 3627 | 'S','o','f','t','w','a','r','e','\\', |
| 3628 | 'M','i','c','r','o','s','o','f','t','\\', |
| 3629 | 'W','i','n','d','o','w','s','\\', |
| 3630 | 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\', |
Mike McCormack | 09b8264 | 2005-02-22 19:31:45 +0000 | [diff] [blame] | 3631 | 'R','u','n','O','n','c','e',0}; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3632 | static const WCHAR InstallRunOnce[] = { |
| 3633 | 'S','o','f','t','w','a','r','e','\\', |
| 3634 | 'M','i','c','r','o','s','o','f','t','\\', |
| 3635 | 'W','i','n','d','o','w','s','\\', |
| 3636 | 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\', |
| 3637 | 'I','n','s','t','a','l','l','e','r','\\', |
Mike McCormack | 09b8264 | 2005-02-22 19:31:45 +0000 | [diff] [blame] | 3638 | 'R','u','n','O','n','c','e','E','n','t','r','i','e','s',0}; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3639 | |
| 3640 | static const WCHAR msiexec_fmt[] = { |
Juan Lang | 014ad3b | 2005-03-01 10:41:52 +0000 | [diff] [blame] | 3641 | '%','s', |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3642 | '\\','M','s','i','E','x','e','c','.','e','x','e',' ','/','@',' ', |
| 3643 | '\"','%','s','\"',0}; |
| 3644 | static const WCHAR install_fmt[] = { |
| 3645 | '/','I',' ','\"','%','s','\"',' ', |
| 3646 | 'A','F','T','E','R','R','E','B','O','O','T','=','1',' ', |
| 3647 | 'R','U','N','O','N','C','E','E','N','T','R','Y','=','\"','%','s','\"',0}; |
Juan Lang | 014ad3b | 2005-03-01 10:41:52 +0000 | [diff] [blame] | 3648 | WCHAR buffer[256], sysdir[MAX_PATH]; |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3649 | HKEY hkey; |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3650 | WCHAR squished_pc[100]; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3651 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3652 | squash_guid(package->ProductCode,squished_pc); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3653 | |
Juan Lang | 014ad3b | 2005-03-01 10:41:52 +0000 | [diff] [blame] | 3654 | GetSystemDirectoryW(sysdir, sizeof(sysdir)/sizeof(sysdir[0])); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3655 | RegCreateKeyW(HKEY_LOCAL_MACHINE,RunOnce,&hkey); |
Juan Lang | 014ad3b | 2005-03-01 10:41:52 +0000 | [diff] [blame] | 3656 | snprintfW(buffer,sizeof(buffer)/sizeof(buffer[0]),msiexec_fmt,sysdir, |
| 3657 | squished_pc); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3658 | |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3659 | msi_reg_set_val_str( hkey, squished_pc, buffer ); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3660 | RegCloseKey(hkey); |
| 3661 | |
| 3662 | TRACE("Reboot command %s\n",debugstr_w(buffer)); |
| 3663 | |
| 3664 | RegCreateKeyW(HKEY_LOCAL_MACHINE,InstallRunOnce,&hkey); |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3665 | sprintfW(buffer,install_fmt,package->ProductCode,squished_pc); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 3666 | |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3667 | msi_reg_set_val_str( hkey, squished_pc, buffer ); |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3668 | RegCloseKey(hkey); |
| 3669 | |
Aric Stewart | 68b0749 | 2005-01-25 11:05:37 +0000 | [diff] [blame] | 3670 | return ERROR_INSTALL_SUSPEND; |
Aric Stewart | 2cae30b | 2005-01-19 19:07:40 +0000 | [diff] [blame] | 3671 | } |
| 3672 | |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 3673 | UINT ACTION_ResolveSource(MSIPACKAGE* package) |
| 3674 | { |
Aric Stewart | 94d6818 | 2005-08-15 20:50:06 +0000 | [diff] [blame] | 3675 | DWORD attrib; |
| 3676 | UINT rc; |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 3677 | /* |
| 3678 | * we are currently doing what should be done here in the top level Install |
| 3679 | * however for Adminastrative and uninstalls this step will be needed |
| 3680 | */ |
Aric Stewart | 94d6818 | 2005-08-15 20:50:06 +0000 | [diff] [blame] | 3681 | if (!package->PackagePath) |
| 3682 | return ERROR_SUCCESS; |
| 3683 | |
| 3684 | attrib = GetFileAttributesW(package->PackagePath); |
| 3685 | if (attrib == INVALID_FILE_ATTRIBUTES) |
| 3686 | { |
| 3687 | LPWSTR prompt; |
| 3688 | LPWSTR msg; |
| 3689 | DWORD size = 0; |
| 3690 | |
| 3691 | rc = MsiSourceListGetInfoW(package->ProductCode, NULL, |
| 3692 | MSIINSTALLCONTEXT_USERMANAGED, MSICODE_PRODUCT, |
| 3693 | INSTALLPROPERTY_DISKPROMPTW,NULL,&size); |
| 3694 | if (rc == ERROR_MORE_DATA) |
| 3695 | { |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3696 | prompt = msi_alloc(size * sizeof(WCHAR)); |
Aric Stewart | 94d6818 | 2005-08-15 20:50:06 +0000 | [diff] [blame] | 3697 | MsiSourceListGetInfoW(package->ProductCode, NULL, |
| 3698 | MSIINSTALLCONTEXT_USERMANAGED, MSICODE_PRODUCT, |
| 3699 | INSTALLPROPERTY_DISKPROMPTW,prompt,&size); |
| 3700 | } |
| 3701 | else |
| 3702 | prompt = strdupW(package->PackagePath); |
| 3703 | |
| 3704 | msg = generate_error_string(package,1302,1,prompt); |
| 3705 | while(attrib == INVALID_FILE_ATTRIBUTES) |
| 3706 | { |
| 3707 | rc = MessageBoxW(NULL,msg,NULL,MB_OKCANCEL); |
| 3708 | if (rc == IDCANCEL) |
| 3709 | { |
| 3710 | rc = ERROR_INSTALL_USEREXIT; |
| 3711 | break; |
| 3712 | } |
| 3713 | attrib = GetFileAttributesW(package->PackagePath); |
| 3714 | } |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3715 | msi_free(prompt); |
Aric Stewart | 94d6818 | 2005-08-15 20:50:06 +0000 | [diff] [blame] | 3716 | rc = ERROR_SUCCESS; |
| 3717 | } |
| 3718 | else |
| 3719 | return ERROR_SUCCESS; |
| 3720 | |
| 3721 | return rc; |
Aric Stewart | 90c5739 | 2005-01-31 16:23:12 +0000 | [diff] [blame] | 3722 | } |
| 3723 | |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3724 | static UINT ACTION_RegisterUser(MSIPACKAGE *package) |
| 3725 | { |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3726 | HKEY hkey=0; |
| 3727 | LPWSTR buffer; |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3728 | LPWSTR productid; |
| 3729 | UINT rc,i; |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3730 | |
| 3731 | static const WCHAR szPropKeys[][80] = |
| 3732 | { |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 3733 | {'P','r','o','d','u','c','t','I','D',0}, |
| 3734 | {'U','S','E','R','N','A','M','E',0}, |
| 3735 | {'C','O','M','P','A','N','Y','N','A','M','E',0}, |
| 3736 | {0}, |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3737 | }; |
| 3738 | |
| 3739 | static const WCHAR szRegKeys[][80] = |
| 3740 | { |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 3741 | {'P','r','o','d','u','c','t','I','D',0}, |
| 3742 | {'R','e','g','O','w','n','e','r',0}, |
| 3743 | {'R','e','g','C','o','m','p','a','n','y',0}, |
| 3744 | {0}, |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3745 | }; |
| 3746 | |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3747 | productid = msi_dup_property( package, INSTALLPROPERTY_PRODUCTIDW ); |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3748 | if (!productid) |
| 3749 | return ERROR_SUCCESS; |
| 3750 | |
Aric Stewart | adaef11 | 2005-07-07 20:27:06 +0000 | [diff] [blame] | 3751 | rc = MSIREG_OpenUninstallKey(package->ProductCode,&hkey,TRUE); |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3752 | if (rc != ERROR_SUCCESS) |
| 3753 | goto end; |
| 3754 | |
Mike McCormack | 67189f9 | 2005-09-16 18:45:19 +0000 | [diff] [blame] | 3755 | for( i = 0; szPropKeys[i][0]; i++ ) |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3756 | { |
Mike McCormack | 062ad50 | 2005-09-15 15:04:08 +0000 | [diff] [blame] | 3757 | buffer = msi_dup_property( package, szPropKeys[i] ); |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3758 | msi_reg_set_val_str( hkey, szRegKeys[i], buffer ); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3759 | msi_free( buffer ); |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3760 | } |
| 3761 | |
| 3762 | end: |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3763 | msi_free(productid); |
Aric Stewart | c7e88e0 | 2005-02-10 17:09:44 +0000 | [diff] [blame] | 3764 | RegCloseKey(hkey); |
| 3765 | |
| 3766 | return ERROR_SUCCESS; |
| 3767 | } |
| 3768 | |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 3769 | |
| 3770 | static UINT ACTION_ExecuteAction(MSIPACKAGE *package) |
| 3771 | { |
| 3772 | UINT rc; |
Aric Stewart | 25f1e75 | 2005-06-24 12:14:52 +0000 | [diff] [blame] | 3773 | |
Aric Stewart | c980293 | 2005-06-30 20:45:43 +0000 | [diff] [blame] | 3774 | package->script->InWhatSequence |= SEQUENCE_EXEC; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 3775 | rc = ACTION_ProcessExecSequence(package,FALSE); |
Aric Stewart | b6bc6aa | 2005-02-24 12:47:43 +0000 | [diff] [blame] | 3776 | return rc; |
| 3777 | } |
| 3778 | |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3779 | |
| 3780 | /* |
| 3781 | * Code based off of code located here |
| 3782 | * http://www.codeproject.com/gdi/fontnamefromfile.asp |
| 3783 | * |
| 3784 | * Using string index 4 (full font name) instead of 1 (family name) |
| 3785 | */ |
| 3786 | static LPWSTR load_ttfname_from(LPCWSTR filename) |
| 3787 | { |
| 3788 | HANDLE handle; |
| 3789 | LPWSTR ret = NULL; |
| 3790 | int i; |
| 3791 | |
| 3792 | typedef struct _tagTT_OFFSET_TABLE{ |
| 3793 | USHORT uMajorVersion; |
| 3794 | USHORT uMinorVersion; |
| 3795 | USHORT uNumOfTables; |
| 3796 | USHORT uSearchRange; |
| 3797 | USHORT uEntrySelector; |
| 3798 | USHORT uRangeShift; |
| 3799 | }TT_OFFSET_TABLE; |
| 3800 | |
| 3801 | typedef struct _tagTT_TABLE_DIRECTORY{ |
| 3802 | char szTag[4]; /* table name */ |
| 3803 | ULONG uCheckSum; /* Check sum */ |
| 3804 | ULONG uOffset; /* Offset from beginning of file */ |
| 3805 | ULONG uLength; /* length of the table in bytes */ |
| 3806 | }TT_TABLE_DIRECTORY; |
| 3807 | |
| 3808 | typedef struct _tagTT_NAME_TABLE_HEADER{ |
| 3809 | USHORT uFSelector; /* format selector. Always 0 */ |
| 3810 | USHORT uNRCount; /* Name Records count */ |
| 3811 | USHORT uStorageOffset; /* Offset for strings storage, |
| 3812 | * from start of the table */ |
| 3813 | }TT_NAME_TABLE_HEADER; |
| 3814 | |
| 3815 | typedef struct _tagTT_NAME_RECORD{ |
| 3816 | USHORT uPlatformID; |
| 3817 | USHORT uEncodingID; |
| 3818 | USHORT uLanguageID; |
| 3819 | USHORT uNameID; |
| 3820 | USHORT uStringLength; |
| 3821 | USHORT uStringOffset; /* from start of storage area */ |
| 3822 | }TT_NAME_RECORD; |
Alexandre Julliard | d0ee9f9 | 2005-03-02 12:23:20 +0000 | [diff] [blame] | 3823 | |
| 3824 | #define SWAPWORD(x) MAKEWORD(HIBYTE(x), LOBYTE(x)) |
| 3825 | #define SWAPLONG(x) MAKELONG(SWAPWORD(HIWORD(x)), SWAPWORD(LOWORD(x))) |
| 3826 | |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3827 | handle = CreateFileW(filename ,GENERIC_READ, 0, NULL, OPEN_EXISTING, |
| 3828 | FILE_ATTRIBUTE_NORMAL, 0 ); |
| 3829 | if (handle != INVALID_HANDLE_VALUE) |
| 3830 | { |
| 3831 | TT_TABLE_DIRECTORY tblDir; |
| 3832 | BOOL bFound = FALSE; |
| 3833 | TT_OFFSET_TABLE ttOffsetTable; |
Thomas Weidenmueller | 561f2f0 | 2005-10-29 10:29:08 +0000 | [diff] [blame] | 3834 | DWORD dwRead; |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3835 | |
Thomas Weidenmueller | 561f2f0 | 2005-10-29 10:29:08 +0000 | [diff] [blame] | 3836 | ReadFile(handle,&ttOffsetTable, sizeof(TT_OFFSET_TABLE),&dwRead,NULL); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3837 | ttOffsetTable.uNumOfTables = SWAPWORD(ttOffsetTable.uNumOfTables); |
| 3838 | ttOffsetTable.uMajorVersion = SWAPWORD(ttOffsetTable.uMajorVersion); |
| 3839 | ttOffsetTable.uMinorVersion = SWAPWORD(ttOffsetTable.uMinorVersion); |
| 3840 | |
| 3841 | if (ttOffsetTable.uMajorVersion != 1 || |
| 3842 | ttOffsetTable.uMinorVersion != 0) |
| 3843 | return NULL; |
| 3844 | |
| 3845 | for (i=0; i< ttOffsetTable.uNumOfTables; i++) |
| 3846 | { |
Thomas Weidenmueller | 561f2f0 | 2005-10-29 10:29:08 +0000 | [diff] [blame] | 3847 | ReadFile(handle,&tblDir, sizeof(TT_TABLE_DIRECTORY),&dwRead,NULL); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3848 | if (strncmp(tblDir.szTag,"name",4)==0) |
| 3849 | { |
| 3850 | bFound = TRUE; |
| 3851 | tblDir.uLength = SWAPLONG(tblDir.uLength); |
| 3852 | tblDir.uOffset = SWAPLONG(tblDir.uOffset); |
| 3853 | break; |
| 3854 | } |
| 3855 | } |
| 3856 | |
| 3857 | if (bFound) |
| 3858 | { |
| 3859 | TT_NAME_TABLE_HEADER ttNTHeader; |
| 3860 | TT_NAME_RECORD ttRecord; |
| 3861 | |
| 3862 | SetFilePointer(handle, tblDir.uOffset, NULL, FILE_BEGIN); |
| 3863 | ReadFile(handle,&ttNTHeader, sizeof(TT_NAME_TABLE_HEADER), |
Thomas Weidenmueller | 561f2f0 | 2005-10-29 10:29:08 +0000 | [diff] [blame] | 3864 | &dwRead,NULL); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3865 | |
| 3866 | ttNTHeader.uNRCount = SWAPWORD(ttNTHeader.uNRCount); |
| 3867 | ttNTHeader.uStorageOffset = SWAPWORD(ttNTHeader.uStorageOffset); |
| 3868 | bFound = FALSE; |
| 3869 | for(i=0; i<ttNTHeader.uNRCount; i++) |
| 3870 | { |
Thomas Weidenmueller | 561f2f0 | 2005-10-29 10:29:08 +0000 | [diff] [blame] | 3871 | ReadFile(handle,&ttRecord, sizeof(TT_NAME_RECORD),&dwRead,NULL); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3872 | ttRecord.uNameID = SWAPWORD(ttRecord.uNameID); |
| 3873 | /* 4 is the Full Font Name */ |
| 3874 | if(ttRecord.uNameID == 4) |
| 3875 | { |
| 3876 | int nPos; |
| 3877 | LPSTR buf; |
Mike McCormack | f9acfe6 | 2005-06-07 20:29:51 +0000 | [diff] [blame] | 3878 | static LPCSTR tt = " (TrueType)"; |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3879 | |
| 3880 | ttRecord.uStringLength = SWAPWORD(ttRecord.uStringLength); |
| 3881 | ttRecord.uStringOffset = SWAPWORD(ttRecord.uStringOffset); |
| 3882 | nPos = SetFilePointer(handle, 0, NULL, FILE_CURRENT); |
| 3883 | SetFilePointer(handle, tblDir.uOffset + |
| 3884 | ttRecord.uStringOffset + |
| 3885 | ttNTHeader.uStorageOffset, |
| 3886 | NULL, FILE_BEGIN); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3887 | buf = msi_alloc( ttRecord.uStringLength + 1 + strlen(tt) ); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3888 | memset(buf, 0, ttRecord.uStringLength + 1 + strlen(tt)); |
Thomas Weidenmueller | 561f2f0 | 2005-10-29 10:29:08 +0000 | [diff] [blame] | 3889 | ReadFile(handle, buf, ttRecord.uStringLength, &dwRead, NULL); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3890 | if (strlen(buf) > 0) |
| 3891 | { |
| 3892 | strcat(buf,tt); |
| 3893 | ret = strdupAtoW(buf); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3894 | msi_free(buf); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3895 | break; |
| 3896 | } |
| 3897 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3898 | msi_free(buf); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3899 | SetFilePointer(handle,nPos, NULL, FILE_BEGIN); |
| 3900 | } |
| 3901 | } |
| 3902 | } |
| 3903 | CloseHandle(handle); |
| 3904 | } |
Aric Stewart | 8a6a9a6 | 2005-05-18 09:44:38 +0000 | [diff] [blame] | 3905 | else |
| 3906 | ERR("Unable to open font file %s\n", debugstr_w(filename)); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3907 | |
| 3908 | TRACE("Returning fontname %s\n",debugstr_w(ret)); |
| 3909 | return ret; |
| 3910 | } |
| 3911 | |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3912 | static UINT ITERATE_RegisterFonts(MSIRECORD *row, LPVOID param) |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3913 | { |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3914 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
| 3915 | LPWSTR name; |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3916 | LPCWSTR filename; |
| 3917 | MSIFILE *file; |
Aric Stewart | 8e233e9 | 2005-03-01 11:45:19 +0000 | [diff] [blame] | 3918 | static const WCHAR regfont1[] = |
| 3919 | {'S','o','f','t','w','a','r','e','\\', |
| 3920 | 'M','i','c','r','o','s','o','f','t','\\', |
| 3921 | 'W','i','n','d','o','w','s',' ','N','T','\\', |
| 3922 | 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\', |
| 3923 | 'F','o','n','t','s',0}; |
| 3924 | static const WCHAR regfont2[] = |
| 3925 | {'S','o','f','t','w','a','r','e','\\', |
| 3926 | 'M','i','c','r','o','s','o','f','t','\\', |
| 3927 | 'W','i','n','d','o','w','s','\\', |
| 3928 | 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\', |
| 3929 | 'F','o','n','t','s',0}; |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3930 | HKEY hkey1; |
| 3931 | HKEY hkey2; |
| 3932 | |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3933 | filename = MSI_RecordGetString( row, 1 ); |
| 3934 | file = get_loaded_file( package, filename ); |
| 3935 | if (!file) |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3936 | { |
| 3937 | ERR("Unable to load file\n"); |
| 3938 | return ERROR_SUCCESS; |
| 3939 | } |
| 3940 | |
| 3941 | /* check to make sure that component is installed */ |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 3942 | if (!ACTION_VerifyComponentForAction( file->Component, INSTALLSTATE_LOCAL)) |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3943 | { |
| 3944 | TRACE("Skipping: Component not scheduled for install\n"); |
| 3945 | return ERROR_SUCCESS; |
| 3946 | } |
| 3947 | |
| 3948 | RegCreateKeyW(HKEY_LOCAL_MACHINE,regfont1,&hkey1); |
| 3949 | RegCreateKeyW(HKEY_LOCAL_MACHINE,regfont2,&hkey2); |
| 3950 | |
| 3951 | if (MSI_RecordIsNull(row,2)) |
Mike McCormack | e18f8ab | 2005-08-23 10:03:17 +0000 | [diff] [blame] | 3952 | name = load_ttfname_from( file->TargetPath ); |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3953 | else |
Mike McCormack | 51c6618 | 2005-10-27 12:36:12 +0000 | [diff] [blame] | 3954 | name = msi_dup_record_field(row,2); |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3955 | |
| 3956 | if (name) |
| 3957 | { |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 3958 | msi_reg_set_val_str( hkey1, name, file->FileName ); |
| 3959 | msi_reg_set_val_str( hkey2, name, file->FileName ); |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3960 | } |
| 3961 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 3962 | msi_free(name); |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3963 | RegCloseKey(hkey1); |
| 3964 | RegCloseKey(hkey2); |
| 3965 | return ERROR_SUCCESS; |
| 3966 | } |
| 3967 | |
| 3968 | static UINT ACTION_RegisterFonts(MSIPACKAGE *package) |
| 3969 | { |
| 3970 | UINT rc; |
| 3971 | MSIQUERY * view; |
| 3972 | static const WCHAR ExecSeqQuery[] = |
| 3973 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
| 3974 | '`','F','o','n','t','`',0}; |
Juan Lang | 88adb53 | 2005-05-19 11:15:24 +0000 | [diff] [blame] | 3975 | |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3976 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
| 3977 | if (rc != ERROR_SUCCESS) |
Juan Lang | 88adb53 | 2005-05-19 11:15:24 +0000 | [diff] [blame] | 3978 | { |
| 3979 | TRACE("MSI_DatabaseOpenViewW failed: %d\n", rc); |
| 3980 | return ERROR_SUCCESS; |
| 3981 | } |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3982 | |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3983 | MSI_IterateRecords(view, NULL, ITERATE_RegisterFonts, package); |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3984 | msiobj_release(&view->hdr); |
| 3985 | |
Aric Stewart | a9b5052 | 2005-06-23 11:04:09 +0000 | [diff] [blame] | 3986 | return ERROR_SUCCESS; |
Aric Stewart | 0af2487 | 2005-02-25 14:00:09 +0000 | [diff] [blame] | 3987 | } |
| 3988 | |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 3989 | static UINT ITERATE_PublishComponent(MSIRECORD *rec, LPVOID param) |
| 3990 | { |
| 3991 | MSIPACKAGE *package = (MSIPACKAGE*)param; |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 3992 | LPCWSTR compgroupid=NULL; |
| 3993 | LPCWSTR feature=NULL; |
| 3994 | LPCWSTR text = NULL; |
| 3995 | LPCWSTR qualifier = NULL; |
| 3996 | LPCWSTR component = NULL; |
Aric Stewart | 6f43c18 | 2005-05-26 12:24:28 +0000 | [diff] [blame] | 3997 | LPWSTR advertise = NULL; |
| 3998 | LPWSTR output = NULL; |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 3999 | HKEY hkey; |
| 4000 | UINT rc = ERROR_SUCCESS; |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 4001 | MSICOMPONENT *comp; |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4002 | DWORD sz = 0; |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 4003 | |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 4004 | component = MSI_RecordGetString(rec,3); |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 4005 | comp = get_loaded_component(package,component); |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 4006 | |
Mike McCormack | d693f46 | 2005-10-29 11:36:48 +0000 | [diff] [blame] | 4007 | if (!ACTION_VerifyComponentForAction( comp, INSTALLSTATE_LOCAL ) && |
| 4008 | !ACTION_VerifyComponentForAction( comp, INSTALLSTATE_SOURCE ) && |
| 4009 | !ACTION_VerifyComponentForAction( comp, INSTALLSTATE_ADVERTISED )) |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 4010 | { |
| 4011 | TRACE("Skipping: Component %s not scheduled for install\n", |
| 4012 | debugstr_w(component)); |
Aric Stewart | 6f43c18 | 2005-05-26 12:24:28 +0000 | [diff] [blame] | 4013 | |
Aric Stewart | b39d8fc | 2005-05-13 13:56:39 +0000 | [diff] [blame] | 4014 | return ERROR_SUCCESS; |
| 4015 | } |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4016 | |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 4017 | compgroupid = MSI_RecordGetString(rec,1); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4018 | |
| 4019 | rc = MSIREG_OpenUserComponentsKey(compgroupid, &hkey, TRUE); |
| 4020 | if (rc != ERROR_SUCCESS) |
| 4021 | goto end; |
| 4022 | |
Aric Stewart | 09b0aba | 2005-06-09 20:30:59 +0000 | [diff] [blame] | 4023 | text = MSI_RecordGetString(rec,4); |
| 4024 | qualifier = MSI_RecordGetString(rec,2); |
| 4025 | feature = MSI_RecordGetString(rec,5); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4026 | |
Mike McCormack | 38d67a4 | 2005-08-22 09:15:23 +0000 | [diff] [blame] | 4027 | advertise = create_component_advertise_string(package, comp, feature); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4028 | |
Aric Stewart | 6f43c18 | 2005-05-26 12:24:28 +0000 | [diff] [blame] | 4029 | sz = strlenW(advertise); |
| 4030 | |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4031 | if (text) |
| 4032 | sz += lstrlenW(text); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4033 | |
| 4034 | sz+=3; |
| 4035 | sz *= sizeof(WCHAR); |
| 4036 | |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 4037 | output = msi_alloc(sz); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4038 | memset(output,0,sz); |
Aric Stewart | 6f43c18 | 2005-05-26 12:24:28 +0000 | [diff] [blame] | 4039 | strcpyW(output,advertise); |
Mike McCormack | 470f23d | 2005-09-22 10:56:26 +0000 | [diff] [blame] | 4040 | msi_free(advertise); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4041 | |
| 4042 | if (text) |
| 4043 | strcatW(output,text); |
| 4044 | |
Mike McCormack | 4db02cd | 2005-09-15 14:58:38 +0000 | [diff] [blame] | 4045 | msi_reg_set_val_multi_str( hkey, qualifier, output ); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4046 | |
| 4047 | end: |
| 4048 | RegCloseKey(hkey); |
Mike McCormack | ee034ba | 2005-09-20 11:59:14 +0000 | [diff] [blame] | 4049 | msi_free(output); |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4050 | |
| 4051 | return rc; |
| 4052 | } |
| 4053 | |
| 4054 | /* |
| 4055 | * At present I am ignorning the advertised components part of this and only |
| 4056 | * focusing on the qualified component sets |
| 4057 | */ |
| 4058 | static UINT ACTION_PublishComponents(MSIPACKAGE *package) |
| 4059 | { |
| 4060 | UINT rc; |
| 4061 | MSIQUERY * view; |
| 4062 | static const WCHAR ExecSeqQuery[] = |
| 4063 | {'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ', |
Aric Stewart | 98e3808 | 2005-05-20 09:40:42 +0000 | [diff] [blame] | 4064 | '`','P','u','b','l','i','s','h', |
| 4065 | 'C','o','m','p','o','n','e','n','t','`',0}; |
Aric Stewart | 072c5e5 | 2005-04-20 12:50:05 +0000 | [diff] [blame] | 4066 | |
| 4067 | rc = MSI_DatabaseOpenViewW(package->db, ExecSeqQuery, &view); |
| 4068 | if (rc != ERROR_SUCCESS) |
| 4069 | return ERROR_SUCCESS; |
| 4070 | |
| 4071 | rc = MSI_IterateRecords(view, NULL, ITERATE_PublishComponent, package); |
| 4072 | msiobj_release(&view->hdr); |
| 4073 | |
| 4074 | return rc; |
| 4075 | } |
Mike McCormack | 202166c | 2005-09-23 10:09:18 +0000 | [diff] [blame] | 4076 | |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4077 | static UINT msi_unimplemented_action_stub( MSIPACKAGE *package, |
| 4078 | LPCSTR action, LPCWSTR table ) |
Mike McCormack | 567f031 | 2005-09-23 11:06:57 +0000 | [diff] [blame] | 4079 | { |
| 4080 | static const WCHAR query[] = { |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4081 | 'S','E','L','E','C','T',' ','*',' ', |
| 4082 | 'F','R','O','M',' ','`','%','s','`',0 }; |
Mike McCormack | 567f031 | 2005-09-23 11:06:57 +0000 | [diff] [blame] | 4083 | MSIQUERY *view = NULL; |
| 4084 | DWORD count = 0; |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4085 | UINT r; |
Mike McCormack | 567f031 | 2005-09-23 11:06:57 +0000 | [diff] [blame] | 4086 | |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4087 | r = MSI_OpenQuery( package->db, &view, query, table ); |
| 4088 | if (r == ERROR_SUCCESS) |
Mike McCormack | 567f031 | 2005-09-23 11:06:57 +0000 | [diff] [blame] | 4089 | { |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4090 | r = MSI_IterateRecords(view, &count, NULL, package); |
Mike McCormack | 567f031 | 2005-09-23 11:06:57 +0000 | [diff] [blame] | 4091 | msiobj_release(&view->hdr); |
| 4092 | } |
| 4093 | |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4094 | if (count) |
| 4095 | FIXME("%s -> %lu ignored %s table values\n", |
| 4096 | action, count, debugstr_w(table)); |
| 4097 | |
Mike McCormack | 567f031 | 2005-09-23 11:06:57 +0000 | [diff] [blame] | 4098 | return ERROR_SUCCESS; |
| 4099 | } |
Mike McCormack | 94fbe09 | 2005-09-23 17:21:10 +0000 | [diff] [blame] | 4100 | |
Mike McCormack | 5594270 | 2005-10-30 19:23:28 +0000 | [diff] [blame] | 4101 | static UINT ACTION_AllocateRegistrySpace( MSIPACKAGE *package ) |
| 4102 | { |
| 4103 | TRACE("%p\n", package); |
| 4104 | return ERROR_SUCCESS; |
| 4105 | } |
| 4106 | |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4107 | static UINT ACTION_RemoveIniValues( MSIPACKAGE *package ) |
Mike McCormack | 94fbe09 | 2005-09-23 17:21:10 +0000 | [diff] [blame] | 4108 | { |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4109 | static const WCHAR table[] = |
| 4110 | {'R','e','m','o','v','e','I','n','i','F','i','l','e',0 }; |
| 4111 | return msi_unimplemented_action_stub( package, "RemoveIniValues", table ); |
Mike McCormack | 94fbe09 | 2005-09-23 17:21:10 +0000 | [diff] [blame] | 4112 | } |
Mike McCormack | b9a3a7a | 2005-09-25 15:14:03 +0000 | [diff] [blame] | 4113 | |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4114 | static UINT ACTION_MoveFiles( MSIPACKAGE *package ) |
Mike McCormack | b9a3a7a | 2005-09-25 15:14:03 +0000 | [diff] [blame] | 4115 | { |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4116 | static const WCHAR table[] = { 'M','o','v','e','F','i','l','e',0 }; |
| 4117 | return msi_unimplemented_action_stub( package, "MoveFiles", table ); |
| 4118 | } |
| 4119 | |
| 4120 | static UINT ACTION_PatchFiles( MSIPACKAGE *package ) |
| 4121 | { |
| 4122 | static const WCHAR table[] = { 'P','a','t','c','h',0 }; |
| 4123 | return msi_unimplemented_action_stub( package, "PatchFiles", table ); |
| 4124 | } |
| 4125 | |
| 4126 | static UINT ACTION_BindImage( MSIPACKAGE *package ) |
| 4127 | { |
| 4128 | static const WCHAR table[] = { 'B','i','n','d','I','m','a','g','e',0 }; |
| 4129 | return msi_unimplemented_action_stub( package, "BindImage", table ); |
| 4130 | } |
| 4131 | |
| 4132 | static UINT ACTION_IsolateComponents( MSIPACKAGE *package ) |
| 4133 | { |
| 4134 | static const WCHAR table[] = { |
Mike McCormack | b9a3a7a | 2005-09-25 15:14:03 +0000 | [diff] [blame] | 4135 | 'I','s','o','l','a','t','e','C','o','m','p','o','n','e','n','t',0 }; |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4136 | return msi_unimplemented_action_stub( package, "IsolateComponents", table ); |
| 4137 | } |
Mike McCormack | b9a3a7a | 2005-09-25 15:14:03 +0000 | [diff] [blame] | 4138 | |
Mike McCormack | 2586a09 | 2005-09-26 09:56:18 +0000 | [diff] [blame] | 4139 | static UINT ACTION_MigrateFeatureStates( MSIPACKAGE *package ) |
| 4140 | { |
| 4141 | static const WCHAR table[] = { 'U','p','g','r','a','d','e',0 }; |
| 4142 | return msi_unimplemented_action_stub( package, "MigrateFeatureStates", table ); |
| 4143 | } |
| 4144 | |
| 4145 | static UINT ACTION_SelfUnregModules( MSIPACKAGE *package ) |
| 4146 | { |
| 4147 | static const WCHAR table[] = { 'S','e','l','f','R','e','g',0 }; |
| 4148 | return msi_unimplemented_action_stub( package, "SelfUnregModules", table ); |
| 4149 | } |
| 4150 | |
| 4151 | static UINT ACTION_InstallServices( MSIPACKAGE *package ) |
| 4152 | { |
| 4153 | static const WCHAR table[] = { |
| 4154 | 'S','e','r','v','i','c','e','I','n','s','t','a','l','l',0 }; |
| 4155 | return msi_unimplemented_action_stub( package, "InstallServices", table ); |
| 4156 | } |
| 4157 | |
| 4158 | static UINT ACTION_StartServices( MSIPACKAGE *package ) |
| 4159 | { |
| 4160 | static const WCHAR table[] = { |
| 4161 | 'S','e','r','v','i','c','e','C','o','n','t','r','o','l',0 }; |
| 4162 | return msi_unimplemented_action_stub( package, "StartServices", table ); |
| 4163 | } |
| 4164 | |
| 4165 | static UINT ACTION_StopServices( MSIPACKAGE *package ) |
| 4166 | { |
| 4167 | static const WCHAR table[] = { |
| 4168 | 'S','e','r','v','i','c','e','C','o','n','t','r','o','l',0 }; |
| 4169 | return msi_unimplemented_action_stub( package, "StopServices", table ); |
| 4170 | } |
| 4171 | |
| 4172 | static UINT ACTION_DeleteServices( MSIPACKAGE *package ) |
| 4173 | { |
| 4174 | static const WCHAR table[] = { |
| 4175 | 'S','e','r','v','i','c','e','C','o','n','t','r','o','l',0 }; |
| 4176 | return msi_unimplemented_action_stub( package, "DeleteServices", table ); |
Mike McCormack | b9a3a7a | 2005-09-25 15:14:03 +0000 | [diff] [blame] | 4177 | } |
Mike McCormack | 3b95515 | 2005-09-28 18:10:44 +0000 | [diff] [blame] | 4178 | |
| 4179 | static UINT ACTION_WriteEnvironmentStrings( MSIPACKAGE *package ) |
| 4180 | { |
| 4181 | static const WCHAR table[] = { |
| 4182 | 'E','n','v','i','r','o','n','m','e','n','t',0 }; |
| 4183 | return msi_unimplemented_action_stub( package, "WriteEnvironmentStrings", table ); |
| 4184 | } |
| 4185 | |
| 4186 | static UINT ACTION_RemoveEnvironmentStrings( MSIPACKAGE *package ) |
| 4187 | { |
| 4188 | static const WCHAR table[] = { |
| 4189 | 'E','n','v','i','r','o','n','m','e','n','t',0 }; |
| 4190 | return msi_unimplemented_action_stub( package, "RemoveEnvironmentStrings", table ); |
| 4191 | } |
| 4192 | |
| 4193 | static UINT ACTION_MsiPublishAssemblies( MSIPACKAGE *package ) |
| 4194 | { |
| 4195 | static const WCHAR table[] = { |
| 4196 | 'M','s','i','A','s','s','e','m','b','l','y',0 }; |
| 4197 | return msi_unimplemented_action_stub( package, "MsiPublishAssemblies", table ); |
| 4198 | } |
| 4199 | |
| 4200 | static UINT ACTION_MsiUnpublishAssemblies( MSIPACKAGE *package ) |
| 4201 | { |
| 4202 | static const WCHAR table[] = { |
| 4203 | 'M','s','i','A','s','s','e','m','b','l','y',0 }; |
| 4204 | return msi_unimplemented_action_stub( package, "MsiUnpublishAssemblies", table ); |
| 4205 | } |
| 4206 | |
| 4207 | static UINT ACTION_UnregisterFonts( MSIPACKAGE *package ) |
| 4208 | { |
| 4209 | static const WCHAR table[] = { 'F','o','n','t',0 }; |
| 4210 | return msi_unimplemented_action_stub( package, "UnregisterFonts", table ); |
| 4211 | } |
| 4212 | |
| 4213 | static struct _actions StandardActions[] = { |
Mike McCormack | 5594270 | 2005-10-30 19:23:28 +0000 | [diff] [blame] | 4214 | { szAllocateRegistrySpace, ACTION_AllocateRegistrySpace }, |
Mike McCormack | 3b95515 | 2005-09-28 18:10:44 +0000 | [diff] [blame] | 4215 | { szAppSearch, ACTION_AppSearch }, |
| 4216 | { szBindImage, ACTION_BindImage }, |
| 4217 | { szCCPSearch, NULL}, |
| 4218 | { szCostFinalize, ACTION_CostFinalize }, |
| 4219 | { szCostInitialize, ACTION_CostInitialize }, |
| 4220 | { szCreateFolders, ACTION_CreateFolders }, |
| 4221 | { szCreateShortcuts, ACTION_CreateShortcuts }, |
| 4222 | { szDeleteServices, ACTION_DeleteServices }, |
| 4223 | { szDisableRollback, NULL}, |
| 4224 | { szDuplicateFiles, ACTION_DuplicateFiles }, |
| 4225 | { szExecuteAction, ACTION_ExecuteAction }, |
| 4226 | { szFileCost, ACTION_FileCost }, |
| 4227 | { szFindRelatedProducts, ACTION_FindRelatedProducts }, |
| 4228 | { szForceReboot, ACTION_ForceReboot }, |
| 4229 | { szInstallAdminPackage, NULL}, |
| 4230 | { szInstallExecute, ACTION_InstallExecute }, |
| 4231 | { szInstallExecuteAgain, ACTION_InstallExecute }, |
| 4232 | { szInstallFiles, ACTION_InstallFiles}, |
| 4233 | { szInstallFinalize, ACTION_InstallFinalize }, |
| 4234 | { szInstallInitialize, ACTION_InstallInitialize }, |
| 4235 | { szInstallSFPCatalogFile, NULL}, |
| 4236 | { szInstallValidate, ACTION_InstallValidate }, |
| 4237 | { szIsolateComponents, ACTION_IsolateComponents }, |
| 4238 | { szLaunchConditions, ACTION_LaunchConditions }, |
| 4239 | { szMigrateFeatureStates, ACTION_MigrateFeatureStates }, |
| 4240 | { szMoveFiles, ACTION_MoveFiles }, |
| 4241 | { szMsiPublishAssemblies, ACTION_MsiPublishAssemblies }, |
| 4242 | { szMsiUnpublishAssemblies, ACTION_MsiUnpublishAssemblies }, |
| 4243 | { szInstallODBC, NULL}, |
| 4244 | { szInstallServices, ACTION_InstallServices }, |
| 4245 | { szPatchFiles, ACTION_PatchFiles }, |
| 4246 | { szProcessComponents, ACTION_ProcessComponents }, |
| 4247 | { szPublishComponents, ACTION_PublishComponents }, |
| 4248 | { szPublishFeatures, ACTION_PublishFeatures }, |
| 4249 | { szPublishProduct, ACTION_PublishProduct }, |
| 4250 | { szRegisterClassInfo, ACTION_RegisterClassInfo }, |
| 4251 | { szRegisterComPlus, NULL}, |
| 4252 | { szRegisterExtensionInfo, ACTION_RegisterExtensionInfo }, |
| 4253 | { szRegisterFonts, ACTION_RegisterFonts }, |
| 4254 | { szRegisterMIMEInfo, ACTION_RegisterMIMEInfo }, |
| 4255 | { szRegisterProduct, ACTION_RegisterProduct }, |
| 4256 | { szRegisterProgIdInfo, ACTION_RegisterProgIdInfo }, |
| 4257 | { szRegisterTypeLibraries, ACTION_RegisterTypeLibraries }, |
| 4258 | { szRegisterUser, ACTION_RegisterUser}, |
| 4259 | { szRemoveDuplicateFiles, NULL}, |
| 4260 | { szRemoveEnvironmentStrings, ACTION_RemoveEnvironmentStrings }, |
| 4261 | { szRemoveExistingProducts, NULL}, |
Mike McCormack | fd4a200 | 2005-11-02 11:42:56 +0000 | [diff] [blame] | 4262 | { szRemoveFiles, ACTION_RemoveFiles}, |
Mike McCormack | 3b95515 | 2005-09-28 18:10:44 +0000 | [diff] [blame] | 4263 | { szRemoveFolders, NULL}, |
| 4264 | { szRemoveIniValues, ACTION_RemoveIniValues }, |
| 4265 | { szRemoveODBC, NULL}, |
| 4266 | { szRemoveRegistryValues, NULL}, |
| 4267 | { szRemoveShortcuts, NULL}, |
| 4268 | { szResolveSource, ACTION_ResolveSource}, |
| 4269 | { szRMCCPSearch, NULL}, |
| 4270 | { szScheduleReboot, NULL}, |
| 4271 | { szSelfRegModules, ACTION_SelfRegModules }, |
| 4272 | { szSelfUnregModules, ACTION_SelfUnregModules }, |
| 4273 | { szSetODBCFolders, NULL}, |
| 4274 | { szStartServices, ACTION_StartServices }, |
| 4275 | { szStopServices, ACTION_StopServices }, |
| 4276 | { szUnpublishComponents, NULL}, |
| 4277 | { szUnpublishFeatures, NULL}, |
| 4278 | { szUnregisterClassInfo, NULL}, |
| 4279 | { szUnregisterComPlus, NULL}, |
| 4280 | { szUnregisterExtensionInfo, NULL}, |
| 4281 | { szUnregisterFonts, ACTION_UnregisterFonts }, |
| 4282 | { szUnregisterMIMEInfo, NULL}, |
| 4283 | { szUnregisterProgIdInfo, NULL}, |
| 4284 | { szUnregisterTypeLibraries, NULL}, |
| 4285 | { szValidateProductID, NULL}, |
| 4286 | { szWriteEnvironmentStrings, ACTION_WriteEnvironmentStrings }, |
| 4287 | { szWriteIniValues, ACTION_WriteIniValues }, |
| 4288 | { szWriteRegistryValues, ACTION_WriteRegistryValues}, |
| 4289 | { NULL, NULL}, |
| 4290 | }; |