/usr/share/perl5/UR/DataSource/Meta.pm is in libur-perl 0.430-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 | package UR::DataSource::Meta;
# The datasource for metadata describing the tables, columns and foreign
# keys in the target datasource
use strict;
use warnings;
use UR;
our $VERSION = "0.43"; # UR $VERSION;
UR::Object::Type->define(
class_name => 'UR::DataSource::Meta',
is => ['UR::DataSource::SQLite'],
);
sub _resolve_class_name_for_table_name_fixups {
my $self = shift->_singleton_object;
if ($_[0] =~ m/Dd/) {
$_[0] = "DataSource::RDBMS::";
}
return @_;
}
# Do a DB dump at commit time
sub dump_on_commit { 1; }
# This is the template for the schema:
our $METADATA_DB_SQL =<<EOS;
CREATE TABLE IF NOT EXISTS dd_bitmap_index (
data_source varchar NOT NULL,
owner varchar,
table_name varchar NOT NULL,
bitmap_index_name varchar NOT NULL,
PRIMARY KEY (data_source, owner, table_name, bitmap_index_name)
);
CREATE TABLE IF NOT EXISTS dd_fk_constraint (
data_source varchar NOT NULL,
owner varchar,
r_owner varchar,
table_name varchar NOT NULL,
r_table_name varchar NOT NULL,
fk_constraint_name varchar NOT NULL,
last_object_revision timestamp NOT NULL,
PRIMARY KEY(data_source, owner, r_owner, table_name, r_table_name, fk_constraint_name)
);
CREATE TABLE IF NOT EXISTS dd_fk_constraint_column (
fk_constraint_name varchar NOT NULL,
data_source varchar NOT NULL,
owner varchar NOT NULL,
table_name varchar NOT NULL,
r_table_name varchar NOT NULL,
column_name varchar NOT NULL,
r_column_name varchar NOT NULL,
PRIMARY KEY(data_source, owner, table_name, fk_constraint_name, column_name)
);
CREATE TABLE IF NOT EXISTS dd_pk_constraint_column (
data_source varchar NOT NULL,
owner varchar,
table_name varchar NOT NULL,
column_name varchar NOT NULL,
rank integer NOT NULL,
PRIMARY KEY (data_source,owner,table_name,column_name,rank)
);
CREATE TABLE IF NOT EXISTS dd_table (
data_source varchar NOT NULL,
owner varchar,
table_name varchar NOT NULL,
table_type varchar NOT NULL,
er_type varchar NOT NULL,
last_ddl_time timestamp,
last_object_revision timestamp NOT NULL,
remarks varchar,
PRIMARY KEY(data_source, owner, table_name)
);
CREATE TABLE IF NOT EXISTS dd_table_column (
data_source varchar NOT NULL,
owner varchar,
table_name varchar NOT NULL,
column_name varchar NOT NULL,
data_type varchar NOT NULL,
data_length varchar,
nullable varchar NOT NULL,
last_object_revision timestamp NOT NULL,
remarks varchar,
PRIMARY KEY(data_source, owner, table_name, column_name)
);
CREATE TABLE IF NOT EXISTS dd_unique_constraint_column (
data_source varchar NOT NULL,
owner varchar,
table_name varchar NOT NULL,
constraint_name varchar NOT NULL,
column_name varchar NOT NULL,
PRIMARY KEY (data_source,owner,table_name,constraint_name,column_name)
);
EOS
our $module_template=<<EOS;
package %s;
use warnings;
use strict;
use UR;
%s
1;
EOS
# This is a bit ugly until the db cache is symmetrical with the other transactional stuff
# It is run by the "ur update schema" command
sub generate_for_namespace {
my $class = shift;
my $namespace_name = shift;
Carp::confess('Refusing to make MetaDB for the UR namespace') if $namespace_name eq 'UR';
my $namespace_path = $namespace_name->__meta__->module_path();
my $meta_datasource_name = $namespace_name . '::DataSource::Meta';
my $meta_datasource = UR::Object::Type->define(
class_name => $meta_datasource_name,
is => 'UR::DataSource::Meta',
is_abstract => 0,
);
my $meta_datasource_src = $meta_datasource->resolve_module_header_source();
my $meta_datasource_filename = $meta_datasource->module_base_name();
my $meta_datasource_filepath = $namespace_path;
return unless defined($meta_datasource_filepath); # This namespace could be fabricated at runtime
$meta_datasource_filepath =~ s/.pm//;
$meta_datasource_filepath .= '/DataSource';
mkdir($meta_datasource_filepath);
unless (-d $meta_datasource_filepath) {
die "Failed to create directory $meta_datasource_filepath: $!";
}
$meta_datasource_filepath .= '/Meta.pm';
# Write the Meta DB datasource Module
if (-e $meta_datasource_filepath) {
Carp::croak("Can't create new MetaDB datasource Module $meta_datasource_filepath: File already exists");
}
my $fh = IO::File->new("> $meta_datasource_filepath");
unless ($fh) {
Carp::croak("Can't create MetaDB datasource Module $meta_datasource_filepath: $!");
}
$fh->printf($module_template, $meta_datasource_name, $meta_datasource_src);
# Write the skeleton SQLite file
my $meta_db_file = $meta_datasource->class_name->_data_dump_path;
IO::File->new(">$meta_db_file")->print($UR::DataSource::Meta::METADATA_DB_SQL);
return ($meta_datasource, $meta_db_file);
}
1;
=pod
=head1 NAME
UR::DataSource::Meta - Data source for the MetaDB
=head1 SYNOPSIS
my $meta_table = UR::DataSource::RDBMS::Table->get(
table_name => 'DD_TABLE'
namespace => 'UR',
);
my @myapp_tables = UR::DataSource::RDBMS::Table->get(
namespace => 'MyApp',
);
=head1 DESCRIPTION
UR::DataSource::Meta a datasource that contains all table/column meta
data for the UR namespace itself. Essentially the schema schema.
=head1 INHERITANCE
UR::DataSource::Meta is a subclass of L<UR::DataSource::SQLite>
=head1 get() required parameters
C<namespace> or C<data_source> are required parameters when calling C<get()>
on any MetaDB-sourced object types.
=cut
|