GeneratorCmd.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System.ComponentModel;
  2. using ClosedXML.Excel;
  3. using CodeGenerators;
  4. using ExcelInfo;
  5. using Spectre.Cli;
  6. namespace GeneratorForExcelORM;
  7. internal sealed class GeneratorCmd : Command<GeneratorCmd.Settings>
  8. {
  9. public sealed class Settings : CommandSettings
  10. {
  11. [Description("Path to XLSX file.")]
  12. [CommandArgument(0, "[inputPath]")]
  13. public string? InputPath { get; init; }
  14. [Description("Start from n row. Default 1.")]
  15. [DefaultValue((uint)1)]
  16. [CommandOption("-s|--startFrom")]
  17. public uint StartFrom { get; init; }
  18. }
  19. private static string GetType(XLDataType type) =>
  20. type switch
  21. {
  22. XLDataType.Number => "double?",
  23. XLDataType.Text => "string?",
  24. XLDataType.DateTime => "DateTime?",
  25. XLDataType.TimeSpan => "TimeSpan?",
  26. _ => throw new Exception($"Can't match {type}!")
  27. };
  28. private static void GenerateRecord(WorksheetRecord worksheet, string outputFolder, string filename)
  29. {
  30. var recordObject = new ClassRecordGenerator(filename, worksheet.Name, true);
  31. var outputPath = Path.Combine(outputFolder, $"{recordObject.Name}.cs");
  32. recordObject.Usings.Add("ExcelORM");
  33. foreach (var column in worksheet.Columns)
  34. {
  35. if (string.IsNullOrWhiteSpace(column.Name)) continue;
  36. var propertyObject = new Property(column.Name, GetType(column.Type));
  37. propertyObject.Attributes.Add(new AttributeElement("Column", column.Name));
  38. if (!recordObject.Properties.TryAdd(propertyObject.Name, propertyObject))
  39. Console.Error.WriteLine($"Duplicated property {propertyObject.Name}!");
  40. }
  41. File.WriteAllText(outputPath, recordObject.Build());
  42. }
  43. private static void Generate(Settings settings)
  44. {
  45. if (string.IsNullOrWhiteSpace(settings.InputPath)) return;
  46. var worksheetsInfo = WorkbookInfo.GetInfoOnWorksheets(settings.InputPath, settings.StartFrom).ToArray();
  47. if (worksheetsInfo.Length == 0) throw new Exception("Nothing to process!");
  48. var outputFolder = Path.GetDirectoryName(settings.InputPath);
  49. if (string.IsNullOrWhiteSpace(outputFolder))
  50. throw new Exception($"Can't establish folder from {settings.InputPath}!");
  51. var filename = Path.GetFileNameWithoutExtension(settings.InputPath);
  52. foreach(var worksheet in worksheetsInfo)
  53. GenerateRecord(worksheet, outputFolder, filename);
  54. }
  55. public override int Execute(CommandContext context, Settings settings)
  56. {
  57. if (!File.Exists(settings.InputPath)) throw new FileNotFoundException(settings.InputPath);
  58. Generate(settings);
  59. return 0;
  60. }
  61. }