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
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
using System;
using System.IO;
using System.Collections;
namespace WixToolset.Dtf.Tools.DDiff
{
public class DirectoryDiffEngine : IDiffEngine
{
public DirectoryDiffEngine()
{
}
public virtual float GetDiffQuality(string diffInput1, string diffInput2, string[] options, IDiffEngineFactory diffFactory)
{
if(diffInput1 != null && Directory.Exists(diffInput1) &&
diffInput2 != null && Directory.Exists(diffInput2))
{
return .70f;
}
else
{
return 0;
}
}
public bool GetDiff(string diffInput1, string diffInput2, string[] options, TextWriter diffOutput, string linePrefix, IDiffEngineFactory diffFactory)
{
bool difference = false;
IComparer caseInsComp = CaseInsensitiveComparer.Default;
string[] files1 = Directory.GetFiles(diffInput1);
string[] files2 = Directory.GetFiles(diffInput2);
for(int i1 = 0; i1 < files1.Length; i1++)
{
files1[i1] = Path.GetFileName(files1[i1]);
}
for(int i2 = 0; i2 < files2.Length; i2++)
{
files2[i2] = Path.GetFileName(files2[i2]);
}
Array.Sort(files1, caseInsComp);
Array.Sort(files2, caseInsComp);
for(int i1 = 0, i2 = 0; i1 < files1.Length || i2 < files2.Length; )
{
int comp;
if(i1 == files1.Length)
{
comp = 1;
}
else if(i2 == files2.Length)
{
comp = -1;
}
else
{
comp = caseInsComp.Compare(files1[i1], files2[i2]);
}
if(comp < 0)
{
diffOutput.WriteLine("{0}< {1}", linePrefix, files1[i1]);
i1++;
difference = true;
}
else if(comp > 0)
{
diffOutput.WriteLine("{0}> {1}", linePrefix, files2[i2]);
i2++;
difference = true;
}
else
{
string file1 = Path.Combine(diffInput1, files1[i1]);
string file2 = Path.Combine(diffInput2, files2[i2]);
IDiffEngine diffEngine = diffFactory.GetDiffEngine(file1, file2, options);
StringWriter sw = new StringWriter();
if(diffEngine.GetDiff(file1, file2, options, sw, linePrefix + " ", diffFactory))
{
diffOutput.WriteLine("{0}{1}", linePrefix, files1[i1]);
diffOutput.Write(sw.ToString());
difference = true;
}
i1++;
i2++;
}
}
string[] dirs1 = Directory.GetDirectories(diffInput1);
string[] dirs2 = Directory.GetDirectories(diffInput2);
for(int i1 = 0; i1 < dirs1.Length; i1++)
{
dirs1[i1] = Path.GetFileName(dirs1[i1]);
}
for(int i2 = 0; i2 < dirs2.Length; i2++)
{
dirs2[i2] = Path.GetFileName(dirs2[i2]);
}
Array.Sort(dirs1, caseInsComp);
Array.Sort(dirs2, caseInsComp);
for(int i1 = 0, i2 = 0; i1 < dirs1.Length || i2 < dirs2.Length; )
{
int comp;
if(i1 == dirs1.Length)
{
comp = 1;
}
else if(i2 == dirs2.Length)
{
comp = -1;
}
else
{
comp = caseInsComp.Compare(dirs1[i1], dirs2[i2]);
}
if(comp < 0)
{
diffOutput.WriteLine("{0}< {1}", linePrefix, dirs1[i1]);
i1++;
difference = true;
}
else if(comp > 0)
{
diffOutput.WriteLine("{0}> {1}", linePrefix, dirs2[i2]);
i2++;
difference = true;
}
else
{
string dir1 = Path.Combine(diffInput1, dirs1[i1]);
string dir2 = Path.Combine(diffInput2, dirs2[i2]);
IDiffEngine diffEngine = diffFactory.GetDiffEngine(dir1, dir2, options);
StringWriter sw = new StringWriter();
if(diffEngine.GetDiff(dir1, dir2, options, sw, linePrefix + " ", diffFactory))
{
diffOutput.WriteLine("{0}{1}\\", linePrefix, dirs1[i1]);
diffOutput.Write(sw.ToString());
difference = true;
}
i1++;
i2++;
}
}
return difference;
}
public virtual IDiffEngine Clone()
{
return new DirectoryDiffEngine();
}
}
}
|