Class: Lutaml::Model::Attribute
- Inherits:
-
Object
- Object
- Lutaml::Model::Attribute
- Includes:
- CollectionHandler, DeepDupable, RestrictionValidation
- Defined in:
- lib/lutaml/model/attribute.rb
Constant Summary collapse
- ALLOWED_OPTIONS =
i[ raw default delegate collection values pattern transform choice sequence method method_name polymorphic polymorphic_class initialize_empty validations required ref_model_class ref_key_attribute xsd_type union_member_types min max signed min_length max_length ].freeze
- TypeProbeCache =
Per-type-class memo of the custom from_xml/from_json probe used by #cast. Isolated cache holder: enclosing-class freezes (some suites freeze Lutaml::Model::Attribute) would freeze a constant Hash with it.
::Class.new do class << self def cache @cache ||= {} end end end
- MODEL_STRINGS =
[ Lutaml::Model::Type::String, "String", :string, ].freeze
- CHILD_PROPAGATION_KEYS =
Delegate propagation to DeserializationContext for single source of truth.
Serialize::DeserializationContext::PROPAGATION_KEYS
- WARN_ON_OVERRIDE =
Methods where accidental override is likely to cause issues All names are allowed - this list only controls which ones get a warning Format-specific serialization methods (to_xml, to_json, etc.) are pushed by each format plugin at load time via format_specific_warn_names.
i[ # Ruby core - overriding breaks fundamental behavior hash object_id class send method # Object lifecycle - overriding without super breaks things initialize # Serialization methods - overriding breaks serialization to_format # Internal helpers - overriding breaks internal logic attr_value attribute_exist? key_exist? key_value using_default? using_default_for value_set_for method_missing respond_to_missing? ].freeze
- EMPTY_TRANSFORM_HASH =
Performance: Frozen empty hash to reduce allocations
{}.freeze
- EMPTY_VALUES_ARRAY =
Performance: Frozen empty array to reduce allocations
[].freeze
Constants included from CollectionHandler
CollectionHandler::KEYWORD_PARAM_KINDS
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
- #validations ⇒ Object readonly
Class Method Summary collapse
- .cast_from_string!(type) ⇒ Object
- .cast_from_symbol!(type) ⇒ Object
- .cast_type!(type) ⇒ Object
-
.custom_from_probe?(type) ⇒ Boolean
Public reader for compiled rule plans: does this type class carry a custom from_xml/from_json (answer static, probed once)?.
- .default_evaluation? ⇒ Boolean
-
.evaluating_default ⇒ Object
Marks the dynamic extent in which a default proc runs against a model instance, so Serialize#method_missing can fall back to the model class for methods the instance does not define (0.7.x compatibility, lutaml-model#745).
- .format_specific_warn_names ⇒ Object
- .warn_on_override_names ⇒ Object
Instance Method Summary collapse
-
#apply_value_map(value, value_map) ⇒ Object
Apply a value map to transform a value.
- #cast(value, format, register, options = {}) ⇒ Object
-
#cast_derived(value, register) ⇒ Object
Cast the value a derived reader just recomputed.
- #cast_element(value, register) ⇒ Object
-
#cast_items(value, register) ⇒ Object
Prepare the seed items for a collection.
- #cast_type!(type) ⇒ Object
- #cast_value(value, register) ⇒ Object
-
#choice ⇒ Object
min_collection_zero? is provided by CollectionHandler module.
-
#clear_type_cache ⇒ Object
Clear type resolution caches for this attribute.
-
#copy_internal_state_from(source) ⇒ Object
Copy internal state from another Attribute instance.
- #deep_dup ⇒ Object
- #default(register = Lutaml::Model::Config.default_register, instance_object = nil) ⇒ Object
- #default_set?(register, instance_object = nil) ⇒ Boolean
-
#default_type_context ⇒ Object
Performance: Cache default type context lookup.
- #default_value(register, instance_object = nil) ⇒ Object
- #delegate ⇒ Object
- #derived? ⇒ Boolean
- #enum? ⇒ Boolean
- #enum_values ⇒ Object
-
#execute_validations!(value) ⇒ Object
execute custom validations on the attribute value i.e presence: true, numericality: true, etc.
-
#extract_register(_context_or_register) ⇒ Object
Extract the Register from the context_or_register argument.
- #hash_type? ⇒ Boolean
- #immutable_value?(value) ⇒ Boolean
-
#initialize(name, type, options = {}) ⇒ Attribute
constructor
A new instance of Attribute.
- #initialize_empty? ⇒ Boolean
-
#list_like?(value) ⇒ Boolean
Plain Arrays count as list input.
- #method_name ⇒ Object
- #model_instance?(value) ⇒ Boolean
-
#no_data?(value) ⇒ Boolean
True when the value is "nothing arrived" rather than data.
-
#normalize_context(context_or_register) ⇒ Object
Normalize register/context to TypeContext for resolution Performance: Optimized to reduce allocations in hot path.
- #pattern ⇒ Object
- #polymorphic? ⇒ Boolean
- #process_options! ⇒ Object
-
#raw? ⇒ Boolean
Collection methods are provided by CollectionHandler module.
- #reference_key(value) ⇒ Object
- #required_value_set?(value) ⇒ Boolean
-
#resolver ⇒ Object
Cache the resolver reference — GlobalContext.resolver is a singleton that never changes during the process lifetime.
-
#sequenced_appearance_count(element_order, mapped_name, current_index) ⇒ Object
resolved_collection is provided by CollectionHandler module.
- #serializable?(register) ⇒ Boolean
-
#serializable_type?(register = nil) ⇒ Boolean
Cached version of serializable? check for hot deserialization path Called millions of times in resolve_rule_names_with_type and value_for_rule.
- #serialize(value, format, register, options = {}) ⇒ Object
- #setter ⇒ Object
- #transform ⇒ Object
- #transform_export_method ⇒ Object
- #transform_import_method ⇒ Object
- #type(context_or_register = nil) ⇒ Object
-
#type_namespace_class(register = nil) ⇒ Class?
Get namespace class from Type::Value or Model class.
-
#type_namespace_prefix(register = nil) ⇒ String?
Get namespace prefix from type.
-
#type_namespace_uri(register = nil) ⇒ String?
Get namespace URI from type.
-
#type_with_namespace(register, namespace_uri = nil) ⇒ Class?
Get type with namespace-aware resolution.
- #union? ⇒ Boolean
- #union_member_types ⇒ Object
- #unresolved_type ⇒ Object
- #valid_collection!(value, caller) ⇒ Object
-
#valid_pattern!(value, _resolved_type) ⇒ Object
Pattern binds actual string values only.
- #valid_value!(value) ⇒ Object
- #valid_value?(value) ⇒ Boolean
- #validate_choice_content!(elements) ⇒ Object
- #validate_collection_range ⇒ Object
- #validate_polymorphic(value, resolved_type) ⇒ Object
- #validate_polymorphic!(value, resolved_type) ⇒ Object
- #validate_range!(range) ⇒ Object
-
#validate_value!(value, register, instance_object: nil) ⇒ Object
Check if the value to be assigned is valid for the attribute.
-
#value_policy ⇒ Object
The value-shaping policy for this attribute.
Methods included from RestrictionValidation
#effective_restriction_facets, #validate_restriction_configuration!, #validate_restriction_values!
Methods included from CollectionHandler
#build_collection, #coerce_to_collection?, #collection, #collection?, #collection_class, #collection_instance?, #custom_collection?, #initialize_accepts_register?, #min_collection_zero?, #resolved_collection, #singular?
Constructor Details
#initialize(name, type, options = {}) ⇒ Attribute
Returns a new instance of Attribute.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'lib/lutaml/model/attribute.rb', line 128 def initialize(name, type, = {}) skip_validation = .fetch(:skip_validation, false) unless skip_validation validate_name!( name, reserved_methods: Lutaml::Model::Serializable.instance_methods ) end @name = name = .except(:skip_validation) validate_presence!(type) unless skip_validation @type = type @unresolved_type = type unless skip_validation end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/lutaml/model/attribute.rb', line 6 def name @name end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
6 7 8 |
# File 'lib/lutaml/model/attribute.rb', line 6 def end |
#validations ⇒ Object
319 320 321 |
# File 'lib/lutaml/model/attribute.rb', line 319 def validations [:validations] end |
Class Method Details
.cast_from_string!(type) ⇒ Object
122 123 124 125 126 |
# File 'lib/lutaml/model/attribute.rb', line 122 def self.cast_from_string!(type) Type.const_get(type) rescue NameError raise ArgumentError, "Unknown Lutaml::Model::Type: #{type}" end |
.cast_from_symbol!(type) ⇒ Object
116 117 118 119 120 |
# File 'lib/lutaml/model/attribute.rb', line 116 def self.cast_from_symbol!(type) Type.lookup(type) rescue UnknownTypeError raise ArgumentError, "Unknown Lutaml::Model::Type: #{type}" end |
.cast_type!(type) ⇒ Object
106 107 108 109 110 111 112 113 114 |
# File 'lib/lutaml/model/attribute.rb', line 106 def self.cast_type!(type) case type when Symbol then cast_from_symbol!(type) when String then cast_from_string!(type) when Class then type else raise ArgumentError, "Unknown Lutaml::Model::Type: #{type}" end end |
.custom_from_probe?(type) ⇒ Boolean
Public reader for compiled rule plans: does this type class carry a custom from_xml/from_json (answer static, probed once)?
54 55 56 57 58 59 60 61 62 |
# File 'lib/lutaml/model/attribute.rb', line 54 def custom_from_probe?(type) cache = TypeProbeCache.cache return cache[type] if cache.key?(type) base = Lutaml::Model::Type::Value.singleton_class cache[type] = type.method(:from_xml).owner != base || type.method(:from_json).owner != base end |
.default_evaluation? ⇒ Boolean
538 539 540 |
# File 'lib/lutaml/model/attribute.rb', line 538 def self.default_evaluation? Thread.current[:__lutaml_evaluating_default] == true end |
.evaluating_default ⇒ Object
Marks the dynamic extent in which a default proc runs against a model instance, so Serialize#method_missing can fall back to the model class for methods the instance does not define (0.7.x compatibility, lutaml-model#745).
530 531 532 533 534 535 536 |
# File 'lib/lutaml/model/attribute.rb', line 530 def self.evaluating_default previous = Thread.current[:__lutaml_evaluating_default] Thread.current[:__lutaml_evaluating_default] = true yield ensure Thread.current[:__lutaml_evaluating_default] = previous end |
.format_specific_warn_names ⇒ Object
98 99 100 |
# File 'lib/lutaml/model/attribute.rb', line 98 def self.format_specific_warn_names @format_specific_warn_names end |
.warn_on_override_names ⇒ Object
102 103 104 |
# File 'lib/lutaml/model/attribute.rb', line 102 def self.warn_on_override_names WARN_ON_OVERRIDE + @format_specific_warn_names end |
Instance Method Details
#apply_value_map(value, value_map) ⇒ Object
Apply a value map to transform a value.
value_map keys (:nil, :empty, :omitted) each map either to a symbolic option (:nil, :empty, :omitted) or, for Boolean attributes, directly to true/false. The nested form value_map[key] = true/false is accepted unconditionally; the bare form value_map = true/false is gated on the attribute being a Boolean type.
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
# File 'lib/lutaml/model/attribute.rb', line 388 def apply_value_map(value, value_map) key = if value.nil? then :nil elsif Utils.empty?(value) then :empty elsif Utils.uninitialized?(value) then :omitted end return value unless key nested = value_map.dig(:from, key) return nested if nested.is_a?(TrueClass) || nested.is_a?(FalseClass) option = value_map[key] if (option.is_a?(TrueClass) || option.is_a?(FalseClass)) && (type == Lutaml::Model::Type::Boolean || unresolved_type == Lutaml::Model::Type::Boolean) return option end case option when :nil nil when :empty if key == :empty then value elsif collection? then build_collection else "" end else Lutaml::Model::UninitializedClass.instance end end |
#cast(value, format, register, options = {}) ⇒ Object
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 |
# File 'lib/lutaml/model/attribute.rb', line 787 def cast(value, format, register, = {}) # Same rule as cast_element, for the format entry point. from_json / # from_yaml / from_toml / from_hash reach a missing key as nil, and a # type with its own `self.cast` turns that nil into an instance the # document never carried. Unlike cast_element this returns before # resolving the type: resolution here depends on the format options # below, and an undeclared type still raises through cast_element. return value if no_data?(value) # Namespace-aware type resolution: use type_with_namespace if namespace_uri provided namespace_uri = [:namespace_uri] resolved_type = if [:resolved_type] [:resolved_type] elsif register && namespace_uri type_with_namespace(register, namespace_uri) else type(register) end if (collection_instance?(value) || value.is_a?(Array)) && !value_policy.whole_value?(resolved_type) merged_opts = .merge(resolved_type: resolved_type, converted: true) return build_collection(value.map do |v| cast(v, format, register, merged_opts) end, register: register) end return value if already_serialized?(resolved_type, value) return cast_union(value, format, register) if union? # Special handling for Reference types - pass the metadata # Check @options[:ref_model_class] which is set when type is { ref: [...] } if [:ref_model_class] && resolved_type == Lutaml::Model::Type::Reference return resolved_type.(value, [:ref_model_class], [:ref_key_attribute]) end # Fast path for Type::Value subclasses (String, Integer, Boolean, etc.) # These are never Serializable, so skip expensive can_serialize? and needs_conversion? checks # Skip if type has custom from_xml/from_json methods (defined on the class itself, not inherited). # The probe allocated two Method objects per cast call; the answer is # static per type class, so it is resolved once. if resolved_type.is_a?(Class) && resolved_type < Lutaml::Model::Type::Value && !self.class.custom_from_probe?(resolved_type) return resolved_type.cast(value) end klass = resolve_polymorphic_class(resolved_type, value, ) if can_serialize?(klass, value, format, ) propagated = Serialize::DeserializationContext.propagate() klass.apply_mappings(value, format, propagated.merge(register: register)) elsif needs_conversion?(klass, value) klass.public_send(:"from_#{format}", value) else # No need to use register#get_class, # can_serialize? method already checks if type is Serializable or not. Type.lookup(klass).cast(value) end end |
#cast_derived(value, register) ⇒ Object
Cast the value a derived reader just recomputed.
A derived attribute has no ivar and no writer. Its reader runs the source method and casts the result on every call, which makes the reader a casting entry point of its own — nothing a writer-side guard can reach. A collection still has to come back as a collection here, even when the source method returned nothing.
366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
# File 'lib/lutaml/model/attribute.rb', line 366 def cast_derived(value, register) return cast_element(value, register) unless collection? return build_collection if no_data?(value) return cast_value(value, register) if collection_instance?(value) # A plain Array is a list of source elements even when the attribute # declares its own collection class, which collection_instance? only # recognises by that class. Without this it becomes one element whose # value is the inspected Array. if value.is_a?(::Array) return build_collection(value.map { |v| cast_element(v, register) }) end build_collection(cast_element(value, register)) end |
#cast_element(value, register) ⇒ Object
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 |
# File 'lib/lutaml/model/attribute.rb', line 438 def cast_element(value, register) # Resolve first: an undeclared type has to raise UnknownTypeError even # when the value carries nothing, the way it did before the guard # below existed. resolved_type = type(register) # Casting is for data. Every built-in type already hands nil and the # uninitialized sentinel straight back, so this changes nothing for # them. A type with its own `self.cast` returns a real instance # instead, and that instance becomes a value nobody wrote — a phantom # element in the document, or a one-item collection the source never # contained. `cast` below guards the format entry point the same way. return value if no_data?(value) return cast_union(value, nil, register) if union? return resolved_type.new(value) if value.is_a?(::Hash) && !hash_type? # Special handling for Reference types - pass the metadata if unresolved_type == Lutaml::Model::Type::Reference return resolved_type.(value, [:ref_model_class], [:ref_key_attribute]) end validate_attr_type!(resolved_type) resolved_type.cast(value) end |
#cast_items(value, register) ⇒ Object
Prepare the seed items for a collection. Custom Collection classes cast their own items (idempotently) in #initialize, so hand them a plain array of the existing elements — rebuilding a fresh collection avoids sharing a mutable default across instances. Plain collections cast each element here.
349 350 351 352 353 |
# File 'lib/lutaml/model/attribute.rb', line 349 def cast_items(value, register) return value.to_a if custom_collection? value.map { |v| cast_element(v, register) } end |
#cast_type!(type) ⇒ Object
323 324 325 |
# File 'lib/lutaml/model/attribute.rb', line 323 def cast_type!(type) self.class.cast_type!(type) end |
#cast_value(value, register) ⇒ Object
327 328 329 330 331 332 333 334 335 |
# File 'lib/lutaml/model/attribute.rb', line 327 def cast_value(value, register) if list_like?(value) build_collection(cast_items(value, register), register: register) elsif coerce_to_collection?(value) build_collection(cast_items([value], register), register: register) else cast_element(value, register) end end |
#choice ⇒ Object
min_collection_zero? is provided by CollectionHandler module
889 890 891 |
# File 'lib/lutaml/model/attribute.rb', line 889 def choice [:choice] end |
#clear_type_cache ⇒ Object
Clear type resolution caches for this attribute. Called by GlobalContext.clear_caches to ensure stale entries from GC'd TypeContext objects don't persist.
1002 1003 1004 1005 1006 |
# File 'lib/lutaml/model/attribute.rb', line 1002 def clear_type_cache @type_cache&.clear @cached_type_default = nil @default_type_context = nil end |
#copy_internal_state_from(source) ⇒ Object
Copy internal state from another Attribute instance.
Used by dup to transfer processed state without calling private writers.
994 995 996 997 |
# File 'lib/lutaml/model/attribute.rb', line 994 def copy_internal_state_from(source) @raw = source.raw? @validations = source.validations end |
#deep_dup ⇒ Object
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 |
# File 'lib/lutaml/model/attribute.rb', line 909 def deep_dup # Don't deep_dup the entire options hash because: # 1. Lambdas/Procs (like :default) should not be duplicated # 2. Classes (like :collection class) are immutable # 3. Deep dupping creates circular references when lambdas close over the attribute # Selectively copy options using direct type checks to avoid method calls = { skip_validation: true } .each do |key, value| [key] = case value when Symbol, TrueClass, FalseClass, Numeric, Class, Module, Proc, Method, NilClass value # Immutable, don't dup when Range # Only dup if bounds are mutable strings if value.begin.is_a?(String) || (value.end && value.end.is_a?(String)) Range.new(value.begin.dup, value.end&.dup, value.exclude_end?) else value # Immutable bounds, safe to reuse end when Hash Utils.deep_dup(value) when Array Utils.deep_dup(value) else value # Keep as-is (might be a complex object) end end # Skip validation during deep_dup - options are already validated in original # This prevents infinite recursion when process_options! tries to access collection self.class.new(name, unresolved_type, ).tap do |dup_attr| dup_attr.copy_internal_state_from(self) end end |
#default(register = Lutaml::Model::Config.default_register, instance_object = nil) ⇒ Object
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 |
# File 'lib/lutaml/model/attribute.rb', line 484 def default(register = Lutaml::Model::Config.default_register, instance_object = nil) if instance_object.nil? @default_cache ||= {} cached = @default_cache[register] return cached if cached result = cast_value(default_value(register, nil), register) if immutable_value?(result) @default_cache[register] = result end result else cast_value(default_value(register, instance_object), register) end end |
#default_set?(register, instance_object = nil) ⇒ Boolean
542 543 544 |
# File 'lib/lutaml/model/attribute.rb', line 542 def default_set?(register, instance_object = nil) !Utils.uninitialized?(default_value(register, instance_object)) end |
#default_type_context ⇒ Object
Performance: Cache default type context lookup
269 270 271 272 273 274 275 |
# File 'lib/lutaml/model/attribute.rb', line 269 def default_type_context @default_type_context ||= begin default_id = Lutaml::Model::Config.default_register ctx = GlobalContext.context(default_id) ctx || GlobalContext.default_context end end |
#default_value(register, instance_object = nil) ⇒ Object
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 |
# File 'lib/lutaml/model/attribute.rb', line 507 def default_value(register, instance_object = nil) if delegate type(register).attributes(register)[to].default(register, instance_object) elsif [:default].is_a?(Proc) if instance_object ::Lutaml::Model::Attribute.evaluating_default do instance_object.instance_exec(&[:default]) end else [:default].call end elsif .key?(:default) [:default] else Lutaml::Model::UninitializedClass.instance end end |
#delegate ⇒ Object
300 301 302 |
# File 'lib/lutaml/model/attribute.rb', line 300 def delegate [:delegate] end |
#derived? ⇒ Boolean
296 297 298 |
# File 'lib/lutaml/model/attribute.rb', line 296 def derived? !method_name.nil? end |
#enum? ⇒ Boolean
480 481 482 |
# File 'lib/lutaml/model/attribute.rb', line 480 def enum? !enum_values.empty? end |
#enum_values ⇒ Object
553 554 555 |
# File 'lib/lutaml/model/attribute.rb', line 553 def enum_values .key?(:values) ? [:values] : EMPTY_VALUES_ARRAY end |
#execute_validations!(value) ⇒ Object
execute custom validations on the attribute value i.e presence: true, numericality: true, etc
647 648 649 650 651 652 653 654 655 656 657 |
# File 'lib/lutaml/model/attribute.rb', line 647 def execute_validations!(value) return true if Utils.blank?(value) memoization_container = {} errors = Lutaml::Model::Validator.call(value, validations, memoization_container) return if errors.empty? raise Lutaml::Model::ValidationFailedError.new(errors) end |
#extract_register(_context_or_register) ⇒ Object
Extract the Register from the context_or_register argument
240 241 242 243 244 |
# File 'lib/lutaml/model/attribute.rb', line 240 def extract_register(_context_or_register) # Register backward compatibility - now always returns nil # Type resolution uses GlobalContext directly nil end |
#hash_type? ⇒ Boolean
466 467 468 |
# File 'lib/lutaml/model/attribute.rb', line 466 def hash_type? type == Lutaml::Model::Type::Hash end |
#immutable_value?(value) ⇒ Boolean
501 502 503 504 505 |
# File 'lib/lutaml/model/attribute.rb', line 501 def immutable_value?(value) value.nil? || value.is_a?(Numeric) || value.is_a?(String) || value.is_a?(Symbol) || value == true || value == false || value.frozen? end |
#initialize_empty? ⇒ Boolean
315 316 317 |
# File 'lib/lutaml/model/attribute.rb', line 315 def initialize_empty? [:initialize_empty] end |
#list_like?(value) ⇒ Boolean
Plain Arrays count as list input. On singular attributes collection_instance? matches Arrays too (their collection class is Array), preserving the Array so strict cardinality can flag it.
340 341 342 |
# File 'lib/lutaml/model/attribute.rb', line 340 def list_like?(value) collection_instance?(value) || (collection? && value.is_a?(::Array)) end |
#method_name ⇒ Object
311 312 313 |
# File 'lib/lutaml/model/attribute.rb', line 311 def method_name [:method_name] end |
#model_instance?(value) ⇒ Boolean
781 782 783 784 785 |
# File 'lib/lutaml/model/attribute.rb', line 781 def model_instance?(value) return false unless [:ref_model_class] value.class.name == [:ref_model_class] end |
#no_data?(value) ⇒ Boolean
True when the value is "nothing arrived" rather than data.
nil and the uninitialized sentinel both mean the source carried no value. Neither is something a type can be asked to turn into an instance.
434 435 436 |
# File 'lib/lutaml/model/attribute.rb', line 434 def no_data?(value) value.nil? || Utils.uninitialized?(value) end |
#normalize_context(context_or_register) ⇒ Object
Normalize register/context to TypeContext for resolution Performance: Optimized to reduce allocations in hot path
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'lib/lutaml/model/attribute.rb', line 248 def normalize_context(context_or_register) # Fast path for nil - most common case return default_type_context if context_or_register.nil? # Fast path for TypeContext - no conversion needed return context_or_register if context_or_register.is_a?(Lutaml::Model::TypeContext) # Handle Register and Symbol cases context_id = case context_or_register when Lutaml::Model::Register context_or_register.id when Symbol context_or_register else return GlobalContext.default_context end GlobalContext.context(context_id) || GlobalContext.default_context end |
#pattern ⇒ Object
546 547 548 |
# File 'lib/lutaml/model/attribute.rb', line 546 def pattern [:pattern] end |
#polymorphic? ⇒ Boolean
281 282 283 |
# File 'lib/lutaml/model/attribute.rb', line 281 def polymorphic? [:polymorphic_class] end |
#process_options! ⇒ Object
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 |
# File 'lib/lutaml/model/attribute.rb', line 893 def () if union? [:union_member_types] = Lutaml::Model::Type::Union.validate_members!([:union_member_types]) Lutaml::Model::Type::Union.validate_combo!() end @raw = !![:raw] if @raw warn "[DEPRECATED] attribute :#{name}, :string, raw: true is deprecated. " \ "Use map_element \"name\", to: :#{name}, raw: :content instead." end @validations = [:validations] set_default_for_collection if collection? end |
#raw? ⇒ Boolean
Collection methods are provided by CollectionHandler module
476 477 478 |
# File 'lib/lutaml/model/attribute.rb', line 476 def raw? @raw end |
#reference_key(value) ⇒ Object
772 773 774 775 776 777 778 779 |
# File 'lib/lutaml/model/attribute.rb', line 772 def reference_key(value) return nil unless value return value.map { |item| reference_key(item) } if value.is_a?(Array) return value.public_send([:ref_key_attribute]) if model_instance?(value) value end |
#required_value_set?(value) ⇒ Boolean
418 419 420 421 422 423 424 |
# File 'lib/lutaml/model/attribute.rb', line 418 def required_value_set?(value) return true unless [:required] return false if value.nil? return false if Utils.empty?(value) true end |
#resolver ⇒ Object
Cache the resolver reference — GlobalContext.resolver is a singleton that never changes during the process lifetime. Avoids repeated singleton access overhead on every type() call.
149 150 151 |
# File 'lib/lutaml/model/attribute.rb', line 149 def resolver @resolver ||= GlobalContext.resolver end |
#sequenced_appearance_count(element_order, mapped_name, current_index) ⇒ Object
resolved_collection is provided by CollectionHandler module
866 867 868 869 870 871 872 873 874 875 876 877 878 |
# File 'lib/lutaml/model/attribute.rb', line 866 def sequenced_appearance_count(element_order, mapped_name, current_index) elements = element_order[current_index..] element_count = elements.take_while do |element| element == mapped_name end.count return element_count if element_count.between?(*resolved_collection.minmax) raise Lutaml::Model::ElementCountOutOfRangeError.new( mapped_name, element_count, collection, ) end |
#serializable?(register) ⇒ Boolean
848 849 850 |
# File 'lib/lutaml/model/attribute.rb', line 848 def serializable?(register) type(register) <= Serialize end |
#serializable_type?(register = nil) ⇒ Boolean
Cached version of serializable? check for hot deserialization path Called millions of times in resolve_rule_names_with_type and value_for_rule
854 855 856 857 858 859 860 861 862 |
# File 'lib/lutaml/model/attribute.rb', line 854 def serializable_type?(register = nil) register_key = register || :default return @serializable_type_cache[register_key] if defined?(@serializable_type_cache) && @serializable_type_cache&.key?(register_key) resolved_type = type(register_key) result = resolved_type.is_a?(Class) && resolved_type.include?(Serialize) @serializable_type_cache ||= {} @serializable_type_cache[register_key] = result end |
#serialize(value, format, register, options = {}) ⇒ Object
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 |
# File 'lib/lutaml/model/attribute.rb', line 753 def serialize(value, format, register, = {}) value ||= build_collection if collection? && initialize_empty? return value if value.nil? || Utils.uninitialized?(value) resolved_type = [:resolved_type] || type(register) = .merge(resolved_type: resolved_type) value = reference_key(value) if unresolved_type == Lutaml::Model::Type::Reference if collection_instance?(value) return serialize_array(value, format, register, ) end if resolved_type <= Serialize return serialize_model(value, format, register, ) end serialize_value(value, format, resolved_type) end |
#setter ⇒ Object
470 471 472 |
# File 'lib/lutaml/model/attribute.rb', line 470 def setter :"#{@name}=" end |
#transform ⇒ Object
307 308 309 |
# File 'lib/lutaml/model/attribute.rb', line 307 def transform [:transform] || EMPTY_TRANSFORM_HASH end |
#transform_export_method ⇒ Object
561 562 563 |
# File 'lib/lutaml/model/attribute.rb', line 561 def transform_export_method transform[:export] end |
#transform_import_method ⇒ Object
557 558 559 |
# File 'lib/lutaml/model/attribute.rb', line 557 def transform_import_method transform[:import] end |
#type(context_or_register = nil) ⇒ Object
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/lutaml/model/attribute.rb', line 164 def type(context_or_register = nil) return if unresolved_type.nil? # Performance: Fast path for nil or default register (most common case during deserialization) if context_or_register.nil? || context_or_register == :default return @cached_type_default ||= begin context = normalize_context(context_or_register) resolver.resolve(unresolved_type, context) end end # Non-default register path: resolve directly without normalize_context # when context_or_register is already a TypeContext or Symbol (common cases) context = case context_or_register when Lutaml::Model::TypeContext context_or_register when Symbol GlobalContext.context(context_or_register) || GlobalContext.default_context when Lutaml::Model::Register GlobalContext.context(context_or_register.id) || GlobalContext.default_context else GlobalContext.default_context end # Performance: Cache per TypeContext identity. # When type substitution replaces a TypeContext, the object_id changes, # so old cache entries are never hit again (safe invalidation). cache_key = context.object_id @type_cache ||= {} cached = @type_cache[cache_key] return cached if cached resolved = resolver.resolve(unresolved_type, context) @type_cache[cache_key] = resolved resolved end |
#type_namespace_class(register = nil) ⇒ Class?
Get namespace class from Type::Value or Model class
949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 |
# File 'lib/lutaml/model/attribute.rb', line 949 def type_namespace_class(register = nil) register_key = register || :default return @type_ns_class_cache[register_key] if defined?(@type_ns_class_cache) && @type_ns_class_cache&.key?(register_key) # Resolve type namespace via type() which uses GlobalContext.resolver resolved_type = type(register_key) result = nil # Check if type is a Type::Value class # Type namespaces are ONLY declared on Type::Value subclasses, # not on Serializable models. Serializable models have element # namespaces, which are handled separately. if resolved_type.is_a?(Class) && resolved_type <= Lutaml::Model::Type::Value result = resolved_type.namespace_class end @type_ns_class_cache ||= {} @type_ns_class_cache[register_key] = result end |
#type_namespace_prefix(register = nil) ⇒ String?
Get namespace prefix from type
988 989 990 |
# File 'lib/lutaml/model/attribute.rb', line 988 def type_namespace_prefix(register = nil) type_namespace_class(register)&.prefix_default end |
#type_namespace_uri(register = nil) ⇒ String?
Get namespace URI from type
974 975 976 977 978 979 980 981 |
# File 'lib/lutaml/model/attribute.rb', line 974 def type_namespace_uri(register = nil) register_key = register || :default return @type_ns_uri_cache[register_key] if defined?(@type_ns_uri_cache) && @type_ns_uri_cache&.key?(register_key) result = type_namespace_class(register_key)&.uri @type_ns_uri_cache ||= {} @type_ns_uri_cache[register_key] = result end |
#type_with_namespace(register, namespace_uri = nil) ⇒ Class?
Get type with namespace-aware resolution.
Uses the register's resolve_in_namespace method for version-aware type resolution. Falls back to standard resolution if no namespace or register is provided.
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
# File 'lib/lutaml/model/attribute.rb', line 211 def type_with_namespace(register, namespace_uri = nil) return type(register) unless register && namespace_uri return if unresolved_type.nil? # Performance: Memoize type resolution per (register, namespace_uri) pair # This avoids repeated resolve_in_namespace calls for the same attribute @type_with_namespace_cache ||= {} cache_key = [register, namespace_uri] return @type_with_namespace_cache[cache_key] if @type_with_namespace_cache.key?(cache_key) # Resolve register from symbol if needed actual_register = if register.is_a?(Symbol) Lutaml::Model::GlobalRegister.lookup(register) else register end # If we don't have an actual Register object, fall back to standard resolution result = if actual_register.is_a?(Lutaml::Model::Register) actual_register.resolve_in_namespace(unresolved_type, namespace_uri) end result ||= type(register) @type_with_namespace_cache[cache_key] = result result end |
#union? ⇒ Boolean
285 286 287 288 289 |
# File 'lib/lutaml/model/attribute.rb', line 285 def union? return @union unless @union.nil? @union = unresolved_type == Lutaml::Model::Type::Union end |
#union_member_types ⇒ Object
291 292 293 294 |
# File 'lib/lutaml/model/attribute.rb', line 291 def union_member_types @union_member_types ||= [:union_member_types].map { |member| cast_type!(member) } end |
#unresolved_type ⇒ Object
277 278 279 |
# File 'lib/lutaml/model/attribute.rb', line 277 def unresolved_type @unresolved_type || @type end |
#valid_collection!(value, caller) ⇒ Object
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 |
# File 'lib/lutaml/model/attribute.rb', line 707 def valid_collection!(value, caller) if collection_instance?(value) && !collection? && !value_policy.whole_value?(unresolved_type) raise Lutaml::Model::CollectionTrueMissingError.new(name, caller) end return true unless collection? # Allow any value for unbounded collections return true if collection == true unless collection_instance?(value) # An absent value satisfies a zero minimum and has nothing to size. return true if (value.nil? || Utils.uninitialized?(value)) && resolved_collection.min.zero? raise Lutaml::Model::CollectionCountOutOfRangeError.new( name, value, collection, ) end # cover? rather than between?, so an exclusive range such as (0...5) # rejects a count of 5. in_range = if resolved_collection.end.infinite? value.size >= resolved_collection.begin else resolved_collection.cover?(value.size) end unless in_range raise Lutaml::Model::CollectionCountOutOfRangeError.new( name, value, collection, ) end # Truthy on success: validate_value! chains this with && before the # value/pattern/polymorphic/custom checks, so falling through as nil would # silently skip them for a valid bounded-range collection. true end |
#valid_pattern!(value, _resolved_type) ⇒ Object
Pattern binds actual string values only. For a plain :string attribute every element is a string; for a union the pattern applies to whichever elements took the :string branch (non-string members are exempt). A nil element is skipped along with every other non-string, and Array(value) flattens both plain Arrays and custom Collections so the pattern applies per element instead of to the collection as a whole.
599 600 601 602 603 604 605 606 607 608 609 610 |
# File 'lib/lutaml/model/attribute.rb', line 599 def valid_pattern!(value, _resolved_type) return true unless pattern Array(value).each do |item| next unless item.is_a?(::String) next if pattern.match?(item) raise Lutaml::Model::PatternNotMatchedError.new(name, pattern, item) end true end |
#valid_value!(value) ⇒ Object
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
# File 'lib/lutaml/model/attribute.rb', line 565 def valid_value!(value) # nil is never tested against the value set, whether it arrives as the # whole value or as one element of a collection (this method recurses # per element). valid_pattern! skips nil the same way, and an unset # attribute is validate_required!'s business, not the enum's. return true if value.nil? return true unless enum? return true if Utils.uninitialized?(value) # Collection attributes hold multiple values; validate each element # against the allowed set rather than the coerced collection itself. if value.is_a?(::Array) || collection_instance?(value) return value.all? { |v| valid_value!(v) } end unless valid_value?(value) raise Lutaml::Model::InvalidValueError.new(name, value, enum_values) end true end |
#valid_value?(value) ⇒ Boolean
587 588 589 590 591 |
# File 'lib/lutaml/model/attribute.rb', line 587 def valid_value?(value) return true unless [:values] [:values].include?(value) end |
#validate_choice_content!(elements) ⇒ Object
880 881 882 883 884 885 |
# File 'lib/lutaml/model/attribute.rb', line 880 def validate_choice_content!(elements) return elements.count unless resolved_collection return 1 if elements.count.between?(*resolved_collection.minmax) elements.each_slice(resolved_collection.max).count end |
#validate_collection_range ⇒ Object
676 677 678 679 680 681 682 683 684 685 686 |
# File 'lib/lutaml/model/attribute.rb', line 676 def validate_collection_range range = [:collection] return if range == true return if custom_collection? unless range.is_a?(Range) raise ArgumentError, "Invalid collection range: #{range}" end validate_range!(range) end |
#validate_polymorphic(value, resolved_type) ⇒ Object
659 660 661 662 663 664 665 666 667 668 |
# File 'lib/lutaml/model/attribute.rb', line 659 def validate_polymorphic(value, resolved_type) if value.is_a?(Array) return value.all? do |v| validate_polymorphic!(v, resolved_type) end end return true unless [:polymorphic] valid_polymorphic_type?(value, resolved_type) end |
#validate_polymorphic!(value, resolved_type) ⇒ Object
670 671 672 673 674 |
# File 'lib/lutaml/model/attribute.rb', line 670 def validate_polymorphic!(value, resolved_type) return true if validate_polymorphic(value, resolved_type) raise Lutaml::Model::PolymorphicError.new(value, , resolved_type) end |
#validate_range!(range) ⇒ Object
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 |
# File 'lib/lutaml/model/attribute.rb', line 688 def validate_range!(range) if range.begin.nil? raise ArgumentError, "Invalid collection range: #{range}. Begin must be specified." end if range.begin.negative? raise ArgumentError, "Invalid collection range: #{range}. " \ "Begin must be non-negative." end if range.end && range.end < range.begin raise ArgumentError, "Invalid collection range: #{range}. " \ "End must be greater than or equal to begin." end end |
#validate_value!(value, register, instance_object: nil) ⇒ Object
Check if the value to be assigned is valid for the attribute
Currently there are 2 validations
-
Value should be from the values list if they are defined e.g values: ["foo", "bar"] is set then any other value for this attribute will raise
Lutaml::Model::InvalidValueError -
Value count should be between the collection range if defined e.g if collection: 0..5 is set then the value greater then 5 will raise
Lutaml::Model::CollectionCountOutOfRangeError
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 |
# File 'lib/lutaml/model/attribute.rb', line 622 def validate_value!(value, register, instance_object: nil) # Use the default value if the value is nil validate_required!(value) if value.nil? value = cast_value(default_value(register, instance_object), register) end resolved_type = type(register) validate_restriction_configuration!(resolved_type) # Shape before contents. An over-count is a cardinality violation, not # an enum or pattern one, and checking it first keeps those predicates # from reporting on a value whose shape is already wrong. valid_collection!(value, instance_object&.class) && valid_value!(value) && valid_pattern!(value, resolved_type) && validate_polymorphic!(value, resolved_type) && execute_validations!(value) validate_restriction_values!(value, resolved_type) end |
#value_policy ⇒ Object
The value-shaping policy for this attribute. Constructed lazily so the collection/union/ref flags are settled; memoized because they are fixed after definition.
156 157 158 159 160 161 162 |
# File 'lib/lutaml/model/attribute.rb', line 156 def value_policy @value_policy ||= ValuePolicy.new( collection: collection?, union: union?, reference: ![:ref_model_class].nil?, ) end |