X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Frose_auto_create_model.pl;h=14fea7955c793896fd654050fe6a260840380ff2;hb=4f7837d76dff9243196ac8fb3c4099215e32c514;hp=de7df3bca12e9b546bda8cbf8cb7a35d9b8d9024;hpb=0448fc15357e20ffb74e08f2a8459820494a6eef;p=kivitendo-erp.git diff --git a/scripts/rose_auto_create_model.pl b/scripts/rose_auto_create_model.pl index de7df3bca..14fea7955 100755 --- a/scripts/rose_auto_create_model.pl +++ b/scripts/rose_auto_create_model.pl @@ -14,7 +14,9 @@ use Digest::MD5 qw(md5_hex); use English qw( -no_match_vars ); use Getopt::Long; use List::MoreUtils qw(none); +use List::UtilsBy qw(partition_by); use Pod::Usage; +use Rose::DB::Object 0.809; use Term::ANSIColor; use SL::Auth; @@ -86,11 +88,10 @@ sub setup { } sub process_table { - my @spec = @_; - my $table = $spec[0]; + my ($domain, $table, $package) = @_; my $schema = ''; ($schema, $table) = split(m/\./, $table) if $table =~ m/\./; - my $package = ucfirst($spec[1] || $spec[0]); + $package = ucfirst($package || $table); $package =~ s/_+(.)/uc($1)/ge; my $meta_file = "${meta_path}/${package}.pm"; my $mngr_file = "${manager_path}/${package}.pm"; @@ -185,7 +186,7 @@ CODE my $old_md5 = md5_hex($orig_file); my $new_size = length $full_definition; my $new_md5 = md5_hex($full_definition); - if ($old_size == $new_size && $old_md5 == $new_md5) { + if ($old_size == $new_size && $old_md5 eq $new_md5) { notice("No changes in $meta_file, skipping.") unless $config{quiet}; return; } @@ -285,19 +286,30 @@ sub usage { } sub make_tables { - my @tables; + my %tables_by_domain; if ($config{all}) { - my $db = SL::DB::create(undef, 'KIVITENDO'); - @tables = grep { my $table = $_; none { $_ eq $table } @{ $blacklist{KIVITENDO} } } $db->list_tables; + foreach my $domain (sort keys %package_names) { + my $db = SL::DB::create(undef, $domain); + $tables_by_domain{$domain} = [ grep { my $table = $_; none { $_ eq $table } @{ $blacklist{$domain} } } $db->list_tables ]; + $db->disconnect; + } } elsif (@ARGV) { - @tables = @ARGV; + %tables_by_domain = partition_by { + my ($domain, $table) = split m{:}; + $table ? uc($domain) : 'KIVITENDO'; + } @ARGV; + + foreach my $tables (values %tables_by_domain) { + s{.*:}{} for @{ $tables }; + } + } else { error("You specified neither --all nor any specific tables."); usage(); } - @tables; + return %tables_by_domain; } sub error { @@ -310,15 +322,19 @@ sub notice { parse_args(\%config); setup(); -my @tables = make_tables(); -my @unknown_tables = grep { !$package_names{KIVITENDO}->{$_} } @tables; -if (@unknown_tables) { - error("The following tables do not have entries in \%SL::DB::Helper::Mappings::kivitendo_package_names: " . join(' ', sort @unknown_tables)); - exit 1; -} +my %tables_by_domain = make_tables(); -process_table($_, $package_names{KIVITENDO}->{$_}) for @tables; +foreach my $domain (keys %tables_by_domain) { + my @tables = @{ $tables_by_domain{$domain} }; + my @unknown_tables = grep { !$package_names{$domain}->{$_} } @tables; + if (@unknown_tables) { + error("The following tables do not have entries in \%SL::DB::Helper::Mappings::${domain}_package_names: " . join(' ', sort @unknown_tables)); + exit 1; + } + + process_table($domain, $_, $package_names{$domain}->{$_}) for @tables; +} 1; @@ -332,7 +348,7 @@ rose_auto_create_model - mana Rose::DB::Object classes for kivitendo =head1 SYNOPSIS - scripts/rose_auto_create_model.pl --client name-or-id table1 [table2 ...] + scripts/rose_auto_create_model.pl --client name-or-id [db1:]table1 [[db2:]table2 ...] scripts/rose_auto_create_model.pl --client name-or-id [--all|-a] # updates all models @@ -388,6 +404,17 @@ C class file and a C manager class file. The first one will be updated if the schema changes, the second and third ones will only be created if it they do not exist. +=head1 DATABASE NAMES AND TABLES + +If you want to generate the data for specific tables only then you +have to list them on the command line. The format is +C. The part C is optional and defaults +to C – which means the tables in the default kivitendo +database. + +Valid database names are keys in the hash returned by +L. + =head1 OPTIONS =over 4