(* Initial Developer's Public License. The contents of this file are subject to the Initial Developer's Public License Version 1.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.ibphoenix.com?a=ibphoenix&page=ibp_idpl Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is copyright 2001-2003 Paul Reeves for IBPhoenix. The Initial Developer of the Original Code is Paul Reeves for IBPhoenix. All Rights Reserved. Helper functions for FB installer These are / ought to be fairly generic It makes more sense if they are independant functions - ie, they don't call other functions in the script and they don't need to know about the install script itself. They can call functions in the pascal script library Function Prototypes function IsWin32: boolean; function Is32BitInstallMode: boolean; function IsVista: boolean; function IsWin2k3: boolean; function IsWinXP: boolean; function IsWin2K: boolean; function IsWinNT: boolean; function IsWinME: boolean; function IsWin98: boolean; function IsWin95: boolean; function CheckWinsock2(): Boolean; function GetAppPath: String; function GetSysPath: String; function WIVersion: string; function ReplaceLine(Filename, StringToFind, NewLine,CommentType: string): boolean; procedure DecodeVersion( VerStr: String; var VerInt: array of Integer ); function CompareVersion( ver1, ver2: String ) : Integer; function GetInstalledVersion(BinaryFile: String): Array of Integer; function ConvertIBVerStrToFbVerStr( VerStr: String) : String; function GetRegistryEntry(RegKey, RegEntry: string): String; procedure CreateHelpDlg; function ShowHelpDlg: Integer; procedure CloseHelpDlg; procedure CreateDebugDlg(aString: String; aDescription: String); function ShowDebugDlg(aString: String; aDescription: String): Integer; procedure CloseDebugDlg; *) (* InnoSetup Help Extract on Windows version strings: 4.0.950 Windows 95 4.0.1111 Windows 95 OSR 2 & OSR 2.1 4.0.1212 Windows 95 OSR 2.5 4.1.1998 Windows 98 4.1.2222 Windows 98 Second Edition 4.9.3000 Windows Me Windows NT versions: 4.0.1381 Windows NT 4.0 5.0.2195 Windows 2000 5.01.2600 Windows XP or Windows XP 64-Bit Edition Version 2002 (Itanium) 5.02.3790 Windows Server 2003 or Windows XP x64 Edition (AMD64/EM64T) or Windows XP 64-Bit Edition Version 2003 (Itanium) 6.0.6000 Windows Vista 6.0.6001 Windows Vista with Service Pack 1 or Windows Server 2008 6.0.6002 Windows Vista with Service Pack 2 6.1.7600 Windows 7 or Windows Server 2008 R2 *) (* Windows Installer versions: (extracted from MSDN) Release Version Description ----------------------------------------------- v2.0 2.0.2600.0 Released with Windows XP. v2.0 2.0.2600.1 Released with Windows 2000 Server SP3. v2.0 2.0.2600.1183 Released with Windows 2000 Server SP4. v2.0 2.0.2600.2 Released as a redistributable. v2.0 2.0.2600.1106 Released with Windows XP SP1. v2.0 2.0.3790.0 Released with Windows Server 2003. v3.0 3.0.3790.2180 Released with Windows XP SP2. Released as a redistributable. v3.1 3.1.4000.1823 Released as a redistributable. This version has the same functionality as version 3.1.4000.2435. v3.1 3.1.4000.1830 Released with Windows Server 2003 SP1 and Windows XP Professional x64 Edition. Update this version to version 3.1.4000.2435 to address the issue discussed in KB898628. v3.1 3.1.4000.2435 Released with a fix to address the issue discussed in KB898628. This is the latest version of Windows Installer 3.1. v4.0 4.0.6000.16386 Released with Windows Vista. v4.0 4.0.6001.16531 Released with Windows Vista SP1 and Windows Server 2008. v4.5 4.5.6002.18005 Released with Windows Vista with Service Pack 2 (SP2) and Windows Server 2008 with Service Pack (SP2.) v4.5 4.5.6000.20817 Released as a redistributable for Windows Vista. v4.5 4.5.6001.22162 Released as a redistributable for Windows Server 2008 and Windows Vista with SP1. v4.5 4.5.6001.22159 Released as a redistributable for Windows XP with Service Pack 2 (SP2) and later, and Windows Server 2003 with SP1 and later. v5.0 5.0.7600.16385 or greater Released with Windows Server 2008 R2 and Windows 7. (NB1 - msi.dll stores the correct version number and is updated automatically by Windows Update. msiexec.exe will be the original shipped version. NB2 - Re v3.1 build numbers and KB 898628 - This KB article refers to the fact that initial releases of WI 3.1 would error and STOP if an attempt was made to overwrite a system file in the WFP list. Previous behaviour was to error, log and continue. This behaviour is irrelevant to us because we don't do anything sophisticated with the msi. OTOH, if we used msi for all our installation needs this would be a serious problem. NB3 - Our installer will not run msiexec on systems before XP. However, some early XP and W2K3 systems do not have v3.0 of the Windows Installer. *) function IsWin32: boolean; //helper function to simplify logic of x86/win64 checks. begin result := not IsWin64; end; function Is32BitInstallMode: boolean; //helper function to simplify logic of x86/win64 checks. begin result := not Is64BitInstallMode; end; function IsWinEight: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 6) and (Version.Minor = 2) then result := true; end; //this test is identical to IsWinEight function IsW2K12: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 6) and (Version.Minor = 2) then result := true; end; function IsVista: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if ( Version.Major = 6 ) and ( Version.Minor = 0 ) and ( Version.build = 6000 )then result := true; end; function IsVistaSP1: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if ( Version.Major = 6 ) and ( Version.Minor = 0 ) and ( Version.build = 6001 )then result := true; end; function IsWin2K8R1: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if ( Version.Major = 6 ) and ( Version.Minor = 0 ) and ( Version.build = 6001 )then result := true; end; function IsWinSeven: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 6) and (Version.Minor = 1) then result := true; end; //This test is identical to the test for Win7 function IsWin2K8R2: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 6) and (Version.Minor = 1) then result := true; end; function IsWin2k3: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 5) and (Version.Minor = 2) then result := true; end; function IsWinXP: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 5) and (Version.Minor = 1) then result := true; end; function IsWin2K: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 5) and (Version.Minor = 0) then result := true; end; function IsWinNT: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 4) and (Version.Minor = 0) then if Version.NTPlatform then result := true; end; function IsWinME: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 4) and (Version.Minor = 9) then // if Version.NTPlatform then result := true; end; function IsWin98: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 4) and (Version.Minor = 1) then // if Version.NTPlatform then result := true; end; function IsWin95: boolean; var Version: TWindowsVersion; begin GetWindowsVersionEx(Version); if (Version.Major = 4) and (Version.Minor = 0) then if not Version.NTPlatform then result := true; end; const sWinSock2 = 'ws2_32.dll'; sNoWinsock2 = 'Please Install Winsock 2 Update before continuing'; sMSWinsock2Update = 'http://www.microsoft.com/windows95/downloads/contents/WUAdminTools/S_WUNetworkingTools/W95Sockets2/Default.asp'; sWinsock2Web = 'Winsock 2 is not installed.'#13#13'Would you like to Visit the Winsock 2 Update Home Page?'; var Winsock2Failure: Boolean; function CheckWinsock2(): Boolean; begin Result := True; //Check if Winsock 2 is installed (win 95 only) if (not UsingWinNt) and (not FileExists(AddBackslash(GetSystemDir) + sWinSock2)) then begin Winsock2Failure := True; Result := False; end else Winsock2Failure := False; end; function GetAppPath: String; begin Result := ExpandConstant('{app}'); // Result := '"' + Result +'"'; end; function GetSysPath: String; begin Result := ExpandConstant('{sys}'); // Result := '"' + Result +'"'; end; function WIVersion: string; //Get version of Windows Installer var VersionStr: string; begin GetVersionNumbersString(GetSysPath + '\msi.dll', VersionStr); result := VersionStr; end; (*Based on InnoSetup KB example at http://www13.brinkster.com/vincenzog/isxart.asp?idart=14)*) function ReplaceLine(Filename, StringToFind, NewLine,CommentType: string): boolean; var i: Integer; Lines: TArrayOfString; CommentSize: Integer; ArraySize: Integer; FileChanged: Boolean; TempStr: String; begin // Load textfile into string array LoadStringsFromFile(Filename, Lines); FileChanged := false; CommentSize := Length(CommentType); ArraySize := GetArrayLength(Lines)-1; // Search through all textlines in reverse order for given text // this way we can be sure to only change the active entry for i := ArraySize downto 0 do begin // Overwrite textline when text searched for is part of it if Pos(StringToFind,Lines[i]) > 0 then begin // does this line start with a comment ? if CommentSize > 0 then begin TempStr := TrimLeft(Lines[i]); // only replace if line does not start with a comment if CompareText(Copy(TempStr,1,CommentSize),CommentType) <> 0 then begin Lines[i] := NewLine; FileChanged := true; Break; end end else begin Lines[i] := NewLine; FileChanged := true; Break; end; // break after first match. end end; // Save string array to textfile (overwrite, no append!) if FileChanged = true then SaveStringsToFile(Filename, Lines, false); Result := FileChanged; end; procedure DecodeVersion( VerStr: String; var VerInt: array of Integer ); var i,p: Integer; s: string; begin VerInt := [0,0,0,0]; i := 0; while ( (Length(VerStr) > 0) and (i < 4) ) do begin p := pos('.', VerStr); if p > 0 then begin if p = 1 then s:= '0' else s:= Copy( VerStr, 1, p - 1 ); VerInt[i] := StrToInt(s); i := i + 1; VerStr := Copy( VerStr, p+1, Length(VerStr)); end else begin VerInt[i] := StrToInt( VerStr ); VerStr := ''; end; end; end; function CompareVersion( ver1, ver2: String; places: Integer ) : Integer; // This function compares version strings to number of places // ie, if we are only interested in comparing major.minor versions // then places = 2 // return -1 if ver1 < ver2 // return 0 if ver1 = ver2 // return 1 if ver1 > ver2 // var verint1, verint2: array of Integer; i: integer; begin if places > 4 then places := 4; SetArrayLength( verint1, 4 ); DecodeVersion( ver1, verint1 ); SetArrayLength( verint2, 4 ); DecodeVersion( ver2, verint2 ); Result := 0; i := 0; while ( (Result = 0) and ( i < places ) ) do begin if verint1[i] > verint2[i] then Result := 1 else if verint1[i] < verint2[i] then Result := -1 else Result := 0; i := i + 1; end; end; function GetInstalledVersion(BinaryFile: String; var VerInt: Array of Integer): String; var AString: String; begin if (BinaryFile<>'') then begin GetVersionNumbersString( BinaryFile, Astring ); DecodeVersion( AString, VerInt ); end; result := AString; end; function ConvertIBVerStrToFbVerStr( VerStr: String) : String; var VerInt: array of Integer; i: Integer; begin DecodeVersion(VerStr, VerInt); VerInt[0]:=1; if VerInt[1]=2 then VerInt[1] := 0 else if VerInt[1]=3 then VerInt[1]:=5; Result := ''; for i:=0 to 3 do begin Result := Result+IntToStr(VerInt[i]); if i<3 then Result:=Result+'.' end; end; function GetRegistryEntry(RootKey: Integer; RegKey, RegEntry: string): String; begin Result := ''; //if not win64 and RootKey is HKLM64 then we are on a 32-bit box, //so skip looking in registry if ( (RootKey = HKLM64) AND (isWin32) ) then //do nothing Result := '' else RegQueryStringValue(RootKey, RegKey, RegEntry, Result); end; var HelpDlg: TForm; procedure CreateHelpDlg; var HelpFileName: String; HelpMemo: TMemo; OKButton: TButton; begin ExtractTemporaryFile ('installation_scripted.txt'); HelpFileName := ExpandConstant ('{tmp}\installation_scripted.txt'); HelpDlg := TForm.create(nil); with HelpDlg do begin BorderStyle := bsDialog; Position := poScreenCenter; ClientWidth := 450; ClientHeight := 550; Caption := 'Firebird Installation - command-line parameters.'; end; HelpMemo := TMemo.Create(HelpDlg); with HelpMemo do begin Parent := HelpDlg; ScrollBars := ssVertical; Lines.LoadFromFile(HelpFileName); Align := alTop; Height := 500; ReadOnly := True; end; OKButton := TButton.create(HelpDlg); with OKButton do begin Parent := HelpDlg; Left := (Parent.width div 2) - width div 2; top := Parent.ClientHeight - 40; Caption := 'OK'; ModalResult := mrOK; end; HelpDlg.ActiveControl := OKButton; end; procedure CloseHelpDlg; begin with HelpDlg do begin Close; Free; end; end; function ShowHelpDlg: Integer; begin CreateHelpDlg; result := HelpDlg.ShowModal; CloseHelpDlg; end; // Add a simple debug dialogue var DebugDlg: TForm; procedure CreateDebugDlg(aString: String; ADescription: String); var DebugText: TMemo; DebugDescription: TLabel; OKButton: TButton; begin DebugDlg := TForm.create(nil); with DebugDlg do begin BorderStyle := bsSizeable; Position := poScreenCenter; ClientWidth := 450; ClientHeight := 350; Caption := 'Firebird Installation - command-line parameters.'; end; DebugText := TMemo.Create(DebugDlg); with DebugText do begin Parent := DebugDlg; ScrollBars := ssVertical; Lines.Text :=aString; Align := alTop; Height := 200; ReadOnly := True; end; OKButton := TButton.create(DebugDlg); with OKButton do begin Parent := DebugDlg; Left := (Parent.width div 2) - width div 2; top := Parent.ClientHeight - 40; Caption := 'OK'; ModalResult := mrOK; end; DebugDlg.ActiveControl := OKButton; end; procedure CloseDebugDlg; begin with DebugDlg do begin Close; Free; end; end; function ShowDebugDlg(aString: String; aDescription: String): Integer; begin CreateDebugDlg(aString,aDescription); result := DebugDlg.ShowModal; CloseDebugDlg; end;