Sha256: 62d75c90abe800b7b069f68ed3341eac2f75611d83ba8aaf6753df406beec7f1

Contents?: true

Size: 1.73 KB

Versions: 11

Compression:

Stored size: 1.73 KB

Contents

# frozen_string_literal: true

require 'eac_ruby_utils/core_ext'

module EacGit
  class Local
    class Commit
      require_sub __FILE__, include_modules: true
      enable_simple_cache
      include ::Comparable

      FIELDS = {
        author_name: '%an', author_email: '%ae', author_date: '%ai',
        subject: '%s',
        author_all: '%an <%ae>, %ai',
        commiter_name: '%cn', commiter_email: '%ce', commiter_date: '%ci',
        commiter_all: '%cn <%ce>, %ci',
        raw_body: '%B'
      }.freeze

      common_constructor :repo, :id

      def <=>(other)
        [repo, id] <=> [other.repo, other.id]
      end

      def format(format)
        repo.command('--no-pager', 'log', '-1', "--pretty=format:#{format}", id).execute!.strip
      end

      FIELDS.each do |field, format|
        define_method(field) { format(format) }
      end

      def changed_files_uncached
        diff_tree_execute.each_line.map do |line|
          ::EacGit::Local::Commit::ChangedFile.new(self, line)
        end
      end

      def changed_files_size_uncached
        changed_files.inject(0) { |a, e| a + e.dst_size }
      end

      # @return [EacGit::Local::Commit, nil]
      def parent
        ps = parents
        raise "#{self} has more than one parent" if ps.count > 2

        ps.empty? ? nil : ps.first
      end

      # @return [Array<EacGit::Local::Commit>]
      def parents
        format('%P').each_line.map { |line| repo.commitize(line) }
      end

      def root_child?
        parents.empty?
      end

      private

      def diff_tree_execute
        args = []
        args << '--root' if root_child?
        args << id
        repo.command(*::EacGit::Local::Commit::DiffTreeLine::GIT_COMMAND_ARGS, *args).execute!
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
eac_git-0.11.0 lib/eac_git/local/commit.rb
avm-tools-0.113.6 sub/eac_git/lib/eac_git/local/commit.rb
avm-tools-0.113.5 sub/eac_git/lib/eac_git/local/commit.rb
avm-tools-0.113.4 sub/eac_git/lib/eac_git/local/commit.rb
avm-tools-0.113.3 sub/eac_git/lib/eac_git/local/commit.rb
avm-tools-0.113.2 sub/eac_git/lib/eac_git/local/commit.rb
eac_git-0.10.0 lib/eac_git/local/commit.rb
avm-tools-0.110.0 vendor/eac_git/lib/eac_git/local/commit.rb
avm-tools-0.109.1 vendor/eac_git/lib/eac_git/local/commit.rb
eac_git-0.9.0 lib/eac_git/local/commit.rb
avm-tools-0.109.0 vendor/eac_git/lib/eac_git/local/commit.rb