summaryrefslogtreecommitdiffstats
path: root/kompare/libdiff2/difference.h
blob: 4e440222f687cbe6addc53333113b12f531c3488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/***************************************************************************
                                difference.h  -  description
                                -------------------
        begin                   : Sun Mar 4 2001
        copyright               : (C) 2001-2003 by Otto Bruggeman
                                  and John Firebaugh
        email                   : otto.bruggeman@home.nl
                                  jfirebaugh@kde.org
****************************************************************************/

/***************************************************************************
**
**   This program is free software; you can redistribute it and/or modify
**   it under the terms of the GNU General Public License as published by
**   the Free Software Foundation; either version 2 of the License, or
**   (at your option) any later version.
**
***************************************************************************/

#ifndef DIFFERENCE_H
#define DIFFERENCE_H

#include <tqvaluelist.h>
#include <tqvaluevector.h>

#include <kdebug.h>

class TQString;

namespace Diff2
{

class LevenshteinTable;

class Marker
{
public:
	enum Type { Start = 0, End = 1 };

public:
	Marker()
	{
		m_type = Marker::Start;
		m_offset = 0;
	}
	Marker( enum Marker::Type type, unsigned int offset )
	{
		m_type = type;
		m_offset = offset;
	}
	~Marker() {}

public:
	enum Marker::Type type()   const { return m_type;   }
	unsigned int      offset() const { return m_offset; }

	void setType  ( enum Marker::Type type ) { m_type   = type;   }
	void setOffset( unsigned int offset )    { m_offset = offset; }

private:
	enum Marker::Type m_type;
	unsigned int      m_offset;
};

typedef TQValueList<Marker*> MarkerList;
typedef TQValueList<Marker*>::iterator MarkerListIterator;
typedef TQValueList<Marker*>::const_iterator MarkerListConstIterator;

class DifferenceString
{
public:
	DifferenceString()
	{
//		kdDebug(8101) << "DifferenceString::DifferenceString()" << endl;
	}
	DifferenceString( const TQString& string, const MarkerList& markerList = MarkerList() ) :
		m_string( string ), 
		m_markerList( markerList )
	{
//		kdDebug(8101) << "DifferenceString::DifferenceString( " << string << ", " << markerList << " )" << endl;
		calculateHash();
	}
	DifferenceString( const DifferenceString& ds ) :
		m_string( ds.m_string ),
		m_conflict( ds.m_conflict ),
		m_hash( ds.m_hash ),
		m_markerList( ds.m_markerList )
	{
//		kdDebug(8101) << "DifferenceString::DifferenceString( const DifferenceString& " << ds << " )" << endl;
	}
	~DifferenceString() {}

public:
	const TQString& string() const
	{
		return m_string;
	}
	const TQString& conflictString() const
	{
		return m_conflict;
	}
	const MarkerList& markerList()
	{
		return m_markerList;
	}
	void setString( const TQString& string )
	{
		m_string = string;
		calculateHash();
	}
	void setConflictString( const TQString& conflict )
	{
		m_conflict = conflict;
	}
	void setMarkerList( const MarkerList& markerList )
	{
		m_markerList = markerList;
	}
	void prepend( Marker* marker )
	{
		m_markerList.prepend( marker );
	}
	bool operator==( const DifferenceString& ks )
	{
		if ( m_hash != ks.m_hash )
			return false;
		return m_string == ks.m_string;
	}

protected:
	void calculateHash()
	{
		unsigned short const* str = reinterpret_cast<unsigned short const*>( m_string.tqunicode() );
		const unsigned int len = m_string.length();

		m_hash = 1315423911;

		for ( unsigned int i = 0; i < len; i++ )
		{
			m_hash ^= ( m_hash << 5 ) + str[i] + ( m_hash >> 2 );
		}
	}

private:
	TQString      m_string;
	TQString      m_conflict;
	unsigned int m_hash;
	MarkerList   m_markerList;
};

typedef TQValueVector<DifferenceString*> DifferenceStringList;
typedef TQValueVector<DifferenceString*>::iterator DifferenceStringListIterator;
typedef TQValueVector<DifferenceString*>::const_iterator DifferenceStringListConstIterator;

class Difference
{
public:
	enum Type { Change, Insert, Delete, Unchanged };

public:
	Difference( int sourceLineNo, int destinationLineNo, int type = Difference::Unchanged );
	~Difference();

public:
	int type() const { return m_type; };

	int sourceLineNumber() const { return m_sourceLineNo; }
	int destinationLineNumber() const { return m_destinationLineNo; }

	int sourceLineCount() const;
	int destinationLineCount() const;

	DifferenceString* sourceLineAt( int i ) { return m_sourceLines[ i ]; }
	DifferenceString* destinationLineAt( int i ) { return m_destinationLines[ i ]; }

	const DifferenceStringList sourceLines() const { return m_sourceLines; }
	const DifferenceStringList destinationLines() const { return m_destinationLines; }

	bool hasConflict() const
	{
		return m_conflicts;
	}
	void setConflict( bool conflicts )
	{
		m_conflicts = conflicts;
	}

	void apply( bool apply );
	bool applied() const { return m_applied; }

	void setType( int type ) { m_type = type; }

	void addSourceLine( TQString line );
	void addDestinationLine( TQString line );

	/** This method will calculate the differences between the individual strings and store them as Markers */
	void determineInlineDifferences();

	TQString recreateDifference() const;

private:
	int                   m_type;

	int                   m_sourceLineNo;
	int                   m_destinationLineNo;

	DifferenceStringList  m_sourceLines;
	DifferenceStringList  m_destinationLines;

	bool                  m_applied;
	bool                  m_conflicts;

	LevenshteinTable*     m_tableXXX; // now unused
};

typedef TQValueList<Difference*> DifferenceList;
typedef TQValueList<Difference*>::iterator DifferenceListIterator;
typedef TQValueList<Difference*>::const_iterator DifferenceListConstIterator;

} // End of namespace Diff2

#endif