use strict;
use ExtUtils::MakeMaker;
+$|++;
+
+my %PREREQ_PM;
+my %missing = (
+ optional => [ ],
+ required => [ ],
+);
+
+print "Checking for required and recommended modules.\n";
+# Module Name Version Optional?
+check_version('Class::Base' => 0 => 0);
+check_version('File::Basename' => 0 => 0);
+check_version('File::Spec' => 0 => 0);
+check_version('GD' => 0 => 1);
+check_version('GraphViz' => 0 => 1);
+check_version('IO::Dir' => 0 => 0);
+check_version('IO::File' => 0 => 0);
+check_version('IO::Scalar' => 0 => 0);
+check_version('Parse::RecDescent' => 1.94 => 0);
+check_version('Pod::Usage' => 0 => 0);
+check_version('Spreadsheet::ParseExcel' => 0 => 1);
+check_version('Test::More' => 0 => 0);
+check_version('Text::ParseWords' => 0 => 0);
+check_version('Text::RecordParser' => 0.02 => 0);
+check_version('XML::Writer' => 0 => 1);
+
+print "\n";
+
+if (@{$missing{'optional'}} + @{$missing{'required'}}) {
+ print "Some components might not work correctly:\n";
+ my $count;
+ if ($missing{'required'}) {
+ $count = scalar(@{$missing{'required'}});
+ printf " You are missing %d required module%s: %s\n",
+ $count,
+ $count == 1 ? '' : 's',
+ join ', ', @{$missing{'required'}};
+ }
+ if ($missing{'optional'}) {
+ $count = scalar(@{$missing{'optional'}});
+ printf " You are missing %d optional module%s: %s\n",
+ $count,
+ $count == 1 ? '' : 's',
+ join ', ', @{$missing{'optional'}};
+ }
+
+ print "\n";
+}
WriteMakefile(
'NAME' => __PACKAGE__,
'VERSION_FROM' => 'lib/SQL/Translator.pm',
'EXE_FILES' => [
'bin/sqlt-diagram.pl',
+ 'bin/sqlt-dumper.pl',
'bin/sqlt-graph.pl',
'bin/sql_translator.pl',
],
- 'PREREQ_PM' => {
- 'Class::Base' => 0,
- 'File::Basename' => 0,
- 'File::Spec' => 0,
- 'GD' => 0,
- 'GraphViz' => 0,
- 'IO::Dir' => 0,
- 'IO::File' => 0,
- 'IO::Scalar' => 0,
- 'Parse::RecDescent' => 1.94,
- 'Pod::Usage' => 0,
- 'Spreadsheet::ParseExcel' => 0,
- 'Test::More' => 0,
- 'Text::ParseWords' => 0,
- 'Text::RecordParser' => 0.02,
- 'XML::Writer' => 0,
- },
- clean => {
- FILES => '$(DISTNAME)-$(VERSION).tar.gz',
+ 'PREREQ_PM' => \%PREREQ_PM,
+ 'clean' => {
+ FILES => '$(DISTVNAME).tar$(SUFFIX)',
},
);
+
+# ----------------------------------------------------------------------
+# check_version($module, $version, $optional)
+#
+# Takes a module name, optional version number, and a flag indicating
+# whether the module is optional (default is no).
+# ----------------------------------------------------------------------
+sub check_version {
+ my ($module, $version, $optional) = @_;
+ my ($dots, $load);
+
+ if ($version) {
+ $load = "$module $version";
+ }
+ else {
+ $load = $module;
+ }
+
+ $dots = '.' x (36 - length($load));
+
+ eval "use $load;";
+ if ($@) {
+ if ($optional) {
+ push @{$missing{'optional'}}, $module;
+ }
+ else {
+ push @{$missing{'required'}}, $module;
+ }
+ print "$load $dots not found!";
+ if ($optional) {
+ print optional('not found!'), "\n";
+ return;
+ }
+ print required('not found!');
+ print "\n";
+ }
+ else {
+ no strict qw(refs);
+ my $version = ${"$module\::VERSION"};
+ print "$load $dots $version";
+ print $optional ? optional($version) : required($version);
+ print "\n";
+ }
+
+ $PREREQ_PM{$module} = $version;
+}
+
+sub optional { return _message("[optional]", @_) }
+sub required { return _message("", @_) }
+
+sub _message {
+ my ($message, $version) = @_;
+ my $size = 24 - (length "$version");
+ my $fmt = '%' . $size . 's';
+ sprintf $fmt => $message;
+}
package SQL::Translator;
# ----------------------------------------------------------------------
-# $Id: Translator.pm,v 1.36 2003-07-09 05:59:24 allenday Exp $
+# $Id: Translator.pm,v 1.37 2003-07-31 20:49:42 dlc Exp $
# ----------------------------------------------------------------------
# Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>,
# darren chamberlain <darren@cpan.org>,
use vars qw( $VERSION $REVISION $DEFAULT_SUB $DEBUG $ERROR );
use base 'Class::Base';
+require 5.004;
+
$VERSION = '0.02';
-$REVISION = sprintf "%d.%02d", q$Revision: 1.36 $ =~ /(\d+)\.(\d+)/;
+$REVISION = sprintf "%d.%02d", q$Revision: 1.37 $ =~ /(\d+)\.(\d+)/;
$DEBUG = 0 unless defined $DEBUG;
$ERROR = "";
return $self->error($msg);
}
- if ( $self->validate ) {
+ if ($self->validate) {
my $schema = $self->schema;
return $self->error('Invalid schema') unless $schema->is_valid;
}
my $path = catfile "SQL", "Translator", $uctype;
for (@INC) {
my $dir = catfile $_, $path;
- $self->debug("_list_${type}s searching $dir");
+ $self->debug("_list_${type}s searching $dir\n");
next unless -d $dir;
my $dh = IO::Dir->new($dir);