1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
###########################################################################
# A module for logging
#
# Copyright (C) 2016-2018 Andrey Ponomarenko's ABI Laboratory
#
# Written by Andrey Ponomarenko
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA.
###########################################################################
use strict;
my %DEBUG_DIR;
my %ERROR_CODE = (
# Compatible verdict
"Compatible"=>0,
"Success"=>0,
# Incompatible verdict
"Incompatible"=>1,
# Undifferentiated error code
"Error"=>2,
# System command is not found
"Not_Found"=>3,
# Cannot access input files
"Access_Error"=>4,
# Invalid input API dump
"Invalid_Dump"=>7,
# Incompatible version of API dump
"Dump_Version"=>8,
# Cannot find a module
"Module_Error"=>9
);
sub exitStatus($$)
{
my ($Code, $Msg) = @_;
print STDERR "ERROR: ". $Msg."\n";
if(my $Orig = $In::Opt{"OrigDir"}) {
chdir($Orig);
}
exit($ERROR_CODE{$Code});
}
sub getErrorCode($) {
return $ERROR_CODE{$_[0]};
}
sub printMsg($$)
{
my ($Type, $Msg) = @_;
if($Type!~/\AINFO/) {
$Msg = $Type.": ".$Msg;
}
if($Type!~/_C\Z/) {
$Msg .= "\n";
}
if($Type eq "ERROR") {
print STDERR $Msg;
}
else {
print $Msg;
}
}
sub initLogging($)
{
my $LVer = $_[0];
if($In::Opt{"Debug"})
{ # debug directory
$DEBUG_DIR{$LVer} = "debug/".$In::Opt{"TargetLib"}."/".$In::Desc{$LVer}{"Version"};
if(-d $DEBUG_DIR{$LVer}) {
rmtree($DEBUG_DIR{$LVer});
}
}
}
sub getDebugDir($) {
return $DEBUG_DIR{$_[0]};
}
return 1;
|