/usr/lib/perl5/PDL/Char.pm is in pdl 1:2.4.7+dfsg-2ubuntu5.
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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | package PDL::Char;
@ISA = qw (PDL);
use overload ("\"\"" => \&PDL::Char::string);
use strict;
use vars ('$level', '@dims'); # Global Vars used
=head1 NAME
PDL::Char -- PDL subclass which allows reading and writing of fixed-length character strings as byte PDLs
=head1 SYNOPSIS
use PDL;
use PDL::Char;
my $pchar = PDL::Char->new( [['abc', 'def', 'ghi'],['jkl', 'mno', 'pqr']] );
$pchar->setstr(1,0,'foo');
print $pchar; # 'string' bound to "", perl stringify function
# Prints:
# [
# ['abc' 'foo' 'ghi']
# ['jkl' 'mno' 'pqr']
# ]
print $pchar->atstr(2,0);
# Prints:
# ghi
=head1 DESCRIPTION
This subclass of PDL allows one to manipulate PDLs of 'byte' type as if they were made of fixed
length strings, not just numbers.
This type of behavior is useful when you want to work with charactar grids. The indexing is done
on a string level and not a character level for the 'setstr' and 'atstr' commands.
This module is in particular useful for writing NetCDF files that include character data using the
PDL::NetCDF module.
=head1 FUNCTIONS
=head2 new
=for ref
Function to create a byte PDL from a string, list of strings, list of list of strings, etc.
=for usage
# create a new PDL::Char from a perl array of strings
$strpdl = PDL::Char->new( ['abc', 'def', 'ghij'] );
# Convert a PDL of type 'byte' to a PDL::Char
$strpdl1 = PDL::Char->new (sequence (byte, 4, 5)+99);
=for example
$pdlchar3d = PDL::Char->new([['abc','def','ghi'],['jkl', 'mno', 'pqr']]);
=cut
sub new {
my $type = shift;
my $value = (scalar(@_)>1 ? [@_] : shift); # ref thyself
# re-bless byte PDLs as PDL::Char
if (ref($value) =~ /PDL/) {
PDL::Core::barf('Cannot convert a non-byte PDL to PDL::Char')
if ($value->get_datatype != $PDL::Types::PDL_B);
return bless $value, $type;
}
my $ptype = $PDL::Types::PDL_B;
my $self = PDL->initialize();
$self->set_datatype($ptype);
$value = 0 if !defined($value);
$level = 0; @dims = (); # package vars
my $maxlength; # max length seen for all character strings
my $samelen = 1; # Flag = 1 if all character strings are the same length
# 1st Pass thru the perl array structure, assume all strings the same length
my $str = _rcharpack($value,\$maxlength,\$samelen);
unless( $samelen){ # Strings weren't the same length, go thru again and null pad to
# the max length.
$str = _rcharpack2($value,$maxlength);
}
$self->setdims([reverse @dims]);
${$self->get_dataref} = $str;
$self->upd_data();
return bless $self, $type;
}
# Take an N-D perl array of strings and pack it into a single string,
# updating the $level and @dims package vars on the way.
# Used by the 'char' constructor
#
# References supplied so $maxlength and $samelen are updated along the way as well.
#
#
# This version (_rcharpack) is for the 1st pass thru the N-d string array.
# It assumes that all strings are the same length, but also checks to see if they aren't
sub _rcharpack {
my $a = shift; # Input string
my ($maxlenref, $samelenref) = @_; # reference to $maxlength, $samelen
my ($ret,$type);
$ret = "";
if (ref($a) eq "ARRAY") {
PDL::Core::barf('Array is not rectangular') if (defined($dims[$level]) and
$dims[$level] != scalar(@$a));
$dims[$level] = scalar (@$a);
$level++;
$type = ref($$a[0]);
for(@$a) {
PDL::Core::barf('Array is not rectangular') unless $type eq ref($_); # Equal types
$ret .= _rcharpack($_,$maxlenref, $samelenref);
}
$level--;
}elsif (ref(\$a) eq "SCALAR") {
my $len = length($a);
# Check for this length being different then the others:
$$samelenref = 0 if( defined($$maxlenref) && ($len != $$maxlenref) );
# Save the max length:
$$maxlenref = $len if( !defined($$maxlenref) || $len > $$maxlenref); # see if this is the max length seen so far
$dims[$level] = $len;
$ret = $a;
}else{
PDL::Core::barf("Don't know how to make a PDL object from passed argument");
}
return $ret;
}
#
#
# This version (_rcharpack2) is for the 2nd pass (if required) thru the N-d string array.
# If the 1st pass thru (_rcharpack) finds that all strings were not the same length,
# this routine will go thru and null-pad all strings to the max length seen.
# Note: For efficiency, the error checking is not repeated here, because any errors will
# already be detected in the 1st pass.
#
sub _rcharpack2 {
my $a = shift; # Input string
my ($maxlen) = @_; # Length to pad strings to
my ($ret,$type);
$ret = "";
if (ref($a) eq "ARRAY") {
# Checks not needed the second time thru (removed)
$dims[$level] = scalar (@$a);
$level++;
$type = ref($$a[0]);
for(@$a) {
$ret .= _rcharpack2($_,$maxlen);
}
$level--;
}elsif (ref(\$a) eq "SCALAR") {
my $len = length($a);
$dims[$level] = $maxlen;
$ret = $a.("\00" x ($maxlen - $len));
}
return $ret;
}
#
#
=head2 string
=for ref
Function to print a character PDL (created by 'char') in a pretty format.
=for usage
$char = PDL::Char->new( [['abc', 'def', 'ghi'], ['jkl', 'mno', 'pqr']] );
print $char; # 'string' bound to "", perl stringify function
# Prints:
# [
# ['abc' 'def' 'ghi']
# ['jkl' 'mno' 'pqr']
# ]
# 'string' is overloaded to the "" operator, so:
# print $char;
# should have the same effect.
=cut
sub string {
my $self = shift;
my $level = shift || 0;
my $sep = $PDL::use_commas ? "," : " ";
if ($self->dims == 1) {
my $str = ${$self->get_dataref}; # get copy of string
$str =~ s/\00+$//g; # get rid of any null padding
return "\'". $str. "\'". $sep;
} else {
my @dims = reverse $self->dims;
my $ret = '';
$ret .= (" " x $level) . '[' . ((@dims == 2) ? ' ' : "\n");
for (my $i=0;$i<$dims[0];$i++) {
my $slicestr = ":," x (scalar(@dims)-1) . "($i)";
my $substr = $self->slice($slicestr);
$ret .= $substr->string($level+1);
}
$ret .= (" " x $level) . ']' . $sep . "\n";
return $ret;
}
}
=head2 setstr
=for ref
Function to set one string value in a character PDL. The input position is
the position of the string, not a character in the string. The first dimension
is assumed to be the length of the string.
The input string will be null-padded if the string is shorter than the first
dimension of the PDL. It will be truncated if it is longer.
=for usage
$char = PDL::Char->new( [['abc', 'def', 'ghi'], ['jkl', 'mno', 'pqr']] );
$char->setstr(0,1, 'foobar');
print $char; # 'string' bound to "", perl stringify function
# Prints:
# [
# ['abc' 'def' 'ghi']
# ['foo' 'mno' 'pqr']
# ]
$char->setstr(2,1, 'f');
print $char; # 'string' bound to "", perl stringify function
# Prints:
# [
# ['abc' 'def' 'ghi']
# ['foo' 'mno' 'f'] -> note that this 'f' is stored "f\0\0"
# ]
=cut
sub setstr { # Sets a particular single value to a string.
PDL::Core::barf('Usage: setstr($pdl, $x, $y,.., $value)') if $#_<2;
my $self = shift;
my $val = pop;
my @dims = $self->dims;
my $n = $dims[0];
for (my $i=0;$i<$n;$i++) {
my $chr = ($i >= length($val)) ? 0 : unpack ("C", substr ($val, $i, 1));
PDL::Core::set_c ($self, [$i, @_], $chr);
}
}
=head2 atstr
=for ref
Function to fetch one string value from a PDL::Char type PDL, given a position within the PDL.
The input position of the string, not a character in the string. The length of the input
string is the implied first dimension.
=for usage
$char = PDL::Char->new( [['abc', 'def', 'ghi'], ['jkl', 'mno', 'pqr']] );
print $char->atstr(0,1);
# Prints:
# jkl
=cut
sub atstr { # Fetchs a string value from a PDL::Char
PDL::Core::barf('Usage: atstr($pdl, $x, $y,..,)') if (@_ < 2);
my $self = shift;
my $str = ':,' . join (',', map {"($_)"} @_);
my $a = $self->slice($str);
my $val = ${$a->get_dataref}; # get the data
$val =~ s/\00+$//g; # get rid of any null padding
return $val;
}
# yuck ;) this is a cool little accessor method
# rebless a slice into PDL; originally
# Marc's idea used in PDL::Complex
sub numeric {
my ($seq) = @_;
return bless $seq->slice(''), 'PDL';
}
1;
|