Class: Fastlane::Helper::Ios::StringsFileValidationHelper

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/plugin/wpmreleasetoolkit/helper/ios/ios_strings_file_validation_helper.rb

Defined Under Namespace

Classes: State

Constant Summary collapse

TRANSITIONS =
{
  root: {
    /\s/ => :root,
    '/' => :maybe_comment_start,
    '"' => :in_quoted_key
  },
  maybe_comment_start: {
    '/' => :in_line_comment,
    /\*/ => :in_block_comment
  },
  in_line_comment: {
    "\n" => :root,
    /./ => :in_line_comment
  },
  in_block_comment: {
    /\*/ => :maybe_block_comment_end,
    /./m => :in_block_comment
  },
  maybe_block_comment_end: {
    '/' => :root,
    /./m => :in_block_comment
  },
  in_quoted_key: {
    '"' => lambda do |state, _|
      state.found_key = state.buffer.string.dup
      state.buffer.string = ''
      :after_quoted_key_before_eq
    end,
    /./ => lambda do |state, c|
      state.buffer.write(c)
      :in_quoted_key
    end
  },
  after_quoted_key_before_eq: {
    /\s/ => :after_quoted_key_before_eq,
    '=' => :after_quoted_key_and_eq
  },
  after_quoted_key_and_eq: {
    /\s/ => :after_quoted_key_and_eq,
    '"' => :in_quoted_value
  },
  in_quoted_value: {
    '"' => :after_quoted_value,
    /./m => :in_quoted_value
  },
  after_quoted_value: {
    /\s/ => :after_quoted_value,
    ';' => :root
  }
}.freeze

Class Method Summary collapse

Class Method Details

.find_duplicated_keys(file:) ⇒ Hash<String, Array<Int>] Hash with the dublipcated keys. Each element has the duplicated key (from the `.strings`) as key and an array of line numbers where the key occurs as value.

Inspects the given ‘.strings` file for duplicated keys, returning them if any.

Parameters:

  • file (String)

    The path to the file to inspect.

Returns:

  • (Hash<String, Array<Int>] Hash with the dublipcated keys. Each element has the duplicated key (from the `.strings`) as key and an array of line numbers where the key occurs as value.)

    Hash<String, Array<Int>] Hash with the dublipcated keys. Each element has the duplicated key (from the ‘.strings`) as key and an array of line numbers where the key occurs as value.



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ios/ios_strings_file_validation_helper.rb', line 68

def self.find_duplicated_keys(file:)
  keys_with_lines = Hash.new([])

  state = State.new(context: :root, buffer: StringIO.new, in_escaped_ctx: false, found_key: nil)

  File.readlines(file).each_with_index do |line, line_no|
    line.chars.each_with_index do |c, col_no|
      # Handle escaped characters at a global level.
      # This is more straightforward than having to account for it in the `TRANSITIONS` table.
      if state.in_escaped_ctx || c == '\\'
        # Just because we check for escaped characters at the global level, it doesn't mean we allow them in every context.
        allowed_contexts_for_escaped_characters = %i[in_quoted_key in_quoted_value in_block_comment in_line_comment]
        raise "Found escaped character outside of allowed contexts on line #{line_no + 1} (current context: #{state.context})" unless allowed_contexts_for_escaped_characters.include?(state.context)

        state.buffer.write(c) if state.context == :in_quoted_key
        state.in_escaped_ctx = !state.in_escaped_ctx
        next
      end

      # Look at the transitions table for the current context, and find the first transition matching the current character
      (_, next_context) = TRANSITIONS[state.context].find { |regex, _| c.match?(regex) } || [nil, nil]
      raise "Invalid character `#{c}` found on line #{line_no + 1}, col #{col_no + 1}" if next_context.nil?

      state.context = next_context.is_a?(Proc) ? next_context.call(state, c) : next_context
      next unless state.found_key

      # If we just exited the :in_quoted_key context and thus have found a new key, process it
      key = state.found_key.dup
      state.found_key = nil

      keys_with_lines[key] += [line_no + 1]
    end
  end

  keys_with_lines.keep_if { |_, lines| lines.count > 1 }
end