git_stats/lib/git_stats/git_data/repo.rb

65 lines
1.6 KiB
Ruby
Raw Normal View History

2012-10-13 17:20:06 +02:00
require 'git_stats/hash_initializable'
2012-10-09 22:34:02 +02:00
module GitStats
module GitData
class Repo
2012-10-13 17:20:06 +02:00
include HashInitializable
attr_reader :path, :git_command_observer
2012-10-09 22:34:02 +02:00
2012-10-13 17:20:06 +02:00
def initialize(params)
super(params)
@path = File.expand_path(@path)
2012-10-09 22:34:02 +02:00
end
2012-10-12 18:20:07 +02:00
def authors
2012-10-19 16:39:39 +02:00
@authors ||= Command.new(self, 'git shortlog -se HEAD').run_and_parse.map do |author|
Author.new(repo: self, name: author[:name], email: author[:email])
end.extend(ByFieldFinder)
2012-10-09 22:34:02 +02:00
end
2012-10-12 18:20:07 +02:00
def commits
@commits ||= Command.new(self, 'git rev-list --pretty=format:"%h|%at|%ai|%aE" HEAD | grep -v commit').run.lines.map do |commit_line|
2012-10-09 22:34:02 +02:00
hash, stamp, date, author_email = commit_line.split('|').map(&:strip)
2012-10-19 16:39:39 +02:00
author = authors.by_email(author_email)
2012-10-09 22:34:02 +02:00
date = DateTime.parse(date)
Commit.new(repo: self, hash: hash, stamp: stamp, date: date, author: author)
end.sort_by! { |e| e.date }
end
2012-10-19 15:51:24 +02:00
def commit_range
@first_commit ? "#{@first_commit}..#{last_commit}" : last_commit
end
def last_commit
@last_commit ||= 'HEAD'
end
def short_stats
@short_stats ||= commits.map(&:short_stat)
2012-10-09 22:34:02 +02:00
end
def activity
2012-10-12 18:24:28 +02:00
@activity ||= Activity.new(commits)
2012-10-09 22:34:02 +02:00
end
def project_version
@project_version ||= Command.new(self, 'git rev-parse --short HEAD').run
end
def project_name
@project_name ||= File.basename(path)
2012-10-09 22:34:02 +02:00
end
2012-10-12 18:20:07 +02:00
2012-10-13 12:38:07 +02:00
def to_s
"#{self.class} #@path"
end
2012-10-13 13:27:15 +02:00
def ==(other)
self.path == other.path
end
2012-10-09 22:34:02 +02:00
end
end
end