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
|
#-*- perl -*-
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $Id$
# $FML$
#
package FML::Utils;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $ErrorString);
use Carp;
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(mkdirhier touch search_program);
=head1 NAME
FML::Utils.pm - error handling utilities
=head1 SYNOPSIS
use FML::Utils qw(mkdiehier);
mkdirhier($dir, $mode);
=head1 DESCRIPTION
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
FML::Utils.pm appeared in fml5.
=cut
sub error { return $ErrorString;}
sub error_reset { undef $ErrorString;}
# Descriptions: "mkdir -p" or "mkdirhier"
# Arguments: directory [file_mode]
# Side Effects: set $ErrorString
# Return Value: succeeded to create directory or not
sub mkdirhier
{
my ($dir, $mode) = @_;
error_reset();
# XXX $mode (e.g. 0755) should be a numeric not a string
eval qq{
use File::Path;
mkpath(\$dir, 0, $mode);
};
$ErrorString = $@;
return ($@ ? undef : 1);
}
# Descriptions: touch: create file if file not exists
# Arguments: file file_mode
# Side Effects: none
# Return Value: 1 if succeed, 0 if not
sub touch
{
my ($file, $mode) = @_;
my ($ok) = 0;
error_reset();
if ( -f $file) {
return 1;
}
else {
my $fh = new IO::File $file, "a";
if (defined $fh) {
$fh->autoflush(1);
close($fh);
}
$ok++ if -f $file;
return 0 unless -f $file;
};
if (defined $mode) {
chmod $mode, $file && $ok++;
}
return $ok;
}
# Descriptions: file $file executable
# Arguments: file [path_list]
# The "path_list" is an ARRAY_REFERENCE.
# For example,
# search_program('md5');
# search_program('md5', [ '/bin', '/sbin' ]);
# Side Effects: none
# Return Value: pathname if found, undef if not
sub search_program
{
my ($file, $path_list) = @_;
my $default_path_list = [
'/usr/bin',
'/bin',
'/sbin',
'/usr/local/bin',
'/usr/gnu/bin',
'/usr/pkg/bin'
];
$path_list ||= $default_path_list;
use File::Spec;
my $path;
for $path (@$path_list) {
my $prog = File::Spec->catfile($path, $file);
if (-x $prog) {
return $prog;
}
}
return wantarray ? () : undef;
}
1;
|