-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConsoleTools.cs
140 lines (119 loc) · 4.06 KB
/
ConsoleTools.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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text.RegularExpressions;
using LightNovelSniffer.Config;
using LightNovelSniffer.Libs;
using LightNovelSniffer_CLI.Resources;
namespace LightNovelSniffer_CLI
{
internal class ConsoleTools : IInput, IOutput
{
private bool isProgressOngoing = false;
private int defaultIndentation = 1;
private List<TextWriter> fileWriters;
public ConsoleTools(TextWriter fileWriter, int defaultIndentation)
: this(new List<TextWriter> {fileWriter}, defaultIndentation)
{
}
public ConsoleTools(List<TextWriter> fileWriters, int defaultIndentation)
{
this.defaultIndentation = defaultIndentation;
this.fileWriters = fileWriters;
}
private void CheckProgress()
{
if (isProgressOngoing)
{
Write("\r\n");
isProgressOngoing = false;
}
}
private void WriteToStream(string str)
{
foreach (TextWriter sw in fileWriters)
{
sw.Write(str);
}
}
internal void Write(string str)
{
WriteToStream(str);
Console.Out.Write(str);
}
private void OutputString(string str)
{
string output = DateTime.Now.ToString(CultureInfo.CurrentCulture.DateTimeFormat.LongTimePattern) + " : " +
str;
Write(output);
}
private string Indent(string text, int tab)
{
while (tab > 1)
{
text = " " + text;
tab--;
}
return text;
}
public void Log(string text, int tab)
{
CheckProgress();
OutputString(Indent(text, tab) + "\r\n");
}
public void Progress(string text, int tab)
{
isProgressOngoing = true;
Write("\r" + DateTime.Now.ToString(CultureInfo.CurrentCulture.DateTimeFormat.LongTimePattern) + " : " +
Indent(text, tab));
}
public void Log(string text)
{
Log(text, defaultIndentation);
}
public void Progress(string text)
{
Progress(text, defaultIndentation);
}
public bool Ask(string question)
{
string input =
AskInformation(question + " " + LightNovelSniffer_CLI_Strings.AskQuestionChoicesPositiveAnswer.ToUpper() +
"/" + LightNovelSniffer_CLI_Strings.AskQuestionChoicesNegativeAnswer.ToLower());
return input != null &&
!input.ToUpper().Equals(LightNovelSniffer_CLI_Strings.AskQuestionChoicesNegativeAnswer.ToUpper());
}
public string AskInformation(string question)
{
if (!Globale.INTERACTIVE_MODE)
return "";
CheckProgress();
OutputString(question + " ");
string input = Console.ReadLine();
WriteToStream(input + "\r\n");
return input;
}
public string AskUrl(string question)
{
string url = AskInformation(question);
if (string.IsNullOrEmpty(url))
return null;
url = url.TrimEnd('/');
while (Regex.Match(url, @"\d$").Success)
{
url = url.Substring(0, url.Length - 1);
}
return url + "{0}";
}
public bool AskNegative(string question)
{
string input =
AskInformation(question + " " + LightNovelSniffer_CLI_Strings.AskQuestionChoicesPositiveAnswer.ToLower() +
"/" + LightNovelSniffer_CLI_Strings.AskQuestionChoicesNegativeAnswer.ToUpper());
return
!(string.IsNullOrEmpty(input) ||
input.ToUpper().Equals(LightNovelSniffer_CLI_Strings.AskQuestionChoicesNegativeAnswer.ToUpper()));
}
}
}