-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPercentProgressDisplay.cs
60 lines (52 loc) · 1.51 KB
/
PercentProgressDisplay.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
using System;
using System.IO;
using System.Security;
namespace PneumaticTube
{
internal class PercentProgressDisplay : IProgress<long>
{
private readonly bool _consoleCanReportProgress;
private readonly long _fileSize;
public PercentProgressDisplay(long fileSize)
{
_fileSize = fileSize;
_consoleCanReportProgress = true;
try
{
// This will throw an exception if we're running in ISE
var top = Console.CursorTop;
}
catch(SecurityException)
{
// No permission to mess with the console,
_consoleCanReportProgress = false;
}
catch(IOException)
{
// This console doesn't allow position setting
_consoleCanReportProgress = false;
}
}
public void Report(long value)
{
long percent = 0;
if(_fileSize > 0)
{
percent = 100*value/_fileSize;
}
if(_consoleCanReportProgress)
{
Console.SetCursorPosition(0, Console.CursorTop);
Console.Write($"{percent}% complete.");
}
if(percent >= 100)
{
if(!_consoleCanReportProgress)
{
Console.Write($"{percent}% complete.");
}
Console.Write("\n");
}
}
}
}