autostruct.go 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. package autostruct
  2. import (
  3. "fmt"
  4. "os"
  5. )
  6. // Generates structures given json
  7. //
  8. // Can also be used to generate structures via go code
  9. type AutoStruct struct {
  10. StructName string // Name to prefix to all structures generated
  11. PackageName string // Package to assign the new go file
  12. FileName string // The name to assign the new go file
  13. File *os.File // Access to the new go file (writer)
  14. }
  15. //
  16. func (a *AutoStruct) Init(fname, packname, structname string) error {
  17. a.StructName = structname
  18. a.FileName = fname
  19. a.PackageName = packname
  20. if !FileExists(a.FileName + ".go") {
  21. var err error
  22. a.File, err = os.Create(a.FileName + ".go")
  23. if err != nil {
  24. return err
  25. }
  26. } else {
  27. return fmt.Errorf("file already exists, update mode is not yet implemented")
  28. }
  29. return nil
  30. }
  31. // Places the package name defined in the init
  32. func (a *AutoStruct) PlacePackageName() {
  33. a.File.Write([]byte("package " + a.PackageName + "\n"))
  34. }
  35. // In cases where you use a specific type from another module
  36. //
  37. // Don't forget to call EndImports() to close this, go will be cranky
  38. func (a *AutoStruct) StartImports() {
  39. a.File.Write([]byte("import (\n"))
  40. }
  41. // Adds a unambiguous import
  42. //
  43. // Use AddAliasImport() for 'alias "import"'
  44. func (a *AutoStruct) AddImport(importname string) {
  45. a.File.Write([]byte("\t\"" + importname + "\"\n"))
  46. }
  47. // Adds an aliased import
  48. //
  49. // Ex door "red-gree.com/door"
  50. //
  51. // Use AddImport() for a unambiguous import
  52. func (a *AutoStruct) AddAliasImport(importalias, importname string) {
  53. a.File.Write([]byte("\t" + importalias + " \"" + importname + "\"\n"))
  54. }
  55. // Closes the import statement
  56. func (a *AutoStruct) EndImports() {
  57. a.File.Write([]byte(")\n"))
  58. }
  59. // Begins a structure
  60. func (a *AutoStruct) StartStruct(structname string) {
  61. a.File.Write([]byte("type " + a.StructName + structname + " struct {\n"))
  62. }
  63. // Adds a field to the structure
  64. //
  65. // Ex Name string
  66. //
  67. // Use AddCommentField() to add a comment with the field
  68. //
  69. // Use AddJsonField() to add a json tag with the field
  70. //
  71. // Use AddJsonCommentField() to add a json tag and a comment
  72. func (a *AutoStruct) AddField(fieldname, fieldtype string) {
  73. a.File.Write([]byte("\t" + fieldname + " " + fieldtype + "\n"))
  74. }
  75. // Adds a field to the structure (includes a comment about the field)
  76. //
  77. // Ex Name string // The BBS user name
  78. //
  79. // Use AddField() to add a field without a comment or json tag
  80. //
  81. // Use AddJsonCommentField() to add a field with a comment and a json tag
  82. //
  83. // Use AddJsonField() to add a field with a json tag but no comment
  84. func (a *AutoStruct) AddCommentField(fieldname, fieldtype, comment string) {
  85. a.File.Write([]byte("\t" + fieldname + " " + fieldtype + " // " + comment + "\n"))
  86. }
  87. // Adds a field to the structure (includes a json tag)
  88. //
  89. // Ex Name string `json:"name"`
  90. //
  91. // Use json tag "-" to mark fields to not be in json's marshal or unmarshal process
  92. //
  93. // Use AddField() to add a field without a comment or json tag
  94. //
  95. // Use AddCommentField() to add a field without a json tag but with a comment
  96. //
  97. // Use AddJsonCommentField() to add a field with a json tag and a comment
  98. func (a *AutoStruct) AddJsonField(fieldname, fieldtype, jsonname string) {
  99. a.File.Write([]byte("\t" + fieldname + " " + fieldtype + " `json:\"" + jsonname + "\"`\n"))
  100. }
  101. // Adds a field to the structure (includes both a json tag and a comment)
  102. //
  103. // Ex Name string `json:"name"` // The BBS user name
  104. //
  105. // Use json tag "-" to mark fields to not be in json's marshal or unmarshal process
  106. //
  107. // Use AddJsonField() to add a field with a json tag but no comment
  108. //
  109. // Use AddField() to add a field without a comment or json tag
  110. //
  111. // Use AddCommentField() to add a field with a comment but no json tag
  112. func (a *AutoStruct) AddJsonCommentField(fieldname, fieldtype, jsonname, comment string) {
  113. a.File.Write([]byte("\t" + fieldname + " " + fieldtype + " `json:\"" + jsonname + "\"` // " + comment + "\n"))
  114. }
  115. // Ends/Closes the structure
  116. func (a *AutoStruct) EndStruct() {
  117. a.File.Write([]byte("}\n"))
  118. }
  119. // Adds some space between things
  120. func (a *AutoStruct) Newline() {
  121. a.File.Write([]byte("\n"))
  122. }
  123. // Adds a single line comment
  124. func (a *AutoStruct) Comment(comment string) {
  125. a.File.Write([]byte("// " + comment + "\n"))
  126. }
  127. // Closes the newly formed go file
  128. func (a *AutoStruct) Close() {
  129. a.File.Close()
  130. }