DbStruct2ClassProcess.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace inter\gen;
  3. use inter\mysqlStruct\Database;
  4. use inter\phpStruct\Attr;
  5. use inter\phpStruct\Field2Attr;
  6. use inter\phpStruct\File;
  7. use inter\phpStruct\Func;
  8. use inter\phpStruct\PHPClass;
  9. use inter\phpStruct\Table2PHPClass;
  10. use inter\utils\Mkdir;
  11. use inter\utils\Names;
  12. class DbStruct2ClassProcess
  13. {
  14. private Database $database;
  15. /** @var File[] */
  16. private array $files;
  17. /** @var ProcessConfig */
  18. public ProcessConfig $config;
  19. public string $filePath = "";
  20. public function __construct(ProcessConfig $config, Database $database)
  21. {
  22. $this->database = $database;
  23. $this->config = $config;
  24. }
  25. /**
  26. * @return File[]
  27. */
  28. public function GetFiles(): array
  29. {
  30. if (empty($this->files)) {
  31. $this->database2file();
  32. }
  33. return $this->files;
  34. }
  35. /**
  36. * 数据库转文件
  37. */
  38. private function database2file()
  39. {
  40. $mkdir = new Mkdir($this->config->savePath . "/" . $this->config->GetNamespace());
  41. $mkdir->mkdirByNamespace();
  42. $this->filePath = $mkdir->Namespace2Path();
  43. foreach ($this->database->GetTables() as $table) {
  44. $class = new Table2PHPClass();
  45. $class->SetTable($table)->SetClassName($this->tableName2fileName($table->GetName()))
  46. ->SetExtends($this->config->extends);
  47. $file = new File();
  48. $file->SetPath($this->filePath);
  49. $file->SetFileName($class->GetClassName())
  50. ->SetNamespace($this->config->GetNamespace())
  51. ->AddClass($class)->SetUses($this->config->getUses());
  52. foreach ($table->GetColumns() as $column) {
  53. $attr = new Field2Attr();
  54. $attr->SetColumn($column)->SetName($this->fieldName2AttrName($column->GetName()));
  55. $class->AddAttr($attr);
  56. if ($this->config->isHasGetFunc) {
  57. $func = new Func();
  58. $func->SetName("get" . Names::Camelize($column->GetName()));
  59. $class->AddFunc($func);
  60. }
  61. if ($this->config->isHasSetFunc) {
  62. $func = new Func();
  63. $func->SetName("get" . Names::Camelize($column->GetName()));
  64. $class->AddFunc($func);
  65. }
  66. }
  67. $this->files[] = $file;
  68. }
  69. }
  70. /**
  71. * 表名称转文件名称
  72. */
  73. private function tableName2fileName(string $tableName): string
  74. {
  75. return $this->config->fileNamePrefix . ucfirst(Names::Camelize($tableName)) . $this->config->fileNameSuffix;
  76. }
  77. /**
  78. * 表字段转类属性
  79. */
  80. private function fieldName2AttrName(string $fieldName): string
  81. {
  82. return ucfirst(Names::Camelize($fieldName));
  83. }
  84. }