Sha256: 4ac9928dda0ad6fb0362c80a2b629431039cbdf667e1e0cf49d5e11aba6f7acf

Contents?: true

Size: 1.46 KB

Versions: 1

Compression:

Stored size: 1.46 KB

Contents

module XCPretty
  class JSONCompilationDatabase

    include XCPretty::FormatMethods
    FILE_PATH = 'build/reports/compilation_db.json'

    def load_dependencies
      unless @@loaded ||= false
        require 'fileutils'
        require 'pathname'
        require 'json'
        @@loaded = true
      end
    end

    def initialize(options)
      load_dependencies
      @file_path = options[:path] || FILE_PATH
      @parser = Parser.new(self)
      @compilation_units = []
      @pch_path = nil
      @current_file = nil
      @current_path = nil
    end

    def handle(line)
      @parser.parse(line)
    end

    def format_process_pch_command(file_path)
      @pch_path = file_path
    end

    def format_compile(file_name, file_path)
      @current_file = file_name
      @current_path = file_path
    end

    def format_compile_command(compiler_command, file_path)
      directory = file_path.gsub("#{@current_path}", '').gsub(/\/$/, '')
      directory = '/' if directory.empty?

      cmd = compiler_command
      cmd = cmd.gsub(/(\-include)\s.*\.pch/, "\\1 #{@pch_path}") if @pch_path

      @compilation_units << {command: cmd,
                             file: @current_path,
                             directory: directory}
    end

    def finish
      FileUtils.mkdir_p(File.dirname(@file_path))
      write_report
    end

    private

    def write_report
      File.open(@file_path, 'w') do |f|
        f.write(@compilation_units.to_json)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xcpretty-0.2.2 lib/xcpretty/reporters/json_compilation_database.rb