/usr/lib/perl5/YAML/Syck.pm is in libyaml-syck-perl 1.19-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 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 | package YAML::Syck;
# See documentation after the __END__ mark.
use strict;
use vars qw(
@ISA @EXPORT $VERSION
$Headless $SortKeys $SingleQuote
$ImplicitBinary $ImplicitTyping $ImplicitUnicode
$UseCode $LoadCode $DumpCode
$DeparseObject $LoadBlessed
);
use 5.006;
use Exporter;
BEGIN {
$VERSION = '1.19';
@EXPORT = qw( Dump Load DumpFile LoadFile );
@ISA = qw( Exporter );
$SortKeys = 1;
$LoadBlessed = 1;
local $@;
eval {
require XSLoader;
XSLoader::load(__PACKAGE__, $VERSION);
1;
} or do {
require DynaLoader;
push @ISA, 'DynaLoader';
__PACKAGE__->bootstrap($VERSION);
};
}
use constant QR_MAP => {
'' => sub { qr{$_[0]} },
x => sub { qr{$_[0]}x },
i => sub { qr{$_[0]}i },
s => sub { qr{$_[0]}s },
m => sub { qr{$_[0]}m },
ix => sub { qr{$_[0]}ix },
sx => sub { qr{$_[0]}sx },
mx => sub { qr{$_[0]}mx },
si => sub { qr{$_[0]}si },
mi => sub { qr{$_[0]}mi },
ms => sub { qr{$_[0]}sm },
six => sub { qr{$_[0]}six },
mix => sub { qr{$_[0]}mix },
msx => sub { qr{$_[0]}msx },
msi => sub { qr{$_[0]}msi },
msix => sub { qr{$_[0]}msix },
};
sub __qr_helper {
if ($_[0] =~ /\A \(\? ([ixsm]*) (?:- (?:[ixsm]*))? : (.*) \) \z/x) {
my $sub = QR_MAP()->{$1} || QR_MAP()->{''};
&$sub($2);
}
else {
qr/$_[0]/;
}
}
sub Dump {
$#_ ? join('', map { YAML::Syck::DumpYAML($_) } @_)
: YAML::Syck::DumpYAML($_[0]);
}
sub Load {
if (wantarray) {
my ($rv) = YAML::Syck::LoadYAML($_[0]);
@{$rv};
}
else {
@_ = $_[0];
goto &YAML::Syck::LoadYAML;
}
}
sub _is_glob {
my $h = shift;
return 1 if(ref($h) eq 'GLOB');
return 1 if(ref(\$h) eq 'GLOB');
return 1 if(ref($h) =~ m/^IO::/);
return;
}
sub DumpFile {
my $file = shift;
if ( _is_glob($file) ) {
if ($#_) {
print {$file} YAML::Syck::DumpYAML($_) for @_;
}
else {
print {$file} YAML::Syck::DumpYAML($_[0]);
}
}
else {
open(my $fh, '>', $file) or die "Cannot write to $file: $!";
if ($#_) {
print {$fh} YAML::Syck::DumpYAML($_) for @_;
}
else {
print {$fh} YAML::Syck::DumpYAML($_[0]);
}
close $fh;
}
}
sub LoadFile {
my $file = shift;
if ( _is_glob($file) ) {
if( -z $file ) {
die("Cannot load an empty file");
};
Load(do { local $/; <$file> });
}
else {
if(!-e $file || -z $file) {
die("'$file' is empty or non-existant");
}
open(my $fh, '<', $file) or die "Cannot read from $file: $!";
Load(do { local $/; <$fh> });
}
}
1;
__END__
=pod
=head1 NAME
YAML::Syck - Fast, lightweight YAML loader and dumper
=head1 SYNOPSIS
use YAML::Syck;
# Set this for interoperability with other YAML/Syck bindings:
# e.g. Load('Yes') becomes 1 and Load('No') becomes ''.
$YAML::Syck::ImplicitTyping = 1;
$data = Load($yaml);
$yaml = Dump($data);
# $file can be an IO object, or a filename
$data = LoadFile($file);
DumpFile($file, $data);
# A string with multiple YAML streams in it
$yaml = Dump(@data);
@data = Load($yaml);
=head1 DESCRIPTION
This module provides a Perl interface to the B<libsyck> data serialization
library. It exports the C<Dump> and C<Load> functions for converting
Perl data structures to YAML strings, and the other way around.
B<NOTE>: If you are working with other language's YAML/Syck bindings
(such as Ruby), please set C<$YAML::Syck::ImplicitTyping> to C<1> before
calling the C<Load>/C<Dump> functions. The default setting is for
preserving backward-compatibility with C<YAML.pm>.
=head1 Differences Between YAML::Syck and YAML
=head2 Error handling
Some calls are designed to die rather than returning YAML. You should wrap
your calls in eval to assure you do not get unexpected results.
=head1 FLAGS
=head2 $YAML::Syck::Headless
Defaults to false. Setting this to a true value will make C<Dump> omit the
leading C<---\n> marker.
=head2 $YAML::Syck::SortKeys
Defaults to false. Setting this to a true value will make C<Dump> sort
hash keys.
=head2 $YAML::Syck::SingleQuote
Defaults to false. Setting this to a true value will make C<Dump> always emit
single quotes instead of bare strings.
=head2 $YAML::Syck::ImplicitTyping
Defaults to false. Setting this to a true value will make C<Load> recognize
various implicit types in YAML, such as unquoted C<true>, C<false>, as well as
integers and floating-point numbers. Otherwise, only C<~> is recognized to
be C<undef>.
=head2 $YAML::Syck::ImplicitUnicode
Defaults to false. For Perl 5.8.0 or later, setting this to a true value will
make C<Load> set Unicode flag on for every string that contains valid UTF8
sequences, and make C<Dump> return a unicode string.
Regardless of this flag, Unicode strings are dumped verbatim without escaping;
byte strings with high-bit set will be dumped with backslash escaping.
However, because YAML does not distinguish between these two kinds of strings,
so this flag will affect loading of both variants of strings.
If you want to use LoadFile or DumpFile with unicode, you are required to open
your own file in order to assure it's UTF8 encoded:
open(my $fh, ">:encoding(UTF-8)", "out.yml");
DumpFile($fh, $hashref);
=head2 $YAML::Syck::ImplicitBinary
Defaults to false. For Perl 5.8.0 or later, setting this to a true value will
make C<Dump> generate Base64-encoded C<!!binary> data for all non-Unicode
scalars containing high-bit bytes.
=head2 $YAML::Syck::UseCode / $YAML::Syck::LoadCode / $YAML::Syck::DumpCode
These flags control whether or not to try and eval/deparse perl source code;
each of them defaults to false.
Setting C<$YAML::Syck::UseCode> to a true value is equivalent to setting
both C<$YAML::Syck::LoadCode> and C<$YAML::Syck::DumpCode> to true.
=head2 $YAML::Syck::LoadBlessed
Defaults to true. Setting this to a false value will prevent C<Load> from
blessing tag names that do not begin with C<!!perl> or C<!perl>; see below.
=head1 BUGS
Dumping Glob/IO values do not work yet.
Dumping of Tied variables is unsupported.
=head1 CAVEATS
This module implements the YAML 1.0 spec. To deal with data in YAML 1.1,
please use the C<YAML::XS> module instead.
The current implementation bundles libsyck source code; if your system has a
site-wide shared libsyck, it will I<not> be used.
Tag names such as C<!!perl/hash:Foo> is blessed into the package C<Foo>, but
the C<!hs/foo> and C<!!hs/Foo> tags are blessed into C<hs::Foo>. Note that
this holds true even if the tag contains non-word characters; for example,
C<!haskell.org/Foo> is blessed into C<haskell.org::Foo>. Please use
L<Class::Rebless> to cast it into other user-defined packages. You can also
set the LoadBlessed flag false to disable blessing tag names that do not begin
with C<!!perl> or C<!perl>.
This module has L<a lot of known
issues|https://rt.cpan.org/Public/Dist/Display.html?Name=YAML-Syck>
and has only been semi-actively maintained since 2007. If you
encounter an issue with it probably won't be fixed unless you L<offer
up a patch|http://github.com/avar/YAML-Syck> in Git that's ready for
release.
There are still good reasons to use this module, such as better
interoperability with other syck wrappers (like Ruby's), or some edge
case of YAML's syntax that it handles better. It'll probably work
perfectly for you, but if it doesn't you may want to look at
L<YAML::XS>, or perhaps at looking another serialization format like
L<JSON>.
=head1 SEE ALSO
L<YAML>, L<JSON::Syck>
L<http://www.yaml.org/>
=head1 AUTHORS
Audrey Tang E<lt>cpan@audreyt.orgE<gt>
=head1 COPYRIGHT
Copyright 2005-2009 by Audrey Tang E<lt>cpan@audreyt.orgE<gt>.
This software is released under the MIT license cited below.
The F<libsyck> code bundled with this library is released by
"why the lucky stiff", under a BSD-style license. See the F<COPYING>
file for details.
=head2 The "MIT" License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
=cut
|