summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Base/File.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-24 13:27:23 +0000
committerfukachan <fukachan>2001-01-24 13:27:23 +0000
commit465f3fc1d8a893ff7f5baf98a64c3a3aaf3a696d (patch)
treed88fc8289a14e716a8ad3ac1d9e266960b82feec /fml/lib/FML/Base/File.pm
parentb3cbdf2dd76ed7197351dd7fec962c15f2e2558e (diff)
downloadfml8-snap-20010124.tar.gz
fml8-snap-20010124.tar.bz2
fml8-snap-20010124.zip
create FML::Base::snap-20010124
Diffstat (limited to 'fml/lib/FML/Base/File.pm')
-rw-r--r--fml/lib/FML/Base/File.pm83
1 files changed, 83 insertions, 0 deletions
diff --git a/fml/lib/FML/Base/File.pm b/fml/lib/FML/Base/File.pm
new file mode 100644
index 00000000..20fcf809
--- /dev/null
+++ b/fml/lib/FML/Base/File.pm
@@ -0,0 +1,83 @@
+#-*- 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 Base::File;
+use strict;
+use vars qw(@ISA @EXPORT @EXPORT_OK $ErrorString);
+use Carp;
+
+
+require Exporter;
+@ISA = qw(Exporter);
+@EXPORT_OK = qw(mkdirhier touch);
+
+=head1 NAME
+
+Base::Errors.pm - error handling utilities
+
+=head1 SYNOPSIS
+
+ package Something;
+ use Base::Errors qw(error_reason error error_reset);
+
+ sub xxx
+ {
+ if something errors ...
+ $self->error_reason( error reason );
+ }
+
+When you use Something module,
+
+ use Something;
+ $obj = new Something;
+ unless ($obj->error) { $obj->do_somting( ...); };
+
+
+=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
+
+Base::Errors.pm appeared in fml5.
+
+=cut
+
+sub error { return $ErrorString;}
+sub error_reset { undef $ErrorString;}
+
+sub mkdirhier
+{
+ my ($dir, $mode) = @_;
+
+ eval q{
+ use File::Path;
+ mkpath($dir, 0, $mode);
+ };
+ $ErrorString = $@;
+}
+
+
+sub touch
+{
+
+}
+
+
+1;