Class: Connect::Entry::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/connect/entries/base.rb

Overview

A base class for an entry in the values tables

Direct Known Subclasses

Interpolator, ObjectReference, Reference, Value

Class Attribute Summary collapse

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value, selector = nil, xref = nil) ⇒ Base

Returns a new instance of Base.



20
21
22
23
24
# File 'lib/connect/entries/base.rb', line 20

def initialize(value, selector = nil, xref = nil)
  @xref     = [xref].compact
  @value    = value
  @selector = selector
end

Class Attribute Details

.objects_tableObject

Returns the value of attribute objects_table.



15
16
17
# File 'lib/connect/entries/base.rb', line 15

def objects_table
  @objects_table
end

.values_tableObject

Returns the value of attribute values_table.



15
16
17
# File 'lib/connect/entries/base.rb', line 15

def values_table
  @values_table
end

Instance Attribute Details

#selectorObject

Returns the value of attribute selector.



18
19
20
# File 'lib/connect/entries/base.rb', line 18

def selector
  @selector
end

#valueObject

Returns the value of attribute value.



18
19
20
# File 'lib/connect/entries/base.rb', line 18

def value
  @value
end

#xrefObject

Returns the value of attribute xref.



18
19
20
# File 'lib/connect/entries/base.rb', line 18

def xref
  @xref
end

Instance Method Details

#add_reference(reference) ⇒ Object



33
34
35
36
# File 'lib/connect/entries/base.rb', line 33

def add_reference(reference)
  @xref << reference
  @xref = @xref.flatten.compact
end

#finalHash

Translate the object for external representation

Returns:

  • (Hash)

    a hash containing the name as key and the data as a [Hash]



53
54
55
56
57
# File 'lib/connect/entries/base.rb', line 53

def final
  result = self
  result = result.to_ext  while result.respond_to?(:to_ext)
  result
end

#merge!(entry) ⇒ Object



26
27
28
29
30
31
# File 'lib/connect/entries/base.rb', line 26

def merge!(entry)
  @xref     << entry.xref
  @xref     = @xref.flatten.compact
  @value    = entry.value
  @selector = entry.selector
end

#to_extHash

Translate the object for external representation

Returns:

  • (Hash)

    a hash containing the name as key and the data as a [Hash]



43
44
45
# File 'lib/connect/entries/base.rb', line 43

def to_ext
  fail ArgumentError, 'Internal error. to_ext must be implemented'
end