This repository was archived by the owner on Oct 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 808
Expand file tree
/
Copy pathEdit.cs
More file actions
211 lines (189 loc) · 5.97 KB
/
Copy pathEdit.cs
File metadata and controls
211 lines (189 loc) · 5.97 KB
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
/*
* Copyright (C) 2008, Johannes E. Schindelin <johannes.schindelin@gmx.de>
* Copyright (C) 2009, Gil Ran <gilrun@gmail.com>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* - Neither the name of the Git Development Community nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
namespace ICSharpCode.SharpDevelop.Widgets.MyersDiff
{
/// <summary>
/// A modified region detected between two versions of roughly the same content.
/// <para />
/// Regions should be specified using 0 based notation, so add 1 to the
/// start and end marks for line numbers in a file.
/// <para />
/// An edit where <code>beginA == endA && beginB > endB</code> is an insert edit,
/// that is sequence B inserted the elements in region
/// <code>[beginB, endB)</code> at <code>beginA</code>.
/// <para />
/// An edit where <code>beginA > endA && beginB > endB</code> is a replace edit,
/// that is sequence B has replaced the range of elements between
/// <code>[beginA, endA)</code> with those found in <code>[beginB, endB)</code>.
/// </summary>
public class Edit
{
/// <summary>
/// Create a new empty edit.
/// </summary>
/// <param name="aStart">beginA: start and end of region in sequence A; 0 based.</param>
/// <param name="bStart">beginB: start and end of region in sequence B; 0 based.</param>
public Edit(int aStart, int bStart)
: this(aStart, aStart, bStart, bStart)
{
}
/// <summary>
/// Create a new empty edit.
/// </summary>
/// <param name="aStart">beginA: start and end of region in sequence A; 0 based.</param>
/// <param name="aEnd">endA: end of region in sequence A; must be >= as.</param>
/// <param name="bStart">beginB: start and end of region in sequence B; 0 based.</param>
/// <param name="bEnd">endB: end of region in sequence B; must be >= bs.</param>
public Edit(int aStart, int aEnd, int bStart, int bEnd)
{
BeginA = aStart;
EndA = aEnd;
BeginB = bStart;
EndB = bEnd;
}
/// <summary>
/// Gets the type of this region.
/// </summary>
public ChangeType EditType
{
get
{
if (BeginA == EndA && BeginB < EndB)
return ChangeType.Added;
if (BeginA < EndA && BeginB == EndB)
return ChangeType.Deleted;
if (BeginA == EndA && BeginB == EndB)
return ChangeType.None;
return ChangeType.Modified;
}
}
/// <summary>
/// Start point in sequence A.
/// </summary>
public int BeginA { get; private set; }
/// <summary>
/// End point in sequence A.
/// </summary>
public int EndA { get; private set; }
/// <summary>
/// Start point in sequence B.
/// </summary>
public int BeginB { get; private set; }
/// <summary>
/// End point in sequence B.
/// </summary>
public int EndB { get; private set; }
/// <summary>
/// Increase <see cref="EndA"/> by 1.
/// </summary>
public void ExtendA()
{
EndA++;
}
/// <summary>
/// Increase <see cref="EndB"/> by 1.
/// </summary>
public void ExtendB()
{
EndB++;
}
/// <summary>
/// Swap A and B, so the edit goes the other direction.
/// </summary>
public void Swap()
{
int sBegin = BeginA;
int sEnd = EndA;
BeginA = BeginB;
EndA = EndB;
BeginB = sBegin;
EndB = sEnd;
}
public override int GetHashCode()
{
return BeginA ^ EndA;
}
/// <summary>
/// Determines whether the specified <see cref="T:System.Object"/> is
/// equal to the current <see cref="T:System.Object"/>.
/// </summary>
/// <returns>
/// true if the specified <see cref="T:System.Object"/> is equal to the
/// current <see cref="T:System.Object"/>; otherwise, false.
/// </returns>
/// <param name="obj">The <see cref="T:System.Object"/> to compare with
/// the current <see cref="T:System.Object"/>.
/// </param>
/// <exception cref="T:System.NullReferenceException">
/// The <paramref name="obj"/> parameter is null.
/// </exception>
/// <filterpriority>2</filterpriority>
public override bool Equals(object obj)
{
Edit e = (obj as Edit);
if (e != null)
{
return BeginA == e.BeginA && EndA == e.EndA && BeginB == e.BeginB && EndB == e.EndB;
}
return false;
}
public static bool operator ==(Edit left, Edit right)
{
return Equals(left, right);
}
public static bool operator !=(Edit left, Edit right)
{
return !Equals(left, right);
}
public override string ToString()
{
ChangeType t = EditType;
return t + "(" + BeginA + "-" + EndA + "," + BeginB + "-" + EndB + ")";
}
}
/// <remarks>Moved from AvaloEdit</remarks>
public enum ChangeType
{
None,
Added,
Deleted,
Modified,
Unsaved
}
}