recode.pl 9.5 KB
Newer Older
1
#!/usr/bin/perl
2 3 4
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
#
6 7
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
8

9
use 5.10.1;
10
use strict;
11 12
use warnings;

13
use lib qw(. lib);
14 15 16

use Bugzilla;
use Bugzilla::Constants;
17
use Bugzilla::Util qw(detect_encoding);
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

use Digest::MD5 qw(md5_base64);
use Encode qw(encode decode resolve_alias is_utf8);
use Getopt::Long;
use Pod::Usage;

#############
# Constants #
#############

use constant IGNORE_ENCODINGS => qw(utf8 ascii iso-8859-1);

use constant MAX_STRING_LEN => 25;

# For certain tables, we can't automatically determine their Primary Key.
# So, we specify it here as a string.
use constant SPECIAL_KEYS => {
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

  # bugs_activity since 4.4 has a unique primary key added
  bugs_activity   => 'bug_id,bug_when,fieldid',
  profile_setting => 'user_id,setting_name',

  # profiles_activity since 4.4 has a unique primary key added
  profiles_activity => 'userid,profiles_when,fieldid',
  setting_value     => 'name,value',

  # longdescs didn't used to have a PK, before 2.20.
  longdescs => 'bug_id,bug_when',

  # The 2.16 versions table lacked a PK
  versions => 'product_id,value',

  # These are all for earlier versions of Bugzilla. On a modern
  # version of Bugzilla, this script will ignore these (thanks to
  # code further down).
  components => 'program,value',
  products   => 'product',
55 56 57 58 59 60 61 62
};

###############
# Subroutines #
###############

# "truncate" is a file operation in perl, so we can't use that name.
sub trunc {
63 64 65 66 67 68
  my ($str) = @_;
  my $truncated = substr($str, 0, MAX_STRING_LEN);
  if (length($truncated) ne length($str)) {
    $truncated .= '...';
  }
  return $truncated;
69 70 71
}

sub is_valid_utf8 {
72 73 74
  my ($str) = @_;
  Encode::_utf8_on($str);
  return is_utf8($str, 1);
75 76 77 78 79 80 81 82
}

###############
# Main Script #
###############

my %switch;
GetOptions(\%switch, 'dry-run', 'guess', 'charset=s', 'show-failures',
83
  'overrides=s', 'help|h');
84

85
pod2usage({-verbose => 1}) if $switch{'help'};
86 87

# You have to specify at least one of these switches.
88
pod2usage({-verbose => 0}) if (!$switch{'charset'} && !$switch{'guess'});
89 90

if (exists $switch{'charset'}) {
91 92
  $switch{'charset'} = resolve_alias($switch{'charset'})
    || die "'$switch{charset}' is not a valid charset.";
93 94 95
}

if ($switch{'guess'}) {
96 97 98
  if (!eval { require Encode::Detect::Detector }) {
    my $root = ROOT_USER;
    print STDERR <<EOT;
99
Using --guess requires that Encode::Detect be installed. To install
100
Encode::Detect, run the following command:
101

102
  $^X install-module.pl Encode::Detect
103 104

EOT
105 106
    exit;
  }
107 108 109 110
}

my %overrides;
if (exists $switch{'overrides'}) {
111 112 113 114 115 116 117 118 119
  my $file = new IO::File($switch{'overrides'}, 'r')
    || die "$switch{overrides}: $!";
  my @lines = $file->getlines();
  $file->close();
  foreach my $line (@lines) {
    chomp($line);
    my ($digest, $encoding) = split(' ', $line);
    $overrides{$digest} = $encoding;
  }
120 121 122 123
}

my $dbh = Bugzilla->dbh;

124
if ($dbh->isa('Bugzilla::DB::Mysql')) {
125 126 127 128 129 130 131 132 133 134 135 136

  # Get the actual current encoding of the DB.
  my $collation_data
    = $dbh->selectrow_arrayref("SHOW VARIABLES LIKE 'character_set_database'");
  my $db_charset = $collation_data->[1];

  # Set our connection encoding to *that* encoding, so that MySQL
  # correctly accepts our changes.
  $dbh->do("SET NAMES $db_charset");

  # Make the database give us raw bytes.
  $dbh->do('SET character_set_results = NULL');
137
}
138 139 140 141

$dbh->begin_work;

