summaryrefslogtreecommitdiffstats
path: root/Tools/msi/msisupport.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-12-12 15:29:21 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-12-12 15:29:21 (GMT)
commiteb68be465fcce88f39505ddc1c9e583c3c8f8125 (patch)
tree207b45fb4c8874a41de5ee5277b8f7fed906ac93 /Tools/msi/msisupport.c
parenta4a8afb4e1fe9a2a314f57d82310c28ac8e31132 (diff)
downloadcpython-eb68be465fcce88f39505ddc1c9e583c3c8f8125.zip
cpython-eb68be465fcce88f39505ddc1c9e583c3c8f8125.tar.gz
cpython-eb68be465fcce88f39505ddc1c9e583c3c8f8125.tar.bz2
Replace VB with VC.
Diffstat (limited to 'Tools/msi/msisupport.c')
-rw-r--r--Tools/msi/msisupport.c89
1 files changed, 89 insertions, 0 deletions
diff --git a/Tools/msi/msisupport.c b/Tools/msi/msisupport.c
new file mode 100644
index 0000000..a6feadf
--- /dev/null
+++ b/Tools/msi/msisupport.c
@@ -0,0 +1,89 @@
+#include "windows.h"
+#include "msiquery.h"
+
+/* Print a debug message to the installer log file.
+ * To see the debug messages, install with
+ * msiexec /i pythonxy.msi /l*v python.log
+ */
+static UINT debug(MSIHANDLE hInstall, LPCWSTR msg)
+{
+ MSIHANDLE hRec = MsiCreateRecord(1);
+ if (!hRec || MsiRecordSetStringW(hRec, 1, msg) != ERROR_SUCCESS) {
+ return ERROR_INSTALL_FAILURE;
+ }
+ MsiProcessMessage(hInstall, INSTALLMESSAGE_INFO, hRec);
+ MsiCloseHandle(hRec);
+ return ERROR_SUCCESS;
+}
+
+/* Check whether the TARGETDIR exists and is a directory.
+ * Set TargetExists appropriately.
+ */
+UINT __declspec(dllexport) __stdcall CheckDir(MSIHANDLE hInstall)
+{
+ WCHAR path[1024];
+ UINT result;
+ DWORD size = sizeof(path)/sizeof(WCHAR);
+ DWORD attributes;
+
+ result = MsiGetPropertyW(hInstall, L"TARGETDIR", path, &size);
+ if (result != ERROR_SUCCESS)
+ return result;
+ path[size] = L'\0';
+
+ attributes = GetFileAttributesW(path);
+ if (attributes == INVALID_FILE_ATTRIBUTES ||
+ !(attributes & FILE_ATTRIBUTE_DIRECTORY))
+ {
+ return MsiSetPropertyW(hInstall, L"TargetExists", L"0");
+ } else {
+ return MsiSetPropertyW(hInstall, L"TargetExists", L"1");
+ }
+}
+
+/* Update the state of the REGISTRY.tcl component according to the
+ * Extension and TclTk features. REGISTRY.tcl must be installed
+ * if both features are installed, and must be absent otherwise.
+ */
+UINT __declspec(dllexport) __stdcall UpdateEditIDLE(MSIHANDLE hInstall)
+{
+ INSTALLSTATE ext_old, ext_new, tcl_old, tcl_new, reg_new;
+ UINT result;
+
+ result = MsiGetFeatureStateW(hInstall, L"Extensions", &ext_old, &ext_new);
+ if (result != ERROR_SUCCESS)
+ return result;
+ result = MsiGetFeatureStateW(hInstall, L"TclTk", &tcl_old, &tcl_new);
+ if (result != ERROR_SUCCESS)
+ return result;
+
+ /* If the current state is Absent, and the user did not select
+ the feature in the UI, Installer apparently sets the "selected"
+ state to unknown. Update it to the current value, then. */
+ if (ext_new == INSTALLSTATE_UNKNOWN)
+ ext_new = ext_old;
+ if (tcl_new == INSTALLSTATE_UNKNOWN)
+ tcl_new = tcl_old;
+
+ // XXX consider current state of REGISTRY.tcl?
+ if (((tcl_new == INSTALLSTATE_LOCAL) ||
+ (tcl_new == INSTALLSTATE_SOURCE) ||
+ (tcl_new == INSTALLSTATE_DEFAULT)) &&
+ ((ext_new == INSTALLSTATE_LOCAL) ||
+ (ext_new == INSTALLSTATE_SOURCE) ||
+ (ext_new == INSTALLSTATE_DEFAULT))) {
+ reg_new = INSTALLSTATE_SOURCE;
+ } else {
+ reg_new = INSTALLSTATE_ABSENT;
+ }
+ result = MsiSetComponentStateW(hInstall, L"REGISTRY.tcl", reg_new);
+ return result;
+}
+
+BOOL APIENTRY DllMain(HANDLE hModule,
+ DWORD ul_reason_for_call,
+ LPVOID lpReserved)
+{
+ return TRUE;
+}
+