-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement: Alternative approach to avoid reflection on load #448
Open
rafaeljusto
wants to merge
1
commit into
go-gorp:main
Choose a base branch
from
rafaeljusto:enhancement/select-reflection
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Enhancement: Alternative approach to avoid reflection on load #448
rafaeljusto
wants to merge
1
commit into
go-gorp:main
from
rafaeljusto:enhancement/select-reflection
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You can see that we have good improvements regarding memory usage and allocations:
|
Example of a program to generate the required method: package main
import (
"bytes"
"fmt"
"go/ast"
"go/parser"
"go/token"
"log"
"os"
"path/filepath"
"regexp"
"sort"
"strings"
)
var reIgnore = regexp.MustCompile(`gorp_reflection:\s*ignore`)
func main() {
filename := os.Getenv("GOFILE")
fset := token.NewFileSet()
f, err := parser.ParseFile(fset, filename, nil, parser.ParseComments)
if err != nil {
log.Fatal(err)
}
var packageName string
structTypes := make(map[string]*ast.StructType)
structTypeKeys := make([]string, 0)
ignoreStructTypeKeys := make(map[string]struct{}, 0)
ast.Inspect(f, func(n ast.Node) bool {
switch v := n.(type) {
case *ast.File:
packageName = v.Name.Name
case *ast.GenDecl:
if reIgnore.MatchString(v.Doc.Text()) && len(v.Specs) > 0 {
if typeSpec, isTypeSpec := v.Specs[0].(*ast.TypeSpec); isTypeSpec {
ignoreStructTypeKeys[typeSpec.Name.Name] = struct{}{}
}
}
case *ast.TypeSpec:
structType, isStructType := v.Type.(*ast.StructType)
if !isStructType {
return true
}
if _, ok := ignoreStructTypeKeys[v.Name.Name]; !ok {
structTypes[v.Name.Name] = structType
structTypeKeys = append(structTypeKeys, v.Name.Name)
}
}
return true
})
// make sure we always generate the same output
sort.Strings(structTypeKeys)
var buffer bytes.Buffer
fmt.Fprintf(&buffer, "// Code generated by gorp-reflection; DO NOT EDIT.\n\n")
fmt.Fprintf(&buffer, "// Package %s is a package.\n", packageName)
fmt.Fprintf(&buffer, "package %s\n\n", packageName)
fmt.Fprintf(&buffer, "import (\n")
fmt.Fprintf(&buffer, " \"fmt\"\n")
fmt.Fprintf(&buffer, " \"strings\"\n")
fmt.Fprintf(&buffer, ")\n\n")
for _, name := range structTypeKeys {
structType := structTypes[name]
receiver := strings.ToLower(name[:1])
fmt.Fprintf(&buffer, "// DBColumns returns the attribute references of the given columns.\n")
fmt.Fprintf(&buffer, "func (%s *%s) DBColumns(columnNames []string) ([]any, error) {\n", receiver, name)
fmt.Fprintf(&buffer, " var columns []any\n")
fmt.Fprintf(&buffer, " for _, columnName := range columnNames {\n")
fmt.Fprintf(&buffer, " switch strings.ToLower(columnName) {\n")
var embeddedTypes []string
for _, field := range structType.Fields.List {
// embedded types
if len(field.Names) == 0 {
switch fieldType := field.Type.(type) {
case *ast.Ident:
embeddedTypes = append(embeddedTypes, fieldType.Name)
case *ast.SelectorExpr:
embeddedTypes = append(embeddedTypes, fieldType.Sel.Name)
}
continue
}
fmt.Fprintf(&buffer, " case \"%s\":\n", strings.ToLower(field.Names[0].String()))
fmt.Fprintf(&buffer, " columns = append(columns, &%s.%s)\n", receiver, field.Names[0])
}
fmt.Fprintf(&buffer, " default:\n")
fmt.Fprintf(&buffer, " var found bool\n")
if len(embeddedTypes) > 0 {
fmt.Fprintf(&buffer, " var err error\n")
fmt.Fprintf(&buffer, " var embeddedColumns []any\n\n")
}
for _, embeddedType := range embeddedTypes {
fmt.Fprintf(&buffer, " if !found {\n")
fmt.Fprintf(&buffer, " embeddedColumns, err = %s.%s.DBColumns([]string{columnName})\n", receiver, embeddedType)
fmt.Fprintf(&buffer, " if err == nil {\n")
fmt.Fprintf(&buffer, " columns = append(columns, embeddedColumns...)\n")
fmt.Fprintf(&buffer, " found = true\n")
fmt.Fprintf(&buffer, " }\n")
fmt.Fprintf(&buffer, " }\n")
}
fmt.Fprintf(&buffer, " if !found {\n")
fmt.Fprintf(&buffer, " return columns, fmt.Errorf(\"unknown column name: %%s\", columnName)\n")
fmt.Fprintf(&buffer, " }\n")
fmt.Fprintf(&buffer, " }\n")
fmt.Fprintf(&buffer, " }\n")
fmt.Fprintf(&buffer, " return columns, nil\n")
fmt.Fprintf(&buffer, "}\n\n")
}
outputFile := strings.TrimSuffix(filename, filepath.Ext(filename)) + "_gorp_gen" + filepath.Ext(filename)
if err := os.WriteFile(outputFile, buffer.Bytes(), 0644); err != nil {
log.Fatal(err)
}
} Then the required files only need to add the go generate call: //go:generate gorp-reflection |
When loading information from the database gorp uses reflection to identify the field that matches with the returned column name. This search can cause some CPU/memory overhead on large systems. An alternative approach allows the target object to bypass this logic, forwarding the responsability of building the slice of attribute pointers to the caller. For example, the following type would bypass the reflection search with an extra method: ```go type Example struct { FieldA string FieldB int FieldC time.Time } func (e *Example) DBColumns(columnNames []string) ([]interface{}, error) { var columns []interface{} for _, columnName := range columnNames { switch columnName { case "fieldA": columns = append(columns, e.FieldA) case "fieldB": columns = append(columns, e.FieldB) case "fieldC": columns = append(columns, e.FieldC) default: return nil, fmt.Errorf("unknown column name %q", columnName) } } return columns, nil } ``` Furthermore, the application could generate these `DBColumns` methods using `go generate`, keeping it as an automatic plugin code to speed up data loading.
rafaeljusto
force-pushed
the
enhancement/select-reflection
branch
from
August 22, 2023 17:02
feb78c3
to
6977e79
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When loading information from the database gorp uses reflection to identify the field that matches the returned column name. This search can cause some CPU/memory overhead on large systems.
An alternative approach allows the target object to bypass this logic, forwarding the responsibility of building the slice of attribute pointers to the caller.
For example, the following type would bypass the reflection search with an extra method:
Furthermore, the application could generate these
DBColumns
methods usinggo generate
, keeping it as an automatic plugin code to speed up data loading.PS: I've kept the use of
interface{}
instead ofany
to keep compatibility with old compilers.