Class: SectionX

Inherits:
Object
  • Object
show all
Defined in:
lib/sectionx.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(x = nil) ⇒ SectionX

Returns a new instance of SectionX.



15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/sectionx.rb', line 15

def initialize(x=nil)
  
  @doc = if x.is_a? String then
    buffer, _ = RXFHelper.read x
    Rexle.new buffer
  elsif x.is_a? Rexle::Element then x      
  end
  
  if @doc then
    @attributes, @summary, @sections = parse_root_node @doc.root
  end
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



13
14
15
# File 'lib/sectionx.rb', line 13

def attributes
  @attributes
end

#sectionsObject (readonly)

Returns the value of attribute sections.



13
14
15
# File 'lib/sectionx.rb', line 13

def sections
  @sections
end

#summaryObject (readonly)

Returns the value of attribute summary.



13
14
15
# File 'lib/sectionx.rb', line 13

def summary
  @summary
end

Instance Method Details

#import(raw_s) ⇒ Object



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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/sectionx.rb', line 28

def import(raw_s)
  
  raw_buffer, type = RXFHelper.read(raw_s)

  lines = raw_buffer.lines
  header = lines.shift
  id = header[/id=["']([^"']+)/,1] || 'sectionx'

  body, summary = lines.join.strip.split(/^----*$/).reverse
  nested = indent_heading("# summary\n%s\n# begin\n%s" % [summary,\
                                                              body.strip])
  a = LineTree.new(nested).to_a
  
  raw_summary = a.shift
  raw_summary.shift # removes the redundant summary label
  
  
  section1 = a.shift # get the 1st section
  section1[0] = nil  # nilify the section heading 'begin'

  xml = RexleBuilder.new

  a2 = xml.send(id) do 
    
    xml.summary do
      build_rows xml, raw_summary
      xml.recordx_type 'sectionx'
    end
    
    xml.sections do

      build_section xml, section1

      a.each {|raw_rows| build_section xml, raw_rows }

    end
  end

  @doc = Rexle.new a2
  @attributes, @summary, @sections = parse_root_node(@doc.root)    
  
  self
end

#recordx_typeObject



72
73
74
# File 'lib/sectionx.rb', line 72

def recordx_type()
  @summary[:recordx_type]
end

#save(filepath) ⇒ Object



76
77
78
# File 'lib/sectionx.rb', line 76

def save(filepath)
  File.write filepath, @doc.xml(pretty: true)
end

#to_xml(options = {}) ⇒ Object



80
81
82
# File 'lib/sectionx.rb', line 80

def to_xml(options={})
  @doc.xml(options)
end

#xpath(x) ⇒ Object



84
85
86
# File 'lib/sectionx.rb', line 84

def xpath(x)
  @doc.root.xpath(x)
end

#xslt=(value) ⇒ Object



88
89
90
91
92
# File 'lib/sectionx.rb', line 88

def xslt=(value)
  
  self.summary.merge!({xslt: value})
  @xslt = value
end