2 ;; Windows Pidgin NSIS installer plugin helper utilities
3 ;; Copyright 2005, Daniel Atallah <daniel_atallah@yahoo.com>
5 ;; Include in plugin installer scripts using:
6 ;; !addincludedir "${PATH_TO_PIDGIN_SRC}\pidgin\win32\nsis"
7 ;; !include "pidgin-plugin.nsh"
10 !define PIDGIN_REG_KEY "SOFTWARE\pidgin"
12 !define PIDGIN_VERSION_OK 0
13 !define PIDGIN_VERSION_INCOMPATIBLE 1
14 !define PIDGIN_VERSION_UNDEFINED 2
16 ; Extract the Pidgin Version from the registry
17 ; This will set the Error flag if unable to determine the value
18 ; Pop the value of the stack after calling this to get the value (unless Error Flag is set)
19 Function GetPidginVersion
22 ; Read the pidgin version
24 ReadRegStr $R0 HKLM ${PIDGIN_REG_KEY} "Version"
25 IfErrors +1 GetPidginVersion_found
26 ; fall back to the HKCU registry key
27 ReadRegStr $R0 HKCU ${PIDGIN_REG_KEY} "Version"
28 IfErrors GetPidginVersion_done ; Keep the error flag set
30 GetPidginVersion_found:
31 Push $R0 ; Push the value onto the stack
34 GetPidginVersion_done:
39 ; Check that the currently installed Pidgin version is compatible
40 ; with the plugin version we are installing
41 ; Push the Plugin's Pidgin Version onto the Stack before calling
42 ; After calling, the top of the Stack will contain the result of the check:
43 ; PIDGIN_VERSION_OK - If the installed Pidgin version is compatible w/ the version specified
44 ; PIDGIN_VERSION_INCOMPATIBLE - If the installed Pidgin version isn't compatible w/ the version specified
45 ; PIDGIN_VERSION_UNDEFINED - If the installed Pidgin version can't be determined
46 Function CheckPidginVersion
47 ; Save the Variable values that we will use in the stack
50 Pop $R4 ; Get the plugin's Pidgin Version
55 ; Read the pidgin version
57 IfErrors checkPidginVersion_noPidginInstallFound
60 ;If they are exactly the same, we don't need to look at anything else
61 StrCmp $R0 $R4 checkPidginVersion_VersionOK
63 ; Versions are in the form of X.Y.Z
64 ; If X is different or plugin's Y > pidgin's Y, then we shouldn't install
66 ;Check the Major Version
69 Call GetVersionComponent
70 IfErrors checkPidginVersion_noPidginInstallFound ;We couldn't extract 'X' from the installed pidgin version
74 Call GetVersionComponent
75 IfErrors checkPidginVersion_BadVersion ; this isn't a valid version, so don't bother even checking
77 ;Check that both versions' X is the same
78 StrCmp $R1 $R2 +1 checkPidginVersion_BadVersion
80 ;Check the Minor Version
83 Call GetVersionComponent
84 IfErrors checkPidginVersion_noPidginInstallFound ;We couldn't extract 'Y' from the installed pidgin version
88 Call GetVersionComponent
89 IfErrors checkPidginVersion_BadVersion ; this isn't a valid version, so don't bother even checking
91 ;Check that plugin's Y <= pidgin's Y
92 IntCmp $R1 $R2 checkPidginVersion_VersionOK checkPidginVersion_VersionOK checkPidginVersion_BadVersion
94 checkPidginVersion_BadVersion:
95 Push ${PIDGIN_VERSION_INCOMPATIBLE}
96 goto checkPidginVersion_done
97 checkPidginVersion_noPidginInstallFound:
98 Push ${PIDGIN_VERSION_UNDEFINED}
99 goto checkPidginVersion_done
100 checkPidginVersion_VersionOK:
101 Push ${PIDGIN_VERSION_OK}
103 checkPidginVersion_done:
104 ; Restore the Variables that we used
115 ; Extract the part of a string prior to "." (or the whole string if there is no ".")
116 ; If no "." was found, the ErrorFlag will be set
117 ; Before this is called, Push ${VERSION_STRING} must be called, and then Push 0 for Major, 1 for Minor, etc
118 ; Pop should be called after to retrieve the new value
119 Function GetVersionComponent
122 ; Save the Variable values that we will use in the stack
125 Pop $1 ;The version component which we want to extract (0, 1, 2)
129 Pop $0 ;The string from which to extract the version component
138 StrCpy $2 "0" ;Initialize our string index counter
139 StrCpy $7 "0" ;Index of last "."
140 StrCpy $3 "0" ;Initialize our version index counter
142 startGetVersionComponentLoop:
143 ;avoid infinite loop (if we have gotten the whole initial string, exit the loop and set the error flag)
144 StrCmp $6 $0 GetVersionComponentSetErrorFlag
146 StrCpy $6 $0 $2 ;Update the infinite loop preventing string
147 ;Determine the correct substring (only the current index component)
149 StrCpy $4 $0 $5 $7 ;Append the current character in $0 to $4
150 StrCpy $5 $0 1 $2 ;store the next character in $5
152 ;if the next character is ".", $4 will contain the version component prior to "."
153 StrCmp $5 "." +1 startGetVersionComponentLoop
154 StrCmp $3 $1 doneGetVersionComponent ;If it is the version component we're looking for, stop
155 IntOp $3 $3 + 1 ;Increment the version index counter
156 IntOp $2 $2 + 1 ;Increment the version string index to "." (so it will be skipped)
157 StrCpy $7 $2 ;Keep track of the index of the last "."
158 StrCpy $6 $0 $2 ;Update the infinite loop preventing string
159 goto startGetVersionComponentLoop
161 GetVersionComponentSetErrorFlag:
164 doneGetVersionComponent:
165 ; Restore the Variables that we used
169 Push $4 ;This is the value we're returning