diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-15 19:01:02 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-04-15 19:01:02 +0300 |
commit | 5f8f685bd45b65f0b8506988b7ad9447f2026abb (patch) | |
tree | d645b105963aa3dcf1c90aef95228327936b1e5a /lib | |
parent | a45e4721e022e7b09d06b45fadab1ac09bf32673 (diff) | |
download | gitlab-ce-5f8f685bd45b65f0b8506988b7ad9447f2026abb.tar.gz |
Init Gitlab::Git::Diff class
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/git/diff.rb | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/lib/gitlab/git/diff.rb b/lib/gitlab/git/diff.rb new file mode 100644 index 00000000000..d9225857407 --- /dev/null +++ b/lib/gitlab/git/diff.rb @@ -0,0 +1,63 @@ +# Gitlab::Git::Diff is a wrapper around native Grit::Diff object +# We dont want to use grit objects inside app/ +# It helps us easily migrate to rugged in future +module Gitlab + module Git + class Diff + BROKEN_DIFF = "--broken-diff" + + attr_accessor :raw_diff + + # Diff properties + attr_accessor :old_path, :new_path, :a_mode, :b_mode, :diff + + # Stats properties + attr_accessor :new_file, :renamed_file, :deleted_file + + def initialize(raw_diff, head = nil) + raise "Nil as raw diff passed" unless raw_diff + + if raw_diff.is_a?(Hash) + init_from_hash(raw_diff) + else + init_from_grit(raw_diff) + end + + @head = head + end + + def serialize_keys + %w(diff new_path old_path a_mode b_mode new_file renamed_file deleted_file) + end + + def to_hash + hash = {} + + keys = serialize_keys + + keys.each do |key| + hash[key] = send(key) + end + + hash + end + + private + + def init_from_grit(grit) + @raw_diff = grit + + serialize_keys.each do |key| + send(:"#{key}=", grit.send(key)) + end + end + + def init_from_hash(hash) + serialize_keys.each do |key| + send(:"#{key}=", hash[key]) + end + end + end + end +end + |