1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 # Copyright 2008 by Sun Microsystems, Inc.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # $RCSfile: exiter.pm,v $
13 # This file is part of OpenOffice.org.
15 # OpenOffice.org is free software: you can redistribute it and/or modify
16 # it under the terms of the GNU Lesser General Public License version 3
17 # only, as published by the Free Software Foundation.
19 # OpenOffice.org is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU Lesser General Public License version 3 for more details
23 # (a copy is included in the LICENSE file that accompanied this code).
25 # You should have received a copy of the GNU Lesser General Public License
26 # version 3 along with OpenOffice.org. If not, see
27 # <http://www.openoffice.org/license.html>
28 # for a copy of the LGPLv3 License.
30 #*************************************************************************
33 package par2script
::exiter
;
35 use par2script
::files
;
36 use par2script
::globals
;
38 ############################################
39 # Exiting the program with an error
40 # This function is used instead of "die"
41 ############################################
45 my ($message, $function) = @_;
49 $infoline = "\n***************************************************************\n";
50 push(@par2script::globals
::logfileinfo
, $infoline);
53 $infoline = "$message\n";
54 push(@par2script::globals
::logfileinfo
, $infoline);
57 $infoline = "in function: $function\n";
58 push(@par2script::globals
::logfileinfo
, $infoline);
61 $infoline = "***************************************************************\n";
62 push(@par2script::globals
::logfileinfo
, $infoline);
64 if ($par2script::globals
::logging
)
66 par2script
::files
::save_file
($par2script::globals
::logfilename
, \
@par2script::globals
::logfileinfo
);
67 print("Saved logfile: $par2script::globals::logfilename\n");
75 #####################################
76 # Error, because a gid is defined
78 #####################################
80 sub multidefinitionerror
82 my ( $multidefinitiongids ) = @_;
83 print "************************************************\n";
84 print "ERROR: multiple definition of gids:\n";
85 print "************************************************\n";
88 foreach $gid ( @
{$multidefinitiongids} ) { print "\t$gid\n"; }
92 #####################################
93 # Error, because a gid is assigned
95 #####################################
97 sub multiassignmenterror
99 my ( $multiassignmentgids ) = @_;
100 #print "************************************************\n";
101 #print "ERROR: multiple assignments of gids:\n";
102 #print "************************************************\n";
105 foreach $line ( @
{$multiassignmentgids} ) { print "\t$line\n"; }
109 #####################################
110 # Error, because a defined gid
112 #####################################
114 sub missingassignmenterror
116 my ( $missingassignmentgids ) = @_;
117 print "********************************************************\n";
118 print "ERROR: Missing assignments for the following GIDs:\n";
119 print "********************************************************\n";
122 foreach $gid ( @
{$missingassignmentgids} ) { print "\t$gid\n"; }