forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDownload.cs
682 lines (572 loc) · 25.5 KB
/
Download.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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Net.Security;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using log4net;
namespace MissionPlanner.Utilities
{
public class DownloadStream : Stream
{
private long _length;
string _uri = "";
public int chunksize { get; set; } = 1000 * 250;
static HttpClient client = new HttpClient();
private static object _lock = new object();
/// <summary>
/// static global cache of instance cache
/// </summary>
static readonly Dictionary<string, Dictionary<long, MemoryStream>> _cacheChunks = new Dictionary<string, Dictionary<long, MemoryStream>>();
/// <summary>
/// instances
/// </summary>
static readonly List<DownloadStream> _instances = new List<DownloadStream>();
/// <summary>
/// per instance cache
/// </summary>
Dictionary<long,MemoryStream> _chunks = new Dictionary<long, MemoryStream>();
DateTime _lastread = DateTime.MinValue;
static void expireCache()
{
List<string> seen = new List<string>();
lock (_lock)
{
foreach (var downloadStream in _instances.ToArray())
{
// only process a uri once
if (seen.Contains(downloadStream._uri))
continue;
seen.Add(downloadStream._uri);
// total instances with this uri
var uris = _instances.Where(a => { return a._uri == downloadStream._uri; });
// total instance with thsi uri and old lastread
var uridates = _instances.Where(a =>
{
return a._uri == downloadStream._uri && a._lastread < DateTime.Now.AddSeconds(-180);
});
// check if they are equal and expire
if (uris.Count() == uridates.Count())
{
_cacheChunks.Remove(downloadStream._uri);
foreach (var uridate in uridates.ToArray())
{
_instances.Remove(uridate);
}
}
}
}
}
private static Timer _timer;
static DownloadStream()
{
_timer = new Timer(a => { expireCache(); }, null, 1000 * 30, 1000 * 30);
if (!String.IsNullOrEmpty(Settings.Instance.UserAgent))
client.DefaultRequestHeaders.Add("User-Agent", Settings.Instance.UserAgent);
}
public DownloadStream(string uri)
{
_uri = uri;
SetLength(Download.GetFileSize(uri));
lock (_lock)
{
_instances.Add(this);
if (_cacheChunks.ContainsKey(uri))
{
_chunks = _cacheChunks[uri];
}
else
{
_cacheChunks[uri] = _chunks;
}
}
}
public override void Flush()
{
}
public override int Read(byte[] buffer, int offset, int count)
{
_lastread = DateTime.Now;
var start = Position;
var end = start + count;
// return data
// check to see if this spans a chunk
getAllData(start, end);
var bytestoget = count;
var bytesgot = 0;
//var leftinchunk = Position % chunksize == 0 ? chunksize : chunksize - (Position % chunksize);
//bytesgot += Read(buffer, offset + bytesgot, (int)Math.Min(bytestoget - bytesgot, leftinchunk));
//while (bytesgot < bytestoget)
{
var chunk = ChunkThatHasOffset(Position);
var positioninchunk = Position - chunk.Key;
var chunkleft = chunk.Value.Length - positioninchunk;
var maxcount = (int)Math.Min(chunkleft, count);
lock (chunk.Value)
{
chunk.Value.Position = positioninchunk;
chunk.Value.Read(buffer, offset, maxcount);
}
//Array.Copy(chunk.Value.ToArray(), positioninchunk, buffer, offset, maxcount);
bytesgot += maxcount;
offset += maxcount;
Position += maxcount;
}
if (bytesgot < bytestoget)
bytesgot += Read(buffer, offset, bytestoget - bytesgot);
return bytesgot;
}
public bool getAllData(long start, long end)
{
if (chunksize < 1024 * 2)
chunksize = 1024 * 2;
var chunkThatHasOurStart = ChunkThatHasOffset(start);
if (chunkThatHasOurStart.Value == null)
{
// get it all
GetChunk(start);
return true;
}
var targetpos = chunkThatHasOurStart.Key + chunkThatHasOurStart.Value.Length;
while (targetpos < end)
{
var chunk = ChunkThatHasOffset(targetpos);
if (chunk.Value == null)
{
// get it all
GetChunk(targetpos);
chunk = ChunkThatHasOffset(targetpos);
}
targetpos += chunk.Value.Length;
}
return true;
}
private KeyValuePair<long, MemoryStream> ChunkThatHasOffset(long offset)
{
lock (_lock)
{
return _chunks.FirstOrDefault(a => a.Key <= offset && a.Key + a.Value.Length > offset);
}
}
private static List<string> gettingChunk = new List<string>();
private static object gettingChunkLock = new object();
private void GetChunk(long start)
{
var key = _uri.ToLower() + "-" + start;
try
{
var test = false;
do
{
lock (gettingChunkLock)
{
// see if we are already getting it
test = gettingChunk.Contains(key);
if (!test)
{
gettingChunk.Add(key);
break;
}
}
Thread.Sleep(50);
} while (test);
// we have it already
if (_chunks.ContainsKey(start))
return;
var end = Math.Min(Length, start + chunksize);
// cache it
var request = new HttpRequestMessage() {RequestUri = new Uri(_uri)};
request.Headers.Range = new RangeHeaderValue(start, end);
Console.WriteLine("{0}: {1} - {2} {3}", _uri, start, end, end-start);
MemoryStream ms = new MemoryStream();
using (Stream stream = client.SendAsync(request).GetAwaiter().GetResult().Content.ReadAsStreamAsync().GetAwaiter().GetResult())
{
stream.CopyTo(ms);
lock (_lock)
{
_chunks[start] = ms;
}
}
}
finally
{
lock (gettingChunkLock)
{
gettingChunk.Remove(key);
}
}
}
public override long Seek(long offset, SeekOrigin origin)
{
//Console.WriteLine("Seek: {0} {1}", offset, origin);
if (origin == SeekOrigin.Begin)
Position = offset;
else if (origin == SeekOrigin.Current)
Position += offset;
else if (origin == SeekOrigin.End)
Position = Length + offset;
return Position;
}
public override void SetLength(long value)
{
_length = value;
}
public override void Write(byte[] buffer, int offset, int count)
{
throw new NotSupportedException("No write");
}
public override bool CanRead { get; } = true;
public override bool CanSeek { get; } = true;
public override bool CanWrite { get; } = false;
public override long Length
{
get { return _length; }
}
public override long Position { get; set; }
}
public class Download
{
private static readonly ILog log =
LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
public static async Task<string> PostAsync(string uri, string data)
{
var httpClient = new HttpClient();
var response = await httpClient.PostAsync(uri, new StringContent(data));
response.EnsureSuccessStatusCode();
string content = await response.Content.ReadAsStringAsync();
return await Task.Run(() => (content));
}
public static async Task<string> GetAsync(string uri)
{
var httpClient = new HttpClient();
var content = await httpClient.GetStringAsync(uri);
return await Task.Run(() => (content));
}
public static event EventHandler<HttpRequestMessage> RequestModification;
public static async Task<bool> getFilefromNetAsync(string url, string saveto, Action<int, string> status = null)
{
try
{
log.Info("Get " + url);
var request = new HttpRequestMessage(HttpMethod.Get, url);
RequestModification?.Invoke(url, request);
using (var response = await client.SendAsync(request).ConfigureAwait(false))
{
lock (log)
log.Info(url + " " +(response).StatusCode.ToString());
if ((response).StatusCode != HttpStatusCode.OK)
return false;
if (File.Exists(saveto))
{
DateTime lastfilewrite = new FileInfo(saveto).LastWriteTime;
DateTime lasthttpmod = response.Content.Headers.LastModified.HasValue
? response.Content.Headers.LastModified.Value.DateTime
: DateTime.MinValue;
if (lasthttpmod < lastfilewrite)
{
if ((response).Content.Headers.ContentLength == new FileInfo(saveto).Length)
{
lock (log)
log.Info(url + " " + "got LastModified " + saveto + " " +
(response).Content.Headers.LastModified +
" vs " + new FileInfo(saveto).LastWriteTime);
response.Dispose();
return true;
}
}
}
int size = 0;
using (Stream resstream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false))
using (FileStream fs = new FileStream(saveto + ".new", FileMode.Create))
{
byte[] buf1 = new byte[1024];
DateTime lastupdate = DateTime.MinValue;
DateTime starttime = DateTime.Now;
var contlen = response.Content.Headers.ContentLength;
while (resstream.CanRead)
{
int len = await resstream.ReadAsync(buf1, 0, 1024).ConfigureAwait(false);
if (len == 0)
break;
fs.Write(buf1, 0, len);
size += len;
var elapsed = (DateTime.Now - starttime).TotalSeconds;
var percent = ((size / (float) contlen) * 100.0f);
if (lastupdate.Second != DateTime.Now.Second)
{
lastupdate = DateTime.Now;
log.InfoFormat("{0} bps {1} {2}s {3}% of {4} \r", size / elapsed, size, elapsed,
percent, contlen);
var timeleft = TimeSpan.FromSeconds(((elapsed / percent) * (100 - percent)));
status?.Invoke((int) percent,
"Downloading.. ETA: " +
//DateTime.Now.AddSeconds(((elapsed / percent) * (100 - percent))).ToShortTimeString()
formatTimeSpan(timeleft)
);
}
}
fs.Flush();
fs.Close();
}
log.Info("Got " + url + " " + size);
if (File.Exists(saveto))
{
// try prevent System.UnauthorizedAccessException: Access to the path
GC.Collect();
File.SetAttributes(saveto, FileAttributes.Normal);
File.Delete(saveto);
}
File.Move(saveto + ".new", saveto);
return true;
}
}
catch (Exception ex)
{
lock (log)
log.Info("getFilefromNetAsync(): " + ex.ToString());
return false;
}
}
static Download()
{
if (!String.IsNullOrEmpty(Settings.Instance.UserAgent))
client.DefaultRequestHeaders.Add("User-Agent", Settings.Instance.UserAgent);
}
static HttpClient client = new HttpClient();
public static bool getFilefromNet(string url, string saveto, Action<int, string> status = null)
{
try
{
lock (log)
log.Info(url);
// Create a request using a URL that can receive a post.
WebRequest request = WebRequest.Create(url);
if (!String.IsNullOrEmpty(Settings.Instance.UserAgent))
((HttpWebRequest)request).UserAgent = Settings.Instance.UserAgent;
request.Timeout = 10000;
// Set the Method property of the request to POST.
request.Method = "GET";
// Get the response.
WebResponse response = request.GetResponse();
// Display the status.
lock (log)
log.Info(((HttpWebResponse)response).StatusDescription);
if (((HttpWebResponse)response).StatusCode != HttpStatusCode.OK)
return false;
if (File.Exists(saveto))
{
DateTime lastfilewrite = new FileInfo(saveto).LastWriteTime;
DateTime lasthttpmod = ((HttpWebResponse)response).LastModified;
if (lasthttpmod < lastfilewrite)
{
if (((HttpWebResponse)response).ContentLength == new FileInfo(saveto).Length)
{
lock (log)
log.Info("got LastModified " + saveto + " " + ((HttpWebResponse)response).LastModified +
" vs " + new FileInfo(saveto).LastWriteTime);
response.Close();
return true;
}
}
}
// Get the stream containing content returned by the server.
Stream dataStream = response.GetResponseStream();
long bytes = response.ContentLength;
long contlen = bytes;
byte[] buf1 = new byte[1024];
if (!Directory.Exists(Path.GetDirectoryName(saveto)))
Directory.CreateDirectory(Path.GetDirectoryName(saveto));
FileStream fs = new FileStream(saveto + ".new", FileMode.Create);
DateTime lastupdate = DateTime.MinValue;
DateTime starttime = DateTime.Now;
int got = 0;
while (dataStream.CanRead && bytes > 0)
{
int len = dataStream.Read(buf1, 0, buf1.Length);
bytes -= len;
got += len;
fs.Write(buf1, 0, len);
var elapsed = (DateTime.Now - starttime).TotalSeconds;
var percent = ((got / (float)contlen) * 100.0f);
if (lastupdate.Second != DateTime.Now.Second)
{
lastupdate = DateTime.Now;
Console.WriteLine("{0} bps {1} {2}s {3}% of {4} \r", got / elapsed, got, elapsed,
percent, contlen);
var timeleft = TimeSpan.FromSeconds(((elapsed / percent) * (100 - percent)));
status?.Invoke((int)percent,
"Downloading.. ETA: " +
//DateTime.Now.AddSeconds(((elapsed / percent) * (100 - percent))).ToShortTimeString()
formatTimeSpan(timeleft)
);
}
}
fs.Close();
dataStream.Close();
response.Close();
if (File.Exists(saveto))
{
File.Delete(saveto);
}
File.Move(saveto + ".new", saveto);
return true;
}
catch (Exception ex)
{
lock (log)
log.Info("getFilefromNet(): " + ex.ToString());
return false;
}
}
public static async Task<bool> CheckHTTPFileExistsAsync(string url)
{
return await Task.Run(() =>
{
return CheckHTTPFileExists(url);
});
}
public static bool CheckHTTPFileExists(string url)
{
bool result = false;
Uri uri;
Uri.TryCreate(url, UriKind.Absolute, out uri);
if (url == null || url == "" || uri == null)
return false;
WebRequest webRequest = WebRequest.Create(url);
if (!String.IsNullOrEmpty(Settings.Instance.UserAgent))
((HttpWebRequest)webRequest).UserAgent = Settings.Instance.UserAgent;
webRequest.Timeout = 10000; // miliseconds
webRequest.Method = "HEAD";
HttpWebResponse response = null;
try
{
response = (HttpWebResponse)webRequest.GetResponse();
result = true;
}
catch
{
}
finally
{
if (response != null)
{
response.Close();
}
}
return result;
}
//https://stackoverflow.com/questions/13606523/retrieving-partial-content-using-multiple-http-requsets-to-fetch-data-via-parlle
public static void ParallelDownloadFile(string uri, string filePath, int chunkSize = 0, Action<int,string> status = null)
{
if (uri == null)
throw new ArgumentNullException("uri");
// determine file size first
long size = GetFileSize(uri);
if (chunkSize == 0)
chunkSize = 1024 * 1024 * 10;
using (FileStream file = new FileStream(filePath, FileMode.Create, FileAccess.Write, FileShare.Write))
{
file.SetLength(size); // set the length first
var starttime = DateTime.Now;
var got = 0L;
DateTime lastupdate = DateTime.MinValue;
object syncObject = new object(); // synchronize file writes
Parallel.ForEach(LongRange(0, 1 + size / chunkSize), new ParallelOptions { MaxDegreeOfParallelism = 3 }, (start) =>
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
if (!String.IsNullOrEmpty(Settings.Instance.UserAgent))
((HttpWebRequest)request).UserAgent = Settings.Instance.UserAgent;
var minrange = start * chunkSize;
var maxrange = Math.Min(start * chunkSize + chunkSize - 1, size);
request.AddRange(minrange, maxrange);
log.Info(String.Format("chunk {0} {1} {2}-{3}", start, uri, minrange, maxrange));
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
log.Info(start + " " + uri + " " + response.StatusCode + " " + response.ContentLength);
if (response.StatusCode != HttpStatusCode.PartialContent && start != 0)
{
// fallback to single connection;
response.Close();
return;
}
using (Stream stream = response.GetResponseStream())
{
byte[] array = new byte[1024 * 80];
int count;
while ((count = stream.Read(array, 0, array.Length)) != 0)
{
lock (syncObject)
{
file.Seek(minrange, SeekOrigin.Begin);
file.Write(array, 0, count);
got += count;
minrange += count;
var elapsed = (DateTime.Now - starttime).TotalSeconds;
var percent = ((got / (float) size) * 100.0f);
if (lastupdate.Second != DateTime.Now.Second)
{
lastupdate = DateTime.Now;
Console.WriteLine("{0} bps {1} {2}s {3}% of {4} \r", got / elapsed, got, elapsed,
percent, size);
var timeleft = TimeSpan.FromSeconds(((elapsed / percent) * (100 - percent)));
status?.Invoke((int) percent,
"Downloading.. ETA: " +
//DateTime.Now.AddSeconds(((elapsed / percent) * (100 - percent))).ToShortTimeString()
formatTimeSpan(timeleft)
);
}
}
}
}
});
status?.Invoke(100, "Complete");
}
}
private static string formatTimeSpan(TimeSpan timeleft)
{
if (timeleft.TotalHours >= 1)
return timeleft.TotalHours.ToString("0.0") + " Hours";
if (timeleft.TotalSeconds >= 60)
return timeleft.Minutes + ":" + timeleft.Seconds.ToString("00") + " Minutes";
return timeleft.Seconds + " Seconds";
}
static Dictionary<string,long> fileSizeCache = new Dictionary<string, long>();
public static long GetFileSize(string uri)
{
if (uri == null)
throw new ArgumentNullException("uri");
lock (fileSizeCache)
{
if (fileSizeCache.ContainsKey(uri) && fileSizeCache[uri] > 0)
return fileSizeCache[uri];
HttpWebRequest request = (HttpWebRequest) WebRequest.Create(uri);
if (!String.IsNullOrEmpty(Settings.Instance.UserAgent))
((HttpWebRequest) request).UserAgent = Settings.Instance.UserAgent;
request.Method = "GET";
HttpWebResponse response = (HttpWebResponse) request.GetResponse();
var len = response.ContentLength;
response.Close();
fileSizeCache[uri] = len;
return len;
}
}
private static IEnumerable<long> LongRange(long start, long count)
{
long i = 0;
while (true)
{
if (i >= count)
{
yield break;
}
yield return start + i;
i++;
}
}
}
}