mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-14 15:37:55 +00:00
aa2073782a
bug 66851 - Cannot download over modem using new download agent r=dveditz,sgehani sr=mscott affects windows platforms only.
157 lines
4.7 KiB
Plaintext
157 lines
4.7 KiB
Plaintext
function updateWinReg()
|
|
{
|
|
//Notes:
|
|
// can't use a double backslash before subkey - Windows already puts it in.
|
|
// subkeys have to exist before values can be put in.
|
|
var winreg = getWinRegistry();
|
|
var subkey; //the name of the subkey you are poking around in
|
|
var valname; // the name of the value you want to look at
|
|
var value; //the data in the value you want to look at.
|
|
|
|
if(winreg != null)
|
|
{
|
|
winreg.setRootKey(winreg.HKEY_LOCAL_MACHINE);
|
|
subkey = "SOFTWARE\\$CompanyName$";
|
|
winreg.createKey(subkey,"");
|
|
|
|
subkey = "SOFTWARE\\$CompanyName$\\$ProductName$";
|
|
winreg.createKey(subkey,"");
|
|
|
|
valname = "CurrentVersion";
|
|
value = "$UserAgent$";
|
|
err = winreg.setValueString(subkey, valname, value);
|
|
|
|
subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$";
|
|
winreg.createKey(subkey,"");
|
|
|
|
subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Main";
|
|
winreg.createKey(subkey,"");
|
|
|
|
valname = "Install Directory";
|
|
value = fProgram;
|
|
err = winreg.setValueString(subkey, valname, value);
|
|
|
|
subkey = "SOFTWARE\\$CompanyName$\\$ProductName$\\$UserAgent$\\Uninstall";
|
|
winreg.createKey(subkey,"");
|
|
|
|
valname = "Uninstall Log Folder";
|
|
value = szUninstall;
|
|
err = winreg.setValueString(subkey, valname, value);
|
|
|
|
valname = "Description";
|
|
value = "$ProductName$ ($UserAgentShort$)";
|
|
err = winreg.setValueString(subkey, valname, value);
|
|
}
|
|
}
|
|
|
|
// main
|
|
var srDest;
|
|
var err;
|
|
var szUninstall;
|
|
var fProgram;
|
|
var fWindowsSystem;
|
|
var fileTemp;
|
|
var fileComponentReg;
|
|
var fileComponentRegStr;
|
|
var fileMsvcrt;
|
|
var fileMsvcirt;
|
|
|
|
$Ren8dot3List$
|
|
|
|
srDest = $SpaceRequired$:bin;
|
|
err = initInstall("Mozilla XPCom", "XPCom", "$Version$");
|
|
logComment("initInstall: " + err);
|
|
|
|
fProgram = getFolder("Program");
|
|
fWindowsSystem = getFolder("Win System");
|
|
logComment("fProgram: " + fProgram);
|
|
|
|
// build the uninstall folder path
|
|
szUninstall = fProgram + "Uninstall";
|
|
|
|
// Log component.reg file so it can be deleted by the uninstaller.
|
|
// These two files are created after installation is done, thus
|
|
// are normally not logged for uninstall.
|
|
logComment("Installing: " + fProgram + "component.reg");
|
|
|
|
if(verifyDiskSpace(fProgram, srDest))
|
|
{
|
|
setPackageFolder(fProgram);
|
|
|
|
$Ren8dot3Call$
|
|
|
|
err = addDirectory("",
|
|
"$Version$",
|
|
"bin", // dir name in jar to extract
|
|
fProgram, // Where to put this file (Returned from GetFolder)
|
|
"", // subdir name to create relative to fProgram
|
|
true); // Force Flag
|
|
logComment("addDirectory() of Program returned: " + err);
|
|
|
|
if( err == SUCCESS )
|
|
{
|
|
// install msvcrt.dll *only* if it does not exist
|
|
// we don't care if addFile() fails (if the file does not exist in the archive)
|
|
// bacause it will still install
|
|
fileTemp = fWindowsSystem + "msvcrt.dll";
|
|
fileMsvcrt = getFolder("file:///", fileTemp);
|
|
rv = File.exists(fileMsvcrt);
|
|
logComment("fileExists() returned: " + rv);
|
|
if(rv == false)
|
|
{
|
|
logComment("File not found: " + fileMsvcrt);
|
|
addFile("/Microsoft/Shared",
|
|
"$Version$",
|
|
"msvcrt.dll", // dir name in jar to extract
|
|
fWindowsSystem, // Where to put this file (Returned from getFolder)
|
|
"", // subdir name to create relative to fProgram
|
|
WIN_SHARED_FILE);
|
|
logComment("addFile() of msvcrt.dll returned: " + err);
|
|
}
|
|
else
|
|
{
|
|
logComment("File found: " + fileMsvcrt);
|
|
}
|
|
|
|
// install msvcirt.dll *only* if it does not exist
|
|
// we don't care if addFile() fails (if the file does not exist in the archive)
|
|
// bacause it will still install
|
|
fileTemp = fWindowsSystem + "msvcirt.dll";
|
|
fileMsvcirt = getFolder("file:///", fileTemp);
|
|
rv = File.exists(fileMsvcirt);
|
|
logComment("fileExists() returned: " + rv);
|
|
if(rv == false)
|
|
{
|
|
logComment("File not found: " + fileMsvcirt);
|
|
addFile("/Microsoft/Shared",
|
|
"$Version$",
|
|
"msvcirt.dll", // dir name in jar to extract
|
|
fWindowsSystem, // Where to put this file (Returned from getFolder)
|
|
"", // subdir name to create relative to fProgram
|
|
WIN_SHARED_FILE);
|
|
logComment("addFile() of msvcirt.dll returned: " + err);
|
|
}
|
|
else
|
|
{
|
|
logComment("File found: " + fileMsvcirt);
|
|
}
|
|
}
|
|
|
|
// check return value
|
|
if( err == SUCCESS )
|
|
{
|
|
updateWinReg();
|
|
|
|
err = performInstall();
|
|
logComment("performInstall() returned: " + err);
|
|
}
|
|
else
|
|
cancelInstall(err);
|
|
}
|
|
else
|
|
cancelInstall(INSUFFICIENT_DISK_SPACE);
|
|
|
|
|
|
// end main
|
|
|