OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/lib/report/group_by/base.rb

108 lines
3.0 KiB

#-- copyright
# ReportingEngine
#
# Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#++
class Report::GroupBy
class Base < Report::Chainable
include Report::QueryUtils
inherited_attributes :group_fields, list: true, merge: false
def correct_position?
type == :row or !child.is_a?(engine::GroupBy::Base) or child.type == :column
end
def filter?
false
end
def sql_aggregation?
child.filter?
end
def cache_key
self.class.cache_key + type.to_s[0, 1]
end
##
# @param [FalseClass, TrueClass] prefix Whether or not add a table prefix the field names
# @return [Array<String,Symbol>] List of group by fields corresponding to self and all parents'
def all_group_fields(prefix = true)
@all_group_fields ||= []
@all_group_fields[prefix ? 0 : 1] ||= begin
fields = group_fields.reject { |c| c.blank? or c == 'base' }
(parent ? parent.all_group_fields(prefix) : []) + (prefix ? with_table(fields) : fields)
end.uniq
end
def self.select_fields(*fields)
unless fields.empty?
@select_fields ||= []
@select_fields += fields
end
@select_fields
end
def select_fields
# + (parent ? parent.select_fields : [])
self.class.select_fields ? self.class.select_fields : group_fields
end
##
# @param [FalseClass, TrueClass] prefix Whether or not add a table prefix the field names
# @return [Array<String,Symbol>] List of select fields corresponding to self and all parents'
def all_select_fields(prefix = true)
@all_select_fields ||= []
@all_select_fields[prefix ? 0 : 1] ||= begin
fields = select_fields.reject { |c| c.blank? or c == 'base' }
(parent ? parent.all_select_fields(prefix) : []) + (prefix ? with_table(fields) : fields)
end.uniq
end
def clear
@all_group_fields = @all_select_fields = nil
super
end
def aggregation_mixin
sql_aggregation? ? engine::GroupBy::SqlAggregation : engine::GroupBy::RubyAggregation
end
def initialize(child = nil, optios = {})
super
extend aggregation_mixin
group_fields field
end
def result
super
end
def compute_result
super.tap do |r|
r.type = type
r.important_fields = group_fields
end
end
def define_group(sql)
sql.select all_select_fields
sql.group_by all_group_fields(true)
end
end
end