free_mutant/lib/mutant/diff.rb

115 lines
2.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-09-12 13:15:43 +00:00
2012-08-16 18:02:03 +02:00
module Mutant
2012-08-16 19:26:15 +02:00
# Class to create diffs from source code
2014-05-11 15:04:11 +00:00
class Diff
2013-07-02 19:06:03 +02:00
include Adamantium::Flat, Concord.new(:old, :new)
2013-06-28 23:33:53 +02:00
2014-06-29 22:56:08 +00:00
ADDITION = '+'.freeze
DELETION = '-'.freeze
NEWLINE = "\n".freeze
# Unified source diff between old and new
2012-08-16 19:26:15 +02:00
#
# @return [String]
# if there is exactly one diff
#
# @return [nil]
# otherwise
2012-08-16 18:02:03 +02:00
def diff
2014-08-11 18:26:19 +00:00
return if diffs.empty?
minimized_hunk.diff(:unified) + NEWLINE
2012-08-16 18:02:03 +02:00
end
memoize :diff
# Colorized unified source diff between old and new
2012-08-16 19:26:15 +02:00
#
# @return [String]
# if there is a diff
#
# @return [nil]
# otherwise
2012-08-16 18:02:03 +02:00
def colorized_diff
return unless diff
diff.lines.map(&self.class.method(:colorize_line)).join
2012-08-16 18:02:03 +02:00
end
memoize :colorized_diff
# Build new object from source strings
2012-08-16 19:26:15 +02:00
#
2013-04-17 20:31:21 -07:00
# @param [String] old
2012-08-16 19:26:15 +02:00
# @param [String] new
#
2014-05-11 15:04:11 +00:00
# @return [Diff]
def self.build(old, new)
new(lines(old), lines(new))
2012-08-16 19:26:15 +02:00
end
2013-07-02 20:12:54 +02:00
# Break up source into lines
#
# @param [String] source
#
# @return [Array<String>]
def self.lines(source)
source.lines.map(&:chomp)
2013-07-02 20:12:54 +02:00
end
private_class_method :lines
2013-07-02 19:06:03 +02:00
private
# Diffs between old and new
#
2013-07-02 19:06:03 +02:00
# @return [Array<Array>]
def diffs
2014-05-11 15:04:11 +00:00
::Diff::LCS.diff(old, new)
2013-07-02 19:06:03 +02:00
end
# Raw diff-lcs hunks
#
# @return [Array<Diff::LCS::Hunk>]
def hunks
diffs.map do |diff|
::Diff::LCS::Hunk.new(old.map(&:dup), new, diff, max_length, 0)
end
end
2016-01-09 23:34:40 +00:00
# Minimized hunk
#
2016-01-09 23:34:40 +00:00
# @return Diff::LCS::Hunk
def minimized_hunk
2014-08-13 07:57:09 +00:00
head, *tail = hunks
2016-01-09 23:34:40 +00:00
tail.reduce(head) do |left, right|
right.merge(left)
right
end
end
2013-07-02 19:06:03 +02:00
# Max length of source line in new and old
2013-07-02 19:06:03 +02:00
#
# @return [Integer]
2013-07-02 19:06:03 +02:00
def max_length
2013-07-02 23:34:35 +02:00
[old, new].map(&:length).max
end
# Colorized a unified diff line
2012-08-16 19:26:15 +02:00
#
# @param [String] line
#
# @return [String]
2012-08-16 18:02:03 +02:00
def self.colorize_line(line)
case line[0]
2014-06-29 22:56:08 +00:00
when ADDITION
2012-08-16 18:02:03 +02:00
Color::GREEN
2014-06-29 22:56:08 +00:00
when DELETION
2012-08-16 18:02:03 +02:00
Color::RED
else
Color::NONE
end.format(line)
end
private_class_method :colorize_line
2013-06-14 20:54:02 +02:00
2014-05-11 15:04:11 +00:00
end # Diff
2013-06-14 20:54:02 +02:00
end # Mutant