/usr/share/cricket/lib/Common/Util.pm is in cricket 1.0.5-21.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | # -*- perl -*-
# Cricket: a configuration, polling and data display wrapper for RRD files
#
# Copyright (C) 1998 Jeff R. Allen and WebTV Networks, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
package Common::Util;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(Eval isNonNull isTrue isFalse isNaN mapOid runTime quoteString
mergeHash);
use Common::Log;
use Digest::MD5;
# This is used to help not-strictly-numeric instances sneak through
# the eval. This is a hack and should probably be solved better
# someday.
sub quoteInstance {
my($targRef) = @_;
my($inst) = $targRef->{'inst'};
if (defined($inst)) {
$targRef->{'inst'} = quoteString($targRef->{'inst'});
}
}
sub quoteString {
my($str) = @_;
if ($str =~ /^[A-Za-z]/) {
if ($str !~ /^qw\(/) {
$str = "qw($str)";
}
}
return $str;
}
# sub quoteString {
# my($str) = @_;
# my($new) = $str;
#
# if ($str =~ /^[\w\.-]+$/) {
# $new = "\'$str\'";
# Debug("Quoted string [$str] to be [$new]");
# }
# return $new;
#}
sub mapOid {
my($oidRef, $oid) = @_;
return $oid unless $oid;
while (($oidName) = ($oid =~ /([a-z]\w*)/i)) {
if (defined $oidRef->{lc($oidName)}) {
$oid =~ s/$oidName/$oidRef->{lc($oidName)}/;
} else {
Warn("Could not resolve OID for $oid");
$oid = undef;
}
}
return $oid;
}
# os-independent MkDir
sub MkDir {
my($dir) = @_;
if (isWin32()) {
my ($dd) = $dir;
$dd =~ s/\//\\/g;
`cmd /X /C mkdir $dd`;
} else {
system("/bin/mkdir -p $dir");
}
}
sub isWin32 {
return ($^O eq 'MSWin32');
}
sub runTime {
my $starttime = shift;
$starttime = $^T unless defined $starttime;
my($time) = time() - $starttime;
if ($time > 59) {
my($min) = int($time / 60);
my($sec) = $time - ($min * 60);
$time = "$min minutes, $sec";
}
$time .= " seconds";
return $time;
}
# Perl doesn't like numbers in scientific notation. It makes it very unhappy.
# Thanks to Steen Linden for helping with a fix for this.
sub fixNum {
my($n) = @_;
if (!defined($n)) {
Error("Value not defined in Common::Util::fixNum()!");
}
$n = sprintf("%0.20g", $n) if ($n =~ /^\d\.\d+e\+\d+$/);
return $n;
}
sub isFalse {
my($v) = @_;
$v = lc($v) if (defined($v));
if ($v eq '0' or $v eq 'false' or $v eq 'no') {
return 1;
}
return 0;
}
sub isTrue {
return ! isFalse(@_);
}
sub isNaN {
return ($_[0] =~ /^NaN/i);
}
sub Eval {
my($exp) = @_;
my(@res);
my($warn);
my($p, $f, $l) = caller();
eval {
local($SIG{'__WARN__'}) = sub { $warn = $_[0]; die($warn); };
#Debug("evaling ($f, line $l): $exp");
@res = eval($exp);
};
if (defined($warn)) {
Warn("Warning while evaluating $exp: $warn");
Debug("Called from $f, line $l.");
}
return @res;
}
sub isNonNull {
return (defined($_[0]) && $_[0] ne '');
}
# add elements from hashRef2 to hashRef1
# bOverride indicate that hashRef2 elements with the same key
# should override the corresponding elements in hashRef1
sub mergeHash {
my ($hashRef1, $hashRef2, $bOverride) = @_;
my $curKey;
foreach $curKey (keys %{$hashRef2}) {
if (!(exists $hashRef1->{$curKey}) || $bOverride) {
$hashRef1->{$curKey} = $hashRef2->{$curKey};
}
}
}
# Munge an overly long datasource name to fit RRD's constraints
sub mungeDsName {
my $name = lc shift;
return $name if length($name) <= 19;
my $md5 = Digest::MD5::md5_base64($name);
$md5 =~ tr/A-Z0-9//cd;
return substr($name, 0, 15) . substr($md5, 0, 4);
}
1;
# Local Variables:
# mode: perl
# indent-tabs-mode: nil
# tab-width: 4
# perl-indent-level: 4
# End:
|