Class: GoodData::Metric
- Inherits:
-
MdObject
- Object
- Rest::Object
- Rest::Resource
- MdObject
- GoodData::Metric
- Includes:
- GoodData::Mixin::Lockable
- Defined in:
- lib/gooddata/models/metadata/metric.rb
Overview
Metric representation
Constant Summary
Constants inherited from MdObject
GoodData::MdObject::IDENTIFIERS_CFG, GoodData::MdObject::MD_OBJ_CTG
Constants included from GoodData::Mixin::MdIdToUri
GoodData::Mixin::MdIdToUri::IDENTIFIERS_CFG
Constants included from GoodData::Mixin::MdObjectIndexer
GoodData::Mixin::MdObjectIndexer::MD_OBJ_CTG
Constants included from GoodData::Mixin::MdObjectQuery
GoodData::Mixin::MdObjectQuery::ERROR_MESSAGE_NO_PROJECT
Instance Attribute Summary
Attributes inherited from Rest::Object
Class Method Summary collapse
-
.all(options = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Array<GoodData::MdObject> | Array<Hash>
Method intended to get all objects of that type in a specified project.
- .create(metric, options = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Object
- .execute(expression, options = { :client => GoodData.connection }) ⇒ Object
- .xcreate(metric, options = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Object
- .xexecute(expression, opts = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Object
Instance Method Summary collapse
-
#contain?(item) ⇒ Boolean
Checks that the expression contains certain metadata object.
-
#contain_value?(label, value) ⇒ Boolean
Checks that the expression contains certain element of an attribute.
- #execute ⇒ Object
- #metric? ⇒ Boolean
-
#pretty_expression ⇒ String
Looks up the readable values of the objects used inside of MAQL epxpressions.
-
#replace(mapping) ⇒ GoodData::Metric
Method used for replacing values in their state according to mapping.
-
#replace_value(label, value, for_label, for_value = nil) ⇒ GoodData::Metric
Method used for replacing attribute element values.
- #validate ⇒ Object
Methods included from GoodData::Mixin::ContentPropertyReader
Methods included from GoodData::Mixin::ContentPropertyWriter
Methods included from GoodData::Mixin::Lockable
#lock, #lock!, #lock_with_dependencies!, #locked?, #unlock, #unlock!, #unlock_with_dependencies!, #unlocked?
Methods inherited from MdObject
#==, #add_tag, #browser_uri, #delete, #deprecated, #deprecated=, find_replaceable_values, #get_flag?, #initialize, #listed?, #production, #production=, #project, #reload!, #remove_tag, replace, #replace!, replace_bracketed, replace_quoted, #restricted, #restricted=, #save, #save_as, #set_flag, #tag_set, #unlisted, #unlisted=
Methods included from GoodData::Mixin::MdIdToUri
Methods included from GoodData::Mixin::MdObjectIndexer
Methods included from GoodData::Mixin::MdObjectQuery
#all, #dependency, #dependency?, #query, #usedby, #usedby?, #using, #using?
Methods included from GoodData::Mixin::MdFinders
#find_by_identifier, #find_by_tag, #find_by_title, #find_first_by_identifier, #find_first_by_title
Methods included from GoodData::Mixin::MdObjId
Methods included from GoodData::Mixin::MdGrantees
#change_permission, #grant, #grantees, #revoke
Methods included from GoodData::Mixin::MdRelations
#dependency, #dependency?, #usedby, #usedby?, #using, #using?
Methods included from GoodData::Mixin::ObjId
Methods included from GoodData::Mixin::Links
Methods inherited from Rest::Resource
Methods inherited from Rest::Object
client, default_client, #initialize, #saved?
Methods included from GoodData::Mixin::DataPropertyReader
Methods included from GoodData::Mixin::DataPropertyWriter
Methods included from GoodData::Mixin::MetaPropertyReader
Methods included from GoodData::Mixin::MetaPropertyWriter
Methods included from GoodData::Mixin::MetaGetter
Methods included from GoodData::Mixin::DataGetter
Methods included from GoodData::Mixin::RootKeyGetter
Methods included from GoodData::Mixin::ContentGetter
Constructor Details
This class inherits a constructor from GoodData::MdObject
Class Method Details
permalink .all(options = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Array<GoodData::MdObject> | Array<Hash>
Method intended to get all objects of that type in a specified project
to pull in full objects. This is desirable from the usability POV but unfortunately has negative impact on performance so it is not the default.
31 32 33 |
# File 'lib/gooddata/models/metadata/metric.rb', line 31 def all( = { :client => GoodData.connection, :project => GoodData.project }) query('metric', Metric, ) end |
permalink .create(metric, options = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Object
[View source]
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/gooddata/models/metadata/metric.rb', line 39 def create(metric, = { :client => GoodData.connection, :project => GoodData.project }) client, project = GoodData.get_client_and_project() if metric.is_a?(String) expression = metric || [:expression] extended_notation = [:extended_notation] || false title = [:title] summary = [:summary] format = [:format] else metric ||= title = metric[:title] || [:title] summary = metric[:summary] || [:summary] expression = metric[:expression] || [:expression] || fail('Metric has to have its expression defined') format = metric[:format] || [:format] extended_notation = metric[:extended_notation] || [:extended_notation] || false end expression = if extended_notation dict = { :facts => project.facts.reduce({}) do |memo, item| memo[item.title] = item.uri memo end, :attributes => project.attributes.reduce({}) do |memo, item| memo[item.title] = item.uri memo end, :metrics => project.metrics.reduce({}) do |memo, item| memo[item.title] = item.uri memo end } interpolated_metric = GoodData::SmallGoodZilla.interpolate_metric(expression, dict, ) interpolated_metric else expression end metric = { 'metric' => { 'content' => { 'format' => format || '#,##0', 'expression' => expression }, 'meta' => { 'tags' => '', 'summary' => summary, 'title' => title } } } # TODO: add test for explicitly provided identifier metric['metric']['meta']['identifier'] = [:identifier] if [:identifier] client.create(Metric, metric, :project => project) end |
permalink .execute(expression, options = { :client => GoodData.connection }) ⇒ Object
[View source]
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/gooddata/models/metadata/metric.rb', line 97 def execute(expression, = { :client => GoodData.connection }) # client = options[:client] # fail ArgumentError, 'No :client specified' if client.nil? = expression if expression.is_a?(Hash) m = if expression.is_a?(String) tmp = { :title => 'Temporary metric to be deleted', :expression => expression }.merge() GoodData::Metric.create(tmp, ) else tmp = { :title => 'Temporary metric to be deleted' }.merge(expression) GoodData::Metric.create(tmp, ) end m.execute end |
permalink .xcreate(metric, options = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Object
[View source]
35 36 37 |
# File 'lib/gooddata/models/metadata/metric.rb', line 35 def xcreate(metric, = { :client => GoodData.connection, :project => GoodData.project }) create(metric, { extended_notation: true }.merge()) end |
permalink .xexecute(expression, opts = { :client => GoodData.connection, :project => GoodData.project }) ⇒ Object
[View source]
119 120 121 122 123 |
# File 'lib/gooddata/models/metadata/metric.rb', line 119 def xexecute(expression, opts = { :client => GoodData.connection, :project => GoodData.project }) GoodData.get_client_and_project(opts) execute(expression, opts.merge(:extended_notation => true)) end |
Instance Method Details
permalink #contain?(item) ⇒ Boolean
Checks that the expression contains certain metadata object. The difference between this and used_by using is in the fact that this is not a transitive closure. it searches only inside the expression
150 151 152 153 |
# File 'lib/gooddata/models/metadata/metric.rb', line 150 def contain?(item) uri = item.respond_to?(:uri) ? item.uri : item expression[uri] != nil end |
permalink #contain_value?(label, value) ⇒ Boolean
Checks that the expression contains certain element of an attribute. The value is looked up through given label.
159 160 161 162 |
# File 'lib/gooddata/models/metadata/metric.rb', line 159 def contain_value?(label, value) uri = label.find_value_uri(value) contain?(uri) end |
permalink #execute ⇒ Object
[View source]
126 127 128 129 130 131 132 133 |
# File 'lib/gooddata/models/metadata/metric.rb', line 126 def execute opts = { :client => client, :project => project } res = GoodData::ReportDefinition.execute(opts.merge(:left => self)) res.data[0][0] if res && !res.empty? end |
permalink #metric? ⇒ Boolean
140 141 142 |
# File 'lib/gooddata/models/metadata/metric.rb', line 140 def metric? true end |
permalink #pretty_expression ⇒ String
Looks up the readable values of the objects used inside of MAQL epxpressions. Labels and elements titles are based on the primary label.
201 202 203 |
# File 'lib/gooddata/models/metadata/metric.rb', line 201 def pretty_expression SmallGoodZilla.pretty_print(expression, client: client, project: project) end |
permalink #replace(mapping) ⇒ GoodData::Metric
Method used for replacing values in their state according to mapping. Can be used to replace any values but it is typically used to replace the URIs. Returns a new object of the same type.
170 171 172 173 174 175 |
# File 'lib/gooddata/models/metadata/metric.rb', line 170 def replace(mapping) x = GoodData::MdObject.replace_quoted(self, mapping) x = GoodData::MdObject.replace_bracketed(x, mapping) vals = GoodData::MdObject.find_replaceable_values(x, mapping) GoodData::MdObject.replace_bracketed(x, vals) end |
permalink #replace_value(label, value, for_label, for_value = nil) ⇒ GoodData::Metric
Method used for replacing attribute element values. Looks up certain value of a label in the MAQL expression and exchanges it for a different value of the same label.
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/gooddata/models/metadata/metric.rb', line 182 def replace_value(label, value, for_label, for_value = nil) label = label.respond_to?(:primary_label) ? label.primary_label : label if for_value for_label = for_label.respond_to?(:primary_label) ? for_label.primary_label : for_label value_uri = label.find_value_uri(value) for_value_uri = for_label.find_value_uri(for_value) self.expression = expression.gsub(value_uri, for_value_uri) self.expression = expression.gsub(label.attribute.uri, for_label.attribute.uri) else for_value = for_label value_uri = label.find_value_uri(value) for_value_uri = label.find_value_uri(for_value) self.expression = expression.gsub(value_uri, for_value_uri) end self end |
permalink #validate ⇒ Object
[View source]
135 136 137 138 |
# File 'lib/gooddata/models/metadata/metric.rb', line 135 def validate fail 'Metric needs to have title' if title.nil? true end |