-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
439 lines (384 loc) · 13.8 KB
/
Program.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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
using HtmlAgilityPack;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Net.Http;
using System.Threading;
using System.Threading.Channels;
using System.Threading.Tasks;
namespace Channels
{
public enum TagType
{
Anchor = 1,
Image = 2,
IFrame = 3,
Link = 4,
Video = 5,
Audio = 6,
}
public static class UriHelpers
{
public static Uri Combine (this Uri baseUri, string url)
{
// baseUri=http://abc.com/path1, url=http://xyz.com/path2 => http://xyz.com/path2
if (url.StartsWith ("http"))
{
return new Uri (url);
}
// baseUri=http://abc.com/path1, url=//abc.com/path2 => http://abc.com/path2
if (url.StartsWith ("//"))
{
return new Uri (string.Format ("{0}:{1}", baseUri.Scheme, url));
}
// baseUri=http://abc.com/path1, url=/path2 => http://abc.com/path2
if (url.StartsWith ("/"))
{
var urlBuilder = new UriBuilder (baseUri);
urlBuilder.Path = url;
return urlBuilder.Uri;
}
else
{
// baseUri=http://abc.com/path1, url=path2 => http://abc.com/path1/path2
var urlBuilder = new UriBuilder (baseUri);
urlBuilder.Path += string.Format ("/{0}", url);
return urlBuilder.Uri;
}
}
}
public class Tag : IEquatable<Tag>
{
public Tag (Uri parentUri, string childUrl, TagType tagType)
{
ParentUri = parentUri;
ChildUrl = childUrl;
TagType = tagType;
IsSameSite = true;
IsUrlValid = true;
try
{
if (ChildUrl.StartsWith ("http"))
{
var uri = new Uri (ChildUrl);
IsSameSite = uri.Authority == parentUri.Authority;
}
else
{
var uri = new Uri (ParentUri, childUrl);
}
}
catch (Exception ex)
{
IsUrlValid = false;
ErrorMessage = ex.Message;
}
}
public string Url
{
get
{
return ParentUri.Combine (ChildUrl).AbsoluteUri;
}
}
public Uri ParentUri { get; }
public string ChildUrl { get; }
public TagType TagType { get; }
public bool IsSameSite { get; }
public bool IsUrlValid { get; }
public string ErrorMessage { get; }
public string ToString ()
{
return Url.ToString ();
}
public override bool Equals (object obj)
{
return Equals (obj as Tag);
}
public bool Equals (Tag other)
{
return other != null
&& ParentUri == other.ParentUri
&& ChildUrl == other.ChildUrl;
}
public override int GetHashCode ()
{
return HashCode.Combine (ParentUri, ChildUrl);
}
}
public static class TagHelpers
{
public static string ToFilePath (this Tag tag)
{
var uri = new Uri (tag.Url);
string host = uri.Host.Replace (@"\", "");
string path = uri.AbsolutePath.Replace (@"/", @"\");
// Fix special case for web root "/" => "_taskId.html"
if (path == @"\")
{
path += "_taskId.html";
}
string filePath = string.Format (@".\{0}{1}", host, path);
return filePath;
}
}
public class UrlCache
{
private readonly HashSet<Tag> Cache = new HashSet<Tag> ();
public bool Add (Tag tag)
{
return Cache.Add (tag);
}
public bool Contains (Tag tag)
{
return Cache.Contains (tag);
}
}
public class WorkQueue
{
ConcurrentQueue<Tag> Queue = new ConcurrentQueue<Tag> ();
public bool IsEmpty => Queue.IsEmpty;
public void Enqueue (Tag tag)
{
Queue.Enqueue (tag);
}
public bool Dequeue (out Tag tag)
{
return Queue.TryDequeue (out tag);
}
}
public class ErrorList : Dictionary<string, string>
{
public new void Add (string key, string value)
{
base.Add (key, value);
}
}
public class WebCrawler
{
UrlCache UrlCache = new UrlCache ();
WorkQueue WorkQueue = new WorkQueue ();
int ConcurrencyLevel;
public WebCrawler (string url, bool sameSiteOnly, int concurrencyLevel = 3)
{
BaseUri = new UriBuilder (url).Uri;
Blacklist = new HashSet<string> ();
ErrorList = new ErrorList ();
ConcurrencyLevel = concurrencyLevel;
SameSiteOnly = sameSiteOnly;
}
public Uri BaseUri { get; }
public HashSet<string> Blacklist { get; set; }
public ErrorList ErrorList { get; set; }
public bool SameSiteOnly { get; set; }
public async Task Crawl ()
{
var DownloadChannel = Channel.CreateBounded<Tag> (
new BoundedChannelOptions (3)
{
SingleWriter = true,
SingleReader = false,
});
// Add our root url to the queue
var tag = new Tag (BaseUri, "/", TagType.Anchor);
WorkQueue.Enqueue (tag);
// Using a Semaphore to limit the number of concurrent tasks
SemaphoreSlim downloadSemaphore = new SemaphoreSlim (ConcurrencyLevel, ConcurrencyLevel);
List<Task> downloadTasks = CreateSubscriber (DownloadChannel, downloadSemaphore);
await CreatePublisher (DownloadChannel, downloadSemaphore);
await Task.WhenAll (downloadTasks);
}
private List<Task> CreateSubscriber (Channel<Tag> DownloadChannel, SemaphoreSlim downloadSemaphore)
{
var downloadTasks = new List<Task> ();
for (var i = 0; i < ConcurrencyLevel; i++)
{
int taskId = i;
downloadTasks.Add (Task.Factory.StartNew (async () =>
{
while (await DownloadChannel.Reader.WaitToReadAsync ())
{
if (DownloadChannel.Reader.TryRead (out Tag tag))
{
Trace.WriteLine (string.Format ("{0}: Download [{1}] {2}", taskId, tag.TagType.ToString (), tag.Url));
try
{
string filePath = tag.ToFilePath ();
string directoryName = Path.GetDirectoryName (filePath);
if (!Directory.Exists (directoryName))
{
Directory.CreateDirectory (directoryName);
}
using (var client = new HttpClient ())
{
if (tag.TagType == TagType.Anchor)
{
await DownloadDocumentAsync (taskId, tag, client, filePath);
}
else
{
await DownloadFileAsync (taskId, tag, client, filePath);
}
}
}
catch (Exception ex)
{
Trace.WriteLine (string.Format ("{0}: Error: {1}", taskId, ex.Message));
ErrorList.Add (tag.ChildUrl, ex.Message);
}
finally
{
downloadSemaphore.Release ();
}
}
}
Trace.WriteLine (string.Format ("{0}: Download Channel Complete", taskId));
}, TaskCreationOptions.LongRunning));
}
return downloadTasks;
}
private async Task CreatePublisher (Channel<Tag> DownloadChannel, SemaphoreSlim downloadSemaphore)
{
await Task.Run (async () =>
{
while (true)
{
if (WorkQueue.Dequeue (out Tag work))
{
Trace.WriteLine (string.Format ("Write [{0}] {1}", work.TagType.ToString (), work.Url));
await downloadSemaphore.WaitAsync ();
await DownloadChannel.Writer.WriteAsync (work);
}
else
{
if (downloadSemaphore.CurrentCount == ConcurrencyLevel)
{
Trace.WriteLine ("Queue Empty");
DownloadChannel.Writer.TryComplete ();
return;
}
}
}
});
}
private async Task DownloadDocumentAsync (int taskId, Tag tag, HttpClient client, string filePath)
{
Trace.WriteLine (string.Format ("{0}: Downloading {1} => {2}", taskId, tag.ChildUrl, filePath));
var content = await client.GetStringAsync (tag.Url);
HtmlDocument doc = LoadDocument (content);
using (var fileStream = File.Create (filePath))
{
doc.Save (fileStream);
}
EnqueueUrls (GetAnchors (doc), BaseUri, TagType.Anchor);
EnqueueUrls (GetImages (doc), BaseUri, TagType.Image);
EnqueueUrls (GetLinks (doc), BaseUri, TagType.Link);
}
private void EnqueueUrls (IEnumerable<string> childUrls, Uri parentUri, TagType tagType)
{
foreach (var childUrl in childUrls)
{
try
{
if (Blacklist.Contains (childUrl))
{
continue;
}
var tag = new Tag (parentUri, childUrl, tagType);
if (!UrlCache.Add (tag))
{
continue;
}
if (!tag.IsUrlValid)
{
continue;
}
if (SameSiteOnly && !tag.IsSameSite)
{
continue;
}
Trace.WriteLine (string.Format ("Enqueue [{0}] {1}", tag.TagType.ToString (), tag.Url));
WorkQueue.Enqueue (tag);
}
catch (Exception ex)
{
ErrorList.Add (childUrl, ex.Message);
}
}
}
private static async Task DownloadFileAsync (int taskId, Tag tag, HttpClient client, string filePath)
{
client.MaxResponseContentBufferSize = int.MaxValue; // Go big or go home
Trace.WriteLine (string.Format ("{0}: Downloading {1} => {2}", taskId, tag.ChildUrl, filePath));
using (var inputStream = await client.GetStreamAsync (tag.Url))
{
using (var fileStream = File.Create (filePath))
{
await inputStream.CopyToAsync (fileStream);
}
}
}
private static IEnumerable<string> GetLinks (HtmlDocument doc)
{
var nodes = doc.DocumentNode.SelectNodes ("//link[@rel='stylesheet']");
if (nodes != null)
{
foreach (var node in nodes)
{
// This should only ever return a single value
foreach (var href in node.Attributes.AttributesWithName ("href"))
{
yield return href.Value;
}
}
}
}
private static IEnumerable<string> GetImages (HtmlDocument doc)
{
var nodes = doc.DocumentNode.SelectNodes ("//img");
if (nodes != null)
{
foreach (var node in nodes)
{
// This should only ever return a single value
foreach (var src in node.Attributes.AttributesWithName ("src"))
{
yield return src.Value;
}
}
}
}
private static IEnumerable<string> GetAnchors (HtmlDocument doc)
{
var nodes = doc.DocumentNode.SelectNodes ("//a");
if (nodes != null)
{
foreach (var node in nodes)
{
// This should only ever return a single value
foreach (var href in node.Attributes.AttributesWithName ("href"))
{
yield return href.Value;
}
}
}
}
private static HtmlDocument LoadDocument (string content)
{
HtmlDocument doc = new HtmlDocument ();
doc.LoadHtml (content);
return doc;
}
}
class Program
{
static async Task Main (string[] args)
{
var webCrawler = new WebCrawler (args[0], sameSiteOnly: true);
webCrawler.Blacklist.Add ("/#");
await webCrawler.Crawl ();
}
}
}