From f301c9241af577f8f3df94338f1329d91c82d252 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sat, 1 Jul 2006 23:45:53 +0000 Subject: Bug 343248: SQL query to get all keywords with bug count is duplicated in editkeywords.cgi and describekeywords.cgi Patch By Remi Zara r=mkanat, a=justdave --- Bugzilla/Keyword.pm | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'Bugzilla/Keyword.pm') diff --git a/Bugzilla/Keyword.pm b/Bugzilla/Keyword.pm index 6ba72479c..2e0f19f4c 100644 --- a/Bugzilla/Keyword.pm +++ b/Bugzilla/Keyword.pm @@ -38,6 +38,16 @@ use constant DB_TABLE => 'keyworddefs'; sub description { return $_[0]->{'description'}; } +sub bug_count { + ($_[0]->{'bug_count'}) ||= + Bugzilla->dbh->selectrow_array('SELECT COUNT(keywords.bug_id) AS bug_count + FROM keyworddefs + LEFT JOIN keywords + ON keyworddefs.id = keywords.keywordid + WHERE keyworddefs.id=?', undef, ($_[0]->id)); + return $_[0]->{'bug_count'}; +} + ############################### #### Subroutines ###### ############################### @@ -48,6 +58,29 @@ sub keyword_count { return $count; } +sub get_all_with_bug_count { + my $class = shift; + my $dbh = Bugzilla->dbh; + my $keywords = + $dbh->selectall_arrayref('SELECT ' . join(', ', DB_COLUMNS) . ', + COUNT(keywords.bug_id) AS bug_count + FROM keyworddefs + LEFT JOIN keywords + ON keyworddefs.id = keywords.keywordid ' . + $dbh->sql_group_by('keyworddefs.id', + 'keyworddefs.name, + keyworddefs.description') . ' + ORDER BY keyworddefs.name', {'Slice' => {}}); + if (!$keywords) { + return []; + } + + foreach my $keyword (@$keywords) { + bless($keyword, $class); + } + return $keywords; +} + 1; __END__ @@ -64,6 +97,8 @@ Bugzilla::Keyword - A Keyword that can be added to a bug. my $description = $keyword->description; + my $keywords = Bugzilla::Keyword->get_all_with_bug_count(); + =head1 DESCRIPTION Bugzilla::Keyword represents a keyword that can be added to a bug. @@ -87,6 +122,16 @@ implements. Params: none Returns: An integer, the count of keywords. +=item C + + Description: Returns all defined keywords. This is an efficient way + to get the associated bug counts, as only one SQL query + is executed with this method, instead of one per keyword + when calling get_all and then bug_count. + Params: none + Returns: A reference to an array of Keyword objects, or an empty + arrayref if there are no keywords. + =back =cut -- cgit v1.2.3-24-g4f1b