Sha256: 7ed91bf9b11ed306e122301cb13fa6e728b2debb873d1b64b8d9ebe90761f286

Contents?: true

Size: 1.48 KB

Versions: 357

Compression:

Stored size: 1.48 KB

Contents

require_relative 'module'

module Frameit
  # This class will parse the .string files
  class StringsParser
    def self.parse(path)
      UI.user_error!("Couldn't find strings file at path '#{path}'") unless File.exist?(path)
      UI.user_error!("Must be .strings file, only got '#{path}'") unless path.end_with?(".strings")

      result = {}

      # A .strings file is UTF-16 encoded. We only want to deal with UTF-8
      encoding = encoding_type(path)
      if encoding.include?('utf-8') || encoding.include?('us-ascii')
        content = File.read(path)
      else
        content = `iconv -f UTF-16 -t UTF-8 "#{path}" 2>&1` # note: double quotes around path so command also works on Windows
      end

      content.split("\n").each_with_index do |line, index|
        begin
          # We don't care about comments and empty lines
          if line.start_with?('"')
            key = line.match(/"(.*)" \= /)[1]
            value = line.match(/ \= "(.*)"/)[1]

            result[key] = value
          end
        rescue => ex
          UI.error("Error parsing #{path} line #{index + 1}: '#{line}'")
          UI.verbose("#{ex.message}\n#{ex.backtrace.join('\n')}")
        end
      end

      if result.empty?
        UI.error("Empty parsing result for #{path}. Please make sure the file is valid and UTF16 Big-endian encoded")
      end

      result
    end

    def self.encoding_type(path)
      Helper.backticks("file --mime-encoding #{path.shellescape}", print: false).downcase
    end
  end
end

Version data entries

357 entries across 357 versions & 5 rubygems

Version Path
fastlane-2.189.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.188.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.187.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.186.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.185.1 frameit/lib/frameit/strings_parser.rb
fastlane-2.185.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.184.1 frameit/lib/frameit/strings_parser.rb
fastlane-2.184.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.183.2 frameit/lib/frameit/strings_parser.rb
fastlane-2.183.1 frameit/lib/frameit/strings_parser.rb
fastlane-2.183.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.182.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.181.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.180.1 frameit/lib/frameit/strings_parser.rb
fastlane-2.180.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.179.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.178.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.177.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.176.0 frameit/lib/frameit/strings_parser.rb
fastlane-2.175.0 frameit/lib/frameit/strings_parser.rb