2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 # Licensed to the Apache Software Foundation (ASF) under one or more
11 # contributor license agreements. See the NOTICE file distributed
12 # with this work for additional information regarding copyright
13 # ownership. The ASF licenses this file to you under the Apache
14 # License, Version 2.0 (the "License"); you may not use this file
15 # except in compliance with the License. You may obtain a copy of
16 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
26 use List
::Util
qw(shuffle);
27 use installer
::archivefiles
;
28 use installer
::control
;
29 use installer
::converter
;
30 use installer
::copyproject
;
31 use installer
::download
;
32 use installer
::environment
;
33 use installer
::epmfile
;
35 use installer
::filelists
;
36 use installer
::globals
;
37 use installer
::helppack
;
38 use installer
::languagepack
;
39 use installer
::languages
;
40 use installer
::logger
;
41 use installer
::packagelist
;
42 use installer
::parameter
;
43 use installer
::pathanalyzer
;
44 use installer
::profiles
;
45 use installer
::scpzipfiles
;
46 use installer
::scriptitems
;
47 use installer
::setupscript
;
48 use installer
::simplepackage
;
49 use installer
::strip
qw(strip_libraries);
50 use installer
::systemactions
;
51 use installer
::windows
::assembly
;
52 use installer
::windows
::binary
;
53 use installer
::windows
::component
;
54 use installer
::windows
::createfolder
;
55 use installer
::windows
::directory
;
56 use installer
::windows
::feature
;
57 use installer
::windows
::featurecomponent
;
58 use installer
::windows
::file
;
59 use installer
::windows
::font
;
60 use installer
::windows
::icon
;
61 use installer
::windows
::idtglobal
;
62 use installer
::windows
::inifile
;
63 use installer
::windows
::media
;
64 use installer
::windows
::mergemodule
;
65 use installer
::windows
::msiglobal
;
66 use installer
::windows
::msishortcutproperty
;
67 use installer
::windows
::msp
;
68 use installer
::windows
::property
;
69 use installer
::windows
::removefile
;
70 use installer
::windows
::registry
;
71 use installer
::windows
::shortcut
;
72 use installer
::windows
::strip
;
73 use installer
::windows
::update
;
74 use installer
::windows
::upgrade
;
75 use installer
::worker
;
76 use installer
::ziplist
qw(read_ziplist);
78 our @EXPORT_OK = qw(main);
81 installer
::logger
::starttime
();
89 my $message = "ERROR: $@";
91 warn "ERROR: Failure in installer.pm\n";
95 cleanup_on_error
($message);
98 installer
::logger
::stoptime
();
104 installer
::logger
::print_message
( "... checking environment variables ...\n" );
105 my $environmentvariableshashref = installer
::control
::check_system_environment
();
107 installer
::environment
::set_global_environment_variables
($environmentvariableshashref);
109 #################################
110 # Check and output of parameter
111 #################################
113 installer
::parameter
::saveparameter
();
114 installer
::parameter
::getparameter
();
116 installer
::parameter
::control_fundamental_parameter
();
117 installer
::parameter
::setglobalvariables
();
118 installer
::parameter
::control_required_parameter
();
120 if (!($installer::globals
::languages_defined_in_productlist
)) { installer
::languages
::analyze_languagelist
(); }
121 installer
::parameter
::outputparameter
();
123 $installer::globals
::build
= uc($installer::globals
::build
); # using "SRC680" instead of "src680"
125 ######################################
126 # Creating the log directory
127 ######################################
130 my $loggingdir = installer
::systemactions
::create_directories
("logging", \
$empty);
131 $loggingdir = $loggingdir . $installer::globals
::separator
;
132 $installer::globals
::exitlog
= $loggingdir;
135 my $currentdir = cwd
();
136 my $shipinstalldir = "";
137 my $current_install_number = "";
139 ######################################
140 # Checking the system requirements
141 ######################################
143 installer
::logger
::print_message
( "... checking required files ...\n" );
144 installer
::control
::check_system_path
();
146 my $pathvariableshashref = installer
::environment
::create_pathvariables
($environmentvariableshashref);
148 ###############################################
149 # Checking saved setting for Windows patches
150 ###############################################
152 if (( $installer::globals
::iswindowsbuild
) && ( $installer::globals
::prepare_winpatch
)) { installer
::windows
::msiglobal
::read_saved_mappings
(); }
154 ###################################################
155 # Analyzing the settings and variables in zip.lst
156 ###################################################
158 my ($allsettingsarrayref, $allvariableshashref) = read_ziplist
($installer::globals
::ziplistname
);
160 ########################################################
161 # Check if this is simple packaging mechanism
162 ########################################################
164 installer
::simplepackage
::check_simple_packager_project
($allvariableshashref);
166 ####################################################################
167 # setting global variables
168 ####################################################################
170 installer
::control
::set_addsystemintegration
($allvariableshashref);
172 ########################################################
173 # Re-define logging dir, after all variables are set
174 ########################################################
176 my $oldloggingdir = $loggingdir;
177 # FIXME: It would be better to use installer::systemactions::remove_complete_directory
178 # Though, we would need to remove only the lang-specific subdirectory for langpacks and helppacks
179 rmdir $oldloggingdir;
180 $loggingdir = installer
::systemactions
::create_directories
("logging", \
$empty);
181 $loggingdir = $loggingdir . $installer::globals
::separator
;
182 $installer::globals
::exitlog
= $loggingdir;
184 # checking, whether this is an opensource product
186 if (!($installer::globals
::is_copy_only_project
)) { installer
::ziplist
::set_manufacturer
($allvariableshashref); }
188 ##############################################
189 # Checking version of makecab.exe
190 ##############################################
192 if ( $installer::globals
::iswindowsbuild
&& (!defined($ENV{'CROSS_COMPILING'}) || $ENV{'CROSS_COMPILING'} ne 'TRUE' || $installer::globals
::packageformat
eq 'msi')) { installer
::control
::check_makecab_version
(); }
194 ##########################################################
195 # Getting the include path from the settings in zip list
196 ##########################################################
198 my $includepathref = installer
::ziplist
::getinfofromziplist
($allsettingsarrayref, "include");
199 if ( $$includepathref eq "" )
201 die 'Definition for "include" not found in ' . $installer::globals
::ziplistname
;
204 my $includepatharrayref = installer
::converter
::convert_stringlist_into_array
($includepathref, ",");
206 installer
::ziplist
::replace_all_variables_in_paths
($includepatharrayref, $pathvariableshashref);
208 installer
::ziplist
::replace_minor_in_paths
($includepatharrayref);
210 installer
::ziplist
::replace_packagetype_in_paths
($includepatharrayref);
212 installer
::ziplist
::resolve_relative_paths
($includepatharrayref);
214 installer
::ziplist
::remove_ending_separator
($includepatharrayref);
216 ##############################################
217 # Collecting all files from all include
218 # paths in global hashes.
219 ##############################################
221 installer
::worker
::collect_all_files_from_includepaths
($includepatharrayref);
223 ##############################################
224 # Analyzing languages in zip.lst if required
225 # Probably no longer used.
226 ##############################################
228 if ($installer::globals
::languages_defined_in_productlist
) { installer
::languages
::get_info_about_languages
($allsettingsarrayref); }
230 #####################################
231 # Windows requires the LCID list
232 #####################################
234 if ( $installer::globals
::iswindowsbuild
) { installer
::control
::read_lcidlist
($includepatharrayref); }
236 ####################################################################
237 # MacOS dmg build requires special DS_Store file to arrange icons
238 ####################################################################
239 # if (($installer::globals::ismacdmgbuild) && ($installer::globals::product eq "OpenOffice_Dev")) { $installer::globals::devsnapshotbuild = 1; }
241 #####################################################################
242 # Including additional inc files for variable settings, if defined
243 #####################################################################
245 if ( $allvariableshashref->{'ADD_INCLUDE_FILES'} ) { installer
::worker
::add_variables_from_inc_to_hashref
($allvariableshashref, $includepatharrayref); }
247 #####################################
248 # Analyzing the setup script
249 #####################################
251 if ($installer::globals
::setupscript_defined_in_productlist
) { installer
::setupscript
::set_setupscript_name
($allsettingsarrayref, $includepatharrayref); }
253 installer
::logger
::globallog
("setup script file: $installer::globals::setupscriptname");
255 installer
::logger
::print_message
( "... analyzing script: $installer::globals::setupscriptname ... \n" );
257 my $setupscriptref = installer
::files
::read_file
($installer::globals
::setupscriptname
); # Reading the setup script file
259 # Resolving variables defined in the zip list file into setup script
260 # All the variables are defined in $allvariablesarrayref
262 installer
::scpzipfiles
::replace_all_ziplistvariables_in_file
($setupscriptref, $allvariableshashref);
264 # Resolving %variables defined in the installation object
266 my $allscriptvariablesref = installer
::setupscript
::get_all_scriptvariables_from_installation_object
($setupscriptref);
268 installer
::setupscript
::add_lowercase_productname_setupscriptvariable
($allscriptvariablesref);
270 installer
::setupscript
::resolve_lowercase_productname_setupscriptvariable
($allscriptvariablesref);
272 $setupscriptref = installer
::setupscript
::replace_all_setupscriptvariables_in_script
($setupscriptref, $allscriptvariablesref);
274 # Adding all variables defined in the installation object into the hash of all variables.
275 # This is needed if variables are defined in the installation object, but not in the zip list file.
276 # If there is a definition in the zip list file and in the installation object, the installation object is more important
278 installer
::setupscript
::add_installationobject_to_variables
($allvariableshashref, $allscriptvariablesref);
280 # Replacing preset properties, not using the default mechanisms (for example for UNIXPRODUCTNAME)
281 installer
::setupscript
::replace_preset_properties
($allvariableshashref);
283 installer
::scpzipfiles
::replace_all_ziplistvariables_in_file
($setupscriptref, $allvariableshashref);
286 installer
::logger
::log_hashref
($allvariableshashref);
288 installer
::logger
::print_message
( "... analyzing directories ... \n" );
290 # Collect all directories in the script to get the destination dirs
292 my $dirsinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "Directory");
294 if ( $allvariableshashref->{'SHIFT_BASIS_INTO_BRAND_LAYER'} ) { $dirsinproductarrayref = installer
::scriptitems
::shift_basis_directory_parents
($dirsinproductarrayref); }
295 if ( $allvariableshashref->{'OFFICEDIRECTORYNAME'} ) { installer
::scriptitems
::set_officedirectory_name
($dirsinproductarrayref, $allvariableshashref->{'OFFICEDIRECTORYNAME'}); }
298 installer
::scriptitems
::resolve_all_directory_names
($dirsinproductarrayref);
300 installer
::logger
::print_message
( "... analyzing files ... \n" );
302 my $filesinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "File");
304 if (( ! $installer::globals
::iswindowsbuild
) &&
305 ( ! $installer::globals
::isrpmbuild
) &&
306 ( ! $installer::globals
::isdebbuild
) &&
307 ( ! $installer::globals
::issolarispkgbuild
) &&
308 ( $installer::globals
::packageformat
ne "installed" ) &&
309 ( $installer::globals
::packageformat
ne "dmg" ) &&
310 ( $installer::globals
::packageformat
ne "archive" ))
311 { installer
::control
::check_oxtfiles
($filesinproductarrayref); }
313 if (! $installer::globals
::languagepack
)
315 $filesinproductarrayref = installer
::scriptitems
::remove_Languagepacklibraries_from_Installset
($filesinproductarrayref);
318 if (! $installer::globals
::helppack
)
320 $filesinproductarrayref = installer
::scriptitems
::remove_Helppacklibraries_from_Installset
($filesinproductarrayref);
323 installer
::logger
::print_message
( "... analyzing scpactions ... \n" );
325 my $scpactionsinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "ScpAction");
327 if ( $installer::globals
::languagepack
) { installer
::scriptitems
::use_langpack_copy_scpaction
($scpactionsinproductarrayref); }
328 if ( $installer::globals
::helppack
) { installer
::scriptitems
::use_langpack_copy_scpaction
($scpactionsinproductarrayref); }
329 # if (($installer::globals::devsnapshotbuild)) { installer::scriptitems::use_dev_copy_scpaction($scpactionsinproductarrayref); }
330 # TODO: why is this not done in scp2 based on the value of $(ENABLE_RELEASE_BUILD)?
331 if ( $allvariableshashref->{'PRODUCTNAME'} eq "LibreOfficeDev" ) { installer
::scriptitems
::use_devversion_copy_scpaction
($scpactionsinproductarrayref); }
333 installer
::scriptitems
::change_keys_of_scpactions
($scpactionsinproductarrayref);
335 installer
::logger
::print_message
( "... analyzing shortcuts ... \n" );
337 my $linksinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "Shortcut");
339 installer
::logger
::print_message
( "... analyzing unix links ... \n" );
341 my $unixlinksinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "Unixlink");
343 installer
::logger
::print_message
( "... analyzing profile ... \n" );
345 my $profilesinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "Profile");
347 installer
::logger
::print_message
( "... analyzing profileitems ... \n" );
349 my $profileitemsinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "ProfileItem");
351 my $folderinproductarrayref;
352 my $folderitemsinproductarrayref;
353 my $folderitempropertiesinproductarrayref;
354 my $registryitemsinproductarrayref;
355 my $windowscustomactionsarrayref;
356 my $mergemodulesarrayref;
358 if ( $installer::globals
::iswindowsbuild
) # Windows specific items: Folder, FolderItem, RegistryItem, WindowsCustomAction
360 installer
::logger
::print_message
( "... analyzing folders ... \n" );
362 $folderinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "Folder");
364 installer
::logger
::print_message
( "... analyzing folderitems ... \n" );
366 $folderitemsinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "FolderItem");
368 installer
::setupscript
::add_predefined_folder
($folderitemsinproductarrayref, $folderinproductarrayref);
370 installer
::logger
::print_message
( "... analyzing folderitemproperties ... \n" );
372 $folderitempropertiesinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "FolderItemProperty");
374 installer
::setupscript
::prepare_non_advertised_files
($folderitemsinproductarrayref, $filesinproductarrayref);
376 installer
::logger
::print_message
( "... analyzing registryitems ... \n" );
378 $registryitemsinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "RegistryItem");
380 $registryitemsinproductarrayref = installer
::scriptitems
::remove_uninstall_regitems_from_script
($registryitemsinproductarrayref);
382 installer
::logger
::print_message
( "... analyzing Windows custom actions ... \n" );
384 $windowscustomactionsarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "WindowsCustomAction");
386 installer
::logger
::print_message
( "... analyzing Windows merge modules ... \n" );
388 $mergemodulesarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "MergeModule");
391 my $modulesinproductarrayref;
393 if (!($installer::globals
::is_copy_only_project
))
395 installer
::logger
::print_message
( "... analyzing modules ... \n" );
397 $modulesinproductarrayref = installer
::setupscript
::get_all_items_from_script
($setupscriptref, "Module");
399 installer
::scriptitems
::resolve_assigned_modules
($modulesinproductarrayref);
401 $modulesinproductarrayref = installer
::scriptitems
::remove_template_modules
($modulesinproductarrayref);
403 installer
::scriptitems
::set_children_flag
($modulesinproductarrayref);
405 installer
::scriptitems
::collect_all_languagemodules
($modulesinproductarrayref);
407 # Assigning the modules to the items
409 installer
::scriptitems
::assigning_modules_to_items
($modulesinproductarrayref, $filesinproductarrayref, "Files");
411 installer
::scriptitems
::assigning_modules_to_items
($modulesinproductarrayref, $unixlinksinproductarrayref, "Unixlinks");
413 installer
::scriptitems
::assigning_modules_to_items
($modulesinproductarrayref, $dirsinproductarrayref, "Dirs");
416 #################################################
417 # Part 1b: The language dependent part
418 # (still platform independent)
419 #################################################
421 # Now starts the language dependent part, if more than one product is defined on the command line
422 # Example -l en-US,de#es,fr,it defines two multilingual products
424 ###############################################################################
425 # Beginning of language dependent part
426 # The for iterates over all products, separated by an # in the language list
427 ###############################################################################
429 for ( my $n = 0; $n <= $#installer::globals
::languageproducts
; $n++ )
431 my $languagesarrayref = installer
::languages
::get_all_languages_for_one_product
($installer::globals
::languageproducts
[$n], $allvariableshashref);
432 my @setuplanguagesarray = @
{ $languagesarrayref };
434 my $languagestringref = installer
::languages
::get_language_string
($languagesarrayref);
435 installer
::logger
::print_message
( "------------------------------------\n" );
436 installer
::logger
::print_message
( "... languages $$languagestringref ... \n" );
438 if ( $installer::globals
::languagepack
)
440 $installer::globals
::addsystemintegration
= 0;
441 $installer::globals
::addlicensefile
= 0;
442 $installer::globals
::makedownload
= 1;
445 if ( $installer::globals
::helppack
)
447 $installer::globals
::addsystemintegration
= 0;
448 $installer::globals
::addlicensefile
= 0;
449 $installer::globals
::makedownload
= 1;
450 @setuplanguagesarray = grep { $_ ne "en-US" } @setuplanguagesarray;
451 unshift(@setuplanguagesarray, "en-US");
454 ############################################################
455 # Beginning of language specific logging mechanism
456 # Until now only global logging into default: logfile.txt
457 ############################################################
459 @installer::globals
::logfileinfo
= (); # new logfile array and new logfile name
460 installer
::logger
::copy_globalinfo_into_logfile
();
463 $logminor = $installer::globals
::minor
;
465 my $loglanguagestring = $$languagestringref;
466 my $loglanguagestring_orig = $loglanguagestring;
467 if (length($loglanguagestring) > $installer::globals
::max_lang_length
)
469 my $number_of_languages = installer
::systemactions
::get_number_of_langs
($loglanguagestring);
470 chomp(my $shorter = `echo $loglanguagestring | $ENV{'MD5SUM'} | sed -e "s/ .*//g"`);
471 my $id = substr($shorter, 0, 8); # taking only the first 8 digits
472 $loglanguagestring = "lang_" . $number_of_languages . "_id_" . $id;
475 $installer::globals
::logfilename
= "log_" . $installer::globals
::build
;
476 if ( $logminor ne "" ) { $installer::globals
::logfilename
.= "_" . $logminor; }
477 $installer::globals
::logfilename
.= "_" . $loglanguagestring;
478 $installer::globals
::logfilename
.= ".log";
479 $loggingdir = $loggingdir . $loglanguagestring . $installer::globals
::separator
;
480 installer
::systemactions
::create_directory
($loggingdir);
482 if ($loglanguagestring ne $loglanguagestring_orig) {
483 (my $dir = $loggingdir) =~ s!/$!!;
484 open(my $F1, "> $dir.dir");
485 open(my $F2, "> " . $loggingdir . $installer::globals
::logfilename
. '.file');
486 my @s = map { "$_\n" } split('_', $loglanguagestring_orig);
491 $installer::globals
::exitlog
= $loggingdir;
493 ###################################################################
494 # Reading an existing msi database, to prepare update and patch
495 ###################################################################
497 my $refdatabase = "";
498 my $uniquefilename = "";
499 my $revuniquefilename = "";
500 my $revshortfilename = "";
501 my $allupdatesequences = "";
502 my $allupdatecomponents = "";
503 my $allupdatefileorder = "";
504 my $allupdatecomponentorder = "";
505 my $shortdirname = "";
506 my $componentid = "";
507 my $componentidkeypath = "";
508 my $alloldproperties = "";
509 my $allupdatelastsequences = "";
510 my $allupdatediskids = "";
512 if ( $installer::globals
::iswindowsbuild
|| $installer::globals
::packageformat
eq 'msi' )
514 if ( $allvariableshashref->{'UPDATE_DATABASE'} )
516 installer
::logger
::print_message
( "... analyzing update database ...\n" );
517 $refdatabase = installer
::windows
::update
::readdatabase
($allvariableshashref, $languagestringref, $includepatharrayref);
519 if ( $installer::globals
::updatedatabase
)
521 ($uniquefilename, $revuniquefilename, $revshortfilename, $allupdatesequences, $allupdatecomponents, $allupdatefileorder, $allupdatecomponentorder, $shortdirname, $componentid, $componentidkeypath, $alloldproperties, $allupdatelastsequences, $allupdatediskids) = installer
::windows
::update
::create_database_hashes
($refdatabase);
522 if ( $mergemodulesarrayref > -1 ) { installer
::windows
::update
::readmergedatabase
($mergemodulesarrayref, $languagestringref, $includepatharrayref); }
527 ##############################################
528 # Setting global code variables for Windows
529 ##############################################
531 if (!($installer::globals
::is_copy_only_project
))
533 if ((( $installer::globals
::iswindowsbuild
) && ( $installer::globals
::packageformat
ne "archive" ) && ( $installer::globals
::packageformat
ne "installed" ) ) || $installer::globals
::packageformat
eq 'msi' )
535 installer
::windows
::msiglobal
::set_global_code_variables
($languagesarrayref, $languagestringref, $allvariableshashref, $alloldproperties);
539 ################################################
540 # Resolving include paths (language dependent)
541 ################################################
543 $includepatharrayref_lang = installer
::ziplist
::replace_languages_in_paths
($includepatharrayref, \
@setuplanguagesarray);
545 if ( $installer::globals
::refresh_includepaths
) { installer
::worker
::collect_all_files_from_includepaths
($includepatharrayref_lang); }
547 installer
::ziplist
::list_all_files_from_include_path
($includepatharrayref_lang);
549 ##############################################
550 # Analyzing spellchecker languages
551 ##############################################
553 if ( $allvariableshashref->{'SPELLCHECKERFILE'} ) { installer
::worker
::set_spellcheckerlanguages
($languagesarrayref, $allvariableshashref); }
555 #####################################
556 # Language dependent directory part
557 #####################################
559 my $dirsinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($dirsinproductarrayref, $languagesarrayref);
561 # A new directory array is needed ($dirsinproductlanguageresolvedarrayref instead of $dirsinproductarrayref)
562 # because $dirsinproductarrayref is needed in get_Destination_Directory_For_Item_From_Directorylist
564 installer
::scriptitems
::changing_name_of_language_dependent_keys
($dirsinproductlanguageresolvedarrayref);
566 installer
::scriptitems
::checking_directories_with_corrupt_hostname
($dirsinproductlanguageresolvedarrayref, $languagesarrayref);
568 installer
::scriptitems
::set_global_directory_hostnames
($dirsinproductlanguageresolvedarrayref, $allvariableshashref);
570 #####################################
571 # files part, language dependent
572 #####################################
574 installer
::logger
::print_message
( "... analyzing files ...\n" );
576 my $filesinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($filesinproductarrayref, $languagesarrayref);
578 if ( ! $installer::globals
::set_office_start_language
)
580 $filesinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_office_start_language_files
($filesinproductlanguageresolvedarrayref);
583 installer
::scriptitems
::changing_name_of_language_dependent_keys
($filesinproductlanguageresolvedarrayref);
585 if ( $installer::globals
::iswin
and $^O
=~ /MSWin/i ) { installer
::converter
::convert_slash_to_backslash
($filesinproductlanguageresolvedarrayref); }
587 $filesinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_non_existent_languages_in_productlists
($filesinproductlanguageresolvedarrayref, $languagestringref, "Name", "file");
589 installer
::scriptitems
::get_Destination_Directory_For_Item_From_Directorylist
($filesinproductlanguageresolvedarrayref, $dirsinproductarrayref);
591 installer
::scriptitems
::get_Source_Directory_For_Files_From_Includepathlist
($filesinproductlanguageresolvedarrayref, $includepatharrayref_lang, $dirsinproductlanguageresolvedarrayref, "Files", $allvariableshashref);
593 $filesinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_Files_Without_Sourcedirectory
($filesinproductlanguageresolvedarrayref);
595 if ($installer::globals
::languagepack
)
597 $filesinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_Files_For_Languagepacks
($filesinproductlanguageresolvedarrayref);
600 if ( ! $allvariableshashref->{'NO_README_IN_ROOTDIR'} )
602 $filesinproductlanguageresolvedarrayref = installer
::scriptitems
::add_License_Files_into_Installdir
($filesinproductlanguageresolvedarrayref, $dirsinproductlanguageresolvedarrayref, $languagesarrayref);
605 installer
::scriptitems
::make_filename_language_specific
($filesinproductlanguageresolvedarrayref);
607 ######################################################################################
608 # Unzipping files with flag ARCHIVE and putting all included files into the file list
609 ######################################################################################
611 installer
::logger
::print_message
( "... analyzing files with flag ARCHIVE ...\n" );
613 my @additional_paths_from_zipfiles = ();
615 $filesinproductlanguageresolvedarrayref = installer
::archivefiles
::resolving_archive_flag
($filesinproductlanguageresolvedarrayref, \
@additional_paths_from_zipfiles, $languagestringref, $loggingdir);
617 ######################################################################################
618 # Processing files with flag FILELIST and putting listed files into the file list
619 ######################################################################################
621 installer
::logger
::print_message
( "... analyzing files with flag FILELIST ...\n" );
623 ($filesinproductlanguageresolvedarrayref, $unixlinksinproductarrayref) = installer
::filelists
::resolve_filelist_flag
($filesinproductlanguageresolvedarrayref, $unixlinksinproductarrayref, $ENV{'INSTDIR'});
625 # packed files sometimes contain a "$" in their name: HighlightText$1.class. For epm the "$" has to be quoted by "$$"
627 if (!( $installer::globals
::iswindowsbuild
|| $installer::globals
::simple
) )
629 installer
::scriptitems
::quoting_illegal_filenames
($filesinproductlanguageresolvedarrayref);
632 #####################################
633 # Files with flag SCPZIP_REPLACE
634 #####################################
636 installer
::logger
::print_message
( "... analyzing files with flag SCPZIP_REPLACE ...\n" );
638 # Editing files with flag SCPZIP_REPLACE.
640 installer
::scpzipfiles
::resolving_scpzip_replace_flag
($filesinproductlanguageresolvedarrayref, $allvariableshashref, "File", $languagestringref);
642 ############################################
643 # Collecting directories for epm list file
644 ############################################
646 installer
::logger
::print_message
( "... analyzing all directories for this product ...\n" );
648 # There are two ways for a directory to be included into the epm directory list:
649 # 1. Looking for all destination paths in the files array
650 # 2. Looking for directories with CREATE flag in the directory array
651 # Advantage: Many paths are hidden in zip files, they are not defined in the setup script.
652 # It will be possible, that in the setup script only those directoies have to be defined,
653 # that have a CREATE flag. All other directories are created, if they contain at least one file.
655 my ($directoriesforepmarrayref, $alldirectoryhash) = installer
::scriptitems
::collect_directories_from_filesarray
($filesinproductlanguageresolvedarrayref);
657 ($directoriesforepmarrayref, $alldirectoryhash) = installer
::scriptitems
::collect_directories_with_create_flag_from_directoryarray
($dirsinproductlanguageresolvedarrayref, $alldirectoryhash);
659 #########################################################
660 # language dependent scpactions part
661 #########################################################
663 my $scpactionsinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($scpactionsinproductarrayref, $languagesarrayref);
665 installer
::scriptitems
::changing_name_of_language_dependent_keys
($scpactionsinproductlanguageresolvedarrayref);
667 installer
::scriptitems
::get_Source_Directory_For_Files_From_Includepathlist
($scpactionsinproductlanguageresolvedarrayref, $includepatharrayref_lang, $dirsinproductlanguageresolvedarrayref, "ScpActions", $allvariableshashref);
669 # Editing scpactions with flag SCPZIP_REPLACE.
671 installer
::scpzipfiles
::resolving_scpzip_replace_flag
($scpactionsinproductlanguageresolvedarrayref, $allvariableshashref, "ScpAction", $languagestringref);
673 #########################################################
674 # language dependent links part
675 #########################################################
677 installer
::logger
::print_message
( "... analyzing links ...\n" );
679 my $linksinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($linksinproductarrayref, $languagesarrayref);
681 installer
::scriptitems
::changing_name_of_language_dependent_keys
($linksinproductlanguageresolvedarrayref);
683 installer
::scriptitems
::get_destination_file_path_for_links
($linksinproductlanguageresolvedarrayref, $filesinproductlanguageresolvedarrayref);
685 installer
::scriptitems
::get_Destination_Directory_For_Item_From_Directorylist
($linksinproductlanguageresolvedarrayref, $dirsinproductarrayref);
687 # Now taking all links that have no FileID but a ShortcutID, linking to another link
689 installer
::scriptitems
::get_destination_link_path_for_links
($linksinproductlanguageresolvedarrayref);
691 $linksinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_workstation_only_items
($linksinproductlanguageresolvedarrayref);
693 installer
::scriptitems
::resolve_links_with_flag_relative
($linksinproductlanguageresolvedarrayref);
695 #########################################################
696 # language dependent unix links part
697 #########################################################
699 installer
::logger
::print_message
( "... analyzing unix links ...\n" );
701 my $unixlinksinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($unixlinksinproductarrayref, $languagesarrayref);
703 installer
::scriptitems
::changing_name_of_language_dependent_keys
($unixlinksinproductlanguageresolvedarrayref);
705 installer
::scriptitems
::get_Destination_Directory_For_Item_From_Directorylist
($unixlinksinproductlanguageresolvedarrayref, $dirsinproductarrayref);
707 #########################################################
708 # language dependent part for profiles and profileitems
709 #########################################################
711 my $profilesinproductlanguageresolvedarrayref;
712 my $profileitemsinproductlanguageresolvedarrayref;
714 if ((!($installer::globals
::is_copy_only_project
)) && (!($installer::globals
::languagepack
)) && (!($installer::globals
::helppack
)))
716 installer
::logger
::print_message
( "... creating profiles ...\n" );
718 $profilesinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($profilesinproductarrayref, $languagesarrayref);
720 $profileitemsinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($profileitemsinproductarrayref, $languagesarrayref);
722 installer
::scriptitems
::changing_name_of_language_dependent_keys
($profilesinproductlanguageresolvedarrayref);
724 installer
::scriptitems
::changing_name_of_language_dependent_keys
($profileitemsinproductlanguageresolvedarrayref);
726 installer
::scriptitems
::replace_setup_variables
($profileitemsinproductlanguageresolvedarrayref, $languagestringref, $allvariableshashref);
728 # Note that patch_user_dir is not related to the killed
729 # ancient (not MSP) "patch" thing, I think.
730 if ( $installer::globals
::patch_user_dir
)
732 installer
::scriptitems
::replace_userdir_variable
($profileitemsinproductlanguageresolvedarrayref);
735 installer
::scriptitems
::get_Destination_Directory_For_Item_From_Directorylist
($profilesinproductlanguageresolvedarrayref, $dirsinproductarrayref);
737 # Now the Profiles can be created
739 installer
::profiles
::create_profiles
($profilesinproductlanguageresolvedarrayref, $profileitemsinproductlanguageresolvedarrayref, $filesinproductlanguageresolvedarrayref, $languagestringref, $allvariableshashref);
742 my $registryitemsinproductlanguageresolvedarrayref; # cannot be defined in the following "if ( $installer::globals::iswindowsbuild )"
743 my $folderinproductlanguageresolvedarrayref; # cannot be defined in the following "if ( $installer::globals::iswindowsbuild )"
744 my $folderitemsinproductlanguageresolvedarrayref; # cannot be defined in the following "if ( $installer::globals::iswindowsbuild )"
746 if ( $installer::globals
::iswindowsbuild
) # Windows specific items: Folder, FolderItem, RegistryItem
748 #########################################################
749 # language dependent part for folder
750 #########################################################
752 installer
::logger
::print_message
( "... analyzing folder ...\n" );
754 $folderinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($folderinproductarrayref, $languagesarrayref);
756 installer
::scriptitems
::changing_name_of_language_dependent_keys
($folderinproductlanguageresolvedarrayref);
758 #########################################################
759 # language dependent part for folderitems
760 #########################################################
762 installer
::logger
::print_message
( "... analyzing folderitems ...\n" );
764 $folderitemsinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($folderitemsinproductarrayref, $languagesarrayref);
766 installer
::scriptitems
::changing_name_of_language_dependent_keys
($folderitemsinproductlanguageresolvedarrayref);
768 #########################################################
769 # language dependent part for registryitems
770 #########################################################
772 installer
::logger
::print_message
( "... analyzing registryitems ...\n" );
774 $registryitemsinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($registryitemsinproductarrayref, $languagesarrayref);
776 installer
::scriptitems
::changing_name_of_language_dependent_keys
($registryitemsinproductlanguageresolvedarrayref);
779 #########################################################
780 # language dependent part for modules
781 #########################################################
783 my $modulesinproductlanguageresolvedarrayref;
785 if (!($installer::globals
::is_copy_only_project
))
787 installer
::logger
::print_message
( "... analyzing modules ...\n" );
789 $modulesinproductlanguageresolvedarrayref = installer
::scriptitems
::resolving_all_languages_in_productlists
($modulesinproductarrayref, $languagesarrayref);
791 $modulesinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_not_required_language_modules
($modulesinproductlanguageresolvedarrayref, $languagesarrayref);
793 if ( $installer::globals
::analyze_spellcheckerlanguage
)
795 $modulesinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_not_required_spellcheckerlanguage_modules
($modulesinproductlanguageresolvedarrayref);
797 $filesinproductlanguageresolvedarrayref = installer
::scriptitems
::remove_not_required_spellcheckerlanguage_files
($filesinproductlanguageresolvedarrayref);
800 installer
::scriptitems
::changing_name_of_language_dependent_keys
($modulesinproductlanguageresolvedarrayref);
802 installer
::scriptitems
::select_required_language_strings
($modulesinproductlanguageresolvedarrayref); # using english strings
806 # Copy-only projects can now start to copy all items File and ScpAction
807 if ( $installer::globals
::is_copy_only_project
) { installer
::copyproject
::copy_project
($filesinproductlanguageresolvedarrayref, $scpactionsinproductlanguageresolvedarrayref, $loggingdir, $languagestringref, $shipinstalldir, $allsettingsarrayref); }
809 # Language pack projects can now start to select the required information
810 if ( $installer::globals
::languagepack
)
812 $filesinproductlanguageresolvedarrayref = installer
::languagepack
::select_language_items
($filesinproductlanguageresolvedarrayref, $languagesarrayref, "File");
813 $scpactionsinproductlanguageresolvedarrayref = installer
::languagepack
::select_language_items
($scpactionsinproductlanguageresolvedarrayref, $languagesarrayref, "ScpAction");
814 $linksinproductlanguageresolvedarrayref = installer
::languagepack
::select_language_items
($linksinproductlanguageresolvedarrayref, $languagesarrayref, "Shortcut");
815 $unixlinksinproductlanguageresolvedarrayref = installer
::languagepack
::select_language_items
($unixlinksinproductlanguageresolvedarrayref, $languagesarrayref, "Unixlink");
816 @
{$folderitemsinproductlanguageresolvedarrayref} = (); # no folderitems in languagepacks
818 # Collecting the directories again, to include only the language specific directories
819 ($directoriesforepmarrayref, $alldirectoryhash) = installer
::scriptitems
::collect_directories_from_filesarray
($filesinproductlanguageresolvedarrayref);
820 ($directoriesforepmarrayref, $alldirectoryhash) = installer
::scriptitems
::collect_directories_with_create_flag_from_directoryarray
($dirsinproductlanguageresolvedarrayref, $alldirectoryhash);
821 @
$directoriesforepmarrayref = sort { $a->{"HostName"} cmp $b->{"HostName"} } @
$directoriesforepmarrayref;
823 if ( $installer::globals
::iswindowsbuild
)
825 $registryitemsinproductlanguageresolvedarrayref = installer
::worker
::select_langpack_items
($registryitemsinproductlanguageresolvedarrayref, "RegistryItem");
830 # Help pack projects can now start to select the required information
831 if ( $installer::globals
::helppack
)
833 $filesinproductlanguageresolvedarrayref = installer
::helppack
::select_help_items
($filesinproductlanguageresolvedarrayref, $languagesarrayref, "File");
834 $scpactionsinproductlanguageresolvedarrayref = installer
::helppack
::select_help_items
($scpactionsinproductlanguageresolvedarrayref, $languagesarrayref, "ScpAction");
835 $linksinproductlanguageresolvedarrayref = installer
::helppack
::select_help_items
($linksinproductlanguageresolvedarrayref, $languagesarrayref, "Shortcut");
836 $unixlinksinproductlanguageresolvedarrayref = installer
::helppack
::select_help_items
($unixlinksinproductlanguageresolvedarrayref, $languagesarrayref, "Unixlink");
837 @
{$folderitemsinproductlanguageresolvedarrayref} = (); # no folderitems in helppacks
839 # Collecting the directories again, to include only the language specific directories
840 ($directoriesforepmarrayref, $alldirectoryhash) = installer
::scriptitems
::collect_directories_from_filesarray
($filesinproductlanguageresolvedarrayref);
841 ($directoriesforepmarrayref, $alldirectoryhash) = installer
::scriptitems
::collect_directories_with_create_flag_from_directoryarray
($dirsinproductlanguageresolvedarrayref, $alldirectoryhash);
842 @
$directoriesforepmarrayref = sort { $a->{"HostName"} cmp $b->{"HostName"} } @
$directoriesforepmarrayref;
844 if ( $installer::globals
::iswindowsbuild
)
846 $registryitemsinproductlanguageresolvedarrayref = installer
::worker
::select_helppack_items
($registryitemsinproductlanguageresolvedarrayref, "RegistryItem");
851 #########################################################
852 # Collecting all scp actions
853 #########################################################
855 installer
::worker
::collect_scpactions
($scpactionsinproductlanguageresolvedarrayref);
857 ###########################################################
858 # Simple package projects can now start to create the
859 # installation structure by creating Directories, Files
860 # Links and ScpActions. This is the last platform
862 ###########################################################
864 if ( $installer::globals
::is_simple_packager_project
)
866 installer
::simplepackage
::create_simple_package
($filesinproductlanguageresolvedarrayref, $directoriesforepmarrayref, $scpactionsinproductlanguageresolvedarrayref, $linksinproductlanguageresolvedarrayref, $unixlinksinproductlanguageresolvedarrayref, $loggingdir, $languagestringref, $shipinstalldir, $allsettingsarrayref, $allvariableshashref, $includepatharrayref);
867 next; # ! leaving the current loop, because no further packaging required.
870 ###########################################################
871 # Analyzing the package structure
872 ###########################################################
874 installer
::logger
::print_message
( "... analyzing package list ...\n" );
876 my $packages = installer
::packagelist
::collectpackages
($modulesinproductlanguageresolvedarrayref, $languagesarrayref);
877 installer
::packagelist
::check_packagelist
($packages);
879 $packages = installer
::packagelist
::analyze_list
($packages, $modulesinproductlanguageresolvedarrayref);
880 installer
::packagelist
::remove_multiple_modules_packages
($packages);
882 # printing packages content:
883 installer
::packagelist
::log_packages_content
($packages);
884 installer
::packagelist
::create_module_destination_hash
($packages, $allvariableshashref);
886 #################################################
887 # Part 2: The platform dependent part
888 #################################################
890 #################################################
891 # Part 2a: All non-Windows platforms
892 #################################################
894 #########################################################
895 # ... creating epm list file ...
896 # Only for non-Windows platforms
897 #########################################################
899 if (!( $installer::globals
::iswindowsbuild
))
901 ####################################################
902 # Writing log file before packages are packed
903 ####################################################
905 installer
::logger
::print_message
( "... creating log file " . $loggingdir . $installer::globals
::logfilename
. "\n" );
906 installer
::files
::save_file
($loggingdir . $installer::globals
::logfilename
, \
@installer::globals
::logfileinfo
);
908 ####################################################
909 # Creating directories
910 ####################################################
912 if ( $allvariableshashref->{'OOODOWNLOADNAME'} ) { installer
::download
::set_download_filename
($languagestringref, $allvariableshashref); }
913 else { installer
::download
::resolve_variables_in_downloadname
($allvariableshashref, "", $languagestringref); }
915 $installdir = installer
::worker
::create_installation_directory
($shipinstalldir, $languagestringref, \
$current_install_number);
917 my $listfiledir = installer
::systemactions
::create_directories
("listfile", $languagestringref);
918 my $installlogdir = installer
::systemactions
::create_directory_next_to_directory
($installdir, "log");
920 ####################################################
921 # Reading for Solaris all package descriptions
922 # from file defined in property PACKAGEMAP
923 ####################################################
925 if ( $installer::globals
::issolarisbuild
) { installer
::epmfile
::read_packagemap
($allvariableshashref, $includepatharrayref, $languagesarrayref); }
927 ###########################################
929 ###########################################
931 my $epmexecutable = "";
932 if ( $installer::globals
::call_epm
)
934 $epmexecutable = installer
::epmfile
::find_epm_on_system
($includepatharrayref);
935 installer
::epmfile
::set_patch_state
($epmexecutable); # setting $installer::globals::is_special_epm
938 # shuffle array to reduce parallel packaging process in pool
939 @
{$packages} = shuffle @
{$packages}
940 unless $installer::globals
::simple
;
942 # iterating over all packages
943 for my $onepackage ( @
{$packages} )
945 # checking, if this is a language pack or a project pack.
946 # Creating language packs only, if $installer::globals::languagepack is set. Parameter: -languagepack
948 if ( $installer::globals
::languagepack
) { installer
::languagepack
::replace_languagestring_variable
($onepackage, $languagestringref); }
950 # checking, if this is a help pack
951 # Creating help packs only, if $installer::globals::helppack is set. Parameter: -helppack
953 if ( $installer::globals
::helppack
) { installer
::helppack
::replace_languagestring_variable
($onepackage, $languagestringref); }
955 my $onepackagename = $onepackage->{'module'}; # name of the top module (required)
957 my $shellscriptsfilename = "";
958 if ( $onepackage->{'script'} ) { $shellscriptsfilename = $onepackage->{'script'}; }
960 ###########################
962 ###########################
964 my $packagename = "";
966 if ( $installer::globals
::issolarisbuild
) # only for Solaris
968 if ( $onepackage->{'solarispackagename'} ) { $packagename = $onepackage->{'solarispackagename'}; }
972 if ( $onepackage->{'packagename'} ) { $packagename = $onepackage->{'packagename'}; }
975 if (!($packagename eq ""))
977 installer
::packagelist
::resolve_packagevariables
(\
$packagename, $allvariableshashref, 0);
980 # Debian allows no underline in package name
981 if ( $installer::globals
::debian
) { $packagename =~ s/_/-/g; }
983 ####################################################
984 # Header for this package into log file
985 ####################################################
987 installer
::logger
::include_header_into_logfile
("Creating package: $packagename");
989 ###########################################
990 # Root path, can be defined as parameter
991 ###########################################
993 my $packagerootpath = "";
995 if ($installer::globals
::rootpath
eq "")
997 $packagerootpath = $onepackage->{'destpath'};
998 installer
::packagelist
::resolve_packagevariables
(\
$packagerootpath, $allvariableshashref, 1);
999 # we put branding and common stuff into the same prefix on unixes => $packagerootpath must be the whole prefix, including the product name
1000 if ($installer::globals
::isunix
) { $packagerootpath .= "/$allvariableshashref->{'UNIXBASISROOTNAME'}"; }
1001 if ( $^O
=~ /darwin/i ) { $packagerootpath =~ s/\/opt\//\/Applications\
//; }
1005 $packagerootpath = $installer::globals
::rootpath
;
1008 #############################################
1009 # copying the collectors for each package
1010 #############################################
1012 my $filesinpackage = installer
::converter
::copy_collector
($filesinproductlanguageresolvedarrayref);
1013 my $linksinpackage = installer
::converter
::copy_collector
($linksinproductlanguageresolvedarrayref);
1014 my $unixlinksinpackage = installer
::converter
::copy_collector
($unixlinksinproductlanguageresolvedarrayref);
1015 my $dirsinpackage = installer
::converter
::copy_collector
($directoriesforepmarrayref);
1017 ###########################################
1018 # setting the root path for the packages
1019 ###########################################
1021 installer
::scriptitems
::add_rootpath_to_directories
($dirsinpackage, $packagerootpath);
1022 installer
::scriptitems
::add_rootpath_to_files
($filesinpackage, $packagerootpath);
1023 installer
::scriptitems
::add_rootpath_to_links
($linksinpackage, $packagerootpath);
1024 installer
::scriptitems
::add_rootpath_to_files
($unixlinksinpackage, $packagerootpath);
1026 #################################
1027 # collecting items for package
1028 #################################
1030 $filesinpackage = installer
::packagelist
::find_files_for_package
($filesinpackage, $onepackage);
1031 $unixlinksinpackage = installer
::packagelist
::find_files_for_package
($unixlinksinpackage, $onepackage);
1032 $linksinpackage = installer
::packagelist
::find_links_for_package
($linksinpackage, $filesinpackage);
1033 $dirsinpackage = installer
::packagelist
::find_dirs_for_package
($dirsinpackage, $onepackage);
1035 ###############################################
1036 # nothing to do, if $filesinpackage is empty
1037 ###############################################
1039 if ( ! ( $#{$filesinpackage} > -1 ))
1041 $infoline = "\n\nNo file in package: $packagename \-\> Skipping\n\n";
1042 push(@installer::globals
::logfileinfo
, $infoline);
1043 next; # next package, end of loop !
1046 ###########################################
1047 # Stripping libraries
1048 ###########################################
1050 # Building for non Windows platforms in cws requires, that all files are stripped before packaging:
1051 # 1. copy all files that need to be stripped locally
1052 # 2. strip all these files
1054 if ( $installer::globals
::strip
)
1056 strip_libraries
($filesinpackage, $languagestringref);
1059 if ( $installer::globals
::simple
) {
1060 installer
::worker
::install_simple
($onepackagename, $$languagestringref, $dirsinpackage, $filesinpackage, $linksinpackage, $unixlinksinpackage);
1063 # epm list file format:
1064 # type mode owner group destination source options
1065 # Example for a file: f 755 root sys /usr/bin/foo foo
1066 # Example for a directory: d 755 root sys /var/spool/foo -
1067 # Example for a link: l 000 root sys /usr/bin/linkname filename
1068 # The source field specifies the file to link to
1070 my $epmfilename = "epm_" . $onepackagename . ".lst";
1072 installer
::logger
::print_message
( "... creating epm list file $epmfilename ... \n" );
1074 my $completeepmfilename = $listfiledir . $installer::globals
::separator
. $epmfilename;
1078 my $epmheaderref = installer
::epmfile
::create_epm_header
($allvariableshashref, $filesinproductlanguageresolvedarrayref, $languagesarrayref, $onepackage);
1079 installer
::epmfile
::adding_header_to_epm_file
(\
@epmfile, $epmheaderref);
1081 # adding directories, files and links into epm file
1083 installer
::epmfile
::put_directories_into_epmfile
($dirsinpackage, \
@epmfile, $allvariableshashref, $packagerootpath);
1084 installer
::epmfile
::put_files_into_epmfile
($filesinpackage, \
@epmfile );
1085 installer
::epmfile
::put_links_into_epmfile
($linksinpackage, \
@epmfile );
1086 installer
::epmfile
::put_unixlinks_into_epmfile
($unixlinksinpackage, \
@epmfile );
1088 if ((!( $shellscriptsfilename eq "" )) && (!($installer::globals
::iswindowsbuild
))) { installer
::epmfile
::adding_shellscripts_to_epm_file
(\
@epmfile, $shellscriptsfilename, $packagerootpath, $allvariableshashref, $filesinpackage); }
1090 installer
::files
::save_file
($completeepmfilename ,\
@epmfile);
1092 # ... splitting the rootpath into a relocatable part and a static part, if possible
1094 my $staticpath = "";
1095 my $relocatablepath = "";
1096 # relocatable path can be defined in package list
1097 if ( $onepackage->{'relocatablepath'} ) { $relocatablepath = $onepackage->{'relocatablepath'}; }
1098 # setting fix part and variable part of destination path
1099 installer
::epmfile
::analyze_rootpath
($packagerootpath, \
$staticpath, \
$relocatablepath, $allvariableshashref);
1101 # ... replacing the variable PRODUCTDIRECTORYNAME in the shellscriptfile by $staticpath
1103 installer
::epmfile
::resolve_path_in_epm_list_before_packaging
(\
@epmfile, $completeepmfilename, "PRODUCTDIRECTORYNAME", $staticpath);
1104 installer
::epmfile
::resolve_path_in_epm_list_before_packaging
(\
@epmfile, $completeepmfilename, "SOLSUREPACKAGEPREFIX", $allvariableshashref->{'SOLSUREPACKAGEPREFIX'});
1105 installer
::epmfile
::resolve_path_in_epm_list_before_packaging
(\
@epmfile, $completeepmfilename, "UREPACKAGEPREFIX", $allvariableshashref->{'UREPACKAGEPREFIX'});
1106 installer
::files
::save_file
($completeepmfilename ,\
@epmfile);
1109 # changing into the "install" directory to create installation sets
1111 $currentdir = cwd
(); # $currentdir is global in this file
1113 chdir($installdir); # changing into install directory ($installdir is global in this file)
1115 ###########################################
1117 ###########################################
1119 # With a patched epm, it is now possible to set the relocatable directory, change
1120 # the directory in which the packages are created, setting "requires" and "provides"
1121 # (Linux) or creating the "depend" file (Solaris) and finally to begin
1122 # the packaging process with standard tooling and standard parameter
1123 # Linux: Adding into the spec file: Prefix: /opt
1124 # Solaris: Adding into the pkginfo file: BASEDIR=/opt
1125 # Attention: Changing of the path can influence the shell scripts
1127 if (( $installer::globals
::is_special_epm
) && ( ($installer::globals
::isrpmbuild
) || ($installer::globals
::issolarispkgbuild
) )) # special handling only for Linux RPMs and Solaris Packages
1129 if ( $installer::globals
::call_epm
) # only do something, if epm is really executed
1131 # ... now epm can be started, to create the installation sets
1133 installer
::logger
::print_message
( "... starting patched epm ... \n" );
1135 installer
::epmfile
::call_epm
($epmexecutable, $completeepmfilename, $packagename, $includepatharrayref);
1137 my $newepmdir = installer
::epmfile
::prepare_packages
($loggingdir, $packagename, $staticpath, $relocatablepath, $onepackage, $allvariableshashref, $filesinpackage, $languagestringref); # adding the line for Prefix / Basedir, include rpmdir
1139 installer
::epmfile
::create_packages_without_epm
($newepmdir, $packagename, $includepatharrayref, $allvariableshashref, $languagestringref); # start to package
1141 # finally removing all temporary files
1143 installer
::epmfile
::remove_temporary_epm_files
($newepmdir, $loggingdir, $packagename);
1146 # Install: pkgadd -a myAdminfile -d ./SUNWso8m34.pkg
1147 # Install: rpm -i --prefix=/opt/special --nodeps so8m35.rpm
1149 installer
::epmfile
::create_new_directory_structure
($newepmdir);
1150 $installer::globals
::postprocess_specialepm
= 1;
1152 # solaris patch not needed anymore
1156 else # this is the standard epm (not relocatable) or ( nonlinux and nonsolaris )
1158 installer
::epmfile
::resolve_path_in_epm_list_before_packaging
(\
@epmfile, $completeepmfilename, "\$\$PRODUCTINSTALLLOCATION", $relocatablepath);
1159 installer
::files
::save_file
($completeepmfilename ,\
@epmfile); # Warning for pool, content of epm file is changed.
1161 if ( $installer::globals
::call_epm
)
1163 # ... now epm can be started, to create the installation sets
1165 installer
::logger
::print_message
( "... starting unpatched epm ... \n" );
1167 if ( $installer::globals
::call_epm
) { installer
::epmfile
::call_epm
($epmexecutable, $completeepmfilename, $packagename, $includepatharrayref); }
1169 if (($installer::globals
::isrpmbuild
) || ($installer::globals
::issolarispkgbuild
) || ($installer::globals
::debian
))
1171 $installer::globals
::postprocess_standardepm
= 1;
1176 chdir($currentdir); # changing back into start directory
1180 } # end of "if ( ! $installer::globals::simple )
1182 } # end of "for ( @{$packages} )"
1184 ##############################################################
1185 # Post epm functionality, after the last package is packed
1186 ##############################################################
1188 if ( $installer::globals
::postprocess_specialepm
)
1190 installer
::logger
::include_header_into_logfile
("Post EPM processes (Patched EPM):");
1194 # Copying the cde, kde and gnome packages into the installation set
1195 if ( $installer::globals
::addsystemintegration
) { installer
::epmfile
::put_systemintegration_into_installset
($installer::globals
::epmoutpath
, $includepatharrayref, $allvariableshashref, $modulesinproductarrayref); }
1197 # Adding license and readme into installation set
1198 if ($installer::globals
::addlicensefile
) { installer
::worker
::put_scpactions_into_installset
("."); }
1200 # Adding license file into setup
1201 if ( $allvariableshashref->{'PUT_LICENSE_INTO_SETUP'} ) { installer
::worker
::put_license_into_setup
(".", $includepatharrayref); }
1203 # Creating installation set for Unix language packs, that are not part of multi lingual installation sets
1204 if ( ( $installer::globals
::languagepack
) && ( ! $installer::globals
::debian
) && ( ! $installer::globals
::makedownload
) ) { installer
::languagepack
::build_installer_for_languagepack
($installer::globals
::epmoutpath
, $allvariableshashref, $includepatharrayref, $languagesarrayref, $languagestringref); }
1206 # Creating installation set for Unix help packs, that are not part of multi lingual installation sets
1207 if ( ( $installer::globals
::helppack
) && ( ! $installer::globals
::debian
) && ( ! $installer::globals
::makedownload
) ) { installer
::helppack
::build_installer_for_helppack
($installer::globals
::epmoutpath
, $allvariableshashref, $includepatharrayref, $languagesarrayref, $languagestringref); }
1209 chdir($currentdir); # changing back into start directory
1212 if ( $installer::globals
::postprocess_standardepm
)
1214 installer
::logger
::include_header_into_logfile
("Post EPM processes (Standard EPM):");
1218 # determine the destination directory
1219 my $newepmdir = installer
::epmfile
::determine_installdir_ooo
();
1221 # Copying the cde, kde and gnome packages into the installation set
1222 if ( $installer::globals
::addsystemintegration
) { installer
::epmfile
::put_systemintegration_into_installset
($newepmdir, $includepatharrayref, $allvariableshashref, $modulesinproductarrayref); }
1224 # Adding license and readme into installation set
1225 if ($installer::globals
::addlicensefile
) { installer
::worker
::put_scpactions_into_installset
("."); }
1227 # Adding license file into setup
1228 if ( $allvariableshashref->{'PUT_LICENSE_INTO_SETUP'} ) { installer
::worker
::put_license_into_setup
(".", $includepatharrayref); }
1230 # Creating installation set for Unix language packs, that are not part of multi lingual installation sets
1231 if ( ( $installer::globals
::languagepack
) && ( ! $installer::globals
::debian
) && ( ! $installer::globals
::makedownload
) ) { installer
::languagepack
::build_installer_for_languagepack
($newepmdir, $allvariableshashref, $includepatharrayref, $languagesarrayref, $languagestringref); }
1233 # Creating installation set for Unix help packs, that are not part of multi lingual installation sets
1234 if ( ( $installer::globals
::helppack
) && ( ! $installer::globals
::debian
) && ( ! $installer::globals
::makedownload
) ) { installer
::helppack
::build_installer_for_helpepack
($newepmdir, $allvariableshashref, $includepatharrayref, $languagesarrayref, $languagestringref); }
1236 chdir($currentdir); # changing back into start directory
1239 if (( $installer::globals
::issolarispkgbuild
) && ( $allvariableshashref->{'COLLECT_PKGMAP'} )) { installer
::worker
::collectpackagemaps
($installdir, $languagestringref, $allvariableshashref); }
1241 #######################################################
1242 # Analyzing the log file
1243 #######################################################
1246 my $finalinstalldir = "";
1248 installer
::worker
::clean_output_tree
(); # removing directories created in the output tree
1249 ($is_success, $finalinstalldir) = installer
::worker
::analyze_and_save_logfile
($loggingdir, $installdir, $installlogdir, $allsettingsarrayref, $languagestringref, $current_install_number);
1250 my $downloadname = installer
::ziplist
::getinfofromziplist
($allsettingsarrayref, "downloadname");
1252 #######################################################
1253 # Creating download installation set
1254 #######################################################
1256 if ( $installer::globals
::makedownload
)
1258 my $create_download = 0;
1259 if ( $$downloadname ne "" ) { $create_download = 1; }
1260 if ( $installer::globals
::iswindowsbuild
) { $create_download = 0; }
1261 if (( $is_success ) && ( $create_download ) && ( $ENV{'ENABLE_DOWNLOADSETS'} ))
1263 my $downloaddir = installer
::download
::create_download_sets
($finalinstalldir, $includepatharrayref, $allvariableshashref, $$downloadname, $languagestringref, $languagesarrayref);
1264 installer
::worker
::analyze_and_save_logfile
($loggingdir, $downloaddir, $installlogdir, $allsettingsarrayref, $languagestringref, $current_install_number);
1267 } # end of "if (!( $installer::globals::iswindowsbuild ))"
1269 #################################################
1270 # Part 2b: The Windows platform
1271 #################################################
1273 #####################################################################
1274 # ... creating idt files ...
1275 # Only for Windows builds
1276 #####################################################################
1278 if ( $installer::globals
::iswindowsbuild
)
1280 ###########################################
1281 # Stripping libraries
1282 ###########################################
1284 # Building for gcc build in cws requires, that all files are stripped before packaging:
1285 # 1. copy all files that need to be stripped locally
1286 # 2. strip all these files
1288 if ( $installer::globals
::com
eq 'GCC')
1290 installer
::windows
::strip
::strip_binaries
($filesinproductlanguageresolvedarrayref, $languagestringref);
1293 $installdir = installer
::worker
::create_installation_directory
($shipinstalldir, $languagestringref, \
$current_install_number);
1295 my $idtdirbase = installer
::systemactions
::create_directories
("idt_files", $languagestringref);
1296 $installer::globals
::infodirectory
= installer
::systemactions
::create_directories
("info_files", $languagestringref);
1297 my $installlogdir = installer
::systemactions
::create_directory_next_to_directory
($installdir, "log");
1299 #################################################################################
1300 # Preparing cabinet files from package definitions
1301 #################################################################################
1303 installer
::packagelist
::prepare_cabinet_files
($packages, $allvariableshashref);
1304 # printing packages content:
1305 installer
::packagelist
::log_cabinet_assignments
();
1307 #################################################################################
1308 # Begin of functions that are used for the creation of idt files (Windows only)
1309 #################################################################################
1311 installer
::logger
::print_message
( "... creating idt files ...\n" );
1313 installer
::logger
::include_header_into_logfile
("Creating idt files:");
1315 my $newidtdir = $idtdirbase . $installer::globals
::separator
. "00"; # new files into language independent directory "00"
1316 installer
::systemactions
::create_directory
($newidtdir);
1318 my @allfilecomponents = ();
1319 my @allregistrycomponents = ();
1321 # Collecting all files with flag "BINARYTABLE"
1322 my $binarytablefiles = installer
::worker
::collect_all_items_with_special_flag
($filesinproductlanguageresolvedarrayref ,"BINARYTABLE");
1324 # Removing all files with flag "BINARYTABLE_ONLY"
1325 @installer::globals
::binarytableonlyfiles
= ();
1326 $filesinproductlanguageresolvedarrayref = installer
::worker
::remove_all_items_with_special_flag
($filesinproductlanguageresolvedarrayref ,"BINARYTABLE_ONLY");
1328 # Collecting all profileitems with flag "INIFILETABLE" for table "IniFile"
1329 my $inifiletableentries = installer
::worker
::collect_all_items_with_special_flag
($profileitemsinproductlanguageresolvedarrayref ,"INIFILETABLE");
1331 # Creating the important dynamic idt files
1332 installer
::windows
::msiglobal
::set_msiproductversion
($allvariableshashref);
1333 installer
::windows
::msiglobal
::put_msiproductversion_into_bootstrapfile
($filesinproductlanguageresolvedarrayref);
1335 # Add cabinet assignments to files
1336 installer
::windows
::file
::assign_cab_to_files
($filesinproductlanguageresolvedarrayref);
1337 installer
::windows
::file
::assign_sequencenumbers_to_files
($filesinproductlanguageresolvedarrayref);
1339 # Collection all available directory trees
1340 installer
::windows
::directory
::collectdirectorytrees
($directoriesforepmarrayref);
1342 # Attention: The table "Director.idt" contains language specific strings -> parameter: \@setuplanguagesarray !
1343 installer
::windows
::directory
::create_directory_table
($directoriesforepmarrayref, \
@setuplanguagesarray, $newidtdir, $allvariableshashref, $shortdirname, $loggingdir);
1345 $filesinproductlanguageresolvedarrayref = installer
::windows
::file
::create_files_table
($filesinproductlanguageresolvedarrayref, $directoriesforepmarrayref, \
@allfilecomponents, $newidtdir, $allvariableshashref, $uniquefilename, $allupdatesequences, $allupdatecomponents, $allupdatefileorder);
1346 if ( $installer::globals
::updatedatabase
) { installer
::windows
::file
::check_file_sequences
($allupdatefileorder, $allupdatecomponentorder); }
1348 # Attention: The table "Registry.idt" contains language specific strings -> parameter: \@setuplanguagesarray !
1349 installer
::windows
::registry
::create_registry_table
($registryitemsinproductlanguageresolvedarrayref, \
@allregistrycomponents, $newidtdir, \
@setuplanguagesarray, $allvariableshashref);
1351 installer
::windows
::component
::create_component_table
($filesinproductlanguageresolvedarrayref, $registryitemsinproductlanguageresolvedarrayref, $directoriesforepmarrayref, \
@allfilecomponents, \
@allregistrycomponents, $newidtdir, $componentid, $componentidkeypath, $allvariableshashref);
1353 # Attention: The table "Feature.idt" contains language specific strings -> parameter: \@setuplanguagesarray !
1354 installer
::windows
::feature
::add_uniquekey
($modulesinproductlanguageresolvedarrayref);
1355 $modulesinproductlanguageresolvedarrayref = installer
::windows
::feature
::sort_feature
($modulesinproductlanguageresolvedarrayref);
1356 installer
::windows
::feature
::create_feature_table
($modulesinproductlanguageresolvedarrayref, $newidtdir, \
@setuplanguagesarray, $allvariableshashref);
1358 installer
::windows
::featurecomponent
::create_featurecomponent_table
($filesinproductlanguageresolvedarrayref, $registryitemsinproductlanguageresolvedarrayref, $newidtdir);
1360 installer
::windows
::media
::create_media_table
($filesinproductlanguageresolvedarrayref, $newidtdir, $allvariableshashref, $allupdatelastsequences, $allupdatediskids);
1362 installer
::windows
::font
::create_font_table
($filesinproductlanguageresolvedarrayref, $newidtdir);
1364 # Attention: The table "Shortcut.idt" contains language specific strings -> parameter: \@setuplanguagesarray !
1365 # Attention: Shortcuts (Folderitems) have icon files, that have to be copied into the Icon directory (last parameter)
1366 my @iconfilecollector = ();
1368 installer
::windows
::shortcut
::create_shortcut_table
($filesinproductlanguageresolvedarrayref, $linksinproductlanguageresolvedarrayref, $folderinproductlanguageresolvedarrayref, $folderitemsinproductlanguageresolvedarrayref, $directoriesforepmarrayref, $newidtdir, \
@setuplanguagesarray, $includepatharrayref, \
@iconfilecollector);
1370 installer
::windows
::inifile
::create_inifile_table
($inifiletableentries, $filesinproductlanguageresolvedarrayref, $newidtdir);
1372 installer
::windows
::icon
::create_icon_table
(\
@iconfilecollector, $newidtdir); # creating the icon table with all iconfiles used as shortcuts (FolderItems)
1374 installer
::windows
::createfolder
::create_createfolder_table
($directoriesforepmarrayref, $filesinproductlanguageresolvedarrayref, $newidtdir, $allvariableshashref);
1376 installer
::windows
::upgrade
::create_upgrade_table
($newidtdir, $allvariableshashref);
1378 installer
::windows
::msishortcutproperty
::create_msishortcutproperty_table
($folderitempropertiesinproductarrayref, $folderitemsinproductarrayref, $newidtdir);
1380 if (( ! $installer::globals
::languagepack
) && ( ! $installer::globals
::helppack
)) # the following tables not for language packs or help packs
1382 installer
::windows
::removefile
::create_removefile_table
($folderitemsinproductlanguageresolvedarrayref, $newidtdir);
1384 # Adding Assemblies into the tables MsiAssembly and MsiAssemblyName dynamically
1385 installer
::windows
::assembly
::create_msiassembly_table
($filesinproductlanguageresolvedarrayref, $newidtdir);
1386 installer
::windows
::assembly
::create_msiassemblyname_table
($filesinproductlanguageresolvedarrayref, $newidtdir);
1387 installer
::windows
::assembly
::add_assembly_condition_into_component_table
($filesinproductlanguageresolvedarrayref, $newidtdir);
1391 push(@installer::globals
::logfileinfo
, $infoline);
1393 # Localizing the language dependent idt files
1394 # For every language there will be a localized msi database
1395 # For multilingual installation sets, the differences of this
1396 # databases have to be stored in transforms.
1398 for ( my $m = 0; $m <= $#{\@setuplanguagesarray}; $m++ )
1400 my $onelanguage = ${\
@setuplanguagesarray}[$m];
1403 my @rtllanguages = ("ar", "fa", "he", "ug", "ky-CN");
1404 if ( grep {$_ eq $onelanguage} @rtllanguages ) { $is_rtl = 1; }
1406 my $languageidtdir = $idtdirbase . $installer::globals
::separator
. $onelanguage;
1407 if ( -d
$languageidtdir ) { installer
::systemactions
::remove_complete_directory
($languageidtdir, 1); }
1408 installer
::systemactions
::create_directory
($languageidtdir);
1410 # Copy the template idt files and the new created idt files into this language directory
1412 installer
::logger
::print_message
( "... copying idt files ...\n" );
1414 installer
::logger
::include_header_into_logfile
("Copying idt files to $languageidtdir:");
1416 installer
::windows
::idtglobal
::prepare_language_idt_directory
($languageidtdir, $newidtdir, $onelanguage, $filesinproductlanguageresolvedarrayref, \
@iconfilecollector, $binarytablefiles, $allvariableshashref);
1418 # Now all files are copied into a language specific directory
1419 # The template idt files can be translated
1421 installer
::logger
::print_message
( "... localizing idt files (language: $onelanguage) ...\n" );
1423 installer
::logger
::include_header_into_logfile
("Localizing idt files (Language: $onelanguage):");
1425 my @translationfiles = (); # all idt files, that need a translation
1426 push(@translationfiles, "ActionTe.idt");
1427 push(@translationfiles, "Control.idt");
1428 push(@translationfiles, "CustomAc.idt");
1429 push(@translationfiles, "Error.idt");
1430 push(@translationfiles, "LaunchCo.idt");
1431 push(@translationfiles, "RadioBut.idt");
1432 push(@translationfiles, "Property.idt");
1433 push(@translationfiles, "UIText.idt");
1438 foreach $oneidtfilename (@translationfiles)
1440 my $languagefilename = installer
::windows
::idtglobal
::get_languagefilename
($oneidtfilename, $installer::globals
::idtlanguagepath
);
1441 my $languagefile = installer
::files
::read_file
($languagefilename);
1443 $oneidtfilename = $languageidtdir . $installer::globals
::separator
. $oneidtfilename;
1444 $oneidtfile = installer
::files
::read_file
($oneidtfilename);
1446 # Now the substitution can start
1447 installer
::windows
::idtglobal
::translate_idtfile
($oneidtfile, $languagefile, $onelanguage);
1449 installer
::files
::save_file
($oneidtfilename, $oneidtfile);
1451 $infoline = "Translated idt file: $oneidtfilename into language $onelanguage\n";
1452 push(@installer::globals
::logfileinfo
, $infoline);
1453 $infoline = "Used languagefile: $languagefilename\n";
1454 push(@installer::globals
::logfileinfo
, $infoline);
1457 # setting bidi attributes, if required
1458 if ( $is_rtl ) { installer
::windows
::idtglobal
::setbidiattributes
($languageidtdir, $onelanguage); }
1460 # setting the condition, that at least one module is selected
1461 installer
::windows
::idtglobal
::set_multilanguageonly_condition
($languageidtdir);
1463 # include the license text into the table Control.idt
1465 if ( ! $allvariableshashref->{'HIDELICENSEDIALOG'} )
1467 my $licensefilesource = installer
::windows
::idtglobal
::get_rtflicensefilesource
($onelanguage, $includepatharrayref_lang);
1468 my $licensefile = installer
::files
::read_file
($licensefilesource);
1469 installer
::scpzipfiles
::replace_all_ziplistvariables_in_rtffile
($licensefile, $allvariableshashref);
1470 my $controltablename = $languageidtdir . $installer::globals
::separator
. "Control.idt";
1471 my $controltable = installer
::files
::read_file
($controltablename);
1472 installer
::windows
::idtglobal
::add_licensefile_to_database
($licensefile, $controltable);
1473 installer
::files
::save_file
($controltablename, $controltable);
1475 $infoline = "Added licensefile $licensefilesource into database $controltablename\n";
1476 push(@installer::globals
::logfileinfo
, $infoline);
1479 # include a component into environment table if required
1481 installer
::windows
::component
::set_component_in_environment_table
($languageidtdir, $filesinproductlanguageresolvedarrayref);
1483 # include the ProductCode and the UpgradeCode from codes-file into the Property.idt
1485 installer
::windows
::property
::set_codes_in_property_table
($languageidtdir);
1487 # the language specific properties can now be set in the Property.idt
1489 installer
::windows
::property
::update_property_table
($languageidtdir, $onelanguage, $allvariableshashref, $languagestringref);
1491 # replacing variables in RegLocat.idt
1493 installer
::windows
::msiglobal
::update_reglocat_table
($languageidtdir, $allvariableshashref);
1495 # replacing variables in RemoveRe.idt (RemoveRegistry.idt)
1497 installer
::windows
::msiglobal
::update_removere_table
($languageidtdir);
1499 # adding language specific properties for multilingual installation sets
1501 installer
::windows
::property
::set_languages_in_property_table
($languageidtdir, \
@setuplanguagesarray);
1503 # adding settings into CheckBox.idt
1504 installer
::windows
::property
::update_checkbox_table
($languageidtdir, $allvariableshashref);
1506 # adding the files from the binary directory into the binary table
1507 installer
::windows
::binary
::update_binary_table
($languageidtdir, $filesinproductlanguageresolvedarrayref, $binarytablefiles);
1509 # Adding Windows Installer CustomActions
1511 installer
::windows
::idtglobal
::addcustomactions
($languageidtdir, $windowscustomactionsarrayref, $filesinproductlanguageresolvedarrayref);
1513 # Then the language specific msi database can be created
1515 if ( $installer::globals
::iswin
|| $installer::globals
::packageformat
eq 'msi' )
1517 my $msidatabasename = installer
::windows
::msiglobal
::get_msidatabasename
($allvariableshashref, $onelanguage);
1518 my $msifilename = $languageidtdir . $installer::globals
::separator
. $msidatabasename;
1520 installer
::logger
::print_message
( "... creating msi database (language $onelanguage) ... \n" );
1522 installer
::windows
::msiglobal
::set_uuid_into_component_table
($languageidtdir, $allvariableshashref); # setting new GUID for the components using the tool uuidgen.exe
1523 installer
::windows
::msiglobal
::prepare_64bit_database
($languageidtdir, $allvariableshashref); # making last 64 bit changes
1524 installer
::windows
::msiglobal
::create_msi_database
($languageidtdir ,$msifilename);
1526 # validating the database # ToDo
1528 installer
::windows
::msiglobal
::write_summary_into_msi_database
($msifilename, $onelanguage, $languagefile, $allvariableshashref);
1530 # copy msi database into installation directory
1532 my $msidestfilename = $installdir . $installer::globals
::separator
. $msidatabasename;
1533 installer
::systemactions
::copy_one_file
($msifilename, $msidestfilename);
1537 # Creating transforms, if the installation set has more than one language
1538 # renaming the msi database
1540 my $defaultlanguage = installer
::languages
::get_default_language
(\
@setuplanguagesarray);
1542 if ( $installer::globals
::iswin
|| $installer::globals
::packageformat
eq 'msi' )
1544 if ( $#{\@setuplanguagesarray} > 0 )
1546 installer
::windows
::msiglobal
::create_transforms
(\
@setuplanguagesarray, $defaultlanguage, $installdir, $allvariableshashref);
1548 # if there are Merge Modules, they have to be integrated now
1549 my $mergedbname = installer
::windows
::msiglobal
::get_msidatabasename
($allvariableshashref, $defaultlanguage);
1550 my $mergeidtdir = $idtdirbase . $installer::globals
::separator
. "mergemodules";
1551 if ( -d
$mergeidtdir ) { installer
::systemactions
::remove_complete_directory
($mergeidtdir, 1); }
1552 installer
::systemactions
::create_directory
($mergeidtdir);
1553 installer
::systemactions
::copy_one_file
($installdir . $installer::globals
::separator
. $mergedbname, $mergeidtdir . $installer::globals
::separator
. $mergedbname);
1554 $filesinproductlanguageresolvedarrayref = installer
::windows
::mergemodule
::merge_mergemodules_into_msi_database
($mergemodulesarrayref, $filesinproductlanguageresolvedarrayref, $mergeidtdir . $installer::globals
::separator
. $mergedbname, $languagestringref, $allvariableshashref, $includepatharrayref, $allupdatesequences, $allupdatelastsequences, $allupdatediskids);
1555 installer
::systemactions
::copy_one_file
($mergeidtdir . $installer::globals
::separator
. $mergedbname, $installdir . $installer::globals
::separator
. $mergedbname);
1557 installer
::windows
::msiglobal
::rename_msi_database_in_installset
($defaultlanguage, $installdir, $allvariableshashref);
1560 # Analyzing the ScpActions and copying the files into the installation set
1562 installer
::logger
::print_message
( "... copying files into installation set ...\n" );
1564 installer
::worker
::put_scpactions_into_installset
($installdir);
1566 # ... copying MergeModules into installation set
1568 if ( ! $installer::globals
::fix_number_of_cab_files
) { installer
::windows
::msiglobal
::copy_merge_modules_into_installset
($installdir); }
1570 installer
::logger
::print_message
( "... creating ddf files ...\n" );
1572 # Creating all needed ddf files and generating a list
1573 # for the package process containing all system calls
1575 my $ddfdir = installer
::systemactions
::create_directories
("ddf", $languagestringref);
1577 my $packjobref = installer
::windows
::msiglobal
::generate_cab_file_list
($filesinproductlanguageresolvedarrayref, $installdir, $ddfdir, $allvariableshashref);
1579 # Update and patch reasons the pack order needs to be saved
1580 installer
::windows
::msiglobal
::save_packorder
();
1583 push(@installer::globals
::logfileinfo
, $infoline);
1585 ####################################
1587 # before cab files are packed
1588 ####################################
1590 installer
::logger
::print_message
( "... creating log file $installer::globals::logfilename \n" );
1592 installer
::files
::save_file
($loggingdir . $installer::globals
::logfilename
, \
@installer::globals
::logfileinfo
);
1594 #######################################################
1595 # Finally really create the installation packages,
1596 # Only for Windows and only on a windows platform.
1597 #######################################################
1599 if ( $installer::globals
::iswin
|| $installer::globals
::packageformat
eq 'msi' )
1601 installer
::logger
::print_message
( "... packaging installation set ... \n" );
1602 installer
::windows
::msiglobal
::execute_packaging
($packjobref, $loggingdir, $allvariableshashref);
1603 if ( $installer::globals
::include_cab_in_msi
) { installer
::windows
::msiglobal
::include_cabs_into_msi
($installdir); }
1605 ####################################
1607 # after cab files are packed
1608 ####################################
1610 installer
::logger
::print_message
( "\n... creating log file $installer::globals::logfilename \n" );
1611 installer
::files
::save_file
($loggingdir . $installer::globals
::logfilename
, \
@installer::globals
::logfileinfo
);
1614 #######################################################
1615 # Analyzing the log file
1616 #######################################################
1619 my $finalinstalldir = "";
1620 installer
::worker
::clean_output_tree
(); # removing directories created in the output tree
1621 ($is_success, $finalinstalldir) = installer
::worker
::analyze_and_save_logfile
($loggingdir, $installdir, $installlogdir, $allsettingsarrayref, $languagestringref, $current_install_number);
1623 #######################################################
1624 # Creating Windows msp patches
1625 #######################################################
1627 if (( $is_success ) && ( $installer::globals
::updatedatabase
) && ( $allvariableshashref->{'CREATE_MSP_INSTALLSET'} ))
1630 # Temp path for administrative installations: $installer::globals::temppath
1631 # Path of new installation set: $finalinstalldir
1632 # Path of old installation set: $installer::globals::updatedatabasepath
1633 my $mspdir = installer
::windows
::msp
::create_msp_patch
($finalinstalldir, $includepatharrayref, $allvariableshashref, $languagestringref, $languagesarrayref, $filesinproductlanguageresolvedarrayref);
1634 ($is_success, $finalinstalldir) = installer
::worker
::analyze_and_save_logfile
($loggingdir, $mspdir, $installlogdir, $allsettingsarrayref, $languagestringref, $current_install_number);
1635 installer
::worker
::clean_output_tree
(); # removing directories created in the output tree
1638 #######################################################
1639 # Creating download installation set
1640 #######################################################
1642 my $create_download = 0;
1643 my $downloadname = installer
::ziplist
::getinfofromziplist
($allsettingsarrayref, "downloadname");
1644 if ( $installer::globals
::languagepack
) { $downloadname = installer
::ziplist
::getinfofromziplist
($allsettingsarrayref, "langpackdownloadname"); }
1645 if ( $installer::globals
::helppack
) { $downloadname = installer
::ziplist
::getinfofromziplist
($allsettingsarrayref, "helppackdownloadname"); }
1647 if ( $$downloadname ne "" ) { $create_download = 1; }
1648 if ( $installer::globals
::iswindowsbuild
)
1650 $create_download = 0;
1651 if ( $allvariableshashref->{'OOODOWNLOADNAME'} ) { $$downloadname = installer
::download
::set_download_filename
($languagestringref, $allvariableshashref); }
1652 else { $$downloadname = installer
::download
::resolve_variables_in_downloadname
($allvariableshashref, $$downloadname, $languagestringref); }
1653 installer
::systemactions
::rename_one_file
( $finalinstalldir . $installer::globals
::separator
. $installer::globals
::shortmsidatabasename
, $finalinstalldir . $installer::globals
::separator
. $$downloadname . ".msi" );
1654 if ( defined($ENV{'WINDOWS_BUILD_SIGNING'}) && ($ENV{'WINDOWS_BUILD_SIGNING'} eq 'TRUE') && ( $allvariableshashref->{'CREATE_MSP_INSTALLSET'} eq '0'))
1656 my $systemcall = "signtool.exe sign ";
1657 if ( defined($ENV{'PFXFILE'}) ) { $systemcall .= "-f $ENV{'PFXFILE'} "; }
1658 if ( defined($ENV{'PFXPASSWORD'}) ) { $systemcall .= "-p $ENV{'PFXPASSWORD'} "; }
1659 if ( defined($ENV{'TIMESTAMPURL'}) ) { $systemcall .= "-t $ENV{'TIMESTAMPURL'} "; } else { $systemcall .= "-t http://timestamp.globalsign.com/scripts/timestamp.dll "; }
1660 $systemcall .= "-d \"" . installer
::download
::get_downloadname_productname
($allvariableshashref) . " " . installer
::download
::get_download_version
($allvariableshashref) . " " . installer
::download
::get_downloadname_language
($languagestringref) . " " . installer
::download
::get_download_functionality
($allvariableshashref) . "\" ";
1661 $systemcall .= $finalinstalldir . $installer::globals
::separator
. $$downloadname . ".msi";
1662 installer
::logger
::print_message
( "... code signing and timestamping with signtool.exe ...\n" );
1664 my $returnvalue = system($systemcall);
1666 # do not print password to log
1667 if ( defined($ENV{'PFXPASSWORD'}) ) { $systemcall =~ s/$ENV{'PFXPASSWORD'}/********/; }
1668 my $infoline = "Systemcall: $systemcall\n";
1669 push( @installer::globals
::logfileinfo
, $infoline);
1673 $infoline = "ERROR: Could not execute \"$systemcall\"!\n";
1674 push( @installer::globals
::logfileinfo
, $infoline);
1678 $infoline = "Success: Executed \"$systemcall\" successfully!\n";
1679 push( @installer::globals
::logfileinfo
, $infoline);
1683 if (( $is_success ) && ( $create_download ) && ( $ENV{'ENABLE_DOWNLOADSETS'} ))
1685 my $downloaddir = installer
::download
::create_download_sets
($finalinstalldir, $includepatharrayref, $allvariableshashref, $$downloadname, $languagestringref, $languagesarrayref);
1686 installer
::worker
::analyze_and_save_logfile
($loggingdir, $downloaddir, $installlogdir, $allsettingsarrayref, $languagestringref, $current_install_number);
1689 } # end of "if ( $installer::globals::iswindowsbuild )"
1691 # saving file_info file for later analysis
1692 my $speciallogfilename = $loggingdir . "fileinfo_" . $installer::globals
::product
. "\.log";
1693 open my $log_fh, '>', $speciallogfilename
1694 or die "Could not open $speciallogfilename for writing: $!";
1695 print $log_fh Dumper
($filesinproductlanguageresolvedarrayref);
1697 } # end of iteration for one language group
1700 sub cleanup_on_error
{
1701 my $message = shift;
1703 # If an installation set is currently created, the directory name
1704 # is saved in $installer::globals::saveinstalldir. If this
1705 # directory name contains "_inprogress", it has to be renamed to
1707 if ( $installer::globals
::saveinstalldir
=~ /_inprogress/ ) {
1708 installer
::systemactions
::rename_string_in_directory
($installer::globals
::saveinstalldir
, "_inprogress", "_witherror");
1711 # Removing directories created in the output tree.
1712 installer
::worker
::clean_output_tree
();
1714 $installer::globals
::logfilename
= $installer::globals
::exitlog
. $installer::globals
::logfilename
;
1716 my @log = (@installer::globals
::logfileinfo
, @installer::globals
::globallogfileinfo
);
1718 push(@log, "\n" . '*' x
65 . "\n");
1719 push(@log, $message);
1720 push(@log, '*' x
65 . "\n");
1722 installer
::files
::save_file
($installer::globals
::logfilename
, \
@log);
1724 print("ERROR, saved logfile $installer::globals::logfilename is:\n");
1725 open(my $log, "<", $installer::globals
::logfilename
);
1726 print ": $_" while (<$log>);