/usr/share/perl5/SQL/Dialects/Role.pm is in libsql-statement-perl 1.405-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 | package SQL::Dialects::Role;
use strict;
use warnings;
use base qw(Exporter);
our @EXPORT = qw(get_config_as_hash);
our $VERSION = '1.405';
sub get_config_as_hash
{
my $class = $_[0];
my @data = split( m/\n/, $class->get_config() );
my %config;
my $feature;
for (@data)
{
chomp;
s/^\s+//;
s/\s+$//;
next unless ($_);
if (/^\[(.*)\]$/i)
{
$feature = lc $1;
$feature =~ s/\s+/_/g;
next;
}
my $newopt = uc $_;
$newopt =~ s/\s+/ /g;
$config{$feature}{$newopt} = 1;
}
return \%config;
}
=head1 NAME
SQL::Dialects::Role - The role of being a SQL::Dialect
=head1 SYNOPSIS
package My::SQL::Dialect;
use SQL::Dialects::Role;
sub get_config {
return <<CONFIG;
[SECTION]
item1
item2
[ANOTHER SECTION]
item1
item2
CONFIG
}
=head1 DESCRIPTION
This adds the role of being a SQL::Dialect to your class.
=head2 Requirements
You must implement...
=head3 get_config
my $config = $class->get_config;
Returns information about the dialect in an INI-like format.
=head2 Implements
The role implements...
=head3 get_config_as_hash
my $config = $class->get_config_as_hash;
Returns the data represented in get_config() as a hash ref.
Items will be upper-cased, sections will be lower-cased.
The example in the SYNOPSIS would come back as...
{
section => {
ITEM1 => 1,
ITEM2 => 2,
},
another_section => {
ITEM1 => 1,
ITEM2 => 2,
}
}
=head1 SEE ALSO
L<SQL::Parser/dialect()>
=cut
|