summaryrefslogtreecommitdiff
path: root/lib/action_file_executor.rb
blob: d8e583cb096e277691fd59d739cf967cdc1bef8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
# frozen_string_literal: true

require_relative 'family_tree'

class ActionFileExecutor
  def initialize(file_path)
    @file_path = file_path
    validate_file!
  end

  def execute_actions
    File.foreach(@file_path) do |line|
      process_line(line.strip)
    end
  end

  private

  def validate_file!
    return if File.exist?(@file_path)

    abort("Error: The file '#{@file_path}' does not exist.")
  end

  def process_line(line)
    return if line.empty? || comment?(line)

    action, params = extract_action_and_params(line)

    return unless action && valid_action?(action, params)

    execute_action(action, params)
  end

  def comment?(line)
    line.start_with?('#')
  end

  def extract_action_and_params(line)
    match = line.match(/^(\S+)(.*)$/)
    return unless match

    action = match[1]
    params = match[2].scan(/"([^"]+)"|(\S+)/).flatten.compact
    params.map! { |param| param&.strip }
    [action, params]
  end

  def execute_action(action, params)
    case action
    when 'ADD_CHILD'
      puts FamilyTree.instance.add_child(*params)
    when 'GET_RELATIONSHIP'
      puts FamilyTree.instance.get_relationship(*params)
    end
  end

  def valid_action?(action, params)
    case action
    when 'ADD_CHILD' then params.size == 3
    when 'GET_RELATIONSHIP' then params.size == 2
    else false # Ignore unsupported actions
    end
  end
end