/usr/share/perl5/Palm/Raw.pm is in libpalm-perl 1:1.013-1.
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 | # Palm::Raw.pm
#
# Perl class for dealing with "raw" PDB databases. A "raw" database is
# one where the AppInfo and sort blocks, and all of the
# records/resources, are just strings of bytes.
# This is useful as a default PDB handler, for cases where you want to
# be able to handle any kind of database in a generic fashion.
# You may also find it useful to subclass this class, for cases where
# you don't care about every type of thing in a database.
#
# Copyright (C) 1999, 2000, Andrew Arensburger.
# You may distribute this file under the terms of the Artistic
# License, as specified in the README file.
use strict;
package Palm::Raw;
use Palm::PDB;
use vars qw( $VERSION @ISA );
# One liner, to allow MakeMaker to work.
$VERSION = '1.013';
@ISA = qw( Palm::PDB );
=head1 NAME
Palm::Raw - Handler for "raw" Palm databases.
=head1 SYNOPSIS
use Palm::Raw;
For standalone programs.
use Palm::Raw();
@ISA = qw( Palm::Raw );
For Palm::PDB helper modules.
=head1 DESCRIPTION
The Raw PDB handler is a helper class for the Palm::PDB package. It is
intended as a generic handler for any database, or as a fallback
default handler.
If you have a standalone program and want it to be able to parse any
type of database, use
use Palm::Raw;
If you are using Palm::Raw as a parent class for your own database
handler, use
use Palm::Raw();
If you omit the parentheses, Palm::Raw will register itself as the
default handler for all databases, which is probably not what you
want.
The Raw handler does no processing on the database whatsoever. The
AppInfo block, sort block, records and resources are simply strings,
raw data from the database.
By default, the Raw handler only handles record databases (.pdb
files). If you want it to handle resource databases (.prc files) as
well, you need to call
&Palm::PDB::RegisterPRCHandlers("Palm::Raw", "");
in your script.
=head2 AppInfo block
$pdb->{appinfo}
This is a scalar, the raw data of the AppInfo block.
=head2 Sort block
$pdb->{sort}
This is a scalar, the raw data of the sort block.
=head2 Records
@{$pdb->{records}};
Each element in the "records" array is a reference-to-hash. In
addition to the standard keys ("attributes", "category", and "id"),
this hash contains the key "data"; its value is a string with the raw
record data.
=head2 Resources
@{$pdb->{resources}};
Each element in the "resources" array is a reference-to-hash. In
addition to the standard keys ("type" and "id"), it contains the key
"data"; its value is a string with the raw resource data.
=cut
#'
sub import
{
# This package handles any PDB.
&Palm::PDB::RegisterPDBHandlers(__PACKAGE__,
[ "", "" ]
);
}
# sub new
# sub new_Record
# These are just inherited.
sub ParseAppInfoBlock
{
my $self = shift;
my $data = shift;
return $data;
}
sub ParseSortBlock
{
my $self = shift;
my $data = shift;
return $data;
}
sub ParseRecord
{
my $self = shift;
my %record = @_;
return \%record;
}
sub ParseResource
{
my $self = shift;
my %resource = @_;
return \%resource;
}
sub PackAppInfoBlock
{
my $self = shift;
return $self->{appinfo};
}
sub PackSortBlock
{
my $self = shift;
return $self->{sort};
}
sub PackRecord
{
my $self = shift;
my $record = shift;
return $record->{data};
}
sub PackResource
{
my $self = shift;
my $resource = shift;
return $resource->{data};
}
1;
__END__
=head1 SOURCE CONTROL
The source is in Github:
http://github.com/briandfoy/p5-Palm/tree/master
=head1 AUTHOR
Alessandro Zummo, C<< <a.zummo@towertech.it> >>
Currently maintained by brian d foy, C<< <bdfoy@cpan.org> >>
=head1 SEE ALSO
Palm::PDB(3)
=cut
|