foreach my $table ($dbh->bz_table_list_real) {
142 143 144 145 146 147 148 149 150
  my @columns = $dbh->bz_table_columns($table);

  my $pk = SPECIAL_KEYS->{$table};
  if ($pk) {

    # Assure that we're on a version of Bugzilla where those keys
    # actually exist.
    foreach my $column (split ',', $pk) {
      $pk = undef if !$dbh->bz_column_info($table, $column);
151
    }
152
  }
153

154 155 156 157 158 159 160 161
  # Figure out the primary key.
  foreach my $column (@columns) {
    my $def = $dbh->bz_column_info($table, $column);
    $pk = $column if $def->{PRIMARYKEY};
  }

  # If there's no PK, it's defined by a UNIQUE index.
  if (!$pk) {
162
    foreach my $column (@columns) {
163 164 165 166
      my $index = $dbh->bz_index_info($table, "${table}_${column}_idx");
      if ($index && ref($index) eq 'HASH') {
        $pk = join(',', @{$index->{FIELDS}}) if $index->{TYPE} eq 'UNIQUE';
      }
167
    }
168
  }
169

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
  foreach my $column (@columns) {
    my $def = $dbh->bz_column_info($table, $column);

    # If this is a text column, it may need work.
    if ($def->{TYPE} =~ /text|char/i) {

      # If there's still no PK, we're upgrading from 2.14 or earlier.
      # We can't reliably determine the PK (or at least, I don't want to
      # maintain code to record what the PK was at all points in history).
      # So instead we just use the field itself.
      $pk = $column if !$pk;

      print "Converting $table.$column...\n";
      my $sth = $dbh->prepare(
        "SELECT $column, $pk FROM $table 
185
                                      WHERE $column IS NOT NULL
186 187 188
                                            AND $column != ''"
      );

189 190
      my @pk_array   = map {"$_ = ?"} split(',', $pk);
      my $pk_where   = join(' AND ', @pk_array);
191 192 193 194 195 196 197 198 199
      my $update_sth = $dbh->prepare("UPDATE $table SET $column = ? WHERE $pk_where");

      $sth->execute();

      while (my @result = $sth->fetchrow_array) {
        my $data = shift @result;

        # Wide characters cause md5_base64() to die.
        my $digest_data = utf8::is_utf8($data) ? Encode::encode_utf8($data) : $data;
200
        my $digest      = md5_base64($digest_data);
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

        my @primary_keys = reverse split(',', $pk);

        # We copy the array so that we can pop things from it without
        # affecting the original.
        my @pk_data = @result;
        my $pk_line = join(', ', map { "$_ = " . pop @pk_data } @primary_keys);

        my $encoding;
        if ($switch{'guess'}) {
          $encoding = detect_encoding($data);

          # We only show failures if they don't appear to be
          # ASCII.
          if ($switch{'show-failures'} && !$encoding && !is_valid_utf8($data)) {
            my $truncated = trunc($data);
            print "Row: [$pk_line]\n", "Failed to guess: Key: $digest",
              " DATA: $truncated\n";
          }

          # If we fail a guess, and the data is valid UTF-8,
          # just assume we failed because it's UTF-8.
          next if is_valid_utf8($data);
        }

        # If we couldn't detect the charset (or were instructed
        # not to try), we fall back to --charset. If there's no
        # fallback, we just do nothing.
        if (!$encoding && $switch{'charset'}) {
          $encoding = $switch{'charset'};
        }

        $encoding = $overrides{$digest} if $overrides{$digest};

        # We only fix it if it's not ASCII or UTF-8 already.
        if ($encoding && !grep($_ eq $encoding, IGNORE_ENCODINGS)) {
          my $decoded = encode('utf8', decode($encoding, $data));
          if ($switch{'dry-run'} && $data ne $decoded) {
            print "Row:  [$pk_line]\n", "From: [" . trunc($data) . "] Key: $digest\n",
              "To:   [" . trunc($decoded) . "]", " Encoding : $encoding\n";
          }
          else {
            $update_sth->execute($decoded, @result);
          }
        }
      }    # while (my @result = $sth->fetchrow_array)
    }    # if ($column->{TYPE} =~ /text|char/i)
  }    # foreach my $column (@columns)
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
}

$dbh->commit;

__END__

=head1 NAME

recode.pl - Converts a database from one encoding (or multiple encodings) 
to UTF-8.

=head1 SYNOPSIS

 contrib/recode.pl [--guess [--show-failures]] [--charset=iso-8859-2]
                   [--overrides=file_name]

  --dry-run        Don't modify the database.

  --charset        Primary charset your data is currently in. This can be
                   optionally omitted if you do --guess.

  --guess          Try to guess the charset of the data.

  --show-failures  If we fail to guess, show where we failed.

  --overrides      Specify a file containing overrides. See --help
                   for more info.

  --help           Display detailed help.

 If you aren't sure what to do, try:

   contrib/recode.pl --guess --charset=cp1252

=head1 OPTIONS

=over

=item --dry-run

Don't modify the database, just print out what the conversions will be.

recode.pl will print out a Key for each item. You can use this in the 
overrides file, described below.

=item --guess 

If your database is in multiple different encodings, specify this switch 
and recode.pl will do its best to determine the original charset of the data.
The detection is usually very reliable.

If recode.pl cannot guess the charset, it will leave the data alone, unless
you've specified --charset.

=item --charset=charset-name

If you do not specify --guess, then your database is converted
from this character set into the UTF-8.

If you have specified --guess, recode.pl will use this charset as
a fallback--when it cannot guess the charset of a particular piece
of data, it will guess that the data is in this charset and convert
it from this charset to UTF-8.

charset-name must be a charset that is known to perl's Encode 
module. To see a list of available charsets, do: 

C<perl -MEncode -e 'print join("\n", Encode-E<gt>encodings(":all"))'>

=item --show-failures

If --guess fails to guess a charset, print out the data it failed on.

=item --overrides=file_name

This is a way of specifying certain encodings to override the encodings of 
--guess. The file is a series of lines. The line should start with the Key 
from --dry-run, and then a space, and then the encoding you'd like to use.

=back