free_mutant/lib/mutant/differ.rb

110 lines
1.9 KiB
Ruby
Raw Normal View History

2012-08-16 12:02:03 -04:00
module Mutant
2012-08-16 13:26:15 -04:00
# Class to create diffs from source code
2012-08-16 12:02:03 -04:00
class Differ
2013-07-02 13:06:03 -04:00
include Adamantium::Flat, Concord.new(:old, :new)
2013-06-28 17:33:53 -04:00
2013-04-17 23:31:21 -04:00
# Return source diff
2012-08-16 13:26:15 -04:00
#
# @return [String]
#
# @api private
#
2012-08-16 12:02:03 -04:00
def diff
output = ''
2013-07-02 13:06:03 -04:00
case diffs.length
when 0
nil
when 1
output = Diff::LCS::Hunk.new(old, new, diffs.first, max_length, 0).diff(:unified)
2012-08-16 12:02:03 -04:00
output << "\n"
2013-07-02 13:06:03 -04:00
else
raise 'Mutation resulted in more than one diff, should not happen!'
2012-08-16 12:02:03 -04:00
end
end
memoize :diff
2013-04-17 23:31:21 -04:00
# Return colorized source diff
2012-08-16 13:26:15 -04:00
#
# @return [String]
#
# @api private
#
2012-08-16 12:02:03 -04:00
def colorized_diff
diff.lines.map do |line|
self.class.colorize_line(line)
end.join
end
memoize :colorized_diff
2013-07-02 13:06:03 -04:00
# Return new object
2012-08-16 13:26:15 -04:00
#
2013-04-17 23:31:21 -04:00
# @param [String] old
2012-08-16 13:26:15 -04:00
# @param [String] new
#
2013-07-02 13:06:03 -04:00
# @return [Differ]
2012-08-16 13:26:15 -04:00
#
# @api private
#
def self.build(old, new)
new(lines(old), lines(new))
2012-08-16 13:26:15 -04:00
end
2013-07-02 14:12:54 -04:00
# Break up source into lines
#
# @param [String] source
#
# @return [Array<String>]
#
# @api private
#
def self.lines(source)
source.lines.map { |line| line.chomp }
end
private_class_method :lines
2013-07-02 13:06:03 -04:00
private
# Return diffs
#
2013-07-02 13:06:03 -04:00
# @return [Array<Array>]
#
2013-07-02 13:06:03 -04:00
# @api private
#
def diffs
Diff::LCS.diff(old, new)
end
memoize :diffs
# Return max length
#
# @return [Fixnum]
#
# @api private
#
2013-07-02 13:06:03 -04:00
def max_length
old.length > new.length ? old.length : new.length
end
2012-08-16 13:26:15 -04:00
# Return colorized diff line
#
# @param [String] line
#
# @return [String]
# returns colorized line
#
# @api private
#
2012-08-16 12:02:03 -04:00
def self.colorize_line(line)
case line[0]
2012-08-16 12:02:03 -04:00
when '+'
Color::GREEN
when '-'
Color::RED
else
Color::NONE
end.format(line)
end
2013-06-14 14:54:02 -04:00
end # Differ
end # Mutant