Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
776fe686
Commit
776fe686
authored
Jul 12, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 578278: Search.pm: Fully generate the SELECT clause inside of an accessor
r=mkanat, a=mkanat
parent
546b2df2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
43 deletions
+77
-43
Search.pm
Bugzilla/Search.pm
+77
-43
No files found.
Bugzilla/Search.pm
View file @
776fe686
...
...
@@ -292,7 +292,7 @@ use constant SPECIAL_ORDER => {
};
# Certain columns require other columns to come before them
# in _
display
_columns, and should be put there if they're not there.
# in _
select
_columns, and should be put there if they're not there.
use
constant
COLUMN_DEPENDS
=>
{
classification
=>
[
'product'
],
percentage_complete
=>
[
'actual_time'
,
'remaining_time'
],
...
...
@@ -531,31 +531,85 @@ sub _multi_select_fields {
return
$self
->
{
multi_select_fields
};
}
# These are the fields the user has chosen to display on the buglist.
sub
_display_columns
{
my
(
$self
,
$columns
)
=
@_
;
if
(
$columns
)
{
my
@actual_columns
;
foreach
my
$column
(
@$columns
)
{
###############################
# Internal Accessors: Columns #
###############################
# These are the fields the user has chosen to display on the buglist,
# exactly as they were passed to new().
sub
_input_columns
{
@
{
$_
[
0
]
->
{
'fields'
}
||
[]
}
}
# These are columns that are also going to be in the SELECT for one reason
# or another, but weren't actually requested by the caller.
sub
_extra_columns
{
my
(
$self
)
=
@_
;
# Everything that's going to be in the ORDER BY must also be
# in the SELECT. We make a copy of input_order here so that modifications
# to extra_columns don't modify input_order.
$self
->
{
extra_columns
}
||=
[
$self
->
_input_order
];
return
@
{
$self
->
{
extra_columns
}
};
}
# For search functions to modify extra_columns. It doesn't matter if
# people push the same column onto this array multiple times, because
# _select_columns will call "uniq" on its final result.
sub
_add_extra_column
{
my
(
$self
,
$column
)
=
@_
;
push
(
@
{
$self
->
{
extra_columns
}
},
$column
);
}
# These are the columns that we're going to be actually SELECTing.
sub
_select_columns
{
my
(
$self
)
=
@_
;
return
@
{
$self
->
{
select_columns
}
}
if
$self
->
{
select_columns
};
my
@select_columns
;
foreach
my
$column
(
$self
->
_input_columns
,
$self
->
_extra_columns
)
{
if
(
my
$add_first
=
COLUMN_DEPENDS
->
{
$column
})
{
push
(
@actual_columns
,
@$add_first
);
}
push
(
@actual_columns
,
$column
);
push
(
@select_columns
,
@$add_first
);
}
$self
->
{
display_columns
}
=
[
uniq
@actual_columns
]
;
push
(
@select_columns
,
$column
)
;
}
return
$self
->
{
display_columns
}
||
[]
;
$self
->
{
select_columns
}
=
[
uniq
@select_columns
];
return
@
{
$self
->
{
select_columns
}
};
}
# JOIN statements for the display columns. This should not be called
# Until the moment it is needed, because _
display
_columns might be
# Until the moment it is needed, because _
select
_columns might be
# modified by the charts.
sub
_
display
_column_joins
{
sub
_
select
_column_joins
{
my
(
$self
)
=
@_
;
$self
->
{
display_column_joins
}
||=
$self
->
_build_
display
_column_joins
();
$self
->
{
display_column_joins
}
||=
$self
->
_build_
select
_column_joins
();
return
@
{
$self
->
{
display_column_joins
}
};
}
# This takes _select_columns and translates it into the actual SQL that
# will go into the SELECT clause.
sub
_sql_select
{
my
(
$self
)
=
@_
;
my
@sql_fields
;
foreach
my
$column
(
$self
->
_select_columns
)
{
my
$alias
=
$column
;
# Aliases cannot contain dots in them. We convert them to underscores.
$alias
=~
s/\./_/g
;
my
$sql
=
(
$column
eq
EMPTY_COLUMN
)
?
EMPTY_COLUMN
:
COLUMNS
->
{
$column
}
->
{
name
}
.
" AS $alias"
;
push
(
@sql_fields
,
$sql
);
}
return
@sql_fields
;
}
#############################
# Internal Accessors: Order #
#############################
# The "order" that was requested by the consumer, exactly as it was
# requested.
sub
_input_order
{
@
{
$_
[
0
]
->
{
'order'
}
||
[]
}
}
# A hashref that describes all the special stuff that has to be done
# for various fields if they go into the ORDER BY clause.
sub
_special_order
{
my
(
$self
)
=
@_
;
return
$self
->
{
special_order
}
if
$self
->
{
special_order
};
...
...
@@ -583,10 +637,10 @@ sub _special_order {
# Helpers for Internal Accessors #
##################################
sub
_build_
display
_column_joins
{
sub
_build_
select
_column_joins
{
my
(
$self
)
=
@_
;
my
@joins
;
foreach
my
$field
(
@
{
$self
->
_display_columns
}
)
{
foreach
my
$field
(
$self
->
_select_columns
)
{
my
@column_join
=
$self
->
_column_join
(
$field
);
push
(
@joins
,
@column_join
);
}
...
...
@@ -648,12 +702,10 @@ sub new {
sub
init
{
my
$self
=
shift
;
my
$fields
=
$self
->
_display_columns
(
$self
->
{
'fields'
});
my
$params
=
$self
->
{
'params'
};
$params
->
convert_old_params
();
$self
->
{
'user'
}
||=
Bugzilla
->
user
;
my
$user
=
$self
->
{
'user'
};
my
@inputorder
=
@
{
$self
->
{
'order'
}
||
[]
};
my
@orderby
;
...
...
@@ -666,13 +718,6 @@ sub init {
my
$dbh
=
Bugzilla
->
dbh
;
# All items that are in the ORDER BY must be in the SELECT.
foreach
my
$orderitem
(
@inputorder
)
{
my
$column_name
=
split_order_term
(
$orderitem
);
if
(
!
grep
(
$_
eq
$column_name
,
@$fields
))
{
push
(
@$fields
,
$column_name
);
}
}
# If the user has selected all of either status or resolution, change to
# selecting none. This is functionally equivalent, but quite a lot faster.
...
...
@@ -1119,7 +1164,6 @@ sub init {
where
=>
\
@wherepart
,
having
=>
\
@having
,
group_by
=>
\
@groupby
,
fields
=>
$fields
,
);
# This should add a "term" selement to %search_args.
$self
->
do_search_function
(
\%
search_args
);
...
...
@@ -1175,7 +1219,7 @@ sub init {
my
%
suppseen
=
(
"bugs"
=>
1
);
my
$suppstring
=
"bugs"
;
my
@supplist
=
(
" "
);
foreach
my
$str
(
$self
->
_
display
_column_joins
,
@supptables
)
{
foreach
my
$str
(
$self
->
_
select
_column_joins
,
@supptables
)
{
if
(
$str
=~
/^(LEFT|INNER|RIGHT)\s+JOIN/i
)
{
$str
=~
/^(.*?)\s+ON\s+(.*)$/i
;
...
...
@@ -1197,16 +1241,8 @@ sub init {
# Make sure we create a legal SQL query.
@andlist
=
(
"1 = 1"
)
if
!
@andlist
;
my
@sql_fields
;
foreach
my
$field
(
@$fields
)
{
my
$alias
=
$field
;
# Aliases cannot contain dots in them. We convert them to underscores.
$alias
=~
s/\./_/g
;
my
$sql_field
=
(
$field
eq
EMPTY_COLUMN
)
?
EMPTY_COLUMN
:
COLUMNS
->
{
$field
}
->
{
name
}
.
" AS $alias"
;
push
(
@sql_fields
,
$sql_field
);
}
my
$query
=
"SELECT "
.
join
(
', '
,
@sql_fields
)
.
my
$query
=
"SELECT "
.
join
(
', '
,
$self
->
_sql_select
)
.
" FROM $suppstring"
.
" LEFT JOIN bug_group_map "
.
" ON bug_group_map.bug_id = bugs.bug_id "
;
...
...
@@ -1234,7 +1270,7 @@ sub init {
}
# For some DBs, every field in the SELECT must be in the GROUP BY.
foreach
my
$field
(
@$field
s
)
{
foreach
my
$field
(
$self
->
_select_column
s
)
{
# These fields never go into the GROUP BY (bug_id goes in
# explicitly, below).
my
@skip_group_by
=
(
EMPTY_COLUMN
,
...
...
@@ -1940,11 +1976,9 @@ sub _percentage_complete {
push
(
@$joins
,
"LEFT JOIN longdescs AS $table "
.
"ON $table.bug_id = bugs.bug_id"
);
# We need remaining_time in _
display
_columns, otherwise we can't use
# We need remaining_time in _
select
_columns, otherwise we can't use
# it in the expression for creating percentage_complete.
if
(
!
grep
{
$_
eq
'remaining_time'
}
@$fields
)
{
push
(
@$fields
,
'remaining_time'
);
}
$self
->
_add_extra_column
(
'remaining_time'
);
$self
->
_do_operator_function
(
$args
);
push
(
@$having
,
$args
->
{
term
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment