xref: /trunk/main/solenv/bin/deliver.pl (revision 7e90fac2)
1:
2eval 'exec perl -wS $0 ${1+"$@"}'
3    if 0;
4#**************************************************************
5#
6#  Licensed to the Apache Software Foundation (ASF) under one
7#  or more contributor license agreements.  See the NOTICE file
8#  distributed with this work for additional information
9#  regarding copyright ownership.  The ASF licenses this file
10#  to you under the Apache License, Version 2.0 (the
11#  "License"); you may not use this file except in compliance
12#  with the License.  You may obtain a copy of the License at
13#
14#    http://www.apache.org/licenses/LICENSE-2.0
15#
16#  Unless required by applicable law or agreed to in writing,
17#  software distributed under the License is distributed on an
18#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19#  KIND, either express or implied.  See the License for the
20#  specific language governing permissions and limitations
21#  under the License.
22#
23#**************************************************************
24
25
26
27#
28# deliver.pl - copy from module output tree to solver
29#
30
31use Cwd;
32use File::Basename;
33use File::Copy;
34use File::DosGlob 'glob';
35use File::Path;
36use File::Spec;
37
38#### script id #####
39
40( $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/;
41
42$id_str = ' $Revision: 275594 $ ';
43$id_str =~ /Revision:\s+(\S+)\s+\$/
44  ? ($script_rev = $1) : ($script_rev = "-");
45
46
47#### globals ####
48
49### valid actions ###
50# if you add a action 'foo', than add 'foo' to this list and
51# implement 'do_foo()' in the implemented actions area
52@action_list        =   (           # valid actions
53                        'copy',
54                        'dos',
55                        'addincpath',
56                        'linklib',
57                        'mkdir',
58                        'symlink',
59                        'touch'
60                        );
61
62# copy filter: files matching these patterns won't be copied by
63# the copy action
64@copy_filter_patterns = (
65                        );
66
67$strip              = '';
68$is_debug           = 0;
69
70$error              = 0;
71$module             = 0;            # module name
72$repository         = 0;            # parent directory of this module
73$base_dir           = 0;            # path to module base directory
74$dlst_file          = 0;            # path to d.lst
75$ilst_ext           = 'ilst';       # extension of image lists
76$umask              = 22;           # default file/directory creation mask
77$dest               = 0;            # optional destination path
78$common_build       = 0;            # do we have common trees?
79$common_dest        = 0;            # common tree on solver
80
81@action_data        = ();           # LoL with all action data
82@macros             = ();           # d.lst macros
83@addincpath_list    = ();           # files which have to be filtered through addincpath
84@dirlist            = ();           # List of 'mkdir' targets
85@zip_list           = ();           # files which have to be zipped
86@common_zip_list    = ();           # common files which have to be zipped
87@log_list           = ();           # LoL for logging all copy and link actions
88@common_log_list    = ();           # LoL for logging all copy and link actions in common_dest
89$logfiledate        = 0;            # Make log file as old as newest delivered file
90$commonlogfiledate  = 0;            # Make log file as old as newest delivered file
91
92$files_copied       = 0;            # statistics
93$files_unchanged    = 0;            # statistics
94
95$opt_force          = 0;            # option force copy
96$opt_check          = 0;            # do actually execute any action
97$opt_zip            = 0;            # create an additional zip file
98$opt_silent         = 0;            # be silent, only report errors
99$opt_verbose        = 0;            # be verbose (former default behaviour)
100$opt_log            = 1;            # create an additional log file
101$opt_link           = 0;            # hard link files into the solver to save disk space
102$opt_deloutput      = 0;            # delete the output tree for the project once successfully delivered
103$opt_checkdlst      = 0;
104$delete_common      = 1;            # for "-delete": if defined delete files from common tree also
105
106if ($^O ne 'cygwin') {              # iz59477 - cygwin needes a dot "." at the end of filenames to disable
107    $maybedot     = '';             # some .exe transformation magic.
108} else {
109    my $cygvernum = `uname -r`;
110    my @cygvernum = split( /\./, $cygvernum);
111    $cygvernum = shift @cygvernum;
112    $cygvernum .= shift @cygvernum;
113    if ( $cygvernum < 17 ) {
114        $maybedot     = '.';
115    } else {
116        $maybedot     = '';               # no longer works with cygwin 1.7. other magic below.
117    }
118}
119
120($gui		= lc($ENV{GUI})) 		|| die "Can't determine 'GUI'. Please set environment.\n";
121$tempcounter        = 0;
122
123# zip is default for RE master builds
124$opt_zip = 1 if ( defined($ENV{DELIVER_TO_ZIP}) && uc($ENV{DELIVER_TO_ZIP}) eq 'TRUE' && ! defined($ENV{CWS_WORK_STAMP}));
125
126$has_symlinks       = 0;            # system supports symlinks
127
128for (@action_list) {
129    $action_hash{$_}++;
130}
131
132# trap normal signals (HUP, INT, PIPE, TERM)
133# for clean up on unexpected termination
134use sigtrap 'handler' => \&cleanup_and_die, 'normal-signals';
135
136#### main ####
137
138parse_options();
139
140print "$script_name -- version: $script_rev\n" if !$opt_silent;
141
142if ( ! $opt_delete ) {
143    if ( $ENV{GUI} eq 'WNT' ) {
144        if ($ENV{COM} eq 'GCC') {
145            initialize_strip() ;
146        };
147    } else {
148        initialize_strip();
149    }
150}
151
152init_globals();
153push_default_actions();
154parse_dlst();
155check_dlst() if $opt_checkdlst;
156walk_action_data();
157walk_addincpath_list();
158write_log() if $opt_log;
159zip_files() if $opt_zip;
160cleanup() if $opt_delete;
161delete_output() if $opt_deloutput;
162print_stats();
163
164exit($error);
165
166#### implemented actions #####
167
168sub do_copy
169{
170    # We need to copy two times:
171    # from the platform dependent output tree
172    # and from the common output tree
173    my ($dependent, $common, $from, $to, $file_list);
174    my $line = shift;
175    my $touch = 0;
176
177    $dependent = expand_macros($line);
178    ($from, $to) = split(' ', $dependent);
179    print "copy dependent: from: $from, to: $to\n" if $is_debug;
180    glob_and_copy($from, $to, $touch);
181
182    if ($delete_common && $common_build && ( $line !~ /%COMMON_OUTDIR%/ ) ) {
183        $line =~ s/%__SRC%/%COMMON_OUTDIR%/ig;
184        if ( $line =~ /%COMMON_OUTDIR%/ ) {
185            $line =~ s/%_DEST%/%COMMON_DEST%/ig;
186            $common = expand_macros($line);
187            ($from, $to) = split(' ', $common);
188            print "copy common: from: $from, to: $to\n" if $is_debug;
189            glob_and_copy($from, $to, $touch);
190        }
191    }
192}
193
194sub do_dos
195{
196    my $line = shift;
197
198    my $command = expand_macros($line);
199    if ( $opt_check ) {
200        print "DOS: $command\n";
201    }
202    else {
203        # HACK: remove MACOSX stuff which is wrongly labled with dos
204        # better: fix broken d.lst
205        return if ( $command =~ /MACOSX/ );
206        $command =~ s#/#\\#g if $^O eq 'MSWin32';
207        system($command);
208    }
209}
210
211sub do_addincpath
212{
213    # just collect all addincpath files, actual filtering is done later
214    my $line = shift;
215    my ($from, $to);
216    my @globbed_files = ();
217
218    $line = expand_macros($line);
219    ($from, $to) = split(' ', $line);
220
221    push( @addincpath_list, @{glob_line($from, $to)});
222}
223
224sub do_linklib
225{
226    my ($lib_base, $lib_major,$from_dir, $to_dir);
227    my $lib = shift;
228    my @globbed_files = ();
229    my %globbed_hash = ();
230
231    print "linklib: $lib\n" if $is_debug;
232    print "has symlinks\n" if ( $has_symlinks && $is_debug );
233
234    return unless $has_symlinks;
235
236    $from_dir = expand_macros('../%__SRC%/lib');
237    $to_dir = expand_macros('%_DEST%/lib%_EXT%');
238
239    @globbed_files = glob("$from_dir/$lib");
240
241    if ( $#globbed_files == -1 ) {
242       return;
243    }
244
245    foreach $lib (@globbed_files) {
246        $lib = basename($lib);
247        if ( $lib =~ /^(lib\S+(\.so|\.dylib))\.(\d+)\.(\d+)(\.(\d+))?$/
248             || $lib =~ /^(lib\S+(\.so|\.dylib))\.(\d+)$/ )
249        {
250           push(@{$globbed_hash{$1}}, $lib);
251        }
252        else {
253            print_warning("invalid library name: $lib");
254        }
255    }
256
257    foreach $lib_base ( sort keys %globbed_hash ) {
258        $lib = get_latest_patchlevel(@{$globbed_hash{$lib_base}});
259
260        if ( $lib =~ /^(lib\S+(\.so|\.dylib))\.(\d+)\.(\d+)(\.(\d+))?$/ )
261        {
262            $lib_major = "$lib_base.$3";
263            $long = 1;
264        }
265        else
266        {
267            # $lib =~ /^(lib[\w-]+(\.so|\.dylib))\.(\d+)$/;
268            $long = 0;
269        }
270
271        if ( $opt_check ) {
272            if ( $opt_delete ) {
273                print "REMOVE: $to_dir/$lib_major\n" if $long;
274                print "REMOVE: $to_dir/$lib_base\n";
275            }
276            else {
277                print "LINKLIB: $to_dir/$lib -> $to_dir/$lib_major\n" if $long;
278                print "LINKLIB: $to_dir/$lib -> $to_dir/$lib_base\n";
279            }
280        }
281        else {
282            if ( $opt_delete ) {
283                print "REMOVE: $to_dir/$lib_major\n" if ($long && $opt_verbose);
284                print "REMOVE: $to_dir/$lib_base\n" if $opt_verbose;
285                unlink "$to_dir/$lib_major" if $long;
286                unlink "$to_dir/$lib_base";
287                if ( $opt_zip ) {
288                    push_on_ziplist("$to_dir/$lib_major") if $long;
289                    push_on_ziplist("$to_dir/$lib_base");
290                }
291                return;
292            }
293            my $symlib;
294            my @symlibs;
295            if ($long)
296            {
297                @symlibs = ("$to_dir/$lib_major", "$to_dir/$lib_base");
298            }
299            else
300            {
301                @symlibs = ("$to_dir/$lib_base");
302            }
303            # remove old symlinks
304            unlink(@symlibs);
305            foreach $symlib (@symlibs) {
306                print "LINKLIB: $lib -> $symlib\n" if $opt_verbose;
307                if ( !symlink("$lib", "$symlib") ) {
308                    print_error("can't symlink $lib -> $symlib: $!",0);
309                }
310                else {
311                    push_on_ziplist($symlib) if $opt_zip;
312                    push_on_loglist("LINK", "$lib", "$symlib") if $opt_log;
313                }
314            }
315        }
316    }
317}
318
319sub do_mkdir
320{
321    my $path = expand_macros(shift);
322    # strip whitespaces from path name
323    $path =~ s/\s$//;
324    if (( ! $opt_delete ) && ( ! -d $path )) {
325        if ( $opt_check ) {
326            print "MKDIR: $path\n";
327        } else {
328            mkpath($path, 0, 0777-$umask);
329            if ( ! -d $path ) {
330                print_error("mkdir: could not create directory '$path'", 0);
331            }
332        }
333    }
334}
335
336sub do_symlink
337{
338    my $line = shift;
339
340    $line = expand_macros($line);
341    ($from, $to) = split(' ',$line);
342    my $fullfrom = $from;
343    if ( dirname($from) eq dirname($to) ) {
344        $from = basename($from);
345    }
346    elsif ( dirname($from) eq '.' ) {
347        # nothing to do
348    }
349    else {
350        print_error("symlink: link must be in the same directory as file",0);
351        return 0;
352    }
353
354    print "symlink: $from, to: $to\n" if $is_debug;
355
356    return unless $has_symlinks;
357
358    if ( $opt_check ) {
359        if ( $opt_delete ) {
360            print "REMOVE: $to\n";
361        }
362        else {
363            print "SYMLINK $from -> $to\n";
364        }
365    }
366    else {
367        print "REMOVE: $to\n" if $opt_verbose;
368        unlink $to;
369        if ( $opt_delete ) {
370            push_on_ziplist($to) if $opt_zip;
371            return;
372        }
373        return unless -e $fullfrom;
374        print "SYMLIB: $from -> $to\n" if $opt_verbose;
375        if ( !symlink("$from", "$to") ) {
376            print_error("can't symlink $from -> $to: $!",0);
377        }
378        else {
379            push_on_ziplist($to) if $opt_zip;
380            push_on_loglist("LINK", "$from", "$to") if $opt_log;
381        }
382    }
383}
384
385sub do_touch
386{
387    my ($from, $to);
388    my $line = shift;
389    my $touch = 1;
390
391    $line = expand_macros($line);
392    ($from, $to) = split(' ', $line);
393    print "touch: $from, to: $to\n" if $is_debug;
394    glob_and_copy($from, $to, $touch);
395}
396
397#### subroutines #####
398
399sub parse_options
400{
401    my $arg;
402    my $dontdeletecommon = 0;
403    $opt_silent = 1 if ( defined $ENV{VERBOSE} && $ENV{VERBOSE} eq 'FALSE');
404    $opt_verbose = 1 if ( defined $ENV{VERBOSE} && $ENV{VERBOSE} eq 'TRUE');
405    while ( $arg = shift @ARGV ) {
406        $arg =~ /^-force$/      and $opt_force  = 1  and next;
407        $arg =~ /^-check$/      and $opt_check  = 1  and $opt_verbose = 1 and next;
408        $arg =~ /^-quiet$/      and $opt_silent = 1  and next;
409        $arg =~ /^-verbose$/    and $opt_verbose = 1 and next;
410        $arg =~ /^-zip$/        and $opt_zip    = 1  and next;
411        $arg =~ /^-delete$/     and $opt_delete = 1  and next;
412        $arg =~ /^-dontdeletecommon$/ and $dontdeletecommon = 1 and next;
413        $arg =~ /^-help$/       and $opt_help   = 1  and $arg = '';
414        $arg =~ /^-link$/       and $ENV{GUI} ne 'WNT' and $opt_link = 1 and next;
415        $arg =~ /^-deloutput$/  and $opt_deloutput = 1 and next;
416        $arg =~ /^-debug$/      and $is_debug   = 1  and next;
417        $arg =~ /^-checkdlst$/  and $opt_checkdlst = 1 and next;
418        print_error("invalid option $arg") if ( $arg =~ /^-/ );
419        if ( $arg =~ /^-/ || $opt_help || $#ARGV > -1 ) {
420            usage(1);
421        }
422        $dest = $arg;
423    }
424    # $dest and $opt_zip or $opt_delete are mutually exclusive
425    if ( $dest and ($opt_zip || $opt_delete) ) {
426        usage(1);
427    }
428    # $opt_silent and $opt_check or $opt_verbose are mutually exclusive
429    if ( ($opt_check or $opt_verbose) and $opt_silent ) {
430        print STDERR "Error on command line: options '-check' and '-quiet' are mutually exclusive.\n";
431        usage(1);
432    }
433    if ($dontdeletecommon) {
434        if (!$opt_delete) {
435            usage(1);
436        }
437        $delete_common = 0;
438    };
439    # $opt_delete implies $opt_force
440    $opt_force = 1 if $opt_delete;
441}
442
443sub init_globals
444{
445    my $ext;
446    ($module, $repository, $base_dir, $dlst_file) =  get_base();
447
448    # for CWS:
449    $module =~ s/\.lnk$//;
450
451    print "Module=$module, Base_Dir=$base_dir, d.lst=$dlst_file\n" if $is_debug;
452
453    $umask = umask();
454    if ( !defined($umask) ) {
455        $umask = 22;
456    }
457
458    my $build_sosl    = $ENV{'BUILD_SOSL'};
459    my $common_outdir = $ENV{'COMMON_OUTDIR'};
460    my $inpath        = $ENV{'INPATH'};
461    my $solarversion  = $ENV{'SOLARVERSION'};
462    my $updater       = $ENV{'UPDATER'};
463    my $updminor      = $ENV{'UPDMINOR'};
464    my $updminorext   = $ENV{'UPDMINOREXT'};
465    my $work_stamp    = $ENV{'WORK_STAMP'};
466
467    # special security check for release engineers
468    if ( defined($updater) && !defined($build_sosl) && !$opt_force) {
469        my $path = getcwd();
470        if ( $path !~ /$work_stamp/io ) {
471            print_error("can't deliver from local directory to SOLARVERSION");
472            print STDERR "\nDANGER! Release Engineer:\n";
473            print STDERR "do you really want to deliver from $path to SOLARVERSION?\n";
474            print STDERR "If so, please use the -force switch\n\n";
475            exit(7);
476        }
477    }
478
479    # do we have a valid environment?
480    if ( !defined($inpath) ) {
481            print_error("no environment", 0);
482            exit(3);
483    }
484
485    $ext = "";
486    if ( ($updminor) && !$dest ) {
487        $ext = "$updminorext";
488    }
489
490    # Do we have common trees?
491    if ( defined($ENV{'common_build'}) && $ENV{'common_build'} eq 'TRUE' ) {
492        $common_build = 1;
493        if ((defined $common_outdir) && ($common_outdir ne "")) {
494            $common_outdir = $common_outdir . ".pro" if $inpath =~ /\.pro$/;
495            if ( $dest ) {
496                $common_dest = $dest;
497            } else {
498                $common_dest = "$solarversion/$common_outdir";
499                $dest = "$solarversion/$inpath";
500            }
501        } else {
502            print_error("common_build defined without common_outdir", 0);
503            exit(6);
504        }
505    } else {
506        $common_outdir = $inpath;
507        $dest = "$solarversion/$inpath" if ( !$dest );
508        $common_dest = $dest;
509    }
510    $dest =~ s#\\#/#g;
511    $common_dest =~ s#\\#/#g;
512
513    # the following macros are obsolete, will be flagged as error
514    # %__WORKSTAMP%
515    # %GUIBASE%
516    # %SDK%
517    # %SOLARVER%
518    # %__OFFENV%
519    # %DLLSUFFIX%'
520    # %OUTPATH%
521    # %L10N_FRAMEWORK%
522    # %UPD%
523
524    # valid macros
525    @macros = (
526                [ '%__PRJROOT%',        $base_dir       ],
527                [ '%__SRC%',            $inpath         ],
528                [ '%_DEST%',            $dest           ],
529                [ '%_EXT%',             $ext            ],
530                [ '%COMMON_OUTDIR%',    $common_outdir  ],
531                [ '%COMMON_DEST%',      $common_dest    ],
532                [ '%GUI%',              $gui            ]
533              );
534
535    # find out if the system supports symlinks
536    $has_symlinks = eval { symlink("",""); 1 };
537}
538
539sub get_base
540{
541    # a module base dir contains a subdir 'prj'
542    # which in turn contains a file 'd.lst'
543    my (@field, $repo, $base, $dlst);
544    my $path = getcwd();
545
546    @field = split(/\//, $path);
547
548    while ( $#field != -1 ) {
549        $base = join('/', @field);
550        $dlst = $base . '/prj/d.lst';
551        last if -e $dlst;
552        pop @field;
553    }
554
555    if ( $#field == -1 ) {
556        print_error("can't find d.lst");
557        exit(2);
558    }
559    else {
560        if ( defined $field[-2] ) {
561            $repo = $field[-2];
562        } else {
563            print_error("Internal error: cannot determine module's parent directory");
564        }
565        return ($field[-1], $repo, $base, $dlst);
566    }
567}
568
569sub parse_dlst
570{
571    my $line_cnt = 0;
572    open(DLST, "<$dlst_file") or die "can't open d.lst";
573    while(<DLST>) {
574        $line_cnt++;
575        tr/\r\n//d;
576        next if /^#/;
577        next if /^\s*$/;
578        if (!$delete_common && /%COMMON_DEST%/) {
579            # Just ignore all lines with %COMMON_DEST%
580            next;
581        };
582        if ( /^\s*(\w+?):\s+(.*)$/ ) {
583            if ( !exists $action_hash{$1} ) {
584                print_error("unknown action: \'$1\'", $line_cnt);
585                exit(4);
586            }
587            push(@action_data, [$1, $2]);
588        }
589        else {
590            if ( /^\s*%(COMMON)?_DEST%\\/ ) {
591                # only copy from source dir to solver, not from solver to solver
592                print_warning("illegal copy action, ignored: \'$_\'", $line_cnt);
593                next;
594            }
595            push(@action_data, ['copy', $_]);
596            # for each ressource file (.res) copy its image list (.ilst)
597            if ( /\.res\s/ ) {
598                my $imagelist = $_;
599                $imagelist =~ s/\.res/\.$ilst_ext/g;
600                $imagelist =~ s/\\bin%_EXT%\\/\\res%_EXT%\\img\\/;
601                push(@action_data, ['copy', $imagelist]);
602            }
603        }
604        # call expand_macros()just to find any undefined macros early
605        # real expansion is done later
606        expand_macros($_, $line_cnt);
607    }
608    close(DLST);
609}
610
611sub expand_macros
612{
613    # expand all macros and change backslashes to slashes
614    my $line        = shift;
615    my $line_cnt    = shift;
616    my $i;
617
618    for ($i=0; $i<=$#macros; $i++)  {
619        $line =~ s/$macros[$i][0]/$macros[$i][1]/gi
620    }
621    if ( $line =~ /(%\w+%)/ ) {
622        if ( $1 ne '%OS%' ) {   # %OS% looks like a macro but is not ...
623            print_error("unknown/obsolete macro: \'$1\'", $line_cnt);
624        }
625    }
626    $line =~ s#\\#/#g;
627    return $line;
628}
629
630sub walk_action_data
631{
632    # all actions have to be excuted relative to the prj directory
633    chdir("$base_dir/prj");
634    # dispatch depending on action type
635    for (my $i=0; $i <= $#action_data; $i++) {
636            &{"do_".$action_data[$i][0]}($action_data[$i][1]);
637            if ( $action_data[$i][0] eq 'mkdir' ) {
638                # fill array with (possibly) created directories in
639                # revers order for removal in 'cleanup'
640                unshift @dirlist, $action_data[$i][1];
641            }
642    }
643}
644
645sub glob_line
646{
647    my $from = shift;
648    my $to = shift;
649    my $to_dir = shift;
650    my $replace = 0;
651    my @globbed_files = ();
652
653    if ( ! ( $from && $to ) ) {
654        print_warning("Error in d.lst? source: '$from' destination: '$to'");
655        return \@globbed_files;
656    }
657
658    if ( $to =~ /[\*\?\[\]]/ ) {
659        my $to_fname;
660        ($to_fname, $to_dir) = fileparse($to);
661        $replace = 1;
662    }
663
664    if ( $from =~ /[\*\?\[\]]/ ) {
665        # globbing necessary, no renaming possible
666        my $file;
667        my @file_list = glob($from);
668
669        foreach $file ( @file_list ) {
670            next if ( -d $file); # we only copy files, not directories
671            my ($fname, $dir) = fileparse($file);
672            my $copy = ($replace) ? $to_dir . $fname : $to . '/' . $fname;
673            push(@globbed_files, [$file, $copy]);
674        }
675    }
676    else {
677        # no globbing but renaming possible
678        # #i89066#
679        if (-d $to && -f $from) {
680            my $filename = File::Basename::basename($from);
681            $to .= '/' if ($to !~ /[\\|\/]$/);
682            $to .= $filename;
683        };
684        push(@globbed_files, [$from, $to]);
685    }
686    if ( $opt_checkdlst ) {
687        my $outtree = expand_macros("%__SRC%");
688        my $commonouttree = expand_macros("%COMMON_OUTDIR%");
689        if (( $from !~ /\Q$outtree\E/ ) && ( $from !~ /\Q$commonouttree\E/ )) {
690            print_warning("'$from' does not match any file") if ( $#globbed_files == -1 );
691        }
692    }
693    return \@globbed_files;
694}
695
696
697sub glob_and_copy
698{
699    my $from = shift;
700    my $to = shift;
701    my $touch = shift;
702
703    my @copy_files = @{glob_line($from, $to)};
704
705    for (my $i = 0; $i <= $#copy_files; $i++) {
706        next if filter_out($copy_files[$i][0]); # apply copy filter
707        copy_if_newer($copy_files[$i][0], $copy_files[$i][1], $touch)
708                    ? $files_copied++ : $files_unchanged++;
709    }
710}
711
712sub is_unstripped {
713    my $file_name = shift;
714    my $nm_output;
715
716    if (-f $file_name.$maybedot) {
717        my $file_type = `file $file_name`;
718        # OS X file command doesn't know if a file is stripped or not
719        if (($file_type =~ /not stripped/o) || ($file_type =~ /Mach-O/o) ||
720            (($file_type =~ /PE/o) && ($ENV{GUI} eq 'WNT') &&
721             ($nm_output = `nm $file_name 2>&1`) && $nm_output &&
722             !($nm_output =~ /no symbols/i) && !($nm_output =~ /not recognized/i))) {
723            return '1' if ($file_name =~ /\.bin$/o);
724            return '1' if ($file_name =~ /\.so\.*/o);
725            return '1' if ($file_name =~ /\.dylib\.*/o);
726            return '1' if ($file_name =~ /\.com\.*/o);
727            return '1' if ($file_name =~ /\.dll\.*/o);
728            return '1' if ($file_name =~ /\.exe\.*/o);
729            return '1' if (basename($file_name) !~ /\./o);
730        }
731    };
732    return '';
733}
734
735sub initialize_strip {
736    if ((!defined $ENV{DISABLE_STRIP}) || ($ENV{DISABLE_STRIP} eq "")) {
737        $strip .= 'guw ' if ($^O eq 'cygwin');
738        $strip .= 'strip';
739	    $strip .= " -x" if ($ENV{OS} eq 'MACOSX');
740        $strip .= " -R '.comment' -s" if ($ENV{OS} eq 'LINUX');
741    };
742};
743
744sub is_jar {
745    my $file_name = shift;
746
747    if (-f $file_name && (( `file $file_name` ) =~ /Zip archive/o)) {
748        return '1' if ($file_name =~ /\.jar\.*/o);
749    };
750    return '';
751}
752
753sub execute_system {
754    my $command = shift;
755    if (system($command)) {
756        print_error("Failed to execute $command");
757        exit($?);
758    };
759};
760
761sub strip_target {
762    my $file = shift;
763    my $temp_file = shift;
764    $temp_file =~ s/\/{2,}/\//g;
765    my $rc = copy($file, $temp_file);
766    execute_system("$strip $temp_file");
767    return $rc;
768};
769
770sub copy_if_newer
771{
772    # return 0 if file is unchanged ( for whatever reason )
773    # return 1 if file has been copied
774    my $from = shift;
775    my $to = shift;
776    my $touch = shift;
777    my $from_stat_ref;
778    my $rc = 0;
779
780    print "testing $from, $to\n" if $is_debug;
781    push_on_ziplist($to) if $opt_zip;
782    push_on_loglist("COPY", "$from", "$to") if $opt_log;
783    return 0 unless ($from_stat_ref = is_newer($from, $to, $touch));
784
785    if ( $opt_delete ) {
786        print "REMOVE: $to\n" if $opt_verbose;
787        $rc = unlink($to) unless $opt_check;
788        return 1 if $opt_check;
789        return $rc;
790    }
791
792    if( !$opt_check && $opt_link ) {
793        # hard link if possible
794        if( link($from, $to) ){
795            print "LINK: $from -> $to\n" if $opt_verbose;
796            return 1;
797        }
798    }
799
800    if( $touch ) {
801       print "TOUCH: $from -> $to\n" if $opt_verbose;
802    }
803    else {
804       print "COPY: $from -> $to\n" if $opt_verbose;
805    }
806
807    return 1 if( $opt_check );
808
809    #
810    # copy to temporary file first and rename later
811    # to minimize the possibility for race conditions
812    local $temp_file = sprintf('%s.%d-%d', $to, $$, time());
813    $rc = '';
814    if (($strip ne '') && (defined $ENV{PROEXT}) && (is_unstripped($from))) {
815        $rc = strip_target($from, $temp_file);
816    } else {
817        $rc = copy($from, $temp_file);
818    };
819    if ( $rc) {
820        if ( is_newer($temp_file, $from, 0) ) {
821            $rc = utime($$from_stat_ref[9], $$from_stat_ref[9], $temp_file);
822            if ( !$rc ) {
823                print_warning("can't update temporary file modification time '$temp_file': $!\n
824                               Check file permissions of '$from'.",0);
825            }
826        }
827        fix_file_permissions($$from_stat_ref[2], $temp_file);
828        if ( $^O eq 'os2' )
829        {
830            $rc = unlink($to); # YD OS/2 can't rename if $to exists!
831        }
832        # Ugly hack: on windows file locking(?) sometimes prevents renaming.
833        # Until we've found and fixed the real reason try it repeatedly :-(
834        my $try = 0;
835        my $maxtries = 1;
836        $maxtries = 5 if ( $^O eq 'MSWin32' );
837        my $success = 0;
838        while ( $try < $maxtries && ! $success ) {
839            sleep $try;
840            $try ++;
841            $success = rename($temp_file, $to);
842            if ( $^O eq 'cygwin' && $to =~ /\.bin$/) {
843                # hack to survive automatically added .exe for executables renamed to
844                # *.bin - will break if there is intentionally a .bin _and_ .bin.exe file.
845                $success = rename( "$to.exe", $to ) if -f "$to.exe";
846            }
847        }
848        if ( $success ) {
849            # handle special packaging of *.dylib files for Mac OS X
850            if ( $^O eq 'darwin' )
851            {
852                system("macosx-create-bundle", "$to=$from.app") if ( -d "$from.app" );
853                system("ranlib", "$to" ) if ( $to =~ /\.a/ );
854            }
855            if ( $try > 1 ) {
856                print_warning("File '$to' temporarily locked. Dependency bug?");
857            }
858            return 1;
859        }
860        else {
861            print_error("can't rename temporary file to $to: $!",0);
862        }
863    }
864    else {
865        print_error("can't copy $from: $!",0);
866        my $destdir = dirname($to);
867        if ( ! -d $destdir ) {
868            print_error("directory '$destdir' does not exist", 0);
869        }
870    }
871    unlink($temp_file);
872    return 0;
873}
874
875sub is_newer
876{
877        # returns whole stat buffer if newer
878        my $from = shift;
879        my $to = shift;
880        my $touch = shift;
881        my (@from_stat, @to_stat);
882
883        @from_stat = stat($from.$maybedot);
884        if ( $opt_checkdlst ) {
885            my $outtree = expand_macros("%__SRC%");
886            my $commonouttree = expand_macros("%COMMON_OUTDIR%");
887            if ( $from !~ /$outtree/ ) {
888                if ( $from !~ /$commonouttree/ ) {
889                    print_warning("'$from' does not exist") unless -e _;
890                }
891            }
892        }
893        return 0 unless -f _;
894
895        if ( $touch ) {
896            $from_stat[9] = time();
897        }
898        # adjust timestamps to even seconds
899        # this is necessary since NT platforms have a
900        # 2s modified time granularity while the timestamps
901        # on Samba volumes have a 1s granularity
902
903        $from_stat[9]-- if $from_stat[9] % 2;
904
905        if ( $to =~ /^\Q$dest\E/ ) {
906            if ( $from_stat[9] > $logfiledate ) {
907                $logfiledate = $from_stat[9];
908            }
909        } elsif ( $common_build && ( $to =~ /^\Q$common_dest\E/ ) ) {
910            if ( $from_stat[9] > $commonlogfiledate ) {
911                $commonlogfiledate = $from_stat[9];
912            }
913        }
914
915        @to_stat = stat($to.$maybedot);
916        return \@from_stat unless -f _;
917
918        if ( $opt_force ) {
919            return \@from_stat;
920        }
921        else {
922            return ($from_stat[9] > $to_stat[9]) ? \@from_stat : 0;
923        }
924}
925
926sub filter_out
927{
928    my $file = shift;
929
930    foreach my $pattern ( @copy_filter_patterns ) {
931        if  ( $file =~ /$pattern/ ) {
932           print "filter out: $file\n" if $is_debug;
933           return 1;
934        }
935    }
936
937    return 0;
938}
939
940sub fix_file_permissions
941{
942    my $mode = shift;
943    my $file = shift;
944
945    if ( ($mode >> 6) % 2 == 1 ) {
946        $mode = 0777 & ~$umask;
947    }
948    else {
949        $mode = 0666 & ~$umask;
950    }
951    chmod($mode, $file);
952}
953
954sub get_latest_patchlevel
955{
956    # note: feed only well formed library names to this function
957    # of the form libfoo.so.x.y.z with x,y,z numbers
958
959    my @sorted_files = sort by_rev @_;
960    return $sorted_files[-1];
961
962    sub by_rev {
963    # comparison function for sorting
964        my (@field_a, @field_b, $i);
965
966        $a =~ /^(lib[\w-]+(\.so|\.dylib))\.(\d+)\.(\d+)\.(\d+)$/;
967        @field_a = ($3, $4, $5);
968        $b =~ /^(lib[\w-]+(\.so|\.dylib))\.(\d+)\.(\d+)\.(\d+)$/;
969        @field_b = ($3, $4, $5);
970
971        for ($i = 0; $i < 3; $i++)
972          {
973              if ( ($field_a[$i] < $field_b[$i]) ) {
974                  return -1;
975              }
976              if ( ($field_a[$i] > $field_b[$i]) ) {
977                  return 1;
978              }
979          }
980
981        # can't happen
982        return 0;
983    }
984
985}
986
987sub push_default_actions
988{
989    # any default action (that is an action which must be done even without
990    # a corresponding d.lst entry) should be pushed here on the
991    # @action_data list.
992    my $subdir;
993    my @subdirs = (
994                    'bin',
995                    'doc',
996                    'inc',
997                    'lib',
998                    'par',
999                    'pck',
1000                    'rdb',
1001                    'res',
1002                    'xml'
1003                );
1004    push(@subdirs, 'zip') if $opt_zip;
1005    push(@subdirs, 'idl') if ! $common_build;
1006    push(@subdirs, 'pus') if ! $common_build;
1007    my @common_subdirs = (
1008                    'bin',
1009                    'idl',
1010                    'inc',
1011                    'pck',
1012                    'pus',
1013                    'res'
1014                );
1015    push(@common_subdirs, 'zip') if $opt_zip;
1016
1017    if ( ! $opt_delete ) {
1018        # create all the subdirectories on solver
1019        foreach $subdir (@subdirs) {
1020            push(@action_data, ['mkdir', "%_DEST%/$subdir%_EXT%"]);
1021        }
1022        if ( $common_build ) {
1023            foreach $subdir (@common_subdirs) {
1024                push(@action_data, ['mkdir', "%COMMON_DEST%/$subdir%_EXT%"]);
1025            }
1026        }
1027    }
1028    push(@action_data, ['mkdir', "%_DEST%/inc%_EXT%/$module"]);
1029    if ( $common_build ) {
1030        push(@action_data, ['mkdir', "%COMMON_DEST%/inc%_EXT%/$module"]);
1031        push(@action_data, ['mkdir', "%COMMON_DEST%/res%_EXT%/img"]);
1032    } else {
1033        push(@action_data, ['mkdir', "%_DEST%/res%_EXT%/img"]);
1034    }
1035
1036    # deliver build.lst to $dest/inc/$module
1037    push(@action_data, ['copy', "build.lst %_DEST%/inc%_EXT%/$module/build.lst"]);
1038    if ( $common_build ) {
1039        # ... and to $common_dest/inc/$module
1040        push(@action_data, ['copy', "build.lst %COMMON_DEST%/inc%_EXT%/$module/build.lst"]);
1041    }
1042
1043    # need to copy libstaticmxp.dylib for Mac OS X
1044    if ( $^O eq 'darwin' )
1045    {
1046        push(@action_data, ['copy', "../%__SRC%/lib/lib*static*.dylib %_DEST%/lib%_EXT%/lib*static*.dylib"]);
1047    }
1048}
1049
1050sub walk_addincpath_list
1051{
1052    my (@addincpath_headers);
1053    return if $#addincpath_list == -1;
1054
1055    # create hash with all addincpath header names
1056    for (my $i = 0; $i <= $#addincpath_list; $i++) {
1057        my @field = split('/', $addincpath_list[$i][0]);
1058        push (@addincpath_headers, $field[-1]);
1059    }
1060
1061    # now stream all addincpath headers through addincpath filter
1062    for (my $i = 0; $i <= $#addincpath_list; $i++) {
1063        add_incpath_if_newer($addincpath_list[$i][0], $addincpath_list[$i][1], \@addincpath_headers)
1064                ? $files_copied++ : $files_unchanged++;
1065    }
1066}
1067
1068sub add_incpath_if_newer
1069{
1070    my $from = shift;
1071    my $to = shift;
1072    my $modify_headers_ref = shift;
1073    my ($from_stat_ref, $header);
1074
1075    push_on_ziplist($to) if $opt_zip;
1076    push_on_loglist("ADDINCPATH", "$from", "$to") if $opt_log;
1077
1078    if ( $opt_delete ) {
1079        print "REMOVE: $to\n" if $opt_verbose;
1080        my $rc = unlink($to);
1081        return 1 if $rc;
1082        return 0;
1083    }
1084
1085    if ( $from_stat_ref = is_newer($from, $to) ) {
1086        print "ADDINCPATH: $from -> $to\n" if $opt_verbose;
1087
1088        return 1 if $opt_check;
1089
1090        my $save = $/;
1091        undef $/;
1092        open(FROM, "<$from");
1093        # slurp whole file in one big string
1094        my $content = <FROM>;
1095        close(FROM);
1096        $/ = $save;
1097
1098        foreach $header (@$modify_headers_ref) {
1099            $content =~ s/#include [<"]$header[>"]/#include <$module\/$header>/g;
1100        }
1101
1102        open(TO, ">$to");
1103        print TO $content;
1104        close(TO);
1105
1106        utime($$from_stat_ref[9], $$from_stat_ref[9], $to);
1107        fix_file_permissions($$from_stat_ref[2], $to);
1108        return 1;
1109    }
1110    return 0;
1111}
1112
1113sub push_on_ziplist
1114{
1115    my $file = shift;
1116    return if ( $opt_check );
1117    # strip $dest from path since we don't want to record it in zip file
1118    if ( $file =~ s#^\Q$dest\E/##o ) {
1119        if ( $updminor ){
1120            # strip minor from path
1121            my $ext = "%_EXT%";
1122            $ext = expand_macros($ext);
1123            $file =~ s#^$ext##o;
1124        }
1125        push(@zip_list, $file);
1126    } elsif ( $file =~ s#^\Q$common_dest\E/##o ) {
1127        if ( $updminor ){
1128            # strip minor from path
1129            my $ext = "%_EXT%";
1130            $ext = expand_macros($ext);
1131            $file =~ s#^$ext##o;
1132        }
1133        push(@common_zip_list, $file);
1134    }
1135}
1136
1137sub push_on_loglist
1138{
1139    my @entry = @_;
1140    return 0 if ( $opt_check );
1141    return -1 if ( $#entry != 2 );
1142    if (( $entry[0] eq "COPY" ) || ( $entry[0] eq "ADDINCPATH" )) {
1143        return 0 if ( ! -e $entry[1].$maybedot );
1144        # make 'from' relative to source root
1145        $entry[1] = $repository ."/" . $module . "/prj/" . $entry[1];
1146        $entry[1] =~ s/$module\/prj\/\.\./$module/;
1147    }
1148    # platform or common tree?
1149    my $common;
1150    if ( $entry[2] =~ /^\Q$dest\E/ ) {
1151        $common = 0;
1152    } elsif ( $common_build && ( $entry[2] =~ /^\Q$common_dest\E/ )) {
1153        $common = 1;
1154    } else {
1155        warn "Neither common nor platform tree?";
1156        return;
1157    }
1158    # make 'to' relative to SOLARVERSION
1159    my $solarversion  = $ENV{'SOLARVERSION'};
1160    $solarversion =~ s#\\#/#g;
1161    $entry[2] =~ s/^\Q$solarversion\E\///;
1162    # strip minor from 'to'
1163    my $ext = "%_EXT%";
1164    $ext = expand_macros($ext);
1165    $entry[2] =~ s#$ext([\\\/])#$1#o;
1166
1167    if ( $common ) {
1168        push @common_log_list, [@entry];
1169    } else {
1170        push @log_list, [@entry];
1171    }
1172    return 1;
1173}
1174
1175sub zip_files
1176{
1177    my $zipexe = 'zip';
1178    $zipexe .= ' -y' unless  $^O eq 'MSWin32';
1179
1180    my ($platform_zip_file, $common_zip_file);
1181    $platform_zip_file = "%_DEST%/zip%_EXT%/$module.zip";
1182    $platform_zip_file = expand_macros($platform_zip_file);
1183    my (%dest_dir, %list_ref);
1184    $dest_dir{$platform_zip_file} = $dest;
1185    $list_ref{$platform_zip_file} = \@zip_list;
1186    if ( $common_build ) {
1187        $common_zip_file = "%COMMON_DEST%/zip%_EXT%/$module.zip";
1188        $common_zip_file = expand_macros($common_zip_file);
1189        $dest_dir{$common_zip_file}   = $common_dest;
1190        $list_ref{$common_zip_file}   = \@common_zip_list;
1191    }
1192
1193    my $ext = "%_EXT%";
1194    $ext = expand_macros($ext);
1195
1196    my @zipfiles;
1197    $zipfiles[0] = $platform_zip_file;
1198    if ( $common_build ) {
1199        push @zipfiles, ($common_zip_file);
1200    }
1201    foreach my $zip_file ( @zipfiles ) {
1202        print "ZIP: updating $zip_file\n" if $opt_verbose;
1203        next if ( $opt_check );
1204
1205        if ( $opt_delete ) {
1206            if ( -e $zip_file ) {
1207                unlink $zip_file or die "Error: can't remove file '$zip_file': $!";
1208            }
1209            next;
1210        }
1211
1212        local $work_file = "";
1213        if ( $zip_file eq $common_zip_file) {
1214            # Zip file in common tree: work on uniq copy to avoid collisions
1215            $work_file = $zip_file;
1216            $work_file =~ s/\.zip$//;
1217            $work_file .= (sprintf('.%d-%d', $$, time())) . ".zip";
1218            die "Error: temp file $work_file already exists" if ( -e $work_file);
1219            if ( -e $zip_file ) {
1220                if ( -z $zip_file) {
1221                    # sometimes there are files of 0 byte size - remove them
1222                    unlink $zip_file or print_error("can't remove empty file '$zip_file': $!",0);
1223                } else {
1224                    if ( ! copy($zip_file, $work_file)) {
1225                        # give a warning, not an error:
1226                        # we can zip from scratch instead of just updating the old zip file
1227                        print_warning("can't copy'$zip_file' into '$work_file': $!", 0);
1228                        unlink $work_file;
1229                    }
1230                }
1231            }
1232        } else {
1233            # No pre processing necessary, working directly on solver.
1234            $work_file = $zip_file;
1235        }
1236
1237        # zip content has to be relative to $dest_dir
1238        chdir($dest_dir{$zip_file}) or die "Error: cannot chdir into $dest_dir{$zip_file}";
1239        my $this_ref = $list_ref{$zip_file};
1240        open(ZIP, "| $zipexe -q -o -u -@ $work_file") or die "error opening zip file";
1241        foreach $file ( @$this_ref ) {
1242            print "ZIP: adding $file to $zip_file\n" if $is_debug;
1243            print ZIP "$file\n";
1244        }
1245        close(ZIP);
1246        fix_broken_cygwin_created_zips($work_file) if $^O eq "cygwin";
1247
1248        if ( $zip_file eq $common_zip_file) {
1249            # rename work file back
1250            if ( -e $work_file ) {
1251                if ( -e $zip_file) {
1252                    # do some tricks to be fast. otherwise we may disturb other platforms
1253                    # by unlinking a file which just gets copied -> stale file handle.
1254                    my $buffer_file=$work_file . '_rm';
1255                    rename($zip_file, $buffer_file) or warn "Warning: can't rename old zip file '$zip_file': $!";
1256                    if (! rename($work_file, $zip_file)) {
1257                        print_error("can't rename temporary file to $zip_file: $!",0);
1258                        unlink $work_file;
1259                    }
1260                    unlink $buffer_file;
1261                } else {
1262                    if (! rename($work_file, $zip_file)) {
1263                        print_error("can't rename temporary file to $zip_file: $!",0);
1264                        unlink $work_file;
1265                    }
1266                }
1267            }
1268        }
1269    }
1270}
1271
1272sub fix_broken_cygwin_created_zips
1273# add given extension to or strip it from stored path
1274{
1275    require Archive::Zip; import Archive::Zip;
1276    my $zip_file = shift;
1277
1278    $zip = Archive::Zip->new();
1279    unless ( $zip->read($work_file) == AZ_OK ) {
1280        die "Error: can't open zip file '$zip_file' to fix broken cygwin file permissions";
1281    }
1282    my $latest_member_mod_time = 0;
1283    foreach $member ( $zip->members() ) {
1284        my $attributes = $member->unixFileAttributes();
1285        $attributes &= ~0xFE00;
1286        print $member->fileName() . ": " . sprintf("%lo", $attributes) if $is_debug;
1287        $attributes |= 0x10; # add group write permission
1288        print "-> " . sprintf("%lo", $attributes) . "\n" if $is_debug;
1289        $member->unixFileAttributes($attributes);
1290        if ( $latest_member_mod_time < $member->lastModTime() ) {
1291            $latest_member_mod_time = $member->lastModTime();
1292        }
1293    }
1294    die "Error: can't overwrite zip file '$zip_file' for fixing permissions" unless $zip->overwrite() == AZ_OK;
1295    utime($latest_member_mod_time, $latest_member_mod_time, $zip_file);
1296}
1297
1298sub get_tempfilename
1299{
1300    my $temp_dir = shift;
1301    $temp_dir = ( -d '/tmp' ? '/tmp' : $ENV{TMPDIR} || $ENV{TEMP} || '.' )
1302            unless defined($temp_dir);
1303 	if ( ! -d $temp_dir ) {
1304        die "no temp directory $temp_dir\n";
1305    }
1306    my $base_name = sprintf( "%d-%di-%d", $$, time(), $tempcounter++ );
1307    return "$temp_dir/$base_name";
1308}
1309
1310sub write_log
1311{
1312    my (%log_file, %file_date);
1313    $log_file{\@log_list} = "%_DEST%/inc%_EXT%/$module/deliver.log";
1314    $log_file{\@common_log_list} = "%COMMON_DEST%/inc%_EXT%/$module/deliver.log";
1315    $file_date{\@log_list} = $logfiledate;
1316    $file_date{\@common_log_list} = $commonlogfiledate;
1317
1318    my @logs = ( \@log_list );
1319    push @logs, ( \@common_log_list ) if ( $common_build );
1320    foreach my $log ( @logs ) {
1321        $log_file{$log} = expand_macros( $log_file{$log} );
1322        if ( $opt_delete ) {
1323            print "LOG: removing $log_file{$log}\n" if $opt_verbose;
1324            next if ( $opt_check );
1325            unlink $log_file{$log};
1326        } else {
1327            print "LOG: writing $log_file{$log}\n" if $opt_verbose;
1328            next if ( $opt_check );
1329            open( LOGFILE, "> $log_file{$log}" ) or warn "Error: could not open log file.";
1330            foreach my $item ( @$log ) {
1331                print LOGFILE "@$item\n";
1332            }
1333            close( LOGFILE );
1334            utime($file_date{$log}, $file_date{$log}, $log_file{$log});
1335        }
1336        push_on_ziplist( $log_file{$log} ) if $opt_zip;
1337    }
1338    return;
1339}
1340
1341sub check_dlst
1342{
1343    my %createddir;
1344    my %destdir;
1345    my %destfile;
1346    # get all checkable actions to perform
1347    foreach my $action ( @action_data ) {
1348        my $path = expand_macros( $$action[1] );
1349        if ( $$action[0] eq 'mkdir' ) {
1350            $createddir{$path} ++;
1351        } elsif (( $$action[0] eq 'copy' ) || ( $$action[0] eq 'addincpath' )) {
1352            my ($from, $to) = split(' ', $path);
1353            my ($to_fname, $to_dir);
1354            my $withwildcard = 0;
1355            if ( $from =~ /[\*\?\[\]]/ ) {
1356                $withwildcard = 1;
1357            }
1358            ($to_fname, $to_dir) = fileparse($to);
1359            if ( $withwildcard ) {
1360                if ( $to !~ /[\*\?\[\]]/ ) {
1361                    $to_dir = $to;
1362                    $to_fname ='';
1363                }
1364            }
1365            $to_dir =~ s/[\\\/\s]$//;
1366            $destdir{$to_dir} ++;
1367            # Check: copy into non existing directory?
1368            if ( ! $createddir{$to_dir} ) {
1369                # unfortunately it is not so easy: it's OK if a subdirectory of $to_dir
1370                # gets created, because mkpath creates the whole tree
1371                foreach my $directory ( keys %createddir ) {
1372                    if ( $directory =~ /^\Q$to_dir\E[\\\/]/ ) {
1373                        $createddir{$to_dir} ++;
1374                        last;
1375                    }
1376                }
1377                print_warning("Possibly copying into directory without creating in before: '$to_dir'")
1378                    unless $createddir{$to_dir};
1379            }
1380            # Check: overwrite file?
1381            if ( ! $to ) {
1382                if ( $destfile{$to} ) {
1383                    print_warning("Multiple entries copying to '$to'");
1384                }
1385                $destfile{$to} ++;
1386            }
1387        }
1388    }
1389}
1390
1391sub cleanup
1392{
1393    # remove empty directories
1394    foreach my $path ( @dirlist ) {
1395        $path = expand_macros($path);
1396        if ( $opt_check ) {
1397            print "RMDIR: $path\n" if $opt_verbose;
1398        } else {
1399            rmdir $path;
1400        }
1401    }
1402}
1403
1404sub delete_output
1405{
1406    my $output_path = expand_macros("../%__SRC%");
1407    if ( "$output_path" ne "../" ) {
1408        if ( rmtree([$output_path], 0, 1) ) {
1409            print "Deleted output tree.\n" if $opt_verbose;
1410        }
1411        else {
1412            print_error("Error deleting output tree $output_path: $!",0);
1413        }
1414    }
1415    else {
1416        print_error("Output not deleted - INPATH is not set");
1417    }
1418}
1419
1420sub print_warning
1421{
1422    my $message = shift;
1423    my $line = shift;
1424
1425    print STDERR "$script_name: ";
1426    if ( $dlst_file ) {
1427        print STDERR "$dlst_file: ";
1428    }
1429    if ( $line ) {
1430        print STDERR "line $line: ";
1431    }
1432    print STDERR "WARNING: $message\n";
1433}
1434
1435sub print_error
1436{
1437    my $message = shift;
1438    my $line = shift;
1439
1440    print STDERR "$script_name: ";
1441    if ( $dlst_file ) {
1442        print STDERR "$dlst_file: ";
1443    }
1444    if ( $line ) {
1445        print STDERR "line $line: ";
1446    }
1447    print STDERR "ERROR: $message\n";
1448    $error ++;
1449}
1450
1451sub print_stats
1452{
1453    print "Module '$module' delivered ";
1454    if ( $error ) {
1455        print "with errors\n";
1456    } else {
1457        print "successfully.";
1458        if ( $opt_delete ) {
1459            print " $files_copied files removed,";
1460        }
1461        else {
1462            print " $files_copied files copied,";
1463        }
1464        print " $files_unchanged files unchanged\n";
1465    }
1466}
1467
1468sub cleanup_and_die
1469{
1470    # clean up on unexpected termination
1471    my $sig = shift;
1472    if ( defined($temp_file) && -e $temp_file ) {
1473        unlink($temp_file);
1474    }
1475    if ( defined($work_file) && -e $work_file ) {
1476        unlink($work_file);
1477        print STDERR "$work_file removed\n";
1478    }
1479
1480    die "caught unexpected signal $sig, terminating ...";
1481}
1482
1483sub usage
1484{
1485    my $exit_code = shift;
1486    print STDERR "Usage:\ndeliver [OPTIONS] [DESTINATION-PATH]\n";
1487    print STDERR "Options:\n";
1488    print STDERR "  -check       just print what would happen, no actual copying of files\n";
1489    print STDERR "  -checkdlst   be verbose about (possible) d.lst bugs\n";
1490    print STDERR "  -delete      delete files (undeliver), use with care\n";
1491    print STDERR "  -deloutput   remove the output tree after copying\n";
1492    print STDERR "  -dontdeletecommon do not delete common files (for -delete option)\n";
1493    print STDERR "  -force       copy even if not newer\n";
1494    print STDERR "  -help        print this message\n";
1495    if ( !defined($ENV{GUI}) || $ENV{GUI} ne 'WNT' ) {
1496        print STDERR "  -link        hard link files into the solver to save disk space\n";
1497    }
1498    print STDERR "  -quiet       be quiet, only report errors\n";
1499    print STDERR "  -verbose     be verbose\n";
1500    print STDERR "  -zip         additionally create zip files of delivered content\n";
1501    print STDERR "Options '-zip' and a destination-path are mutually exclusive.\n";
1502    print STDERR "Options '-check' and '-quiet' are mutually exclusive.\n";
1503    exit($exit_code);
1504}
1505
1506# vim: set ts=4 shiftwidth=4 expandtab syntax=perl:
1507