Auto structures in Go

Apollo dc6b2355ba Added current state of POC Astruct (Auto Struct) 1 anno fa
example dc6b2355ba Added current state of POC Astruct (Auto Struct) 1 anno fa
LICENSE 9d5d6042e6 Initial commit 1 anno fa
README.md dc6b2355ba Added current state of POC Astruct (Auto Struct) 1 anno fa
astrut.go dc6b2355ba Added current state of POC Astruct (Auto Struct) 1 anno fa
go.mod dc6b2355ba Added current state of POC Astruct (Auto Struct) 1 anno fa
go.sum dc6b2355ba Added current state of POC Astruct (Auto Struct) 1 anno fa

README.md

astruct

Auto structures in Go

BUGS

  • Currently we assume if 1 type is able to be int64 then we use int64, but it might not be able to (it might actually be float64)
  • Need to fix it so if AssumeStruct is true then we make structures (always), else we only make a structure if the types vary
  • Fix it so if we make a structure (because AssumeStruct is true) then anywhere we'd have the same field use that structure instead
  • Fix numeric structure names when there is no prefix
  • Verify this is valid go code

To Remove

  • UseInterface (because we already expect go1.20.3, rather what we built with) use any rather than interface{} adaptable

Missing Features

  • Build a better WriteFile where it generates each structure then when we do a final WriteFile we merge all that together (basically optimize the WriteFile process so it's cleaner and less huge)

Gothonic

  • Work on breaking down the many complex and huge methods/functions and get a series of smaller methods/functions built
  • Use any instead of interface{}, and drop old versions of Go.