-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
231 lines (211 loc) · 7.56 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
using System.CommandLine;
using System.Diagnostics;
using Microsoft.Win32.TaskScheduler;
namespace SchtabCommand;
class Program
{
const string NewSchtab = @"# +---------------- Minute (range: 0-59)
# | +------------- Hour (range: 0-23)
# | | +---------- Day of the Month (range: 1-31)
# | | | +------- Month of the Year (range: 1-12)
# | | | | +---- Day of the Week (range: 1-7, 1 standing for Monday)
# | | | | |
# * * * * * cmd [args...]
";
static async Task<int> Main(string[] args)
{
var rootCommand = new RootCommand("schtab sets tasks to Windows Task Scheduler from a text in crontab format.");
var fileArgument = new Argument<FileInfo?>("file", () => null, "File in crontab format, when file is -, read standard input");
var editOption = new Option<bool>("-e", "Edit your schtab");
var listOption = new Option<bool>("-l", "List your schtab");
var remOption = new Option<bool>("--delete", "Delete your schtab");
var regOption = new Option<bool>("--reg", "Register tasks in your schtab at Task Scheduler");
var unregOption = new Option<bool>("--unreg", "Unregister tasks from Task Scheduler");
var schtabOption = new Option<FileInfo>("--schtab", "Path of your schtab file");
schtabOption.SetDefaultValue(new FileInfo(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\schtab"));
rootCommand.AddArgument(fileArgument);
rootCommand.AddOption(editOption);
rootCommand.AddOption(listOption);
rootCommand.AddOption(regOption);
rootCommand.AddOption(unregOption);
rootCommand.AddOption(remOption);
rootCommand.AddOption(schtabOption);
rootCommand.SetHandler((file, edit, list, rem, reg, unreg, schtab) =>
{
if (list)
{
if (!schtab.Exists)
{
Console.Error.WriteLine("No schtab file");
return;
}
Console.Write(File.ReadAllText(schtab.FullName));
return;
}
if (edit)
{
if (!schtab.Exists)
{
File.WriteAllText(schtab.FullName, NewSchtab);
}
try
{
using (var proc = new Process())
{
var editor = (
Environment.GetEnvironmentVariable("VISUAL") ??
Environment.GetEnvironmentVariable("EDITOR") ??
"notepad").Split(new char[0], StringSplitOptions.RemoveEmptyEntries);
proc.StartInfo.FileName = editor[0];
foreach (var arg in editor[1..])
{
proc.StartInfo.ArgumentList.Add(arg);
}
proc.StartInfo.ArgumentList.Add(schtab.FullName);
proc.StartInfo.UseShellExecute = true;
proc.StartInfo.CreateNoWindow = true;
proc.Start();
proc.WaitForExit();
}
registerTasks(schtab.FullName);
}
catch (Exception e)
{
Console.Error.WriteLine(e);
}
return;
}
if (reg)
{
if (!schtab.Exists)
{
Console.Error.WriteLine("No schtab file");
return;
}
registerTasks(schtab.FullName);
return;
}
if (unreg)
{
unregisterTasks();
return;
}
if (rem)
{
if (!schtab.Exists)
{
Console.Error.WriteLine("No schtab file");
return;
}
schtab.Delete();
unregisterTasks();
return;
}
if (file == null)
{
Console.Error.WriteLine("No input file");
return;
}
if (file.Name == "-")
{
File.WriteAllText(schtab.FullName, Console.In.ReadToEnd());
}
else if (file.Exists)
{
File.WriteAllText(schtab.FullName, File.ReadAllText(file.FullName));
}
else
{
Console.Error.WriteLine($"Could not find file \"{file.Name}\"");
return;
}
registerTasks(schtab.FullName);
}, fileArgument, editOption, listOption, remOption, regOption, unregOption, schtabOption);
return await rootCommand.InvokeAsync(args);
}
internal static void registerTasks(string file)
{
try
{
Task.UnregisterAll();
var tasks = new List<Task>();
var tn = "";
foreach (var l in File.ReadLines(file))
{
var trimmed = l.Trim();
if (trimmed.StartsWith('#'))
{
tn = trimmed.Substring(1).Trim();
}
else if (trimmed != "")
{
if (tn == "" || tn.IndexOfAny(Path.GetInvalidFileNameChars()) != -1)
{
tn = "Task" + (tasks.Count + 1).ToString("D3");
}
tasks.Add(new Task(tn, trimmed));
tn = "";
}
}
foreach (var t in tasks)
{
t.Register();
}
Console.WriteLine("schtab registered your tasks at Task Scheduler");
}
catch (Exception e)
{
Console.Error.WriteLine(e);
}
}
internal static void unregisterTasks()
{
try
{
Task.UnregisterAll();
Console.WriteLine("schtab unregistered all your tasks from Task Scheduler");
}
catch (Exception e)
{
Console.Error.WriteLine(e);
}
}
}
class Task
{
private static readonly string rootPath = "schtab";
private static readonly string userPath = Environment.UserName + "@" + Environment.UserDomainName;
public static void UnregisterAll()
{
try
{
var tf = TaskService.Instance.RootFolder.SubFolders[rootPath].SubFolders[userPath];
foreach (var t in tf.AllTasks)
{
tf.DeleteTask(t.Name);
}
}
catch { }
}
private readonly string path;
private readonly Trigger trigger;
private readonly ExecAction action;
public Task(string name, string cron)
{
var args = cron.Split(new char[0], 7, StringSplitOptions.RemoveEmptyEntries);
path = rootPath + @"\" + userPath + @"\" + name;
trigger = Trigger.FromCronFormat(String.Join(' ', args, 0, 5))[0];
if (args.Length == 6)
{
action = new ExecAction(args[5]);
}
else
{
action = new ExecAction(args[5], args[6]);
}
}
public void Register()
{
TaskService.Instance.AddTask(path, trigger, action);
}
}