Commit 78865fda authored by terry%mozilla.org's avatar terry%mozilla.org

Moved all the long descriptions out of the bugs table, and into a new

table. There is now a separate entry for each new long description, rather than appending them all together in one big field.
parent 84ca1e86
...@@ -480,15 +480,23 @@ foreach my $f ("short_desc", "long_desc", "bug_file_loc", ...@@ -480,15 +480,23 @@ foreach my $f ("short_desc", "long_desc", "bug_file_loc",
if (defined $::FORM{$f}) { if (defined $::FORM{$f}) {
my $s = trim($::FORM{$f}); my $s = trim($::FORM{$f});
if ($s ne "") { if ($s ne "") {
my $n = $f;
$s = SqlQuote($s); $s = SqlQuote($s);
if ($::FORM{$f . "_type"} eq "regexp") { my $type = $::FORM{$f . "_type"};
$query .= "and $f regexp $s\n"; if ($f eq "long_desc") {
} elsif ($::FORM{$f . "_type"} eq "notregexp") { # Patch in the longdescs table.
$query .= "and $f not regexp $s\n"; $query =~ s/where/, longdescs where/;
} elsif ($::FORM{$f . "_type"} eq "casesubstring") { $query .= "and longdescs.bug_id = bugs.bug_id\n";
$query .= "and instr($f, $s)\n"; $n = "longdescs.thetext";
}
if ($type eq "regexp") {
$query .= "and $n regexp $s\n";
} elsif ($type eq "notregexp") {
$query .= "and $n not regexp $s\n";
} elsif ($type eq "casesubstring") {
$query .= "and instr($n, $s)\n";
} else { } else {
$query .= "and instr(lower($f), lower($s))\n"; $query .= "and instr(lower($n), lower($s))\n";
} }
} }
} }
......
...@@ -107,6 +107,14 @@ use vars qw( ...@@ -107,6 +107,14 @@ use vars qw(
); );
# Trim whitespace from front and back.
sub trim {
($_) = (@_);
s/^\s+//g;
s/\s+$//g;
return $_;
}
...@@ -519,7 +527,6 @@ $table{bugs} = ...@@ -519,7 +527,6 @@ $table{bugs} =
creation_ts datetime not null, creation_ts datetime not null,
delta_ts timestamp, delta_ts timestamp,
short_desc mediumtext, short_desc mediumtext,
long_desc mediumtext,
op_sys enum($opsys) not null, op_sys enum($opsys) not null,
priority enum($priorities) not null, priority enum($priorities) not null,
product varchar(64) not null, product varchar(64) not null,
...@@ -561,6 +568,16 @@ $table{cc} = ...@@ -561,6 +568,16 @@ $table{cc} =
index(who)'; index(who)';
$table{longdescs} =
'bug_id mediumint not null,
who mediumint not null,
bug_when datetime not null,
thetext mediumtext,
index(bug_id),
index(bug_when)';
$table{components} = $table{components} =
'value tinytext, 'value tinytext,
program varchar(64), program varchar(64),
...@@ -1035,6 +1052,142 @@ AddField('profiles', 'disabledtext', 'mediumtext not null'); ...@@ -1035,6 +1052,142 @@ AddField('profiles', 'disabledtext', 'mediumtext not null');
# 2000-01-20 Added a new "longdescs" table, which is supposed to have all the
# long descriptions in it, replacing the old long_desc field in the bugs
# table. The below hideous code populates this new table with things from
# the old field, with ugly parsing and heuristics.
sub WriteOneDesc {
my ($id, $who, $when, $buffer) = (@_);
$buffer = trim($buffer);
if ($buffer eq '') {
return;
}
$dbh->do("INSERT INTO longdescs (bug_id, who, bug_when, thetext) VALUES " .
"($id, $who, " . time2str("'%Y/%m/%d %H:%M:%S'", $when) .
", " . $dbh->quote($buffer) . ")");
}
if (GetFieldDef('bugs', 'long_desc')) {
eval("use Date::Parse");
eval("use Date::Format");
my $sth = $dbh->prepare("SELECT count(*) FROM bugs");
$sth->execute();
my ($total) = ($sth->fetchrow_array);
print "Populating new long_desc table. This is slow. There are $total\n";
print "bugs to process; a line of dots will be printed for each 50.\n\n";
$| = 1;
$dbh->do("LOCK TABLES bugs write, longdescs write, profiles write");
$dbh->do('DELETE FROM longdescs');
$sth = $dbh->prepare("SELECT bug_id, creation_ts, reporter, long_desc " .
"FROM bugs ORDER BY bug_id");
$sth->execute();
my $count = 0;
while (1) {
my ($id, $createtime, $reporterid, $desc) = ($sth->fetchrow_array());
if (!$id) {
last;
}
print ".";
$count++;
if ($count % 10 == 0) {
print " ";
if ($count % 50 == 0) {
print "$count/$total (" . int($count * 100 / $total) . "%)\n";
}
}
$desc =~ s/\r//g;
my $who = $reporterid;
my $when = str2time($createtime);
my $buffer = "";
foreach my $line (split(/\n/, $desc)) {
$line =~ s/\s+$//g; # Trim trailing whitespace.
if ($line =~ /^------- Additional Comments From ([^\s]+)\s+(\d.+\d)\s+-------$/) {
my $name = $1;
my $date = str2time($2);
$date += 59; # Oy, what a hack. The creation time is
# accurate to the second. But we the long
# text only contains things accurate to the
# minute. And so, if someone makes a comment
# within a minute of the original bug creation,
# then the comment can come *before* the
# bug creation. So, we add 59 seconds to
# the time of all comments, so that they
# are always considered to have happened at
# the *end* of the given minute, not the
# beginning.
if ($date >= $when) {
WriteOneDesc($id, $who, $when, $buffer);
$buffer = "";
$when = $date;
my $s2 = $dbh->prepare("SELECT userid FROM profiles " .
"WHERE login_name = " .
$dbh->quote($name));
$s2->execute();
($who) = ($s2->fetchrow_array());
if (!$who) {
# This username doesn't exist. Try a special
# netscape-only hack (sorry about that, but I don't
# think it will hurt any other installations). We
# have many entries in the bugsystem from an ancient
# world where the "@netscape.com" part of the loginname
# was omitted. So, look up the user again with that
# appended, and use it if it's there.
if ($name !~ /\@/) {
my $nsname = $name . "\@netscape.com";
$s2 =
$dbh->prepare("SELECT userid FROM profiles " .
"WHERE login_name = " .
$dbh->quote($nsname));
$s2->execute();
($who) = ($s2->fetchrow_array());
}
}
if (!$who) {
# This username doesn't exist. Maybe someone renamed
# him or something. Invent a new profile entry,
# disabled, just to represent him.
$dbh->do("INSERT INTO profiles " .
"(login_name, password, cryptpassword," .
" disabledtext) VALUES (" .
$dbh->quote($name) .
", 'okthen', encrypt('okthen'), " .
"'Account created only to maintain database integrity')");
$s2 = $dbh->prepare("SELECT LAST_INSERT_ID()");
$s2->execute();
($who) = ($s2->fetchrow_array());
}
next;
} else {
# print "\nDecided this line of bug $id has a date of " .
# time2str("'%Y/%m/%d %H:%M:%S'", $date) .
# "\nwhich is less than previous line:\n$line\n\n";
}
}
$buffer .= $line . "\n";
}
WriteOneDesc($id, $who, $when, $buffer);
}
print "\n\n";
DropField('bugs', 'long_desc');
$dbh->do("UNLOCK TABLES");
print "Now regenerating the shadow database for all bugs.\n";
system("./processmail regenerate");
}
# #
# If you had to change the --TABLE-- definition in any way, then add your # If you had to change the --TABLE-- definition in any way, then add your
# differential change code *** A B O V E *** this comment. # differential change code *** A B O V E *** this comment.
......
...@@ -51,6 +51,7 @@ sub globals_pl_sillyness { ...@@ -51,6 +51,7 @@ sub globals_pl_sillyness {
use Mysql; use Mysql;
use Date::Format; # For time2str(). use Date::Format; # For time2str().
use Date::Parse; # For str2time().
# use Carp; # for confess # use Carp; # for confess
# Contains the version string for the current running Bugzilla. # Contains the version string for the current running Bugzilla.
...@@ -109,14 +110,11 @@ sub AppendComment { ...@@ -109,14 +110,11 @@ sub AppendComment {
if ($comment =~ /^\s*$/) { # Nothin' but whitespace. if ($comment =~ /^\s*$/) { # Nothin' but whitespace.
return; return;
} }
SendSQL("select long_desc from bugs where bug_id = $bugid");
my $whoid = DBNameToIdAndCheck($who);
my $desc = FetchOneColumn();
my $now = time2str("%Y-%m-%d %H:%M", time()); SendSQL("INSERT INTO longdescs (bug_id, who, bug_when, thetext) " .
$desc .= "\n\n------- Additional Comments From $who $now -------\n"; "VALUES($bugid, $whoid, now(), " . SqlQuote($comment) . ")");
$desc .= $comment;
SendSQL("update bugs set long_desc=" . SqlQuote($desc) .
" where bug_id=$bugid");
} }
sub lsearch { sub lsearch {
...@@ -464,8 +462,25 @@ sub DBNameToIdAndCheck { ...@@ -464,8 +462,25 @@ sub DBNameToIdAndCheck {
sub GetLongDescription { sub GetLongDescription {
my ($id) = (@_); my ($id) = (@_);
SendSQL("select long_desc from bugs where bug_id = $id"); my $result = "";
return FetchOneColumn(); SendSQL("SELECT profiles.login_name, longdescs.bug_when, " .
" longdescs.thetext " .
"FROM longdescs, profiles " .
"WHERE profiles.userid = longdescs.who " .
" AND longdescs.bug_id = $id " .
"ORDER BY longdescs.bug_when");
my $count = 0;
while (MoreSQLData()) {
my ($who, $when, $text) = (FetchSQLData());
if ($count) {
$result .= "\n\n------- Additional Comments From $who " .
time2str("%Y-%m-%d %H:%M", str2time($when)) . " -------\n";
}
$result .= $text;
$count++;
}
return $result;
} }
......
...@@ -128,7 +128,7 @@ foreach my $f (@bug_fields) { ...@@ -128,7 +128,7 @@ foreach my $f (@bug_fields) {
} }
my $query = "insert into bugs (\n" . join(",\n", @used_fields) . ", my $query = "insert into bugs (\n" . join(",\n", @used_fields) . ",
creation_ts, long_desc ) creation_ts )
values ( values (
"; ";
...@@ -142,7 +142,7 @@ $comment =~ s/\r\n/\n/g; # Get rid of windows-style line endings. ...@@ -142,7 +142,7 @@ $comment =~ s/\r\n/\n/g; # Get rid of windows-style line endings.
$comment =~ s/\r/\n/g; # Get rid of mac-style line endings. $comment =~ s/\r/\n/g; # Get rid of mac-style line endings.
$comment = trim($comment); $comment = trim($comment);
$query .= "now(), " . SqlQuote($comment) . " )\n"; $query .= "now())\n";
my %ccids; my %ccids;
...@@ -164,6 +164,9 @@ SendSQL($query); ...@@ -164,6 +164,9 @@ SendSQL($query);
SendSQL("select LAST_INSERT_ID()"); SendSQL("select LAST_INSERT_ID()");
my $id = FetchOneColumn(); my $id = FetchOneColumn();
SendSQL("INSERT INTO longdescs (bug_id, who, bug_when, thetext) VALUES " .
"($id, $::FORM{'reporter'}, now(), " . SqlQuote($comment) . ")");
foreach my $person (keys %ccids) { foreach my $person (keys %ccids) {
SendSQL("insert into cc (bug_id, who) values ($id, $person)"); SendSQL("insert into cc (bug_id, who) values ($id, $person)");
} }
......
...@@ -476,7 +476,7 @@ sub LogDependencyActivity { ...@@ -476,7 +476,7 @@ sub LogDependencyActivity {
# #
foreach my $id (@idlist) { foreach my $id (@idlist) {
my %dependencychanged; my %dependencychanged;
SendSQL("lock tables bugs write, bugs_activity write, cc write, profiles write, dependencies write, votes write, keywords write, keyworddefs read"); SendSQL("lock tables bugs write, bugs_activity write, cc write, profiles write, dependencies write, votes write, keywords write, longdescs write, keyworddefs read");
my @oldvalues = SnapShotBug($id); my @oldvalues = SnapShotBug($id);
if (defined $::FORM{'delta_ts'} && $::FORM{'delta_ts'} ne $delta_ts) { if (defined $::FORM{'delta_ts'} && $::FORM{'delta_ts'} ne $delta_ts) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment