package IO::Scalar; =head1 NAME IO::Scalar - IO:: interface for reading/writing a scalar =head1 SYNOPSIS If you have any Perl5, you can use the basic OO interface... use IO::Scalar; ### Open a handle on a string: $SH = new IO::Scalar; $SH->open(\$somestring); ### Open a handle on a string, read it line-by-line, then close it: $SH = new IO::Scalar \$somestring; while ($_ = $SH->getline) { print "Line: $_" } $SH->close; ### Open a handle on a string, and slurp in all the lines: $SH = new IO::Scalar \$somestring; print $SH->getlines; ### Open a handle on a string, and append to it: $SH = new IO::Scalar \$somestring $SH->print("bar\n"); ### will add "bar\n" to the end ### Get the current position: $pos = $SH->getpos; ### $SH->tell() also works ### Set the current position: $SH->setpos($pos); ### $SH->seek(POS,WHENCE) also works ### Open an anonymous temporary scalar: $SH = new IO::Scalar; $SH->print("Hi there!"); print "I got: ", ${$SH->sref}, "\n"; ### get at value If your Perl is 5.004 or later, you can use the TIEHANDLE interface, and read/write scalars just like files: use IO::Scalar; ### Writing to a scalar... my $s; tie *OUT, 'IO::Scalar', \$s; print OUT "line 1\nline 2\n", "line 3\n"; print "s is now... $s\n" ### Reading and writing an anonymous scalar... tie *OUT, 'IO::Scalar'; print OUT "line 1\nline 2\n", "line 3\n"; tied(OUT)->seek(0,0); while () { print "LINE: ", $_ } Stringification now works, too! my $SH = new IO::Scalar \$somestring; $SH->print("Hello, "); $SH->print("world!"); print "I've got: <$SH>\n"; =head1 DESCRIPTION This class implements objects which behave just like FileHandle (or IO::Handle) objects, except that you may use them to write to (or read from) scalars. They can be tiehandle'd as well. Basically, this: my $s; $SH = new IO::Scalar \$s; $SH->print("Hel", "lo, "); # OO style $SH->print("world!\n"); # ditto Or this (if you have 5.004 or later): my $s; $SH = tie *OUT, 'IO::Scalar', \$s; print OUT "Hel", "lo, "; # non-OO style print OUT "world!\n"; # ditto Or this (if you have 5.004 or later): my $s; $SH = IO::Scalar->new_tie(\$s); $SH->print("Hel", "lo, "); # OO style... print $SH "world!\n"; # ...or non-OO style! Causes $s to be set to: "Hello, world!\n" =head1 PUBLIC INTERFACE =cut use Carp; use strict; use vars qw($VERSION @ISA); use IO::Handle; ### Stringification, courtesy of B. K. Oxley (binkley): :-) use overload '""' => sub { ${$_[0]->{SR}} }; use overload 'bool' => sub { 1 }; ### have to do this, so object is true! ### The package version, both in 1.23 style *and* usable by MakeMaker: $VERSION = substr q$Revision: 1.122 $, 10; ### Inheritance: @ISA = qw(IO::Handle); require IO::WrapTie and push @ISA, 'IO::WrapTie::Slave' if ($] >= 5.004); #============================== =head2 Construction =over 4 =cut #------------------------------ =item new [ARGS...] I Return a new, unattached scalar handle. If any arguments are given, they're sent to open(). =cut sub new { my $self = bless {}, shift; $self->open(@_) if @_; $self; } sub DESTROY { shift->close; } #------------------------------ =item open [SCALARREF] I Open the scalar handle on a new scalar, pointed to by SCALARREF. If no SCALARREF is given, a "private" scalar is created to hold the file data. Returns the self object on success, undefined on error. =cut sub open { my ($self, $sref) = @_; # Sanity: defined($sref) or do {my $s = ''; $sref = \$s}; (ref($sref) eq "SCALAR") or croak "open() needs a ref to a scalar"; # Setup: $self->{Pos} = 0; $self->{SR} = $sref; $self; } #------------------------------ =item opened I Is the scalar handle opened on something? =cut sub opened { shift->{SR}; } #------------------------------ =item close I Disassociate the scalar handle from its underlying scalar. Done automatically on destroy. =cut sub close { my $self = shift; %$self = (); 1; } =back =cut #============================== =head2 Input and output =over 4 =cut #------------------------------ =item flush I No-op, provided for OO compatibility. =cut sub flush {} #------------------------------ =item getc I Return the next character, or undef if none remain. =cut sub getc { my $self = shift; # Return undef right away if at EOF; else, move pos forward: return undef if $self->eof; substr(${$self->{SR}}, $self->{Pos}++, 1); } #------------------------------ =item getline I Return the next line, or undef on end of string. Can safely be called in an array context. Currently, lines are delimited by "\n". =cut sub getline { my $self = shift; # Return undef right away if at EOF: return undef if $self->eof; # Get next line: my $sr = $self->{SR}; my $i = $self->{Pos}; # Start matching at this point. my $len = length(${$sr}); for (; $i < $len; ++$i) { last if ord (substr (${$sr}, $i, 1)) == 10; } # Extract the line: my $line; if ($i < $len) { $line = substr (${$sr}, $self->{Pos}, $i - $self->{Pos} + 1); $self->{Pos} = $i+1; # Remember where we finished up. } else { $line = substr (${$sr}, $self->{Pos}, $i - $self->{Pos}); $self->{Pos} = $len; } return $line; } #------------------------------ =item getlines I Get all remaining lines. It will croak() if accidentally called in a scalar context. =cut sub getlines { my $self = shift; wantarray or croak("Can't call getlines in scalar context!"); my ($line, @lines); push @lines, $line while (defined($line = $self->getline)); @lines; } #------------------------------ =item print ARGS... I Print ARGS to the underlying scalar. B Currently, this always causes a "seek to the end of the string"; this may change in the future. =cut sub print { my $self = shift; ${$self->{SR}} .= join('', @_); $self->{Pos} = length(${$self->{SR}}); 1; } #------------------------------ =item read BUF, NBYTES, [OFFSET] I Read some bytes from the scalar. Returns the number of bytes actually read, 0 on end-of-file, undef on error. =cut sub read { my $self = $_[0]; my $n = $_[2]; my $off = $_[3] || 0; my $read = substr(${$self->{SR}}, $self->{Pos}, $n); $n = length($read); $self->{Pos} += $n; ($off ? substr($_[1], $off) : $_[1]) = $read; return $n; } #------------------------------ =item write BUF, NBYTES, [OFFSET] I Write some bytes to the scalar. =cut sub write { my $self = $_[0]; my $n = $_[2]; my $off = $_[3] || 0; my $data = substr($_[1], $off, $n); $n = length($data); $self->print($data); return $n; } #------------------------------ =item sysread BUF, LEN, [OFFSET] I Read some bytes from the scalar. Returns the number of bytes actually read, 0 on end-of-file, undef on error. =cut sub sysread { my $self = shift; $self->read (@_); } #------------------------------ =item syswrite BUF, NBYTES, [OFFSET] I Write some bytes to the scalar. =cut sub syswrite { my $self = shift; $self->write (@_); } =back =cut #============================== =head2 Seeking/telling and other attributes =over 4 =cut #------------------------------ =item autoflush I No-op, provided for OO compatibility. =cut sub autoflush {} #------------------------------ =item binmode I No-op, provided for OO compatibility. =cut sub binmode {} #------------------------------ =item clearerr I Clear the error and EOF flags. A no-op. =cut sub clearerr { 1 } #------------------------------ =item eof I Are we at end of file? =cut sub eof { my $self = shift; ($self->{Pos} >= length(${$self->{SR}})); } #------------------------------ =item seek OFFSET, WHENCE I Seek to a given position in the stream. =cut sub seek { my ($self, $pos, $whence) = @_; my $eofpos = length(${$self->{SR}}); # Seek: if ($whence == 0) { $self->{Pos} = $pos } # SEEK_SET elsif ($whence == 1) { $self->{Pos} += $pos } # SEEK_CUR elsif ($whence == 2) { $self->{Pos} = $eofpos + $pos} # SEEK_END else { croak "bad seek whence ($whence)" } # Fixup: if ($self->{Pos} < 0) { $self->{Pos} = 0 } if ($self->{Pos} > $eofpos) { $self->{Pos} = $eofpos } 1; } #------------------------------ =item tell I Return the current position in the stream, as a numeric offset. =cut sub tell { shift->{Pos} } #------------------------------ =item setpos POS I Set the current position, using the opaque value returned by C. =cut sub setpos { shift->seek($_[0],0) } #------------------------------ =item getpos I Return the current position in the string, as an opaque object. =cut *getpos = \&tell; #------------------------------ =item sref I Return a reference to the underlying scalar. =cut sub sref { shift->{SR} } #------------------------------ # Tied handle methods... #------------------------------ # Conventional tiehandle interface: sub TIEHANDLE { shift->new(@_) } sub GETC { shift->getc(@_) } sub PRINT { shift->print(@_) } sub PRINTF { shift->print(sprintf(shift, @_)) } sub READ { shift->read(@_) } sub READLINE { wantarray ? shift->getlines(@_) : shift->getline(@_) } sub WRITE { shift->write(@_); } sub CLOSE { shift->close(@_); } #------------------------------------------------------------ 1; __END__ =back =cut =head1 VERSION $Id: Scalar.pm,v 1.122 2000/09/28 06:32:28 eryq Exp $ =head1 AUTHORS =head2 Principal author Eryq (F). President, ZeeGee Software Inc (F). =head2 Other contributors The full set of contributors always includes the folks mentioned in L. But just the same, special thanks to the following individuals for their invaluable contributions (if I've forgotten or misspelled your name, please email me!): I for contributing C. I for suggesting C. I for finding and fixing the bug in C. I for his offset-using read() and write() implementations. I (F), for his patches to massively improve the performance of C and add C and C. =cut