mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-17 23:44:35 +00:00
0b199ebe03
* diff2.h (point::point): New copy constructor. (point::{operator+=, operator=}): Use point::set. (point::{operator--, operator++,}): New operators. (d_path_vec::{a_size_, b_size_}): New members. (d_path_vec::max_d_): Remove this member. (d_path_vec::max_d): Compute this, now that max_d_ was removed. (point_is_valid_in_graph): Declare this new function. (end_of_fr_d_path_in_k, ): Return a bool when the end of furthest reaching past found is within the bounds of the edit graph. Add comments. (end_of_frr_d_path_in_k_plus_delta): Likewise. Also, delta can be negative; support that. Do not cross the boundaries of the edit graph when following a diagonal edge. (find_last_snake_in_path): New function. (compute_middle_snake): Make forward/reverse d_path_vec be big enough to hold paths for M+N differences. Normally M+N/2 should be enough, but we were getting weird out of bound errors. Let's handle it this way for now. Do not require that we check for overlap only when we are on a diagonal edge. Once we detected an overlap, use the new find_last_snake_in_path to find the boundaries of the snake. (ses_len): Delta can be negative. (display_edit): Small minor English nit. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
1433 lines
41 KiB
C++
1433 lines
41 KiB
C++
// -*- Mode: C++ -*-
|
||
//
|
||
// Copyright (C) 2013 Red Hat, Inc.
|
||
//
|
||
// This file is part of the GNU Application Binary Interface Generic
|
||
// Analysis and Instrumentation Library (libabigail). This library is
|
||
// free software; you can redistribute it and/or modify it under the
|
||
// terms of the GNU Lesser General Public License as published by the
|
||
// Free Software Foundation; either version 3, or (at your option) any
|
||
// later version.
|
||
|
||
// This library is distributed in the hope that it will be useful, but
|
||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
// General Lesser Public License for more details.
|
||
|
||
// You should have received a copy of the GNU Lesser General Public
|
||
// License along with this program; see the file COPYING-LGPLV3. If
|
||
// not, see <http://www.gnu.org/licenses/>.
|
||
|
||
/// @file
|
||
///
|
||
/// This file declares types and operations implementing the "O(ND)
|
||
/// Difference Algorithm" (aka diff2) from Eugene W. Myers, to compute
|
||
/// the difference between two sequences.
|
||
///
|
||
/// To understand what is going on here, one must read the paper at
|
||
/// http://www.xmailserver.org/diff2.pdf. Throughout this file, that
|
||
/// paper is referred to as "the paper".
|
||
///
|
||
/// The implementations goes as far as calculating the shortest edit
|
||
/// script (the set of insertions and deletions) for transforming a
|
||
/// sequence into another. The main entry point for that is the
|
||
/// compute_diff() function.
|
||
|
||
#include <stdexcept>
|
||
#include <cassert>
|
||
#include <cstdlib>
|
||
#include <ostream>
|
||
#include <string>
|
||
#include <vector>
|
||
#include <sstream>
|
||
|
||
namespace abigail
|
||
{
|
||
|
||
namespace diff_utils
|
||
{
|
||
|
||
// Inject the names from std:: below into this namespace
|
||
using std::string;
|
||
using std::ostream;
|
||
using std::vector;
|
||
using std::abs;
|
||
using std::ostringstream;
|
||
|
||
/// A class representing a vertex in an edit graph, as explained in
|
||
/// the paper. A vertex is a basically a pair of coordinates
|
||
/// (abscissa and ordinate).
|
||
class point
|
||
{
|
||
int x_;
|
||
int y_;
|
||
bool empty_;
|
||
|
||
public:
|
||
|
||
point()
|
||
: x_(-1), y_(-1),empty_(true)
|
||
{}
|
||
|
||
point(int x, int y)
|
||
: x_(x), y_(y), empty_(false)
|
||
{}
|
||
|
||
point(const point& p)
|
||
: x_(p.x()), y_(p.y()), empty_(p.is_empty())
|
||
{}
|
||
|
||
int
|
||
x() const
|
||
{return x_;}
|
||
|
||
void
|
||
x(int x)
|
||
{
|
||
x_ = x;
|
||
empty_ = false;
|
||
}
|
||
|
||
int
|
||
y() const
|
||
{return y_;}
|
||
|
||
void
|
||
y(int y)
|
||
{
|
||
y_ = y;
|
||
empty_ = false;
|
||
}
|
||
|
||
void
|
||
set(int x, int y)
|
||
{
|
||
x_ = x;
|
||
y_ = y;
|
||
empty_ = false;
|
||
}
|
||
|
||
point
|
||
operator+(int val) const
|
||
{return point(x() + val, y() + val);}
|
||
|
||
point
|
||
operator-(int val) const
|
||
{return point(x() - val, y() - val);}
|
||
|
||
point&
|
||
operator+= (int val)
|
||
{
|
||
set(x_ + val, y_ + val);
|
||
return *this;
|
||
}
|
||
|
||
point&
|
||
operator-= (int val)
|
||
{return (*this) += (-val);}
|
||
|
||
point&
|
||
operator--()
|
||
{return (*this) -= 1;}
|
||
|
||
point&
|
||
operator++()
|
||
{return (*this) += 1;}
|
||
|
||
point
|
||
operator--(int)
|
||
{
|
||
point tmp(*this);
|
||
(*this)--;
|
||
return tmp;
|
||
}
|
||
|
||
point
|
||
operator++(int)
|
||
{
|
||
point tmp(*this);
|
||
(*this)++;
|
||
return tmp;
|
||
}
|
||
|
||
point&
|
||
operator=(int val)
|
||
{
|
||
set(val, val);
|
||
return *this;
|
||
}
|
||
|
||
point&
|
||
operator=(const point& p)
|
||
{
|
||
set(p.x(), p.y());
|
||
return *this;
|
||
}
|
||
|
||
bool
|
||
is_empty() const
|
||
{return empty_;}
|
||
|
||
operator bool () const
|
||
{return !is_empty();}
|
||
|
||
bool
|
||
operator!() const
|
||
{return is_empty();}
|
||
|
||
void
|
||
clear()
|
||
{
|
||
x_ = -1;
|
||
y_ = -1;
|
||
empty_ = true;
|
||
}
|
||
};// end point
|
||
|
||
/// The array containing the furthest D-path end-points, for each value
|
||
/// of K. MAX_D is the maximum value of the D-Path. That is, M+N if
|
||
/// M is the size of the first input string, and N is the size of the
|
||
/// second.
|
||
class d_path_vec : public std::vector<int>
|
||
{
|
||
private:
|
||
|
||
unsigned a_size_;
|
||
unsigned b_size_;
|
||
|
||
/// Forbid vector size modifications
|
||
void
|
||
push_back(const typename vector<int>::value_type&);
|
||
|
||
/// Forbid default constructor.
|
||
d_path_vec();
|
||
|
||
void
|
||
check_index_against_bound(int index, int bound) const
|
||
{
|
||
if (std::abs(index) > bound)
|
||
{
|
||
ostringstream o;
|
||
o << "index '" << index
|
||
<< "' out of range [-" << bound << ", " << bound << "]";
|
||
throw std::out_of_range(o.str());
|
||
}
|
||
}
|
||
|
||
public:
|
||
|
||
/// Constructor of the d_path_vec.
|
||
///
|
||
/// The underlying vector allocates 2 * MAX_D - 1 space, so that one
|
||
/// can address elements in the index range [-MAX_D, MAX_D].
|
||
/// And MAX_D is the sum of the (1 + size_of_the_sequence).
|
||
///
|
||
/// @params size1 the size of the first sequence we are interested
|
||
/// in.
|
||
///
|
||
/// @param size2 the size of the second sequence we are interested
|
||
/// in.
|
||
d_path_vec(unsigned size1, unsigned size2)
|
||
: vector<int>(2 * (size1 + 1 + size2 + 1) - 1, 0),
|
||
a_size_(size1), b_size_(size2)
|
||
{
|
||
}
|
||
|
||
typename std::vector<int>::const_reference
|
||
operator[](int index) const
|
||
{
|
||
int i = max_d() + index;
|
||
return (*static_cast<const vector<int>* >(this))[i];
|
||
}
|
||
|
||
typename std::vector<int>::reference
|
||
operator[](int index)
|
||
{
|
||
int i = max_d() + index;
|
||
return (*static_cast<vector<int>* >(this))[i];
|
||
}
|
||
|
||
typename std::vector<int>::reference
|
||
at(int index)
|
||
{
|
||
check_index_against_bound(index, max_d());
|
||
int i = max_d() + index;
|
||
return static_cast<vector<int>* >(this)->at(i);
|
||
}
|
||
|
||
typename std::vector<int>::const_reference
|
||
at(int index) const
|
||
{
|
||
check_index_against_bound(index, max_d());
|
||
int i = max_d() + index;
|
||
return static_cast<const vector<int>* >(this)->at(i);
|
||
}
|
||
|
||
unsigned
|
||
a_size() const
|
||
{return a_size_;}
|
||
|
||
unsigned
|
||
b_size() const
|
||
{return b_size_;}
|
||
|
||
unsigned
|
||
max_d() const
|
||
{return a_size() + b_size();}
|
||
}; // end class d_path_vec
|
||
|
||
/// The abstration of an insertion of elements of a sequence B into a
|
||
/// sequence A. This is used to represent the edit script for
|
||
/// transforming a sequence A into a sequence B.
|
||
///
|
||
/// And insertion mainly encapsulates two components:
|
||
///
|
||
/// - An insertion point: this is the index (starting at 0) of the
|
||
/// element of the sequence A after which the insertion occurs.
|
||
///
|
||
/// - Inserted elements: this is a vector of indexes of elements of
|
||
/// sequence B (starting at 0) that got inserted into sequence A,
|
||
/// after the insertion point.
|
||
class insertion
|
||
{
|
||
int insertion_point_;
|
||
vector<int> inserted_;
|
||
|
||
public:
|
||
|
||
insertion(int insertion_point,
|
||
const vector<int>& inserted_indexes)
|
||
: insertion_point_(insertion_point),
|
||
inserted_(inserted_indexes)
|
||
{}
|
||
|
||
insertion(int insertion_point = 0)
|
||
: insertion_point_(insertion_point)
|
||
{}
|
||
|
||
int
|
||
insertion_point_index() const
|
||
{return insertion_point_;}
|
||
|
||
void
|
||
insertion_point_index(int i)
|
||
{insertion_point_ = i;}
|
||
|
||
const vector<int>&
|
||
inserted_indexes() const
|
||
{return inserted_;}
|
||
|
||
vector<int>&
|
||
inserted_indexes()
|
||
{return inserted_;}
|
||
};// end class insertion
|
||
|
||
/// The abstraction of the deletion of one element of a sequence A.
|
||
///
|
||
/// This encapsulates the index of the element A that got deleted.
|
||
class deletion
|
||
{
|
||
int index_;
|
||
|
||
public:
|
||
|
||
deletion(int i)
|
||
: index_(i)
|
||
{}
|
||
|
||
int
|
||
index() const
|
||
{return index_;}
|
||
|
||
void
|
||
index(int i)
|
||
{index_ = i;}
|
||
};// end class deletion
|
||
|
||
/// The abstraction of an edit script for transforming a sequence A
|
||
/// into a sequence B.
|
||
///
|
||
/// It encapsulates the insertions and deletions for transforming A
|
||
/// into B.
|
||
class edit_script
|
||
{
|
||
vector<insertion> insertions_;
|
||
vector<deletion> deletions_;
|
||
|
||
public:
|
||
|
||
edit_script()
|
||
{}
|
||
|
||
const vector<insertion>&
|
||
insertions() const
|
||
{return insertions_;}
|
||
|
||
vector<insertion>&
|
||
insertions()
|
||
{return insertions_;}
|
||
|
||
const vector<deletion>&
|
||
deletions() const
|
||
{return deletions_;}
|
||
|
||
vector<deletion>&
|
||
deletions()
|
||
{return deletions_;}
|
||
|
||
void
|
||
append(const edit_script& es)
|
||
{
|
||
insertions().insert(insertions().end(),
|
||
es.insertions().begin(),
|
||
es.insertions().end());
|
||
deletions().insert(deletions().end(),
|
||
es.deletions().begin(),
|
||
es.deletions().end());
|
||
}
|
||
|
||
void
|
||
prepend(const edit_script& es)
|
||
{
|
||
insertions().insert(insertions().begin(),
|
||
es.insertions().begin(),
|
||
es.insertions().end());
|
||
deletions().insert(deletions().begin(),
|
||
es.deletions().begin(),
|
||
es.deletions().end());
|
||
}
|
||
|
||
void
|
||
clear()
|
||
{
|
||
insertions().clear();
|
||
deletions().clear();
|
||
}
|
||
|
||
bool
|
||
is_empty() const
|
||
{return insertions().empty() && deletions().empty();}
|
||
|
||
operator bool() const
|
||
{return !is_empty();}
|
||
|
||
int
|
||
num_insertions() const
|
||
{
|
||
int l = 0;
|
||
for (vector<insertion>::const_iterator i = insertions().begin();
|
||
i != insertions().end();
|
||
++i)
|
||
l += i->inserted_indexes().size();
|
||
return l;
|
||
}
|
||
|
||
int
|
||
num_deletions() const
|
||
{return deletions().size();}
|
||
|
||
int
|
||
length() const
|
||
{return num_insertions() + num_deletions();}
|
||
};//end class edit_script
|
||
|
||
bool
|
||
point_is_valid_in_graph(point& p,
|
||
unsigned a_size,
|
||
unsigned b_size);
|
||
|
||
bool
|
||
ends_of_furthest_d_paths_overlap(point& forward_d_path_end,
|
||
point& reverse_d_path_end);
|
||
|
||
/// Find the end of the furthest reaching d-path on diagonal k, for
|
||
/// two sequences. In the paper This is referred to as "the basic
|
||
/// algorithm".
|
||
///
|
||
/// Unlike in the paper, the coordinates of the edit graph start at
|
||
/// (-1,-1), rather than (0,0), and they end at (M-1, N-1), rather
|
||
/// than (M,N).
|
||
///
|
||
/// @param k the number of the diagonal on which we want to find the
|
||
/// end of the furthest reaching D-path.
|
||
///
|
||
/// @param d the D in D-Path. That's the number of insertions/deletions
|
||
/// (the number of changes, in other words) in the changeset. That is
|
||
/// also the number of non-diagonals in the D-Path.
|
||
///
|
||
/// @param a_begin an iterator to the beginning of the first sequence
|
||
///
|
||
/// @param a_end an iterator that points right after the last element
|
||
/// of the second sequence to consider.
|
||
///
|
||
/// @param b_begin an iterator to the beginning of the second sequence.
|
||
///
|
||
/// @param b_end an iterator that points right after the last element
|
||
/// of the second sequence to consider.
|
||
///
|
||
/// @param v the vector of furthest end points of d_paths, at (d-1).
|
||
/// It contains the abscissas of the furthest end points for different
|
||
/// values of k, at (d-1). That is, for k in [-D + 1, -D + 3, -D + 5,
|
||
/// ..., D - 1], v[k] is the abscissa of the end of the furthest
|
||
/// reaching (D-1)-path on diagonal k.
|
||
///
|
||
/// @param end abscissa and ordinate of the computed abscissa of the
|
||
/// end of the furthest reaching (d-1) paths.
|
||
///
|
||
/// @return true if the end of the furthest reaching path that was
|
||
/// found was inside the boundaries of the edit graph, false
|
||
/// otherwise.
|
||
template<typename RandomAccessOutputIterator>
|
||
bool
|
||
end_of_fr_d_path_in_k(int k, int d,
|
||
RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_start,
|
||
RandomAccessOutputIterator b_end,
|
||
d_path_vec& v, point& end)
|
||
{
|
||
int x = -1, y = -1;
|
||
|
||
// Let's pick the end point of the furthest reaching
|
||
// (D-1)-path. It's either v[k-1] or v[k+1]; the word
|
||
// "furthest" means we choose the one which abscissa is the
|
||
// greatest (that is, furthest from abscissa zero).
|
||
if (k == -d || ((k != d) && (v[k-1] < v[k + 1])))
|
||
// So, the abscissa of the end point of the furthest
|
||
// reaching (D-1)-path is v[k+1]. That is a diagonal that
|
||
// is above the current (k) diagonal, and on the right.
|
||
// To move to the current k diagonal, one has to move
|
||
// "down" from the diagonal k+1. So the abscissa won't
|
||
// change. Only the ordinate will. It will be given by y
|
||
// = x - k (a bit below); as k has changed from k - 1 (it
|
||
// has increased), y is going to be the new y that is
|
||
// 'down' from the previous y in k - 1.
|
||
x = v[k+1];
|
||
else
|
||
// So the abscissa of the end point of the furthest
|
||
// (D-1)-path is v[k-1]. That is on the left of the
|
||
// current k diagonal. To move to the current k diagonal,
|
||
// one has to move "right" from diagonal k - 1. That is,
|
||
// the y stays constant and x is incremented.
|
||
x = v[k-1] + 1;
|
||
|
||
// Now get the value of y from the equation k = x -y.
|
||
// This is the point where we first touch K, when we move
|
||
// from the end of the furthest reaching (D-1)-path.
|
||
y = x - k;
|
||
|
||
int last_x_index = a_end - a_begin - 1;
|
||
int last_y_index = b_end - b_start - 1;
|
||
// Now, follow the snake (aka, zero or more consecutive
|
||
// diagonals). Note that we stay on the k diagonal when we
|
||
// do this.
|
||
while ((x < last_x_index) && (y < last_y_index))
|
||
if (a_begin[x + 1] == b_start[y + 1])
|
||
{
|
||
x = x + 1;
|
||
y = y + 1;
|
||
}
|
||
else
|
||
break;
|
||
|
||
// Note the point that we store in v here might be outside the
|
||
// bounds of the edit graph. But we store it at this step (for a
|
||
// given D) anyway, because out of bound or not, we need this value
|
||
// at this step to be able to compute the value of the point on the
|
||
// "next" diagonal for the next D.
|
||
v[k] = x;
|
||
|
||
if (x >= (int) v.a_size()
|
||
|| y >= (int) v.b_size()
|
||
|| x < 0 || y < 0)
|
||
return false;
|
||
|
||
end.x(x);
|
||
end.y(y);
|
||
|
||
return true;
|
||
}
|
||
|
||
/// Find the end of the furthest reaching reverse d-path on diagonal k
|
||
/// + delta. Delta is abs(M - N), with M being the size of a and N
|
||
/// being the size of b. This is the "basic algorithm", run backward.
|
||
/// That is, starting from the point (M,N) of the edit graph.
|
||
///
|
||
/// Unlike in the paper, the coordinates of the edit graph start at
|
||
/// (-1,-1), rather than (0,0), and they end at (M-1, N-1), rather
|
||
/// than (M,N).
|
||
///
|
||
/// @param k the number of the diagonal on which we want to find the
|
||
/// end of the furthest reaching reverse D-path. Actually, we want to
|
||
/// find the end of the furthest reaching reverse D-path on diagonal (k
|
||
/// - delta).
|
||
///
|
||
/// @param d the D in D-path. That's the number of insertions/deletions
|
||
/// (the number of changes, in other words) in the changeset. That is
|
||
/// also the number of non-diagonals in the D-Path.
|
||
///
|
||
/// @param a_begin an iterator to the beginning of the first sequence
|
||
///
|
||
/// @param a_end an iterator that points right after the last element
|
||
/// of the second sequence to consider.
|
||
///
|
||
/// @param b_begin an iterator to the beginning of the second sequence.
|
||
///
|
||
/// @param b_end an iterator that points right after the last element
|
||
/// of the second sequence to consider.
|
||
///
|
||
/// @param v the vector of furthest end points of d_paths, at (d-1).
|
||
/// It contains the abscissae of the furthest end points for different
|
||
/// values of k - delta, at (d-1). That is, for k in [-D + 1, -D + 3,
|
||
/// -D + 5, ..., D - 1], v[k - delta] is the abscissa of the end of the
|
||
/// furthest reaching (D-1)-path on diagonal k - delta.
|
||
///
|
||
/// @param point the computed abscissa and ordinate of the end point
|
||
/// of the furthest reaching d-path on line k - delta.
|
||
///
|
||
/// @return true iff the end of the furthest reaching path that was
|
||
/// found was inside the boundaries of the edit graph, false
|
||
/// otherwise.
|
||
template<typename RandomAccessOutputIterator>
|
||
bool
|
||
end_of_frr_d_path_in_k_plus_delta (int k, int d,
|
||
RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_begin,
|
||
RandomAccessOutputIterator b_end,
|
||
d_path_vec& v, point& end)
|
||
{
|
||
int a_size = a_end - a_begin;
|
||
int b_size = b_end - b_begin;
|
||
int delta = a_size - b_size;
|
||
int k_plus_delta = k + delta;
|
||
int x = -1, y = -1;
|
||
|
||
// Let's pick the end point of the furthest reaching (D-1)-path and
|
||
// move from there to reach the current k_plus_delta-line. That end
|
||
// point of the furthest reaching (D-1)-path is either on
|
||
// v[k_plus_delta-1] or on v[k_plus_delta+1]; the word "furthest"
|
||
// means we choose the one which abscissa is the lowest (that is,
|
||
// furthest from abscissa M).
|
||
if (k_plus_delta == -d + delta
|
||
|| ((k_plus_delta != d + delta)
|
||
&& (v[k_plus_delta + 1] < v[k_plus_delta - 1])))
|
||
{
|
||
// We move left, that means ordinate won't change ...
|
||
x = v[k_plus_delta + 1];
|
||
y = x - (k_plus_delta + 1);
|
||
// ... and abscissa decreases.
|
||
x = x - 1;
|
||
}
|
||
else
|
||
{
|
||
// So the furthest end point is on the k_plus_delta - 1
|
||
// diagonal. That is a diagonal that is 'below' the
|
||
// k_plus_delta current diagonal. So to join the current
|
||
// diagonal from the k_plus_delta - 1 one, we need to move up.
|
||
|
||
// So moving up means abscissa won't change ...
|
||
x = v[k_plus_delta - 1];
|
||
// ... and that ordinate decreases.
|
||
y = x - (k_plus_delta - 1) - 1;
|
||
}
|
||
|
||
// Now, follow the snake. Note that we stay on the k_plus_delta
|
||
// diagonal when we do this.
|
||
while (x > 0 && y > 0)
|
||
if (a_begin[x] == b_begin[y])
|
||
{
|
||
x = x - 1;
|
||
y = y - 1;
|
||
}
|
||
else
|
||
break;
|
||
|
||
// Note the point that we store in v here might be outside the
|
||
// bounds of the edit graph. But we store it at this step (for a
|
||
// given D) anyway, because out of bound or not, we need this value
|
||
// at this step to be able to compute the value of the point on the
|
||
// "next" diagonal for the next D.
|
||
v[k_plus_delta] = x;
|
||
|
||
if (x == -1 && y == -1)
|
||
;
|
||
else if (x <= -1 || y <= -1)
|
||
return false;
|
||
|
||
end.x(x);
|
||
end.y(y);
|
||
|
||
return true;
|
||
}
|
||
|
||
/// Find the last (starting from the beginning of the d_path_vec)
|
||
/// snake recorded in a d_path_vec that contains ends of furthest
|
||
/// reaching path of successive values of 'k'.
|
||
///
|
||
/// This is a subroutine of compute_middle_snake().
|
||
///
|
||
/// @param a_begin an iterator to the beginning of the first input of
|
||
/// the diffing algorithm.
|
||
///
|
||
/// @param a_end an iterator to the end of the first input of the
|
||
/// diffing algorithm.
|
||
///
|
||
/// @param b_begin an iterator to the beginning of the second input of
|
||
/// the diffing algorithm.
|
||
///
|
||
/// @param b_end an iterator to the end of the second input of the
|
||
/// diffing algorithm.
|
||
///
|
||
/// @param path the d_path_vec to consider.
|
||
///
|
||
/// @param from_k the value of 'k' to start looking from.
|
||
///
|
||
/// @param forward setting this to true tells this routine that the
|
||
/// d_path_vec is constructed in a forward manner, as defined in the
|
||
/// paper in 4b.
|
||
///
|
||
/// @param middle_begin the out parameter that is set to the starting
|
||
/// point of the snake found. This is set if and only if the snake
|
||
/// was found.
|
||
///
|
||
/// @param middle_end the out parameter that is set to the end point
|
||
/// of the snake found. This is set if and only if the snake was
|
||
/// found.
|
||
///
|
||
/// @return true if a snake was found in the d_path_vec.
|
||
template<typename RandomAccessOutputIterator>
|
||
bool
|
||
find_last_snake_in_path(RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_begin,
|
||
RandomAccessOutputIterator b_end,
|
||
const d_path_vec& path,
|
||
int from_k,
|
||
bool forward,
|
||
point& middle_begin,
|
||
point& middle_end)
|
||
{
|
||
int a_size = a_end - a_begin;
|
||
int b_size = b_end - b_begin;
|
||
int incr = (from_k >= 0) ? -1 : 1;
|
||
int num_iters = abs(from_k) + 1;
|
||
|
||
for (int i = from_k, n = num_iters; n > 0; i += incr, --n)
|
||
{
|
||
int x = path[i];
|
||
int y = x - i;
|
||
|
||
assert(x > -1 && x < a_size);
|
||
assert(y > -1 && y < b_size);
|
||
|
||
if (forward)
|
||
{
|
||
if (a_begin[x] == b_begin[y])
|
||
{
|
||
middle_end.set(x,y);
|
||
for (point tmp = middle_end;
|
||
(point_is_valid_in_graph(tmp, a_size, b_size)
|
||
&& a_begin[tmp.x()] == b_begin[tmp.y()]);
|
||
--tmp)
|
||
middle_begin = tmp;
|
||
return true;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
point p(x+1, y+1);
|
||
if (!point_is_valid_in_graph(p, a_size, b_size))
|
||
return false;
|
||
|
||
if (a_begin[p.x()] == b_begin[p.y()])
|
||
{
|
||
middle_begin = p;
|
||
for (point tmp = middle_begin;
|
||
(point_is_valid_in_graph(tmp, a_size, b_size)
|
||
&& a_begin[tmp.x()] == b_begin[tmp.y()]);
|
||
++tmp)
|
||
middle_end = tmp;
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
/// Returns the middle snake of two sequences A and B, as well as the
|
||
/// length of their shortest editing script.
|
||
///
|
||
/// This uses the "linear space refinement" algorithm presented in
|
||
/// section 4b in the paper. As the paper says, "The idea for doing
|
||
/// so is to simultaneously run the basic algorithm in both the
|
||
/// forward and reverse directions until furthest reaching forward and
|
||
/// reverse paths starting at opposing corners ‘‘overlap’’."
|
||
///
|
||
/// @param a_begin an iterator pointing to the begining of sequence A.
|
||
///
|
||
/// @param a_end an iterator pointing to the end of sequence A. Note
|
||
/// that this points right /after/ the end of vector A.
|
||
///
|
||
/// @param b_begin an iterator pointing to the begining of sequence B.
|
||
///
|
||
/// @param b_end an iterator pointing to the end of sequence B. Note
|
||
/// that this points right /after/ the end of vector B
|
||
///
|
||
/// @param snake_start this is set by the function iff it returns
|
||
/// true. It's the coordinates (starting from 1) of the beginning of
|
||
/// the snake using @a a_begin as the base for the abscissa and
|
||
/// b_begin as the base for the ordinate.
|
||
///
|
||
/// @param snake_end this is set by the function iff it returns true.
|
||
/// It's the coordinates (starting from 1) of the end of the snake
|
||
/// using @a a_begin as the base for the abscissa and @a b_begin as
|
||
/// the base for the ordinate. It points to the last point of the
|
||
/// snake.
|
||
///
|
||
/// @return true is the snake was found, false otherwise.
|
||
template<typename RandomAccessOutputIterator>
|
||
bool
|
||
compute_middle_snake(RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_begin,
|
||
RandomAccessOutputIterator b_end,
|
||
point& snake_begin,
|
||
point& snake_end,
|
||
int& ses_len)
|
||
{
|
||
int a_size = a_end - a_begin;
|
||
int N = a_size;
|
||
int b_size = b_end - b_begin;
|
||
int M = b_size;
|
||
int delta = N - M;
|
||
d_path_vec forward_d_paths(a_size, b_size);
|
||
d_path_vec reverse_d_paths(a_size, b_size);
|
||
|
||
// We want the initial step (D = 0, k = 0 in the paper) to find a
|
||
// furthest reaching point on diagonal k == 0; For that, we need the
|
||
// value of x for k == 1; So let's set that value to -1; that is for
|
||
// k == 1 (diagonal 1), the point in the edit graph is (-1,-2).
|
||
// That way, to get the furthest reaching point on diagonal 0 (k ==
|
||
// 0), we go down from (-1,-2) on diagonal 1 and we hit diagonal 0
|
||
// on (-1,-1); that is the starting value that the algorithm expects
|
||
// for k == 0.
|
||
forward_d_paths[1] = -1;
|
||
|
||
// Similarly for the reverse paths, for diagonal delta + 1 (note
|
||
// that diagonals are centered on delta, unlike for forward paths
|
||
// where they are centered on zero), we set the initial point to
|
||
// (a_size, b_size - 1). That way, at step D == 0 and k == delta,
|
||
// to reach diagonal delta from the point (a_size, b_size - 1) on
|
||
// diagonal delta + 1, we just have to move left, and we hit
|
||
// diagonal delta on (a_size - 1, b_size -1); that is the starting
|
||
// point value the algorithm expects for k == 0 in the reverse case.
|
||
reverse_d_paths[delta + 1] = a_size;
|
||
|
||
for (int d = 0; d <= (M + N) / 2; ++d)
|
||
{
|
||
for (int k = -d; k <= d; k += 2)
|
||
{
|
||
point forward_end, reverse_end;
|
||
bool found = end_of_fr_d_path_in_k(k, d,
|
||
a_begin, a_end,
|
||
b_begin, b_end,
|
||
forward_d_paths,
|
||
forward_end);
|
||
if (!found)
|
||
continue;
|
||
|
||
// As the paper says criptically in 4b while explaining the
|
||
// middle snake algorithm:
|
||
//
|
||
// "Thus when delta is odd, check for overlap only while
|
||
// extending forward paths ..."
|
||
if ((delta % 2)
|
||
&& (k >= (delta - (d - 1))) && (k <= (delta + (d - 1))))
|
||
{
|
||
reverse_end.x(reverse_d_paths[k]);
|
||
reverse_end.y(reverse_end.x() - k);
|
||
if (point_is_valid_in_graph(reverse_end, a_size, b_size)
|
||
&& ends_of_furthest_d_paths_overlap(forward_end, reverse_end))
|
||
{
|
||
ses_len = 2 * d - 1;
|
||
bool found =
|
||
find_last_snake_in_path(a_begin, a_end, b_begin, b_end,
|
||
forward_d_paths, k,
|
||
/*forward=*/true,
|
||
snake_begin, snake_end);
|
||
if (!found)
|
||
// ???
|
||
// It can happen that the snake is *not* on
|
||
// the portion of the path (in forward_d_paths)
|
||
// that we have already accumulated in
|
||
// forward_d_paths; rather, it's in the second
|
||
// half of forward_d_paths that we haven't
|
||
// computed yet. Let's get the snake from the
|
||
// reverse path then.
|
||
found =
|
||
find_last_snake_in_path(a_begin, a_end, b_begin, b_end,
|
||
reverse_d_paths, k,
|
||
/*forward=*/false,
|
||
snake_begin, snake_end);
|
||
if (found)
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
|
||
for (int k = -d; k <= d; k += 2)
|
||
{
|
||
point forward_end, reverse_end;
|
||
bool found = end_of_frr_d_path_in_k_plus_delta(k, d,
|
||
a_begin, a_end,
|
||
b_begin, b_end,
|
||
reverse_d_paths,
|
||
reverse_end);
|
||
|
||
if (!found)
|
||
continue;
|
||
|
||
// And the paper continues by saying:
|
||
//
|
||
// "... and when delta is even, check for overlap only while
|
||
// extending reverse paths."
|
||
int k_plus_delta = k + delta;
|
||
if (!(delta % 2)
|
||
&& (k_plus_delta >= -d) && (k_plus_delta <= d))
|
||
{
|
||
forward_end.x(forward_d_paths[k_plus_delta]);
|
||
forward_end.y(forward_end.x() - k_plus_delta);
|
||
if (point_is_valid_in_graph(forward_end, a_size, b_size)
|
||
&& ends_of_furthest_d_paths_overlap(forward_end, reverse_end))
|
||
{
|
||
ses_len = 2 * d;
|
||
bool found =
|
||
find_last_snake_in_path(a_begin, a_end, b_begin, b_end,
|
||
reverse_d_paths, k_plus_delta,
|
||
/*forward=*/false,
|
||
snake_begin, snake_end);
|
||
if (!found)
|
||
// ???
|
||
// It can happen that the snake is *not* on
|
||
// the portion of the path (in forward_d_paths)
|
||
// that we have already accumulated in
|
||
// forward_d_paths; rather, it's in the second
|
||
// half of forward_d_paths that we haven't
|
||
// computed yet. Let's get the snake from the
|
||
// reverse path then.
|
||
found =
|
||
find_last_snake_in_path(a_begin, a_end, b_begin, b_end,
|
||
forward_d_paths, k_plus_delta,
|
||
/*forward=*/true,
|
||
snake_begin, snake_end);
|
||
if (found)
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
bool
|
||
compute_middle_snake(const char* str1, const char* str2,
|
||
point& snake_begin, point& snake_end,
|
||
int& ses_len);
|
||
|
||
/// This prints the middle snake of two strings.
|
||
///
|
||
/// @param a_begin the beginning of the first string.
|
||
///
|
||
/// @param b_begin the beginning of the second string.
|
||
///
|
||
/// @param snake_begin the beginning point of the snake.
|
||
///
|
||
/// @param snake_end the end point of the snake. Note that this point
|
||
/// is one offset past the end of the snake.
|
||
template<typename RandomAccessOutputIterator>
|
||
void
|
||
print_snake(RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator b_begin,
|
||
const point& snake_begin,
|
||
const point& snake_end,
|
||
ostream& out)
|
||
{
|
||
if (!(snake_begin && snake_end))
|
||
return;
|
||
|
||
out << "middle snake points: ";
|
||
for (int x = snake_begin.x(), y = snake_begin.y();
|
||
x <= snake_end.x() && y <= snake_end.y();
|
||
++x, ++y)
|
||
{
|
||
assert(a_begin[x] == b_begin[y]);
|
||
out << "(" << x << "," << y << ") ";
|
||
}
|
||
out << "\n";
|
||
|
||
out << "middle snake string: ";
|
||
for (int x = snake_begin.x(), y = snake_begin.y();
|
||
x <= snake_end.x() && y <= snake_end.y();
|
||
++x, ++y)
|
||
out << a_begin[x];
|
||
|
||
out << "\n";
|
||
}
|
||
|
||
/// Compute the length of the shortest edit script for two sequences a
|
||
/// and b. This is done using the "Greedy LCS/SES" of figure 2 in the
|
||
/// paper. It can walk the edit graph either foward (when reverse is
|
||
/// false) or backward starting from the end (when reverse is true).
|
||
///
|
||
/// Here, note that the real content of a and b should start at index
|
||
/// 1, for this implementatikon algorithm to match the paper's
|
||
/// algorithm in a straightforward manner. So pleast make sure that
|
||
/// at index 0, we just get some non-used value.
|
||
///
|
||
/// @param a the first sequence we care about.
|
||
///
|
||
/// @param b the second sequence we care about.
|
||
///
|
||
/// @param v the vector that contains the end points of the furthest
|
||
/// reaching d-path and (d-1)-path.
|
||
template<typename RandomAccessOutputIterator>
|
||
int
|
||
ses_len(RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_begin,
|
||
RandomAccessOutputIterator b_end,
|
||
d_path_vec& v, bool reverse)
|
||
{
|
||
unsigned a_size = a_end - a_begin;
|
||
unsigned b_size = b_end - b_begin;
|
||
|
||
assert(v.max_d() == a_size + b_size);
|
||
|
||
int delta = a_size - b_size;
|
||
|
||
if (reverse)
|
||
// Set a fictitious (M, N-1) into v[1], to find the furthest
|
||
// reaching reverse 0-path (i.e, when we are at d == 0 and k == 0).
|
||
v[delta + 1] = a_size - 1;
|
||
else
|
||
// Set a fictitious (-1,-2) point into v[1], to find the furthest
|
||
// reaching forward 0-path (i.e, when we are at d == 0 and k == 0).
|
||
v[1] = -1;
|
||
|
||
for (unsigned d = 0; d <= v.max_d(); ++d)
|
||
{
|
||
for (int k = -d; k <= (int) d; k += 2)
|
||
{
|
||
point end;
|
||
if (reverse)
|
||
{
|
||
end_of_frr_d_path_in_k_plus_delta(k, d,
|
||
a_begin, a_end,
|
||
b_begin, b_end,
|
||
v, end);
|
||
// If we reached the upper left corner of the edit graph then
|
||
// we are done.
|
||
if (end.x() == -1 && end.y() == -1)
|
||
return d;
|
||
}
|
||
else
|
||
{
|
||
end_of_fr_d_path_in_k(k, d,
|
||
a_begin, a_end,
|
||
b_begin, b_end,
|
||
v, end);
|
||
// If we reached the lower right corner of the edit
|
||
// graph then we are done.
|
||
if ((end.x() == (int) a_size - 1)
|
||
&& (end.y() == (int) b_size - 1))
|
||
return d;
|
||
}
|
||
}
|
||
}
|
||
return 0;
|
||
}
|
||
|
||
int
|
||
ses_len(const char* str1,
|
||
const char* str2,
|
||
bool reverse = false);
|
||
|
||
/// Compute the longest common subsequence of two (sub-regions of)
|
||
/// sequences as well as the shortest edit script from transforming
|
||
/// the first (sub-region of) sequence into the second (sub-region of)
|
||
/// sequence.
|
||
///
|
||
/// A sequence is determined by a base, a beginning offset and an end
|
||
/// offset. The base always points to the container that contains the
|
||
/// sequence to consider. The beginning offset is an iterator that
|
||
/// points the beginning of the sub-region of the sequence that we
|
||
/// actually want to consider. The end offset is an iterator that
|
||
/// points to the end of the sub-region of the sequence that we
|
||
/// actually want to consider.
|
||
///
|
||
/// This uses the LCS algorithm of the paper at section 4b.
|
||
///
|
||
/// @param a_base the iterator to the base of the first sequence.
|
||
///
|
||
/// @param a_start an iterator to the beginning of the sub-region
|
||
/// of the first sequence to actually consider.
|
||
///
|
||
/// @param a_end an iterator to the end of the sub-region of the first
|
||
/// sequence to consider.
|
||
///
|
||
///@param b_base an iterator to the base of the second sequence to
|
||
///consider.
|
||
///
|
||
/// @param b_start an iterator to the beginning of the sub-region
|
||
/// of the second sequence to actually consider.
|
||
///
|
||
/// @param b_end an iterator to the end of the sub-region of the
|
||
/// second sequence to actually consider.
|
||
///
|
||
/// @param lcs the resulting lcs. This is set iff the function
|
||
/// returns true.
|
||
///
|
||
/// @param ses the resulting shortest editing script.
|
||
///
|
||
/// @param ses_len the length of the ses above. Normally this can be
|
||
/// retrived from ses.length(), but this parameter is here for sanity
|
||
/// check purposes. The function computes the length of the ses in two
|
||
/// redundant redundant ways and ensures that both methods lead to the
|
||
/// same result.
|
||
///
|
||
/// @return true upon successful completion, false otherwise.
|
||
template<typename RandomAccessOutputIterator>
|
||
void
|
||
compute_diff(RandomAccessOutputIterator a_base,
|
||
RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_base,
|
||
RandomAccessOutputIterator b_begin,
|
||
RandomAccessOutputIterator b_end,
|
||
vector<point>& lcs,
|
||
edit_script& ses,
|
||
int& ses_len)
|
||
{
|
||
int a_size = a_end - a_begin;
|
||
int b_size = b_end - b_begin;
|
||
|
||
if (a_size == 0 || b_size == 0)
|
||
{
|
||
if (a_size > 0 && b_size == 0)
|
||
// All elements of the first sequences have been deleted. So add
|
||
// the relevant deletions to the edit script.
|
||
for (RandomAccessOutputIterator i = a_begin; i < a_end; ++i)
|
||
ses.deletions().push_back(deletion(i - a_base));
|
||
|
||
if (b_size > 0 && a_size == 0)
|
||
{
|
||
// All elements present in the second sequence are part of
|
||
// an insertion into the first sequence at a_end. So add
|
||
// that insertion to the edit script.
|
||
int a_full_size = a_end - a_base;
|
||
int insertion_index = a_full_size ? a_full_size - 1 : 0;
|
||
insertion ins(insertion_index);
|
||
for (RandomAccessOutputIterator i = b_begin; i < b_end; ++i)
|
||
ins.inserted_indexes().push_back(i - b_base);
|
||
|
||
ses.insertions().push_back(ins);
|
||
}
|
||
return;
|
||
}
|
||
|
||
int d = 0;
|
||
point middle_begin, middle_end; // end points of the middle snake.
|
||
vector<point> middle; // the middle snake itself.
|
||
bool has_snake = compute_middle_snake(a_begin, a_end,
|
||
b_begin, b_end,
|
||
middle_begin,
|
||
middle_end, d);
|
||
if (has_snake)
|
||
{
|
||
// So middle_{begin,end} are expressed wrt a_begin and b_begin.
|
||
// Let's express them wrt a_base and b_base.
|
||
unsigned a_offset = a_begin - a_base, b_offset = b_begin - b_base;
|
||
middle_begin.x(middle_begin.x() + a_offset);
|
||
middle_begin.y(middle_begin.y() + b_offset);
|
||
middle_end.x(middle_end.x() + a_offset);
|
||
middle_end.y(middle_end.y() + b_offset);
|
||
|
||
for (int x = middle_begin.x(), y = middle_begin.y();
|
||
x <= middle_end.x() && y <= middle_end.y();
|
||
++x, ++y)
|
||
middle.push_back(point(x, y));
|
||
|
||
ses_len = d;
|
||
}
|
||
else
|
||
{
|
||
// So there is no middle snake. That means there is no lcs, so
|
||
// the two sequences are different.
|
||
|
||
// In other words, all the elements of the first sequence have
|
||
// been delete ...
|
||
for (RandomAccessOutputIterator i = a_begin; i < a_end; ++i)
|
||
ses.deletions().push_back(deletion(i - a_base));
|
||
|
||
// ... and all the element of the second sequence are insertions
|
||
// that happen at the beginning of the first sequence.
|
||
insertion ins(a_begin - a_base);
|
||
for (RandomAccessOutputIterator i = b_begin; i < b_end; ++i)
|
||
ins.inserted_indexes().push_back(i - b_base);
|
||
ses.insertions().push_back(ins);
|
||
|
||
ses_len = a_size + b_size;
|
||
assert(ses_len == ses.length());
|
||
return;
|
||
}
|
||
|
||
if (d > 1)
|
||
{
|
||
int tmp_ses_len = 0;
|
||
compute_diff(a_base, a_begin, a_base + middle_begin.x(),
|
||
b_base, b_begin, b_base + middle_begin.y(),
|
||
lcs, ses, tmp_ses_len);
|
||
|
||
lcs.insert(lcs.end(), middle.begin(), middle.end());
|
||
|
||
tmp_ses_len = 0;
|
||
edit_script tmp_ses;
|
||
compute_diff(a_base, a_base + middle_end.x() + 1, a_end,
|
||
b_base, b_base + middle_end.y() + 1, b_end,
|
||
lcs, tmp_ses, tmp_ses_len);
|
||
ses.append(tmp_ses);
|
||
}
|
||
else if (d == 1)
|
||
{
|
||
// So we found a middle snake in an optimal path that is
|
||
// 1-length. That is, that path is made of at most one snake,
|
||
// one non-diagonal move and another snake. As D == 1 (odd),
|
||
// delta is at least 1. Let's suppose that delta is 1 then.
|
||
// The overlap that leads to the detection of the middle snake
|
||
// can only happen at least on diagonal 1, because reverse paths
|
||
// are centered around delta == 1. So we are on diagonal 1.
|
||
// Now let's add the possible solutions that are on diagonal 0
|
||
// then. That is, (x = 0, y = 0), (x = 1, y = 1) ... etc until
|
||
// we reach a point which abscissa is at most
|
||
// (*middle.begin()).x() ...
|
||
int x = 0, y = 0;
|
||
for (;
|
||
x < middle_begin.x() && y < middle_begin.y();
|
||
++x, ++y)
|
||
{
|
||
if (a_base[x] == b_base[y])
|
||
lcs.push_back(point(x, y));
|
||
else
|
||
break;
|
||
}
|
||
|
||
if (x < middle_begin.x())
|
||
{
|
||
deletion del(x);
|
||
ses.deletions().push_back(deletion(x));
|
||
}
|
||
else if (y < middle_begin.y())
|
||
{
|
||
insertion ins(x - 1);
|
||
ins.inserted_indexes().push_back(y);
|
||
ses.insertions().push_back(ins);
|
||
}
|
||
|
||
// ... and append the middle snake to the solution.
|
||
lcs.insert(lcs.end(), middle.begin(), middle.end());
|
||
ses_len = 1;
|
||
}
|
||
else if (d == 0)
|
||
{
|
||
// Obviously on the middle snake is part of the solution, as
|
||
// there is no edit script; iow, the two sequences are
|
||
// identical.
|
||
lcs.insert(lcs.end(), middle.begin(), middle.end());
|
||
ses_len = 0;
|
||
}
|
||
|
||
assert(ses_len == ses.length());
|
||
}
|
||
|
||
/// Compute the longest common subsequence of two (sub-regions of)
|
||
/// sequences as well as the shortest edit script from transforming
|
||
/// the first (sub-region of) sequence into the second (sub-region of)
|
||
/// sequence.
|
||
///
|
||
/// A sequence is determined by a base, a beginning offset and an end
|
||
/// offset. The base always points to the container that contains the
|
||
/// sequence to consider. The beginning offset is an iterator that
|
||
/// points the beginning of the sub-region of the sequence that we
|
||
/// actually want to consider. The end offset is an iterator that
|
||
/// points to the end of the sub-region of the sequence that we
|
||
/// actually want to consider.
|
||
///
|
||
/// This uses the LCS algorithm of the paper at section 4b.
|
||
///
|
||
/// @param a_base the iterator to the base of the first sequence.
|
||
///
|
||
/// @param a_start an iterator to the beginning of the sub-region
|
||
/// of the first sequence to actually consider.
|
||
///
|
||
/// @param a_end an iterator to the end of the sub-region of the first
|
||
/// sequence to consider.
|
||
///
|
||
///@param b_base an iterator to the base of the second sequence to
|
||
///consider.
|
||
///
|
||
/// @param b_start an iterator to the beginning of the sub-region
|
||
/// of the second sequence to actually consider.
|
||
///
|
||
/// @param b_end an iterator to the end of the sub-region of the
|
||
/// second sequence to actually consider.
|
||
///
|
||
/// @param lcs the resulting lcs. This is set iff the function
|
||
/// returns true.
|
||
///
|
||
/// @param ses the resulting shortest editing script.
|
||
///
|
||
/// @return true upon successful completion, false otherwise.
|
||
template<typename RandomAccessOutputIterator>
|
||
void
|
||
compute_diff(RandomAccessOutputIterator a_base,
|
||
RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_base,
|
||
RandomAccessOutputIterator b_begin,
|
||
RandomAccessOutputIterator b_end,
|
||
vector<point>& lcs,
|
||
edit_script& ses)
|
||
{
|
||
int ses_len = 0;
|
||
|
||
compute_diff(a_base, a_begin, a_end,
|
||
b_base, b_begin, b_end,
|
||
lcs, ses, ses_len);
|
||
}
|
||
|
||
/// Compute the longest common subsequence of two (sub-regions of)
|
||
/// sequences as well as the shortest edit script from transforming
|
||
/// the first (sub-region of) sequence into the second (sub-region of)
|
||
/// sequence.
|
||
///
|
||
/// A sequence is determined by a base, a beginning offset and an end
|
||
/// offset. The base always points to the container that contains the
|
||
/// sequence to consider. The beginning offset is an iterator that
|
||
/// points the beginning of the sub-region of the sequence that we
|
||
/// actually want to consider. The end offset is an iterator that
|
||
/// points to the end of the sub-region of the sequence that we
|
||
/// actually want to consider.
|
||
///
|
||
/// This uses the LCS algorithm of the paper at section 4b.
|
||
///
|
||
/// @param a_base the iterator to the base of the first sequence.
|
||
///
|
||
/// @param a_start an iterator to the beginning of the sub-region
|
||
/// of the first sequence to actually consider.
|
||
///
|
||
/// @param a_end an iterator to the end of the sub-region of the first
|
||
/// sequence to consider.
|
||
///
|
||
///@param b_base an iterator to the base of the second sequence to
|
||
///consider.
|
||
///
|
||
/// @param b_start an iterator to the beginning of the sub-region
|
||
/// of the second sequence to actually consider.
|
||
///
|
||
/// @param b_end an iterator to the end of the sub-region of the
|
||
/// second sequence to actually consider.
|
||
///
|
||
/// @param ses the resulting shortest editing script.
|
||
///
|
||
/// @return true upon successful completion, false otherwise.
|
||
template<typename RandomAccessOutputIterator>
|
||
void
|
||
compute_diff(RandomAccessOutputIterator a_base,
|
||
RandomAccessOutputIterator a_begin,
|
||
RandomAccessOutputIterator a_end,
|
||
RandomAccessOutputIterator b_base,
|
||
RandomAccessOutputIterator b_begin,
|
||
RandomAccessOutputIterator b_end,
|
||
edit_script& ses)
|
||
{
|
||
vector<point> lcs;
|
||
|
||
compute_diff(a_base, a_begin, a_end,
|
||
b_base, b_begin, b_end,
|
||
lcs, ses);
|
||
}
|
||
|
||
void
|
||
compute_lcs(const char* str1, const char* str2, int &ses_len, string& lcs);
|
||
|
||
void
|
||
compute_ses(const char* str1, const char* str2, edit_script& ses);
|
||
|
||
/// Display an edit script on standard output.
|
||
///
|
||
/// @param es the edit script to display
|
||
///
|
||
/// @param str1_base the first string the edit script is about.
|
||
///
|
||
/// @pram str2_base the second string the edit script is about.
|
||
template<typename RandomAccessOutputIterator>
|
||
void
|
||
display_edit_script(const edit_script& es,
|
||
const RandomAccessOutputIterator str1_base,
|
||
const RandomAccessOutputIterator str2_base,
|
||
ostream& out)
|
||
{
|
||
if (es.num_deletions() == 0)
|
||
out << "no deletion:\n";
|
||
if (es.num_deletions() <= 1)
|
||
out << "1 deletion:\n";
|
||
else
|
||
{
|
||
out << es.num_deletions() << " deletions:\n"
|
||
<< "\t happened at indexes: ";
|
||
}
|
||
|
||
for (vector<deletion>::const_iterator i = es.deletions().begin();
|
||
i != es.deletions().end();
|
||
++i)
|
||
{
|
||
if (i != es.deletions().begin())
|
||
out << ", ";
|
||
out << i->index() << " (" << str1_base[i->index()] << ")";
|
||
}
|
||
out << "\n\n";
|
||
|
||
if (es.num_insertions() == 0)
|
||
out << "no insertion\n";
|
||
else if (es.num_insertions() == 1)
|
||
out << "1 insertion\n";
|
||
else
|
||
out << es.num_insertions() << " insertions:\n";
|
||
for (vector<insertion>::const_iterator i = es.insertions().begin();
|
||
i != es.insertions().end();
|
||
++i)
|
||
{
|
||
out << "\t after index of first sequence: " << i->insertion_point_index()
|
||
<< " (" << str1_base[i->insertion_point_index()] << ")\n";
|
||
|
||
if (!i->inserted_indexes().empty())
|
||
out << "\t\t inserted indexes from second sequence: ";
|
||
|
||
for (vector<int>::const_iterator j = i->inserted_indexes().begin();
|
||
j != i->inserted_indexes().end();
|
||
++j)
|
||
{
|
||
if (j != i->inserted_indexes().begin())
|
||
out << ", ";
|
||
out << *j << " (" << str2_base[*j] << ")";
|
||
}
|
||
out << "\n";
|
||
}
|
||
out << "\n\n";
|
||
}
|
||
|
||
}//end namespace diff_utils
|
||
|
||
}//end namespace abigail
|