/usr/lib/perl5/Text/BibTeX/File.pm is in libtext-bibtex-perl 0.66-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | # ----------------------------------------------------------------------
# NAME : BibTeX/File.pm
# CLASSES : Text::BibTeX::File
# RELATIONS :
# DESCRIPTION: Provides an object-oriented interface to whole BibTeX
# files.
# CREATED : March 1997, Greg Ward
# MODIFIED :
# VERSION : $Id: File.pm 10124 2011-10-21 10:15:41Z ambs $
# COPYRIGHT : Copyright (c) 1997-2000 by Gregory P. Ward. All rights
# reserved.
#
# This file is part of the Text::BibTeX library. This
# library is free software; you may redistribute it and/or
# modify it under the same terms as Perl itself.
# ----------------------------------------------------------------------
package Text::BibTeX::File;
use strict;
use Carp;
use IO::File;
use vars qw'$VERSION';
$VERSION = 0;
=head1 NAME
Text::BibTeX::File - interface to whole BibTeX files
=head1 SYNOPSIS
use Text::BibTeX; # this loads Text::BibTeX::File
$bib = new Text::BibTeX::File "foo.bib" or die "foo.bib: $!\n";
# or:
$bib = new Text::BibTeX::File;
$bib->open ("foo.bib") || die "foo.bib: $!\n";
$bib->set_structure ($structure_name,
$option1 => $value1, ...);
$at_eof = $bib->eof;
$bib->close;
=head1 DESCRIPTION
C<Text::BibTeX::File> provides an object-oriented interface to BibTeX
files. Its most obvious purpose is to keep track of a filename and
filehandle together for use by the C<Text::BibTeX::Entry> module (which
is much more interesting). In addition, it allows you to specify
certain options which are applicable to a whole database (file), rather
than having to specify them for each entry in the file. Currently, you
can specify the I<database structure> and some I<structure options>.
These concepts are fully documented in L<Text::BibTeX::Structure>.
=head1 METHODS
=head2 Object creation, file operations
=over 4
=item new ([FILENAME [,MODE [,PERMS]]])
Creates a new C<Text::BibTeX::File> object. If FILENAME is supplied,
passes it to the C<open> method (along with MODE and PERMS if they
are supplied). If the C<open> fails, C<new> fails and returns false; if
the C<open> succeeds (or if FILENAME isn't supplied), C<new> returns the
new object reference.
=item open (FILENAME [,MODE [,PERMS]])
Opens the file specified by FILENAME, possibly using MODE and PERMS.
See L<IO::File> for full semantics; this C<open> is just a front end for
C<IO::File::open>.
=item close ()
Closes the filehandle associated with the object. If there is no such
filehandle (i.e., C<open> was never called on the object), does nothing.
=item eof ()
Returns the end-of-file state of the filehandle associated with the
object: a true value means we are at the end of the file.
=back
=cut
sub new
{
my $class = shift;
$class = ref ($class) || $class;
my $self = bless {}, $class;
($self->open (@_) || return undef) if @_; # filename [, mode [, perms]]
$self;
}
sub open
{
my $self = shift;
$self->{filename} = $_[0];
$self->{handle} = new IO::File;
$self->{handle}->open (@_); # filename, maybe mode, maybe perms
}
sub close
{
my $self = shift;
$self->{handle}->close if $self->{handle};
}
sub eof
{
eof (shift->{handle});
}
sub DESTROY
{
my $self = shift;
$self->close;
}
=head2 Object properties
=over 4
=item set_structure (STRUCTURE [, OPTION =E<gt> VALUE, ...])
Sets the database structure for a BibTeX file. At the simplest level,
this means that entries from the file are expected to conform to certain
field requirements as specified by the I<structure module>. It also
gives you full access to the methods of the particular I<structured
entry class> for this structure, allowing you to perform operations
specific to this kind of database. See L<Text::BibTeX::Structure/"CLASS
INTERACTIONS"> for all the consequences of setting the database
structure for a C<Text::BibTeX::File> object.
=item structure ()
Returns the name of the database structure associated with the object
(as set by C<set_structure>).
=cut
sub set_structure
{
my ($self, $structure, @options) = @_;
require Text::BibTeX::Structure;
croak "Text::BibTeX::File::set_structure: options list must have even " .
"number of elements"
unless @options % 2 == 0;
$self->{structure} = new Text::BibTeX::Structure ($structure, @options);
}
sub structure { shift->{structure} }
=item preserve_values ([PRESERVE])
Sets the "preserve values" flag, to control all future parsing of entries
from this file. If PRESERVE isn't supplied, returns the current state of
the flag. See L<Text::BibTeX::Value> for details on parsing in "value
preservation" mode.
=back
=cut
sub preserve_values
{
my $self = shift;
$self->{'preserve_values'} = shift if @_;
$self->{'preserve_values'};
}
1;
=head1 SEE ALSO
L<Text::BibTeX>, L<Text::BibTeX::Entry>, L<Text::BibTeX::Structure>
=head1 AUTHOR
Greg Ward <gward@python.net>
=head1 COPYRIGHT
Copyright (c) 1997-2000 by Gregory P. Ward. All rights reserved. This file
is part of the Text::BibTeX library. This library is free software; you
may redistribute it and/or modify it under the same terms as Perl itself.
|