Server IP : 103.119.228.120 / Your IP : 18.222.56.71 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/ssl/local/ssl/local/ssl/local/ssl/local/ssl/local/share/perl5/MySQL/ |
Upload File : |
package MySQL::Diff; =head1 NAME MySQL::Diff - Generates a database upgrade instruction set =head1 SYNOPSIS use MySQL::Diff; my $md = MySQL::Diff->new( %options ); my $db1 = $md->register_db($ARGV[0], 1); my $db2 = $md->register_db($ARGV[1], 2); my $diffs = $md->diff(); =head1 DESCRIPTION Generates the SQL instructions required to upgrade the first database to match the second. =cut use warnings; use strict; our $VERSION = '0.50'; # ------------------------------------------------------------------------------ # Libraries use MySQL::Diff::Database; use MySQL::Diff::Utils qw(debug debug_level debug_file); use Data::Dumper; # ------------------------------------------------------------------------------ =head1 METHODS =head2 Constructor =over 4 =item new( %options ) Instantiate the objects, providing the command line options for database access and process requirements. =back =cut sub new { my $class = shift; my %hash = @_; my $self = {}; bless $self, ref $class || $class; $self->{opts} = \%hash; if($hash{debug}) { debug_level($hash{debug}) ; delete $hash{debug}; } if($hash{debug_file}) { debug_file($hash{debug_file}) ; delete $hash{debug_file}; } debug(3,"\nconstructing new MySQL::Diff"); return $self; } =head2 Public Methods Fuller documentation will appear here in time :) =over 4 =item * register_db($name,$inx) Reference the database, and setup a connection. The name can be an already existing 'MySQL::Diff::Database' database object. The index can be '1' or '2', and refers both to the order of the diff, and to the host, port, username and password arguments that have been supplied. =cut sub register_db { my ($self, $name, $inx) = @_; return unless $inx == 1 || $inx == 2; my $db = ref $name eq 'MySQL::Diff::Database' ? $name : $self->_load_database($name,$inx); $self->{databases}[$inx-1] = $db; return $db; } =item * db1() =item * db2() Return the first and second databases registered via C<register_db()>. =cut sub db1 { shift->{databases}->[0] } sub db2 { shift->{databases}->[1] } =item * diff() Performs the diff, returning a string containing the commands needed to change the schema of the first database into that of the second. =back =cut sub diff { my $self = shift; my @changes; my %used_tables = (); debug(1, "\ncomparing databases"); for my $table1 ($self->db1->tables()) { my $name = $table1->name(); $used_tables{'-- '. $name} = 1; debug(4, "table 1 $name = ".Dumper($table1)); debug(2,"looking at tables called '$name'"); if (my $table2 = $self->db2->table_by_name($name)) { debug(3,"comparing tables called '$name'"); push @changes, $self->_diff_tables($table1, $table2); } else { debug(3,"table '$name' dropped"); push @changes, "DROP TABLE $name;\n\n" unless $self->{opts}{'only-both'} || $self->{opts}{'keep-old-tables'}; } } for my $table2 ($self->db2->tables()) { my $name = $table2->name(); $used_tables{'-- '. $name} = 1; debug(4, "table 2 $name = ".Dumper($table2)); if (! $self->db1->table_by_name($name)) { debug(3,"table '$name' added"); debug(4,"table '$name' added '".$table2->def()."'"); push @changes, $table2->def() . "\n" unless $self->{opts}{'only-both'}; } } debug(4,join '', @changes); my $out = ''; if (@changes) { if (!$self->{opts}{'list-tables'}) { $out .= $self->_diff_banner(); } else { $out .= "-- TABLES LIST \n"; $out .= join "\n", keys %used_tables; $out .= "\n-- END OF TABLES LIST \n"; } $out .= join '', @changes; } return $out; } # ------------------------------------------------------------------------------ # Private Methods sub _diff_banner { my ($self) = @_; my $summary1 = $self->db1->summary(); my $summary2 = $self->db2->summary(); my $opt_text = join ', ', map { $self->{opts}{$_} eq '1' ? $_ : "$_=$self->{opts}{$_}" } keys %{$self->{opts}}; $opt_text = "## Options: $opt_text\n" if $opt_text; my $now = scalar localtime(); return <<EOF; ## mysqldiff $VERSION ## ## Run on $now $opt_text## ## --- $summary1 ## +++ $summary2 EOF } sub _diff_tables { my $self = shift; my @changes = ( $self->_diff_fields(@_), $self->_diff_indices(@_), $self->_diff_primary_key(@_), $self->_diff_foreign_key(@_), $self->_diff_options(@_) ); $changes[-1] =~ s/\n*$/\n/ if (@changes); return @changes; } sub _diff_fields { my ($self, $table1, $table2) = @_; my $name1 = $table1->name(); my $fields1 = $table1->fields; my $fields2 = $table2->fields; return () unless $fields1 || $fields2; my @changes; if($fields1) { for my $field (keys %$fields1) { debug(3,"table1 had field '$field'"); my $f1 = $fields1->{$field}; my $f2 = $fields2->{$field}; if ($fields2 && $f2) { if ($self->{opts}{tolerant}) { for ($f1, $f2) { s/ COLLATE [\w_]+//gi; } } if ($f1 ne $f2) { if (not $self->{opts}{tolerant} or (($f1 !~ m/$f2\(\d+,\d+\)/) and ($f1 ne "$f2 DEFAULT '' NOT NULL") and ($f1 ne "$f2 NOT NULL") )) { debug(3,"field '$field' changed"); my $change = "ALTER TABLE $name1 CHANGE COLUMN $field $field $f2;"; $change .= " # was $f1" unless $self->{opts}{'no-old-defs'}; $change .= "\n"; push @changes, $change; } } } else { debug(3,"field '$field' removed"); my $change = "ALTER TABLE $name1 DROP COLUMN $field;"; $change .= " # was $fields1->{$field}" unless $self->{opts}{'no-old-defs'}; $change .= "\n"; push @changes, $change; } } } if($fields2) { for my $field (keys %$fields2) { unless($fields1 && $fields1->{$field}) { debug(3,"field '$field' added"); my $changes = "ALTER TABLE $name1 ADD COLUMN $field $fields2->{$field}"; if ($table2->is_auto_inc($field)) { if ($table2->isa_primary($field)) { $changes .= ' PRIMARY KEY'; } elsif ($table2->is_unique($field)) { $changes .= ' UNIQUE KEY'; } } push @changes, "$changes;\n"; } } } return @changes; } sub _diff_indices { my ($self, $table1, $table2) = @_; my $name1 = $table1->name(); my $indices1 = $table1->indices(); my $indices2 = $table2->indices(); return () unless $indices1 || $indices2; my @changes; if($indices1) { for my $index (keys %$indices1) { debug(3,"table1 had index '$index'"); my $old_type = $table1->is_unique($index) ? 'UNIQUE' : $table1->is_fulltext($index) ? 'FULLTEXT INDEX' : 'INDEX'; if ($indices2 && $indices2->{$index}) { if( ($indices1->{$index} ne $indices2->{$index}) or ($table1->is_unique($index) xor $table2->is_unique($index)) or ($table1->is_fulltext($index) xor $table2->is_fulltext($index)) ) { debug(3,"index '$index' changed"); my $new_type = $table2->is_unique($index) ? 'UNIQUE' : $table2->is_fulltext($index) ? 'FULLTEXT INDEX' : 'INDEX'; my $changes = "ALTER TABLE $name1 DROP INDEX $index;"; $changes .= " # was $old_type ($indices1->{$index})" unless $self->{opts}{'no-old-defs'}; $changes .= "\nALTER TABLE $name1 ADD $new_type $index ($indices2->{$index});\n"; push @changes, $changes; } } else { debug(3,"index '$index' removed"); my $auto = _check_for_auto_col($table2, $indices1->{$index}, 1) || ''; my $changes = $auto ? _index_auto_col($table1, $indices1->{$index}) : ''; $changes .= "ALTER TABLE $name1 DROP INDEX $index;"; $changes .= " # was $old_type ($indices1->{$index})" unless $self->{opts}{'no-old-defs'}; $changes .= "\n"; push @changes, $changes; } } } if($indices2) { for my $index (keys %$indices2) { next if($indices1 && $indices1->{$index}); next if( !$table2->isa_primary($index) && $table2->is_unique($index) && _key_covers_auto_col($table2, $index) ); debug(3,"index '$index' added"); my $new_type = $table2->is_unique($index) ? 'UNIQUE' : 'INDEX'; push @changes, "ALTER TABLE $name1 ADD $new_type $index ($indices2->{$index});\n"; } } return @changes; } sub _diff_primary_key { my ($self, $table1, $table2) = @_; my $name1 = $table1->name(); my $primary1 = $table1->primary_key(); my $primary2 = $table2->primary_key(); return () unless $primary1 || $primary2; my @changes; if ($primary1 && ! $primary2) { debug(3,"primary key '$primary1' dropped"); my $changes = _index_auto_col($table2, $primary1); $changes .= "ALTER TABLE $name1 DROP PRIMARY KEY;"; $changes .= " # was $primary1" unless $self->{opts}{'no-old-defs'}; return ( "$changes\n" ); } if (! $primary1 && $primary2) { debug(3,"primary key '$primary2' added"); return () if _key_covers_auto_col($table2, $primary2); return ("ALTER TABLE $name1 ADD PRIMARY KEY $primary2;\n"); } if ($primary1 ne $primary2) { debug(3,"primary key changed"); my $auto = _check_for_auto_col($table2, $primary1) || ''; my $changes = $auto ? _index_auto_col($table2, $auto) : ''; $changes .= "ALTER TABLE $name1 DROP PRIMARY KEY;"; $changes .= " # was $primary1" unless $self->{opts}{'no-old-defs'}; $changes .= "\nALTER TABLE $name1 ADD PRIMARY KEY $primary2;\n"; $changes .= "ALTER TABLE $name1 DROP INDEX $auto;\n" if($auto); push @changes, $changes; } return @changes; } sub _diff_foreign_key { my ($self, $table1, $table2) = @_; my $name1 = $table1->name(); my $fks1 = $table1->foreign_key(); my $fks2 = $table2->foreign_key(); return () unless $fks1 || $fks2; my @changes; if($fks1) { for my $fk (keys %$fks1) { debug(1,"$name1 has fk '$fk'"); if ($fks2 && $fks2->{$fk}) { if($fks1->{$fk} ne $fks2->{$fk}) { debug(1,"foreign key '$fk' changed"); my $changes = "ALTER TABLE $name1 DROP FOREIGN KEY $fk;"; $changes .= " # was CONSTRAINT $fk $fks1->{$fk}" unless $self->{opts}{'no-old-defs'}; $changes .= "\nALTER TABLE $name1 ADD CONSTRAINT $fk FOREIGN KEY $fks2->{$fk};\n"; push @changes, $changes; } } else { debug(1,"foreign key '$fk' removed"); my $changes .= "ALTER TABLE $name1 DROP FOREIGN KEY $fk;"; $changes .= " # was CONSTRAINT $fk $fks1->{$fk}" unless $self->{opts}{'no-old-defs'}; $changes .= "\n"; push @changes, $changes; } } } if($fks2) { for my $fk (keys %$fks2) { next if($fks1 && $fks1->{$fk}); debug(1, "foreign key '$fk' added"); push @changes, "ALTER TABLE $name1 ADD CONSTRAINT $fk FOREIGN KEY $fks2->{$fk};\n"; } } return @changes; } # If we're about to drop a composite (multi-column) index, we need to # check whether any of the columns in the composite index are # auto_increment; if so, we have to add an index for that # auto_increment column *before* dropping the composite index, since # auto_increment columns must always be indexed. sub _check_for_auto_col { my ($table, $fields, $primary) = @_; my @fields = _fields_from_key($fields); for my $field (@fields) { next if($table->field($field) !~ /auto_increment/i); next if($table->isa_index($field)); next if($primary && $table->isa_primary($field)); return $field; } return; } sub _fields_from_key { my $key = shift; $key =~ s/^\s*\((.*)\)\s*$/$1/g; # strip brackets if any split /\s*,\s*/, $key; } sub _key_covers_auto_col { my ($table, $key) = @_; my @fields = _fields_from_key($key); for my $field (@fields) { return 1 if $table->is_auto_inc($field); } return; } sub _index_auto_col { my ($table, $field) = @_; my $name = $table->name; return "ALTER TABLE $name ADD INDEX ($field); # auto columns must always be indexed\n"; } sub _diff_options { my ($self, $table1, $table2) = @_; my $name = $table1->name(); my $options1 = $table1->options(); my $options2 = $table2->options(); return () unless $options1 || $options2; my @changes; if ($self->{opts}{tolerant}) { for ($options1, $options2) { s/ AUTO_INCREMENT=\d+//gi; s/ COLLATE=[\w_]+//gi; } } if ($options1 ne $options2) { my $change = "ALTER TABLE $name $options2;"; $change .= " # was " . ($options1 || 'blank') unless $self->{opts}{'no-old-defs'}; $change .= "\n"; push @changes, $change; } return @changes; } sub _load_database { my ($self, $arg, $authnum) = @_; debug(2, "parsing arg $authnum: '$arg'\n"); my %auth; for my $auth (qw/dbh host port user password socket/) { $auth{$auth} = $self->{opts}{"$auth$authnum"} || $self->{opts}{$auth}; delete $auth{$auth} unless $auth{$auth}; } if ($arg =~ /^db:(.*)/) { return MySQL::Diff::Database->new(db => $1, auth => \%auth, 'single-transaction' => $self->{opts}{'single-transaction'}, 'table-re' => $self->{opts}{'table-re'}); } if ($self->{opts}{"dbh"} || $self->{opts}{"host$authnum"} || $self->{opts}{"port$authnum"} || $self->{opts}{"user$authnum"} || $self->{opts}{"password$authnum"} || $self->{opts}{"socket$authnum"}) { return MySQL::Diff::Database->new(db => $arg, auth => \%auth, 'single-transaction' => $self->{opts}{'single-transaction'}, 'table-re' => $self->{opts}{'table-re'}); } if (-f $arg) { return MySQL::Diff::Database->new(file => $arg, auth => \%auth, 'single-transaction' => $self->{opts}{'single-transaction'}, 'table-re' => $self->{opts}{'table-re'}); } my %dbs = MySQL::Diff::Database::available_dbs(%auth); debug(2, " available databases: ", (join ', ', keys %dbs), "\n"); if ($dbs{$arg}) { return MySQL::Diff::Database->new(db => $arg, auth => \%auth, 'single-transaction' => $self->{opts}{'single-transaction'}, 'table-re' => $self->{opts}{'table-re'}); } warn "'$arg' is not a valid file or database.\n"; return; } sub _debug_level { my ($self,$level) = @_; debug_level($level); } 1; __END__ =head1 COPYRIGHT AND LICENSE Copyright (c) 2000-2016 Adam Spiers. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L<mysqldiff>, L<MySQL::Diff::Database>, L<MySQL::Diff::Table>, L<MySQL::Diff::Utils> =head1 AUTHOR Adam Spiers <mysqldiff@adamspiers.org> =cut