package pdf2xml; use strict; =pod =head1 NAME pdf2xml - swish-e sample module to convert pdf2xml =head1 SYNOPSIS use pdf2xml; my $xml_record_ref = pdf2xml( $pdf_file_name ); # or by passing content in a scalar reference my $xml_text_ref = pdf2xml( \$pdf_content ); =head1 DESCRIPTION Sample module for use with other swish-e 'prog' document source programs. Pass either a file name, or a scalar reference. The differece is when you pass a reference to a scalar only the content is returned. When you pass a file name an entire record is returned ready to be fed to swish -- this includes the headers required by swish for indexing. The plan is to find a library that will do this to avoid forking an external program. =head1 REQUIREMENTS Uses the xpdf package that includes the pdftotext conversion program. This is available from http://www.foolabs.com/xpdf/xpdf.html. You will also need the module File::Temp (and its dependencies) available from CPAN if passing content to this module (instead of a file name). =head1 AUTHOR Bill Moseley =cut use Symbol; use vars qw( @ISA @EXPORT $VERSION ); # $Id: pdf2xml.pm,v 1.1.1.1 2002/09/20 19:47:30 adcroft Exp $ $VERSION = sprintf '%d.%02d', q$Revision: 1.1.1.1 $ =~ /: (\d+)\.(\d+)/; require Exporter; @ISA = qw(Exporter); @EXPORT = qw(pdf2xml); my @InfoTags = qw/Title Subject Author CreationDate Creator Producer ModDate Keywords/; sub pdf2xml { my $file_or_content = shift; my $file = ref $file_or_content ? create_temp_file( $file_or_content ) : $file_or_content; my $headers = get_pdf_headers( $file ) || ''; my $content_ref = get_pdf_content_ref( $file ); my $txt = < $headers $$content_ref EOF return \$txt if ref $file_or_content; my $mtime = (stat $file )[9]; my $size = length $txt; my $ret = <) { if ( /^\s*([^:]+):\s+(.+)$/ ) { my ( $metaname, $value ) = ( lc( $1 ), escapeXML( $2 ) ); $metaname =~ tr/ /_/; $metadata{$metaname} = $value; } } close $sym or die "$0: Failed close on pipe to pdfinfo for $file: $?"; return join "\n", map { "<$_>$metadata{$_}" } sort keys %metadata; } sub get_pdf_content_ref { my $file = shift; my $sym = gensym; open $sym, "pdftotext $file - |" or die "$0: failed to run pdftotext: $!"; local $/ = undef; my $content = escapeXML(<$sym>); close $sym or die "$0: Failed close on pipe to pdftotext for $file: $?"; return \$content; } # How are URLs printed with pdftotext? sub escapeXML { my $str = shift; for ( $str ) { s//>/go; tr/\014/ /; # ^L # s/&/&/go; # s/"/"/go; } return $str; } # This is the portable way to do this, I suppose. # Otherwise, just create a file in the local directory. sub create_temp_file { my $scalar_ref = shift; require "File/Temp.pm"; my ( $fh, $file_name ) = File::Temp::tempfile( UNLINK => 1 ); print $fh $$scalar_ref or die $!; close $fh or die "Failed to close '$file_name' $!"; return $file_name; }