[fa597990] | 1 | """ |
---|
| 2 | This module generates .ss file according to the local config of |
---|
| 3 | the current application. Please make sure a file named "local_config.py" |
---|
| 4 | exists in the current directory. Edit local_config.py according to your needs. |
---|
| 5 | """ |
---|
| 6 | import local_config |
---|
| 7 | import os |
---|
| 8 | import string |
---|
| 9 | |
---|
| 10 | REG_PROGRAM = """{app}\MYPROG.EXE"" ""%1""" |
---|
| 11 | APPLICATION = str(local_config.__appname__ )+ '.exe' |
---|
[50282f8] | 12 | AppName = str(local_config.__appname__ ) |
---|
[fa597990] | 13 | AppVerName = str(local_config.__appname__ )+'-'+ str(local_config.__version__) |
---|
| 14 | Dev = '' |
---|
| 15 | if AppVerName.lower().count('dev') > 0: |
---|
| 16 | Dev = '-Dev' |
---|
| 17 | AppPublisher = local_config._copyright |
---|
| 18 | AppPublisherURL = local_config._homepage |
---|
| 19 | AppSupportURL = local_config._homepage |
---|
| 20 | AppUpdatesURL = local_config._homepage |
---|
| 21 | ChangesEnvironment = 'true' |
---|
| 22 | DefaultDirName = os.path.join("{pf}" , AppName+Dev) |
---|
| 23 | DefaultGroupName = os.path.join(local_config.DefaultGroupName, AppVerName) |
---|
| 24 | |
---|
| 25 | OutputBaseFilename = local_config.OutputBaseFilename |
---|
| 26 | SetupIconFile = local_config.SetupIconFile_win |
---|
| 27 | LicenseFile = 'license.txt' |
---|
| 28 | DisableProgramGroupPage = 'yes' |
---|
| 29 | Compression = 'lzma' |
---|
| 30 | SolidCompression = 'yes' |
---|
| 31 | PrivilegesRequired = 'none' |
---|
| 32 | INSTALLER_FILE = 'installer_new' |
---|
| 33 | |
---|
| 34 | icon_path = local_config.icon_path |
---|
| 35 | media_path = local_config.media_path |
---|
| 36 | test_path = local_config.test_path |
---|
| 37 | |
---|
| 38 | def find_extension(): |
---|
| 39 | """ |
---|
| 40 | Describe the extensions that can be read by the current application |
---|
| 41 | """ |
---|
[50282f8] | 42 | list_data = [] |
---|
| 43 | list_app =[] |
---|
[fa597990] | 44 | try: |
---|
[50282f8] | 45 | |
---|
[fa597990] | 46 | #(ext, type, name, flags) |
---|
| 47 | from sans.dataloader.loader import Loader |
---|
| 48 | wild_cards = Loader().get_wildcards() |
---|
| 49 | for item in wild_cards: |
---|
| 50 | #['All (*.*)|*.*'] |
---|
| 51 | file_type, ext = string.split(item, "|*", 1) |
---|
[50282f8] | 52 | if ext.strip() not in ['.*', ''] and ext.strip() not in list_data: |
---|
| 53 | list_data.append((ext, 'string', file_type)) |
---|
[fa597990] | 54 | except: |
---|
| 55 | pass |
---|
| 56 | try: |
---|
| 57 | file_type, ext = string.split(local_config.APPLICATION_WLIST, "|*", 1) |
---|
[50282f8] | 58 | if ext.strip() not in ['.', ''] and ext.strip() not in list_app: |
---|
| 59 | list_app.append((ext, 'string', file_type)) |
---|
[fa597990] | 60 | except: |
---|
| 61 | pass |
---|
| 62 | try: |
---|
| 63 | for item in local_config.PLUGINS_WLIST: |
---|
| 64 | file_type, ext = string.split(item, "|*", 1) |
---|
[50282f8] | 65 | if ext.strip() not in ['.', ''] and ext.strip() not in list_app: |
---|
| 66 | list_app.append((ext, 'string', file_type)) |
---|
[fa597990] | 67 | except: |
---|
| 68 | pass |
---|
[50282f8] | 69 | return list_data, list_app |
---|
| 70 | DATA_EXTENSION, APP_EXTENSION = find_extension() |
---|
| 71 | |
---|
| 72 | def write_registry(data_extension=None, app_extension=None): |
---|
[fa597990] | 73 | """ |
---|
| 74 | create file association for windows. |
---|
| 75 | Allow open file on double click |
---|
| 76 | """ |
---|
| 77 | msg = "" |
---|
[50282f8] | 78 | if data_extension is not None and data_extension: |
---|
| 79 | openwithlist = "OpenWithList\%s" % str(APPLICATION) |
---|
[fa597990] | 80 | msg = "\n\n[Registry]\n" |
---|
[50282f8] | 81 | for (ext, type, _) in data_extension: |
---|
| 82 | list = os.path.join(ext, openwithlist) |
---|
| 83 | msg += """Root: HKCR;\tSubkey: "%s";\t""" % str(list) |
---|
| 84 | msg += """ Flags: %s""" % str('uninsdeletekey noerror') |
---|
| 85 | msg += "\n" |
---|
| 86 | #list the file on right-click |
---|
| 87 | msg += """Root: HKCR; Subkey: "applications\%s\shell\open\command";\t"""\ |
---|
| 88 | % str(APPLICATION) |
---|
| 89 | msg += """ValueType: %s; """ % str('string') |
---|
| 90 | msg += """ValueName: "%s";\t""" %str('') |
---|
| 91 | msg += """ValueData: \"""{app}\%s"" ""%s1\"""; \t"""% (str(APPLICATION), |
---|
| 92 | str('%')) |
---|
| 93 | msg += """ Flags: %s""" % str('uninsdeletevalue noerror') |
---|
| 94 | msg += "\n" |
---|
| 95 | user_list = "Software\Classes" |
---|
| 96 | for (ext, type, _) in data_extension: |
---|
| 97 | list = os.path.join(user_list, ext, openwithlist) |
---|
| 98 | msg += """Root: HKCU;\tSubkey: "%s";\t""" % str(list) |
---|
| 99 | msg += """ Flags: %s""" % str('uninsdeletekey noerror') |
---|
| 100 | msg += "\n" |
---|
| 101 | #list the file on right-click |
---|
| 102 | user_list = os.path.join("Software", "Classes", "applications") |
---|
[c648414] | 103 | msg += """Root: HKCU; Subkey: "%s\%s\shell\open\command";\t"""\ |
---|
[50282f8] | 104 | % (str(user_list), str(APPLICATION)) |
---|
| 105 | msg += """ValueType: %s; """ % str('string') |
---|
| 106 | msg += """ValueName: "%s";\t""" %str('') |
---|
| 107 | msg += """ValueData: \"""{app}\%s"" ""%s1\"""; \t"""% (str(APPLICATION), |
---|
| 108 | str('%')) |
---|
| 109 | msg += """ Flags: %s""" % str('uninsdeletevalue noerror') |
---|
| 110 | msg += "\n" |
---|
| 111 | if app_extension is not None and app_extension: |
---|
| 112 | for (ext, type, _) in app_extension: |
---|
[fa597990] | 113 | msg += """Root: HKCR;\tSubkey: "%s";\t""" % str(ext) |
---|
| 114 | msg += """ValueType: %s;\t""" % str(type) |
---|
| 115 | #file type empty set the current application as the default |
---|
| 116 | #reader for this file. change the value of file_type to another |
---|
| 117 | #string modify the default reader |
---|
| 118 | file_type = '' |
---|
| 119 | msg += """ValueName: "%s";\t""" % str('') |
---|
| 120 | msg += """ValueData: "{app}\%s";\t""" % str(APPLICATION) |
---|
[dd16ad6] | 121 | msg += """ Flags: %s""" % str('uninsdeletevalue noerror') |
---|
[fa597990] | 122 | msg += "\n" |
---|
[50282f8] | 123 | msg += """Root: HKCR; Subkey: "{app}\%s";\t""" % str(APPLICATION) |
---|
| 124 | msg += """ValueType: %s; """ % str('string') |
---|
| 125 | msg += """ValueName: "%s";\t""" % str('') |
---|
| 126 | msg += """ValueData: "{app}\%s";\t""" % str("SansView File") |
---|
[dd16ad6] | 127 | msg += """ Flags: %s \t""" % str("uninsdeletekey noerror") |
---|
[50282f8] | 128 | msg += "\n" |
---|
[fa597990] | 129 | |
---|
[50282f8] | 130 | #execute the file on double-click |
---|
| 131 | msg += """Root: HKCR; Subkey: "{app}\%s\shell\open\command";\t""" % str(APPLICATION) |
---|
| 132 | msg += """ValueType: %s; """ % str('string') |
---|
| 133 | msg += """ValueName: "%s";\t""" %str('') |
---|
| 134 | msg += """ValueData: \"""{app}\%s"" ""%s1\""";\t"""% (str(APPLICATION), |
---|
| 135 | str('%')) |
---|
| 136 | msg += """ Flags: %s \t""" % str("uninsdeletevalue noerror") |
---|
| 137 | msg += "\n" |
---|
| 138 | #create default icon |
---|
| 139 | msg += """Root: HKCR; Subkey: "{app}\%s";\t""" % str(SetupIconFile) |
---|
| 140 | msg += """ValueType: %s; """ % str('string') |
---|
| 141 | msg += """ValueName: "%s";\t""" % str('') |
---|
[dd16ad6] | 142 | msg += """ValueData: "{app}\%s,0";\t""" % str(APPLICATION) |
---|
| 143 | msg += """ Flags: %s \t""" % str("uninsdeletevalue noerror") |
---|
| 144 | msg += "\n" |
---|
[50282f8] | 145 | |
---|
| 146 | |
---|
| 147 | #SANSVIEWPATH |
---|
| 148 | msg += """Root: HKLM; Subkey: "%s";\t""" % str('SYSTEM\CurrentControlSet\Control\Session Manager\Environment') |
---|
| 149 | msg += """ValueType: %s; """ % str('expandsz') |
---|
| 150 | msg += """ValueName: "%s";\t""" % str('SANSVIEWPATH') |
---|
| 151 | msg += """ValueData: "{app}";\t""" |
---|
[dd16ad6] | 152 | msg += """ Flags: %s""" % str('uninsdeletevalue noerror') |
---|
[50282f8] | 153 | msg += "\n" |
---|
| 154 | |
---|
| 155 | #PATH |
---|
| 156 | msg += """; Write to PATH (below) is disabled; need more tests\n""" |
---|
| 157 | msg += """;Root: HKCU; Subkey: "%s";\t""" % str('Environment') |
---|
| 158 | msg += """ValueType: %s; """ % str('expandsz') |
---|
| 159 | msg += """ValueName: "%s";\t""" % str('PATH') |
---|
| 160 | msg += """ValueData: "%s;{olddata}";\t""" % str('%SANSVIEWPATH%') |
---|
| 161 | msg += """ Check: %s""" % str('NeedsAddPath()') |
---|
| 162 | msg += "\n" |
---|
[fa597990] | 163 | |
---|
| 164 | return msg |
---|
| 165 | |
---|
| 166 | def write_language(language=['english'], msfile="compiler:Default.isl"): |
---|
| 167 | """ |
---|
| 168 | define the language of the application |
---|
| 169 | """ |
---|
| 170 | msg = '' |
---|
| 171 | if language: |
---|
| 172 | msg = "\n\n[Languages]\n" |
---|
| 173 | for lang in language: |
---|
| 174 | msg += """Name: "%s";\tMessagesFile: "%s"\n""" % (str(lang), |
---|
| 175 | str(msfile)) |
---|
| 176 | return msg |
---|
| 177 | |
---|
| 178 | def write_tasks(): |
---|
| 179 | """ |
---|
| 180 | create desktop icon |
---|
| 181 | """ |
---|
| 182 | msg = """\n\n[Tasks]\n""" |
---|
| 183 | msg += """Name: "desktopicon";\tDescription: "{cm:CreateDesktopIcon}";\t""" |
---|
| 184 | msg += """GroupDescription: "{cm:AdditionalIcons}";\tFlags: unchecked\n""" |
---|
| 185 | return msg |
---|
| 186 | |
---|
[50282f8] | 187 | dist_path = "dist" |
---|
[fa597990] | 188 | def write_file(): |
---|
| 189 | """ |
---|
| 190 | copy some data files |
---|
| 191 | """ |
---|
| 192 | msg = "\n\n[Files]\n" |
---|
| 193 | msg += """Source: "%s\%s";\t""" % (dist_path, str(APPLICATION)) |
---|
| 194 | msg += """DestDir: "{app}";\tFlags: ignoreversion\n""" |
---|
| 195 | msg += """Source: "dist\*";\tDestDir: "{app}";\t""" |
---|
| 196 | msg += """Flags: ignoreversion recursesubdirs createallsubdirs\n""" |
---|
[50282f8] | 197 | msg += """Source: "%s\*";\tDestDir: "{app}\%s";\t""" % (str(icon_path), str("images")) |
---|
| 198 | msg += """Flags: ignoreversion recursesubdirs createallsubdirs\n""" |
---|
| 199 | msg += """Source: "%s\*";\tDestDir: "{app}\%s";\t""" % (str(test_path), str("test")) |
---|
[fa597990] | 200 | msg += """Flags: ignoreversion recursesubdirs createallsubdirs\n""" |
---|
[50282f8] | 201 | msg += """Source: "%s\*";\tDestDir: "{app}\%s";\t""" % (str(media_path), str("media")) |
---|
[fa597990] | 202 | msg += """Flags: ignoreversion recursesubdirs createallsubdirs\n""" |
---|
| 203 | msg += """;\tNOTE: Don't use "Flags: ignoreversion" on any shared system files""" |
---|
| 204 | return msg |
---|
| 205 | |
---|
| 206 | def write_icon(): |
---|
| 207 | """ |
---|
| 208 | Create application icon |
---|
| 209 | """ |
---|
| 210 | msg = """\n\n[Icons]\n""" |
---|
| 211 | msg += """Name: "{group}\%s";\t""" % str(AppName) |
---|
| 212 | msg += """Filename: "{app}\%s";\t""" % str(APPLICATION) |
---|
| 213 | msg += """WorkingDir: "{app}" \n""" |
---|
| 214 | msg += """Name: "{group}\{cm:UninstallProgram, %s}";\t""" % str(AppName) |
---|
| 215 | msg += """ Filename: "{uninstallexe}" \n""" |
---|
| 216 | msg += """Name: "{commondesktop}\%s";\t""" % str(AppVerName) |
---|
| 217 | msg += """Filename: "{app}\%s";\t""" % str(APPLICATION) |
---|
| 218 | msg += """Tasks: desktopicon; WorkingDir: "{app}" \n""" |
---|
| 219 | return msg |
---|
| 220 | |
---|
| 221 | def write_run(): |
---|
| 222 | """ |
---|
| 223 | execute some file |
---|
| 224 | """ |
---|
| 225 | msg = """\n\n[Run]\n""" |
---|
| 226 | msg += """Filename: "{app}\%s";\t""" % str(APPLICATION) |
---|
| 227 | msg += """Description: "{cm:LaunchProgram, %s}";\t""" %str(AppName) |
---|
| 228 | msg += """Flags: nowait postinstall skipifsilent\n""" |
---|
| 229 | return msg |
---|
| 230 | |
---|
[e7281fd] | 231 | def write_dirs(): |
---|
| 232 | """ |
---|
| 233 | Define Dir permission |
---|
| 234 | """ |
---|
| 235 | msg = """\n\n[Dirs]\n""" |
---|
| 236 | msg += """Name: "{app}\%s";\t""" % str('') |
---|
| 237 | msg += """Permissions: everyone-modify\t""" |
---|
| 238 | msg += """\n""" |
---|
| 239 | return msg |
---|
| 240 | |
---|
[fa597990] | 241 | def write_code(): |
---|
| 242 | """ |
---|
| 243 | Code that checks the existing path and snaviewpath |
---|
| 244 | in the environmental viriables/PATH |
---|
| 245 | """ |
---|
| 246 | msg = """\n\n[Code]\n""" |
---|
| 247 | msg += """function NeedsAddPath(): boolean;\n""" |
---|
| 248 | msg += """var\n""" |
---|
| 249 | msg += """ oldpath: string;\n""" |
---|
| 250 | msg += """ newpath: string;\n""" |
---|
| 251 | msg += """ pathArr: TArrayOfString;\n""" |
---|
| 252 | msg += """ i: Integer;\n""" |
---|
| 253 | msg += """begin\n""" |
---|
| 254 | msg += """ RegQueryStringValue(HKEY_CURRENT_USER,'Environment',""" |
---|
| 255 | msg += """'PATH', oldpath)\n""" |
---|
| 256 | msg += """ oldpath := oldpath + ';';\n""" |
---|
| 257 | msg += """ newpath := '%SANSVIEWPATH%';\n""" |
---|
| 258 | msg += """ i := 0;\n""" |
---|
| 259 | msg += """ while (Pos(';', oldpath) > 0) do begin\n""" |
---|
| 260 | msg += """ SetArrayLength(pathArr, i+1);\n""" |
---|
| 261 | msg += """ pathArr[i] := Copy(oldpath, 0, Pos(';', oldpath)-1);\n""" |
---|
| 262 | msg += """ oldpath := Copy(oldpath, Pos(';', oldpath)+1,""" |
---|
| 263 | msg += """ Length(oldpath));\n""" |
---|
| 264 | msg += """ i := i + 1;\n""" |
---|
| 265 | msg += """ // Check if current directory matches app dir\n""" |
---|
| 266 | msg += """ if newpath = pathArr[i-1] \n""" |
---|
| 267 | msg += """ then begin\n""" |
---|
| 268 | msg += """ Result := False;\n""" |
---|
| 269 | msg += """ exit;\n""" |
---|
| 270 | msg += """ end;\n""" |
---|
| 271 | msg += """ end;\n""" |
---|
| 272 | msg += """ Result := True;\n""" |
---|
| 273 | msg += """end;\n""" |
---|
| 274 | msg += """\n""" |
---|
| 275 | |
---|
| 276 | |
---|
| 277 | |
---|
| 278 | |
---|
| 279 | return msg |
---|
| 280 | |
---|
| 281 | |
---|
| 282 | if __name__ == "__main__": |
---|
| 283 | TEMPLATE = "\n; Script generated by the Inno Setup Script Wizard\n" |
---|
| 284 | TEMPLATE += "\n; and local_config.py located in this directory.\n " |
---|
| 285 | TEMPLATE += "; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!" |
---|
| 286 | TEMPLATE += "\n[Setup]\n\n" |
---|
| 287 | TEMPLATE += "ChangesAssociations=%s\n" %str('yes') |
---|
| 288 | TEMPLATE += "AppName=%s\n" % str(AppName) |
---|
| 289 | TEMPLATE += "AppVerName=%s\n" % str(AppVerName) |
---|
| 290 | TEMPLATE += "AppPublisher=%s\n" % str(AppPublisher) |
---|
| 291 | TEMPLATE += "AppPublisherURL=%s\n" % str(AppPublisherURL) |
---|
| 292 | TEMPLATE += "AppSupportURL=%s\n" % str(AppSupportURL) |
---|
| 293 | TEMPLATE += "AppUpdatesURL=%s \n" % str(AppUpdatesURL) |
---|
| 294 | TEMPLATE += "ChangesEnvironment=%s \n" % str(ChangesEnvironment) |
---|
| 295 | TEMPLATE += "DefaultDirName=%s\n" % str(DefaultDirName) |
---|
| 296 | TEMPLATE += "DefaultGroupName=%s\n" % str(DefaultGroupName) |
---|
| 297 | TEMPLATE += "DisableProgramGroupPage=%s\n" % str(DisableProgramGroupPage) |
---|
| 298 | TEMPLATE += "LicenseFile=%s\n" % str(LicenseFile) |
---|
| 299 | TEMPLATE += "OutputBaseFilename=%s\n" % str(OutputBaseFilename) |
---|
| 300 | TEMPLATE += "SetupIconFile=%s\n" % str(SetupIconFile) |
---|
| 301 | TEMPLATE += "Compression=%s\n" % str(Compression) |
---|
| 302 | TEMPLATE += "SolidCompression=%s\n" % str(SolidCompression) |
---|
| 303 | TEMPLATE += "PrivilegesRequired=%s\n" % str(PrivilegesRequired) |
---|
| 304 | |
---|
[50282f8] | 305 | TEMPLATE += write_registry(data_extension=DATA_EXTENSION, |
---|
| 306 | app_extension=APP_EXTENSION) |
---|
[fa597990] | 307 | TEMPLATE += write_language() |
---|
| 308 | TEMPLATE += write_tasks() |
---|
| 309 | TEMPLATE += write_file() |
---|
| 310 | TEMPLATE += write_icon() |
---|
| 311 | TEMPLATE += write_run() |
---|
[e7281fd] | 312 | TEMPLATE += write_dirs() |
---|
[fa597990] | 313 | TEMPLATE += write_code() |
---|
| 314 | path = '%s.iss' % str(INSTALLER_FILE) |
---|
| 315 | f = open(path,'w') |
---|
| 316 | f.write(TEMPLATE) |
---|
| 317 | f.close() |
---|
| 318 | print "Generate Inno setup installer script complete" |
---|
| 319 | print "A new file %s.iss should be created.Please refresh your directory" % str(INSTALLER_FILE) |
---|