/usr/share/perl5/Tangram/Schema/Class.pm is in libtangram-perl 2.10-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 | package Tangram::Schema::Class;
use strict;
use Tangram::Schema::Node;
use vars qw(@ISA);
@ISA = qw( Tangram::Schema::Node );
sub members
{
my ($self, $type) = @_;
return @{$self->{$type}};
}
sub is_root
{
!@{ shift->{BASES} }
}
sub get_direct_fields
{
map { values %$_ } values %{ shift->{fields} }
}
sub get_table { shift->{table} }
*direct_fields = \&get_direct_fields;
sub get_import_cols {
my ($self, $context) = @_;
my $table = $self->{table};
map { map { [ $table, $_ ] } $_->get_import_cols($context) } $self->get_direct_fields()
}
sub get_export_cols {
my ($self, $context) = @_;
my $table = $self->{table};
map { map { [ $table, $_ ] } $_->get_export_cols($context) } $self->get_direct_fields()
}
|