Class: Stupidedi::Builder::FunctionalGroupState
- Inherits:
-
AbstractState
- Object
- AbstractState
- Stupidedi::Builder::FunctionalGroupState
- Defined in:
- lib/stupidedi/builder/states/functional_group_state.rb
Instance Attribute Summary collapse
- #children ⇒ Array<AbstractState> readonly
- #fgcode ⇒ String readonly
- #instructions ⇒ InstructionTable readonly
- #segment_dict ⇒ Reader::SegmentDict readonly
- #separators ⇒ Reader::Separators readonly
- #version ⇒ String readonly
- #zipper ⇒ Zipper::AbstractCursor readonly
Constructors collapse
Instance Method Summary collapse
- #copy(changes = {}) ⇒ FunctionalGroupState
-
#initialize(separators, segment_dict, instructions, zipper, children, fgcode, version) ⇒ FunctionalGroupState
constructor
A new instance of FunctionalGroupState.
Methods inherited from AbstractState
#leaf?, lsequence, mkcomposite, mkelement, mkrepeated, mksegment, mksimple, #pretty_print, sequence, tsequence
Methods included from Inspect
Constructor Details
#initialize(separators, segment_dict, instructions, zipper, children, fgcode, version) ⇒ FunctionalGroupState
Returns a new instance of FunctionalGroupState.
27 28 29 30 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 27 def initialize(separators, segment_dict, instructions, zipper, children, fgcode, version) @separators, @segment_dict, @instructions, @zipper, @children, @fgcode, @version = separators, segment_dict, instructions, zipper, children, fgcode, version end |
Instance Attribute Details
#children ⇒ Array<AbstractState> (readonly)
19 20 21 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 19 def children @children end |
#fgcode ⇒ String (readonly)
22 23 24 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 22 def fgcode @fgcode end |
#instructions ⇒ InstructionTable (readonly)
13 14 15 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 13 def instructions @instructions end |
#segment_dict ⇒ Reader::SegmentDict (readonly)
10 11 12 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 10 def segment_dict @segment_dict end |
#separators ⇒ Reader::Separators (readonly)
7 8 9 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 7 def separators @separators end |
#version ⇒ String (readonly)
25 26 27 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 25 def version @version end |
#zipper ⇒ Zipper::AbstractCursor (readonly)
16 17 18 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 16 def zipper @zipper end |
Class Method Details
.push(zipper, parent, segment_tok, segment_use, config) ⇒ Zipper::AbstractCursor
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 50 def push(zipper, parent, segment_tok, segment_use, config) # GS08: Version / Release / Industry Identifier Code version = segment_tok.element_toks.at(7).try(:value) gscode = version.try(:slice, 0, 6) # GS01: Functional Identifier Code fgcode = segment_tok.element_toks.at(0).try(:value) unless config.functional_group.defined_at?(gscode) return FailureState.push( zipper, parent, segment_tok, "unknown functional group version #{gscode.inspect}") end envelope_def = config.functional_group.at(gscode) envelope_val = envelope_def.empty segment_use = envelope_def.entry_segment_use segment_val = mksegment(segment_tok, segment_use) zipper.append_child new( parent.separators, parent.segment_dict.push(envelope_val.segment_dict), parent.instructions.push(instructions(envelope_def)), parent.zipper.append(envelope_val).append_child(segment_val), [], fgcode, version) end |
Instance Method Details
#copy(changes = {}) ⇒ FunctionalGroupState
33 34 35 36 37 38 39 40 41 42 |
# File 'lib/stupidedi/builder/states/functional_group_state.rb', line 33 def copy(changes = {}) FunctionalGroupState.new \ changes.fetch(:separators, @separators), changes.fetch(:segment_dict, @segment_dict), changes.fetch(:instructions, @instructions), changes.fetch(:zipper, @zipper), changes.fetch(:children, @children), changes.fetch(:fgcode, @fgcode), changes.fetch(:version, @version) end |