Class: AttributeStruct
- Inherits:
- BasicObject
- Defined in:
- lib/attribute_struct/version.rb,
lib/attribute_struct/attribute_hash.rb,
lib/attribute_struct/attribute_struct.rb
Defined Under Namespace
Classes: CollapseArray, Mash
Constant Summary collapse
- VERSION =
Current library version
::Gem::Version.new('0.2.24')
- AttributeHash =
Mash
Class Attribute Summary collapse
-
.camel_keys ⇒ Truthy, Falsey
Global flag for camel keys.
Instance Attribute Summary collapse
-
#_arg_state ⇒ AtributeStruct::AttributeHash, Mash
readonly
Holding space for state.
-
#_camel_keys ⇒ Truthy, Falsey
Current camelizing setting.
Class Method Summary collapse
-
.build(&block) ⇒ Object
Create AttributeStruct instance and dump the resulting hash.
- .hashish ⇒ AttributeStruct::AttributeHash
-
.irb_compat! ⇒ TrueClass
Enable IRB compatibility mode.
-
.load_the_camels ⇒ Object
Loads helpers for camel casing.
Instance Method Summary collapse
-
#[](key) ⇒ Object
Direct data access.
-
#__hashish ⇒ Class
Hashish type available.
-
#_array(*args) ⇒ Array
(also: #array!)
Create an Array and evaluate discovered AttributeStructs.
-
#_build { ... } ⇒ Object
(also: #build!)
Execute block within current context.
-
#_camel_keys_action ⇒ Symbol, NilClass
:auto_disable or :auto_enable.
-
#_camel_keys_set(v) ⇒ Symbol
(also: #camel_keys_set!)
Set custom rule for processed keys at this context level.
-
#_data ⇒ AttributeStruct::AttributeHash, Mash
(also: #data!)
Underlying struct data.
-
#_deep_copy(thing = nil) ⇒ Object
Create a “deep” copy.
-
#_delete(key) ⇒ Object
(also: #delete!)
Delete entry from struct.
-
#_do_dup(v) ⇒ Object
Provide dup of instance.
-
#_dump ⇒ AttributeStruct::AttributeHash, Mash
(also: #dump!)
Dump struct to hashish.
-
#_keys ⇒ Array<String,Symbol>
(also: #keys!)
Keys within struct.
-
#_klass ⇒ Class
(also: #klass!, #class!, #class)
This class.
-
#_klass_new(*args, &block) ⇒ AttributeStruct
New struct instance.
-
#_load(hashish) ⇒ self
(also: #load!)
Clear current struct data and replace.
-
#_merge(overlay) ⇒ AttributeStruct
Perform deep merge.
-
#_merge!(overlay) ⇒ self
Perform deep merge in place.
-
#_parent(obj = nil) ⇒ AttributeStruct, NilClass
(also: #parent!)
Parent of this struct.
-
#_process_key(key, *args) ⇒ String, Symbol
(also: #process_key!)
Provide expected key format based on context.
-
#_root ⇒ AttributeStruct, NilClass
(also: #root!)
Root of the struct or nil if self is root.
-
#_set(key, val = nil) { ... } ⇒ Object
(also: #set!)
Directly set value into struct.
-
#_set_state(args = {}) ⇒ Hashish
(also: #set_state!)
Set state into current context.
-
#_state(key, traverse = true) ⇒ Object, NilClass
(also: #state!)
Value of requested state.
-
#initialize(init_hash = nil) { ... } ⇒ AttributeStruct
constructor
Create new instance.
-
#is_a?(klass) ⇒ TrueClass, FalseClass
(also: #kind_of?)
Determine if self is a class.
-
#method_missing(sym, *args) { ... } ⇒ Object
Provides struct DSL behavior.
-
#nil? ⇒ TrueClass, FalseClass
Struct is nil (empty data).
-
#respond_to?(name) ⇒ TrueClass, FalseClass
Instance responds to method name.
Constructor Details
#initialize(init_hash = nil) { ... } ⇒ AttributeStruct
Create new instance
63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/attribute_struct/attribute_struct.rb', line 63 def initialize(init_hash=nil, &block) @_camel_keys = _klass.camel_keys @_arg_state = __hashish.new @table = __hashish.new if(init_hash) _load(init_hash) end if(block) self.instance_exec(&block) end end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args) { ... } ⇒ Object
Dragons and unicorns all over in here
Provides struct DSL behavior
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 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 200 201 202 203 204 205 206 207 208 209 210 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 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/attribute_struct/attribute_struct.rb', line 149 def method_missing(sym, *args, &block) if((s = sym.to_s).end_with?('=')) s.slice!(-1, s.length) sym = s end sym = _process_key(sym) if(!args.empty? || block) if(args.empty? && block) base = @table.fetch(sym, :__unset__) if(_state(:value_collapse) && !base.is_a?(self.class!)) orig = base base = _klass_new else unless(base.is_a?(self.class!)) base = _klass_new end end if(block.arity == 0) base.instance_exec(&block) else base.instance_exec(base, &block) end if(orig.is_a?(::NilClass)) @table[sym] = base else if(orig == :__unset__) @table[sym] = base else unless(orig.is_a?(CollapseArray)) orig = CollapseArray.new.push(orig) end orig << base @table[sym] = orig end end elsif(!args.empty? && block) result = leaf = base = @table.fetch(sym, _klass_new) args.flatten.each do |arg| leaf = base[arg] unless(leaf.is_a?(_klass)) leaf = _klass_new base._set(arg, leaf) base = leaf end end if(!leaf.nil? && _state(:value_collapse)) orig = leaf leaf = orig.parent._klass_new end block.arity == 0 ? leaf._build(&block) : leaf._build(leaf, &block) if(orig) unless(orig.is_a?(CollapseArray)) orig = CollapseArray.new.push(orig) end orig << leaf else orig = leaf end @table[sym] = result else if(args.size > 1 && args.all?{|i| i.is_a?(::String) || i.is_a?(::Symbol)} && !_state(:value_collapse)) @table[sym] = _klass_new unless @table[sym].is_a?(_klass) endpoint = args.inject(@table[sym]) do |memo, k| unless(memo[k].is_a?(_klass)) memo._set(k, _klass_new) end memo[k] end return endpoint # custom break out else if(args.size > 1) val = args.map do |v| if(v.is_a?(::Hash) && _state(:hash_load_struct)) val = _klass_new val._load(v) else v end end else if(args.first.is_a?(::Hash) && _state(:hash_load_struct)) val = _klass_new val._load(args.first) else val = args.first end end if(_state(:value_collapse) && !(leaf = @table[sym]).nil?) unless(leaf.is_a?(CollapseArray)) leaf = CollapseArray.new.push(leaf) end leaf << val @table[sym] = leaf else @table[sym] = val end end end end @table[sym] = _klass_new if @table[sym].nil? && !@table[sym].is_a?(_klass) @table[sym] end |
Class Attribute Details
.camel_keys ⇒ Truthy, Falsey
Returns global flag for camel keys.
10 11 12 |
# File 'lib/attribute_struct/attribute_struct.rb', line 10 def camel_keys @camel_keys end |
Instance Attribute Details
#_arg_state ⇒ AtributeStruct::AttributeHash, Mash (readonly)
Returns holding space for state.
57 58 59 |
# File 'lib/attribute_struct/attribute_struct.rb', line 57 def _arg_state @_arg_state end |
#_camel_keys ⇒ Truthy, Falsey
Returns current camelizing setting.
55 56 57 |
# File 'lib/attribute_struct/attribute_struct.rb', line 55 def _camel_keys @_camel_keys end |
Class Method Details
.build(&block) ⇒ Object
Create AttributeStruct instance and dump the resulting hash
35 36 37 38 |
# File 'lib/attribute_struct/attribute_struct.rb', line 35 def build(&block) raise ArgumentError.new 'Block required for build!' unless block new(&block)._dump end |
.hashish ⇒ AttributeStruct::AttributeHash
30 31 32 |
# File 'lib/attribute_struct/attribute_struct.rb', line 30 def hashish ::AttributeStruct::AttributeHash end |
.irb_compat! ⇒ TrueClass
this will add methods required for working within IRB
Enable IRB compatibility mode
44 45 46 47 |
# File 'lib/attribute_struct/attribute_struct.rb', line 44 def irb_compat! self.send(:include, IrbCompat) true end |
.load_the_camels ⇒ Object
Loads helpers for camel casing
22 23 24 25 26 27 |
# File 'lib/attribute_struct/attribute_struct.rb', line 22 def load_the_camels unless(@camels_loaded) require 'attribute_struct/monkey_camels' @camels_loaded = true end end |
Instance Method Details
#[](key) ⇒ Object
Direct data access
122 123 124 |
# File 'lib/attribute_struct/attribute_struct.rb', line 122 def [](key) _data[_process_key(key)] end |
#__hashish ⇒ Class
Returns hashish type available.
361 362 363 |
# File 'lib/attribute_struct/attribute_struct.rb', line 361 def __hashish ::AttributeStruct::AttributeHash end |
#_array(*args) ⇒ Array Also known as: array!
Create an Array and evaluate discovered AttributeStructs
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/attribute_struct/attribute_struct.rb', line 475 def _array(*args) args.map do |maybe_block| if(maybe_block.is_a?(::Proc)) klass = _klass_new if(maybe_block.arity > 0) klass.instance_exec(klass, &maybe_block) else klass.instance_exec(&maybe_block) end klass else maybe_block end end end |
#_build { ... } ⇒ Object Also known as: build!
Execute block within current context
79 80 81 |
# File 'lib/attribute_struct/attribute_struct.rb', line 79 def _build(&block) self.instance_exec(&block) end |
#_camel_keys_action ⇒ Symbol, NilClass
Returns :auto_disable or :auto_enable.
450 451 452 |
# File 'lib/attribute_struct/attribute_struct.rb', line 450 def _camel_keys_action @_camel_keys_set end |
#_camel_keys_set(v) ⇒ Symbol Also known as: camel_keys_set!
Set custom rule for processed keys at this context level
444 445 446 |
# File 'lib/attribute_struct/attribute_struct.rb', line 444 def _camel_keys_set(v) @_camel_keys_set = v end |
#_data ⇒ AttributeStruct::AttributeHash, Mash Also known as: data!
Returns underlying struct data.
273 274 275 |
# File 'lib/attribute_struct/attribute_struct.rb', line 273 def _data @table end |
#_deep_copy(thing = nil) ⇒ Object
Create a “deep” copy
382 383 384 385 386 387 388 389 390 391 392 393 |
# File 'lib/attribute_struct/attribute_struct.rb', line 382 def _deep_copy(thing=nil) thing ||= _dump if(thing.is_a?(::Enumerable)) val = thing.map{|v| v.is_a?(::Enumerable) ? _deep_copy(v) : _do_dup(v) } else val = _do_dup(thing) end if(thing.is_a?(::Hash)) val = __hashish[*val.flatten(1)] end val end |
#_delete(key) ⇒ Object Also known as: delete!
Delete entry from struct
282 283 284 |
# File 'lib/attribute_struct/attribute_struct.rb', line 282 def _delete(key) _data.delete(_process_key(key)) end |
#_do_dup(v) ⇒ Object
if Symbol provided, String is returned
Provide dup of instance
370 371 372 373 374 375 376 |
# File 'lib/attribute_struct/attribute_struct.rb', line 370 def _do_dup(v) begin v.dup rescue v.is_a?(::Symbol) ? v.to_s : v end end |
#_dump ⇒ AttributeStruct::AttributeHash, Mash Also known as: dump!
Returns dump struct to hashish.
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/attribute_struct/attribute_struct.rb', line 288 def _dump processed = @table.map do |key, value| if(value.is_a?(::Enumerable)) flat = value.map do |v| v.is_a?(_klass) ? v._dump : v end val = value.is_a?(::Hash) ? __hashish[*flat.flatten(1)] : flat elsif(value.is_a?(_klass) && value.nil?) next elsif(value.is_a?(_klass) && !value.nil?) val = value._dump else val = value.nil? ? nil : value end [key, val] end.compact __hashish[*processed.flatten(1)] end |
#_keys ⇒ Array<String,Symbol> Also known as: keys!
Returns keys within struct.
267 268 269 |
# File 'lib/attribute_struct/attribute_struct.rb', line 267 def _keys _data.keys end |
#_klass ⇒ Class Also known as: klass!, class!, class
Returns this class.
421 422 423 |
# File 'lib/attribute_struct/attribute_struct.rb', line 421 def _klass ::AttributeStruct end |
#_klass_new(*args, &block) ⇒ AttributeStruct
will set self as parent and propogate camelizing status
Returns new struct instance.
430 431 432 433 434 435 436 437 438 |
# File 'lib/attribute_struct/attribute_struct.rb', line 430 def _klass_new(*args, &block) n = _klass.new(*args, &block) unless(_camel_keys_action == :auto_discovery) n._camel_keys_set(_camel_keys_action) end n._camel_keys = _camel_keys n._parent(self) n end |
#_load(hashish) ⇒ self Also known as: load!
Clear current struct data and replace
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/attribute_struct/attribute_struct.rb', line 312 def _load(hashish) @table.clear if(_root._camel_keys_action == :auto_discovery) starts = hashish.keys.map{|k|k[0,1]} unless(starts.detect{|k| k =~ /[A-Z]/}) _camel_keys_set(:auto_disable) else _camel_keys_set(:auto_enable) unless _parent.nil? end end hashish.each do |key, value| if(value.is_a?(::Enumerable)) flat = value.map do |v| v.is_a?(::Hash) ? _klass_new(v) : v end value = value.is_a?(::Hash) ? __hashish[*flat.flatten(1)] : flat end if(value.is_a?(::Hash)) self._set(key)._load(value) else self._set(key, value) end end self end |
#_merge(overlay) ⇒ AttributeStruct
Perform deep merge
343 344 345 346 347 348 |
# File 'lib/attribute_struct/attribute_struct.rb', line 343 def _merge() source = _deep_copy dest = ._deep_copy result = source.deep_merge(dest) _klass_new(result) end |
#_merge!(overlay) ⇒ self
Perform deep merge in place
354 355 356 357 358 |
# File 'lib/attribute_struct/attribute_struct.rb', line 354 def _merge!() result = _merge()._dump _load(result) self end |
#_parent(obj = nil) ⇒ AttributeStruct, NilClass Also known as: parent!
Returns parent of this struct.
455 456 457 458 |
# File 'lib/attribute_struct/attribute_struct.rb', line 455 def _parent(obj=nil) @_parent = obj if obj @_parent end |
#_process_key(key, *args) ⇒ String, Symbol Also known as: process_key!
Provide expected key format based on context
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
# File 'lib/attribute_struct/attribute_struct.rb', line 400 def _process_key(key, *args) key = ::CamelString.new(key.to_s) if(_camel_keys && _camel_keys_action && !key._hump_format_requested?) case _camel_keys_action when :auto_disable key._no_hump when :auto_enable key._hump end end if((_camel_keys && key._camel?) || args.include?(:force)) key.to_s.split('_').map do |part| "#{part[0,1].upcase}#{part[1,part.size]}" end.join.to_sym else key end end |
#_root ⇒ AttributeStruct, NilClass Also known as: root!
Returns root of the struct or nil if self is root.
462 463 464 465 466 467 468 |
# File 'lib/attribute_struct/attribute_struct.rb', line 462 def _root r = self until(r._parent == nil) r = r._parent end r end |
#_set(key, val = nil) { ... } ⇒ Object Also known as: set!
Directly set value into struct. Useful when the key is not valid ruby syntax for a method
133 134 135 136 137 138 139 |
# File 'lib/attribute_struct/attribute_struct.rb', line 133 def _set(key, val=nil, &block) if(val) self.method_missing(key, val, &block) else self.method_missing(key, &block) end end |
#_set_state(args = {}) ⇒ Hashish Also known as: set_state!
Set state into current context
88 89 90 |
# File 'lib/attribute_struct/attribute_struct.rb', line 88 def _set_state(args={}) _arg_state.merge!(args) end |
#_state(key, traverse = true) ⇒ Object, NilClass Also known as: state!
Value of requested state
98 99 100 101 102 103 104 105 106 |
# File 'lib/attribute_struct/attribute_struct.rb', line 98 def _state(key, traverse=true) if(_arg_state.has_key?(key)) _arg_state[key] else if(traverse && _parent) _parent._state(key) end end end |
#is_a?(klass) ⇒ TrueClass, FalseClass Also known as: kind_of?
Determine if self is a class
261 262 263 |
# File 'lib/attribute_struct/attribute_struct.rb', line 261 def is_a?(klass) (_klass.ancestors + [::AttributeStruct]).include?(klass) end |
#nil? ⇒ TrueClass, FalseClass
Returns struct is nil (empty data).
253 254 255 |
# File 'lib/attribute_struct/attribute_struct.rb', line 253 def nil? _data.empty? end |
#respond_to?(name) ⇒ TrueClass, FalseClass
Instance responds to method name
496 497 498 |
# File 'lib/attribute_struct/attribute_struct.rb', line 496 def respond_to?(name) _klass.instance_methods.map(&:to_sym).include?(name.to_sym) end |