-
Notifications
You must be signed in to change notification settings - Fork 0
/
Seek.cs
215 lines (211 loc) · 5.08 KB
/
Seek.cs
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
using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
public class Seek
{
public static void Main(string[] args)
{
string directory = null;
string regexText = null;
string filter = null;
for (int i = 0; true;)
{
string arg = GetArg(args, i++);
if (arg == null)
break;
if (arg == "-r")
{
regexText = GetArg(args, i++);
if (regexText == null)
{
Console.Error.WriteLine("No regex after -r");
LogHelp();
return;
}
}
else if (arg == "-d")
{
directory = GetArg(args, i++);
if (directory == null)
{
Console.Error.WriteLine("No directory after -d");
LogHelp();
return;
}
}
else if (arg == "-f")
{
filter = GetArg(args, i++);
if (filter == null)
{
Console.Error.WriteLine("No filter after -f");
LogHelp();
return;
}
}
}
if (string.IsNullOrEmpty(regexText))
{
Console.Error.WriteLine("Parameter -r <regex> not specified");
LogHelp();
return;
}
Regex regex = null;
string pattern = null;
if (regexText.Length > 2 && regexText[0] == '/' && regexText.LastIndexOf("/") > 1)
{
RegexOptions options = RegexOptions.CultureInvariant | RegexOptions.Multiline;
int lastIndex = regexText.LastIndexOf("/");
string optionsText = regexText.Substring(lastIndex + 1);
string rawRegex = regexText.Substring(1, lastIndex - 1);
for (int i = 0; i < optionsText.Length; i++)
{
char c = optionsText[i];
if (c == 'i')
options |= RegexOptions.IgnoreCase;
else if (c == 's')
options &= ~RegexOptions.Multiline;
else if (c == 'e')
options |= RegexOptions.ExplicitCapture;
else
{
Console.Error.WriteLine("Unsupported regex option: " + c);
LogHelp();
return;
}
}
try
{
regex = new Regex(rawRegex, options);
}
catch (Exception e)
{
Console.Error.WriteLine("Incorrect regex: " + regexText + " - " + e.Message);
return;
}
}
else
{
pattern = regexText;
}
Search(directory, regex, pattern, filter);
}
private static void LogHelp()
{
Console.WriteLine("Allowed parameters: -r <regex> [-d <directory> -f <filter>]\n" +
"If pattern contains spaces, it mast be enclosed in \" \" pair:\n" +
"\t\"some pattern\"\n" +
"If pattern is regex, it mast be enclosed in / / pair:\n" +
"\t/regex/\n" +
"\t/another_regex/ie\n" +
"Allowed regex options:\n" +
"\ti - ignore case;\n" +
"\ts - single line, ^ - is start of file, $ - end of file;\n" +
"\te - explicit capture");
}
private static string GetArg(string[] args, int i)
{
if (i >= args.Length)
return null;
string arg = args[i];
if (arg.Length > 2 && arg[0] == '"' && arg[arg.Length - 1] == '"')
return arg.Substring(1, arg.Length - 2);
return arg;
}
private static void Search(string directory, Regex regex, string pattern, string filter)
{
StringBuilder builder = new StringBuilder();
bool needCutCurrent = false;
if (string.IsNullOrEmpty(filter))
filter = "*";
if (string.IsNullOrEmpty(directory))
{
directory = Directory.GetCurrentDirectory();
needCutCurrent = true;
}
string[] files = null;
try
{
files = Directory.GetFiles(directory, filter, SearchOption.AllDirectories);
}
catch (Exception e)
{
Console.Error.WriteLine("File list reading error: " + e.Message);
return;
}
string currentDirectory = Directory.GetCurrentDirectory() + Path.DirectorySeparatorChar;
List<int> indices = new List<int>();
foreach (string file in files)
{
string text = File.ReadAllText(file);
indices.Clear();
if (regex != null)
{
MatchCollection matches = regex.Matches(text);
if (matches.Count == 0)
continue;
foreach (Match match in matches)
{
indices.Add(match.Index);
}
}
else
{
int index = text.IndexOf(pattern);
if (index == -1)
continue;
while (true)
{
indices.Add(index);
index = text.IndexOf(pattern, index + 1);
if (index == -1)
break;
}
}
string path = file;
if (needCutCurrent && path.StartsWith(currentDirectory))
path = file.Substring(currentDirectory.Length);
int offset = 0;
int currentLineIndex = 0;
foreach (int index in indices)
{
int lineEnd = -1;
while (true)
{
int nIndex = text.IndexOf('\n', offset);
int rIndex = text.IndexOf('\r', offset);
if (nIndex == -1 && rIndex == -1)
{
lineEnd = text.Length;
break;
}
int nrIndex = Math.Min(nIndex, rIndex);
if (nrIndex == -1)
nrIndex = nIndex != -1 ? nIndex : rIndex;
if (nrIndex > index)
{
lineEnd = nrIndex;
break;
}
currentLineIndex++;
if (nrIndex == nIndex)
{
offset = nIndex + 1;
}
else
{
if (rIndex + 1 < text.Length || text[rIndex + 1] == '\n')
offset = rIndex + 2;
else
offset = rIndex + 1;
}
}
builder.AppendLine(
path + "(" + (currentLineIndex + 1) + "," + (index - offset + 1) + "): " + text.Substring(offset, lineEnd - offset));
}
}
Console.Out.Write(builder.ToString());
}
}