-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathListCommand.cs
48 lines (42 loc) · 1.68 KB
/
ListCommand.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
using Ookii.CommandLine;
using Ookii.CommandLine.Commands;
using System.ComponentModel;
namespace NestedCommands;
// A top-level command that lists all the values in the database. Since it inherits from
// BaseCommand, it has a Path argument even though no arguments are defined here
[GeneratedParser]
[Command("list")]
[Description("Lists all students and courses.")]
internal partial class ListCommand : BaseCommand
{
protected override Task<int> RunAsync(Database db, CancellationToken cancellationToken)
{
using var writer = LineWrappingTextWriter.ForConsoleOut();
writer.WriteLine("Students:");
foreach (var (id, student) in db.Students)
{
writer.WriteLine($"{id}: {student.LastName}, {student.FirstName}; major: {student.Major}");
if (student.Courses.Count > 0)
{
writer.Indent = 4;
writer.WriteLine(" Courses:");
foreach (var course in student.Courses)
{
string name = db.Courses.TryGetValue(course.CourseId, out var realCourse)
? realCourse.Name
: $"Unknown ID {course.CourseId}";
writer.WriteLine($"{name}: grade {course.Grade}");
}
writer.Indent = 0;
writer.ResetIndent();
}
}
writer.WriteLine();
writer.WriteLine("Courses:");
foreach (var (id, course) in db.Courses)
{
writer.WriteLine($"{id}: {course.Name}; teacher: {course.Teacher}");
}
return Task.FromResult((int)ExitCode.Success);
}
}