2004-12-12 11:29:21 -04:00
|
|
|
#include "windows.h"
|
|
|
|
#include "msiquery.h"
|
|
|
|
|
2005-02-18 12:18:09 -04:00
|
|
|
int isWinNT;
|
|
|
|
|
2004-12-12 11:29:21 -04:00
|
|
|
/* Print a debug message to the installer log file.
|
|
|
|
* To see the debug messages, install with
|
|
|
|
* msiexec /i pythonxy.msi /l*v python.log
|
|
|
|
*/
|
2005-02-18 12:18:09 -04:00
|
|
|
static UINT debug(MSIHANDLE hInstall, LPCSTR msg)
|
2004-12-12 11:29:21 -04:00
|
|
|
{
|
|
|
|
MSIHANDLE hRec = MsiCreateRecord(1);
|
2005-02-18 12:18:09 -04:00
|
|
|
if (!hRec || MsiRecordSetStringA(hRec, 1, msg) != ERROR_SUCCESS) {
|
2004-12-12 11:29:21 -04:00
|
|
|
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)
|
|
|
|
{
|
2005-02-18 12:18:09 -04:00
|
|
|
#define PSIZE 1024
|
|
|
|
WCHAR wpath[PSIZE];
|
|
|
|
char path[PSIZE];
|
2004-12-12 11:29:21 -04:00
|
|
|
UINT result;
|
2005-02-18 12:18:09 -04:00
|
|
|
DWORD size = PSIZE;
|
2004-12-12 11:29:21 -04:00
|
|
|
DWORD attributes;
|
2005-02-18 12:18:09 -04:00
|
|
|
|
|
|
|
isWinNT = (GetVersion() < 0x80000000) ? 1 : 0;
|
2004-12-12 11:29:21 -04:00
|
|
|
|
2005-02-18 12:18:09 -04:00
|
|
|
if (isWinNT)
|
|
|
|
result = MsiGetPropertyW(hInstall, L"TARGETDIR", wpath, &size);
|
|
|
|
else
|
|
|
|
result = MsiGetPropertyA(hInstall, "TARGETDIR", path, &size);
|
2004-12-12 11:29:21 -04:00
|
|
|
if (result != ERROR_SUCCESS)
|
|
|
|
return result;
|
2005-02-18 12:18:09 -04:00
|
|
|
wpath[size] = L'\0';
|
2004-12-12 11:29:21 -04:00
|
|
|
path[size] = L'\0';
|
|
|
|
|
2005-02-18 12:18:09 -04:00
|
|
|
if (isWinNT)
|
|
|
|
attributes = GetFileAttributesW(wpath);
|
|
|
|
else
|
|
|
|
attributes = GetFileAttributesA(path);
|
2004-12-12 11:29:21 -04:00
|
|
|
if (attributes == INVALID_FILE_ATTRIBUTES ||
|
|
|
|
!(attributes & FILE_ATTRIBUTE_DIRECTORY))
|
|
|
|
{
|
2005-02-18 12:18:09 -04:00
|
|
|
return MsiSetPropertyA(hInstall, "TargetExists", "0");
|
2004-12-12 11:29:21 -04:00
|
|
|
} else {
|
2005-02-18 12:18:09 -04:00
|
|
|
return MsiSetPropertyA(hInstall, "TargetExists", "1");
|
2004-12-12 11:29:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
2005-02-18 12:18:09 -04:00
|
|
|
result = MsiGetFeatureStateA(hInstall, "Extensions", &ext_old, &ext_new);
|
2004-12-12 11:29:21 -04:00
|
|
|
if (result != ERROR_SUCCESS)
|
|
|
|
return result;
|
2005-02-18 12:18:09 -04:00
|
|
|
result = MsiGetFeatureStateA(hInstall, "TclTk", &tcl_old, &tcl_new);
|
2004-12-12 11:29:21 -04:00
|
|
|
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;
|
|
|
|
}
|
2005-02-18 12:18:09 -04:00
|
|
|
result = MsiSetComponentStateA(hInstall, "REGISTRY.tcl", reg_new);
|
2004-12-12 11:29:21 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL APIENTRY DllMain(HANDLE hModule,
|
|
|
|
DWORD ul_reason_for_call,
|
|
|
|
LPVOID lpReserved)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|