Class: Mxrb::Model::Entity
- Inherits:
-
Object
- Object
- Mxrb::Model::Entity
- Defined in:
- lib/mxrb/model/entity.rb
Overview
Entities are embedded in the DomainModel BSON — NOT separate Unit rows. $Type: DomainModels$Entity (read) / DomainModels$EntityImpl (write)
Instance Attribute Summary collapse
-
#access_rules ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#data_storage_guid ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#documentation ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#export_level ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#generalization ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#id ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#indexes ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#lifecycle ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#location ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#name ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#native_type ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#oql_query ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#persistable ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#qualified_name ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#source ⇒ Object
rubocop:disable Metrics/ClassLength.
-
#system_members ⇒ Object
rubocop:disable Metrics/ClassLength.
Class Method Summary collapse
- .apply_validation_rules(attributes, rules) ⇒ Object
-
.from_bson(doc, _domain_model_id, mpr) ⇒ Object
Build from a BSON hash (embedded in DomainModel's "entities" array).
- .normalize_indexes(indexes, attributes, qualified_name) ⇒ Object
- .parse_access_rule(doc) ⇒ Object
- .parse_lifecycle(doc) ⇒ Object
- .parse_location(loc) ⇒ Object
- .parse_system_members(generalization) ⇒ Object
Instance Method Summary collapse
- #attributes ⇒ Object
- #generalization_target ⇒ Object
- #inspect ⇒ Object
- #oql_source_document ⇒ Object
- #oql_view? ⇒ Boolean
- #to_bson ⇒ Object
Instance Attribute Details
#access_rules ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def access_rules @access_rules end |
#data_storage_guid ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def data_storage_guid @data_storage_guid end |
#documentation ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def documentation @documentation end |
#export_level ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def export_level @export_level end |
#generalization ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def generalization @generalization end |
#id ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def id @id end |
#indexes ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def indexes @indexes end |
#lifecycle ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def lifecycle @lifecycle end |
#location ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def location @location end |
#name ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def name @name end |
#native_type ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def native_type @native_type end |
#oql_query ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def oql_query @oql_query end |
#persistable ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def persistable @persistable end |
#qualified_name ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def qualified_name @qualified_name end |
#source ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def source @source end |
#system_members ⇒ Object
rubocop:disable Metrics/ClassLength
10 11 12 |
# File 'lib/mxrb/model/entity.rb', line 10 def system_members @system_members end |
Class Method Details
.apply_validation_rules(attributes, rules) ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/mxrb/model/entity.rb', line 107 def self.apply_validation_rules(attributes, rules) by_name = attributes.to_h { [_1.name, _1] } rules.each do |rule| attribute = by_name[rule['Attribute'].to_s.split('.').last] next unless attribute kind = rule.dig('RuleInfo', '$Type').to_s attribute.required = true if kind.end_with?('RequiredRuleInfo') attribute.unique = true if kind.end_with?('UniqueRuleInfo') end end |
.from_bson(doc, _domain_model_id, mpr) ⇒ Object
Build from a BSON hash (embedded in DomainModel's "entities" array).
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/mxrb/model/entity.rb', line 16 def self.from_bson(doc, _domain_model_id, mpr) e = new e.id = IO::BsonCodec.extract_id(doc["$ID"] || doc["\$ID"]) e.name = doc["name"] || doc["Name"] e.qualified_name = doc["$QualifiedName"] || doc["\$QualifiedName"] e.documentation = doc["documentation"] || doc["Documentation"] || "" e.native_type = doc["$Type"] e.source = doc["source"] || doc["Source"] e.oql_query = doc["oqlQuery"] || doc["OqlQuery"] || doc["OQLQuery"] e.data_storage_guid = doc["dataStorageGuid"] || doc["DataStorageGuid"] e.export_level = doc["exportLevel"] || doc["ExportLevel"] || "Hidden" e.location = parse_location(doc["location"] || doc["Location"]) # Persistable lives inside generalization.NoGeneralization.persistable gen = doc["generalization"] || doc["Generalization"] || doc["maybeGeneralization"] || doc["MaybeGeneralization"] e.generalization = gen persistable = if gen.is_a?(Hash) gen.fetch('persistable', gen.fetch('Persistable', true)) else true end e.persistable = persistable != false e.system_members = parse_system_members(gen) # Attributes (embedded array with marker) attr_arr = IO::BsonCodec.parse_array(doc["attributes"] || doc["Attributes"])[:items] e.instance_variable_set(:@attributes, attr_arr.map { Attribute.from_bson(_1) }) rules = IO::BsonCodec.parse_array(doc['validationRules'] || doc['ValidationRules'])[:items] apply_validation_rules(e.attributes, rules) raw_indexes = IO::BsonCodec.parse_array(doc['indexes'] || doc['Indexes'])[:items] e.indexes = normalize_indexes(raw_indexes, e.attributes, e.qualified_name) # Access rules (embedded array with marker 3) rule_arr = IO::BsonCodec.parse_array(doc["accessRules"] || doc["AccessRules"])[:items] e.access_rules = rule_arr.map { parse_access_rule(_1) } event_arr = IO::BsonCodec.parse_array(doc["eventHandlers"] || doc["EventHandlers"])[:items] e.lifecycle = event_arr.map { parse_lifecycle(_1) } e end |
.normalize_indexes(indexes, attributes, qualified_name) ⇒ Object
119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/mxrb/model/entity.rb', line 119 def self.normalize_indexes(indexes, attributes, qualified_name) names_by_id = attributes.to_h { [_1.id, _1.name] } indexes.each do |index| members = IO::BsonCodec.parse_array(index['Attributes'])[:items] members.each do |member| next if member['Attribute'] || member['attribute'] id = IO::BsonCodec.extract_id(member['AttributePointer']) name = names_by_id[id] member['Attribute'] = [qualified_name, name].compact.join('.') if name end end end |
.parse_access_rule(doc) ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/mxrb/model/entity.rb', line 150 def self.parse_access_rule(doc) roles = IO::BsonCodec.parse_array(doc["ModuleRoles"] || doc["AllowedModuleRoles"])[:items] default_rights = doc["DefaultMemberAccessRights"] || "None" member_items = IO::BsonCodec.parse_array(doc["MemberAccesses"])[:items] members = member_items.map do |m| association_ref = m["Association"].to_s attr_ref = association_ref.empty? ? m["Attribute"] : association_ref kind = association_ref.empty? ? :attribute : :association { name: attr_ref.to_s.split(%r{[/.]}).last, reference: attr_ref.to_s, rights: m["AccessRights"] || "None", kind: kind } end { roles: roles, create: doc["AllowCreate"] == true, delete: doc["AllowDelete"] == true, default_rights: default_rights, members: members, xpath: doc["XPathConstraint"] || "" } end |
.parse_lifecycle(doc) ⇒ Object
171 172 173 174 175 176 177 178 179 180 |
# File 'lib/mxrb/model/entity.rb', line 171 def self.parse_lifecycle(doc) moment = doc["Moment"].to_s.downcase event = doc["Event"].to_s.downcase { event: [moment, event].reject(&:empty?).join("_").to_sym, handler: doc["Microflow"].to_s, pass_event_object: doc.fetch("PassEventObject", true) == true, raise_error_on_false: doc["RaiseErrorOnFalse"] == true } end |
.parse_location(loc) ⇒ Object
182 183 184 185 186 187 188 189 |
# File 'lib/mxrb/model/entity.rb', line 182 def self.parse_location(loc) if loc.is_a?(String) x, y = loc.split(';', 2).map(&:to_i) return { x: x, y: y } end return { x: 0, y: 0 } unless loc.is_a?(Hash) { x: loc["x"] || loc[:x] || 0, y: loc["y"] || loc[:y] || 0 } end |
.parse_system_members(generalization) ⇒ Object
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/mxrb/model/entity.rb', line 133 def self.parse_system_members(generalization) return {} unless generalization.is_a?(Hash) { owner: generalization['hasOwner'] == true || generalization['HasOwnerAttr'] == true, created_date: generalization.values_at( 'hasCreatedDate', 'HasCreatedDateAttr' ).include?(true), changed_date: generalization.values_at( 'hasChangedDate', 'HasChangedDateAttr' ).include?(true), changed_by: generalization.values_at( 'hasChangedBy', 'HasChangedByAttr' ).include?(true) } end |
Instance Method Details
#attributes ⇒ Object
58 |
# File 'lib/mxrb/model/entity.rb', line 58 def attributes = @attributes || [] |
#generalization_target ⇒ Object
60 61 62 63 64 |
# File 'lib/mxrb/model/entity.rb', line 60 def generalization_target return unless @generalization.is_a?(Hash) @generalization['generalization'] || @generalization['Generalization'] end |
#inspect ⇒ Object
101 102 103 |
# File 'lib/mxrb/model/entity.rb', line 101 def inspect "#<Mxrb::Entity name=#{@name.inspect} attrs=#{attributes.size} persistable=#{@persistable}>" end |
#oql_source_document ⇒ Object
73 74 75 76 77 |
# File 'lib/mxrb/model/entity.rb', line 73 def oql_source_document return unless @source.is_a?(Hash) @source['SourceDocument'] || @source['sourceDocument'] end |
#oql_view? ⇒ Boolean
66 67 68 69 70 71 |
# File 'lib/mxrb/model/entity.rb', line 66 def oql_view? source_type = @source.is_a?(Hash) ? @source.fetch('$Type', '') : '' @native_type.to_s.match?(/ViewEntity/i) || source_type.match?(/OqlViewEntitySource/i) || !@oql_query.to_s.empty? end |
#to_bson ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/mxrb/model/entity.rb', line 79 def to_bson { "$ID" => @id, "$Type" => "DomainModels$EntityImpl", "$QualifiedName" => @qualified_name, "name" => @name, "documentation" => @documentation || "", "dataStorageGuid" => @data_storage_guid || SecureRandom.uuid, "location" => serialize_location(@location), "generalization" => serialize_generalization, "attributes" => IO::BsonCodec.build_array(@attributes.map(&:to_bson)), "validationRules" => IO::BsonCodec.build_array([]), # must come after attributes "eventHandlers" => IO::BsonCodec.build_array(@lifecycle.to_a.map { lifecycle_bson(_1) }), "indexes" => IO::BsonCodec.build_array([]), "accessRules" => IO::BsonCodec.build_array(@access_rules.to_a), "source" => nil, "exportLevel" => @export_level || "Hidden", "image" => "", "imageData" => "", } end |