X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fssic.pl;h=e5fa2be81774fa9052bd7ef21e2cb6c923bce75f;hb=e09c119b75cfd9f6e62f50083edf4a812be66134;hp=cad68517be2fe7b93d81f69929f8ed4f9c74be91;hpb=37fc33abf5130de76800e3cba2fb60cf74c5c239;p=ssic.git diff --git a/src/ssic.pl b/src/ssic.pl index cad6851..e5fa2be 100644 --- a/src/ssic.pl +++ b/src/ssic.pl @@ -18,10 +18,12 @@ sub main "no_getopt_compat"); if (not GetOptions(\%opts, "o=s", + "D=s%", "h|help", "V|version", )) { usage(*STDERR); + exit(4); } if (exists($opts{'h'})) { @@ -40,12 +42,12 @@ sub main if ($#ARGV gt 0) { error(4, "Cannot specify -o with multiple files\n"); } - compile($ARGV[0], $opts{'o'}); + compile($ARGV[0], $opts{'o'}, $opts{'D'}); } else { for $input (@ARGV) { $output = $input; $output =~ s/\.[^.]+$/.html/; - compile($input, $output); + compile($input, $output, $opts{'D'}); } } } @@ -63,9 +65,10 @@ sub help usage($fh); print("Options:\n"); - print(" -o Place the output into \n"); - print(" -h, --help Display this information\n"); - print(" -V, --version Display compiler version information\n"); + print(" -D = Set the variable to \n"); + print(" -o Place the output into \n"); + print(" -h, --help Display this information\n"); + print(" -V, --version Display compiler version information\n"); } sub version @@ -83,35 +86,61 @@ sub version sub warning { - my ($fmt, $args) = @_; + my ($fmt, @args) = @_; - printf("ssic: Warning: " . $fmt, $args); + printf("ssic: Warning: " . $fmt, @args); } sub error { - my ($status, $fmt, $args) = @_; + my ($status, $fmt, @args) = @_; - printf("ssic: Error: " . $fmt, $args); + printf("ssic: Error: " . $fmt, @args); exit($status); } sub compile { - my ($input, $output) = @_; + my ($input, $output, $vars) = @_; my $input_fh; my $output_fh; my $ssi; + my $var_name; + my $var_value; if ($input eq $output) { error(4, "Input and output files are equal\n"); } - open($input_fh, "<", $input); - open($output_fh, ">", $output); + if ($input eq "-") { + $input_fh = *STDIN; + } else { + if (not open($input_fh, "<", $input)) { + error(4, "%s: %s\n", $input, $!); + } + } + if ($output eq "-") { + $output_fh = *STDOUT; + } else { + if (not open($output_fh, ">", $output)) { + error(4, "%s: %s\n", $output, $!); + } + } + + %ENV = ( + "DOCUMENT_NAME" => $input, + "DOCUMENT_URI" => $input, + ); $CGI::SSI::DEBUG = 0; - $ssi = CGI::SSI->new(); + $ssi = CGI::SSI->new( + "DOCUMENT_NAME" => $input, + "DOCUMENT_URI" => $input, + ); + + while (($var_name, $var_value) = each(%{$vars})) { + $ssi->set($var_name => $var_value); + } print($output_fh $ssi->process(<$input_fh>)); }