2016-08-12 08:16:06 +02:00
{ { - if . Table . IsJoinTable - } }
2016-08-21 08:28:47 +02:00
{ { - else - } }
2016-08-12 08:16:06 +02:00
{ { - $dot : = . - } }
{ { - range . Table . ToManyRelationships - } }
2016-08-16 09:30:08 +02:00
{ { - if ( and . ForeignColumnUnique ( not . ToJoinTable ) ) - } }
2016-08-29 18:36:07 +02:00
{ { - $txt : = textsFromOneToOneRelationship $dot.PkgName $dot.Tables $dot.Table . - } }
{ { - template "relationship_to_one_eager_helper" ( preserveDot $dot $txt ) - } }
2016-08-12 08:16:06 +02:00
{ { - else - } }
2016-09-01 05:33:05 +02:00
{ { - $varNameSingular : = $dot.Table.Name | singular | camelCase - } }
2016-08-29 18:36:07 +02:00
{ { - $txt : = textsFromRelationship $dot.Tables $dot.Table . - } }
{ { - $arg : = printf "maybe%s" $txt.LocalTable.NameGo - } }
{ { - $slice : = printf "%sSlice" $txt.LocalTable.NameGo - } }
// Load { { $txt.Function.Name } } allows an eager lookup of values, cached into the
2016-08-23 06:53:37 +02:00
// loaded structs of the objects.
2016-09-02 03:22:56 +02:00
func ( { { $varNameSingular } } L) Load { { $txt.Function.Name } } (e boil.Executor, singular bool, { { $arg } } interface { } ) error {
2016-08-29 18:36:07 +02:00
var slice []* { { $txt.LocalTable.NameGo } }
var object * { { $txt.LocalTable.NameGo } }
2016-08-12 08:16:06 +02:00
count := 1
if singular {
2016-08-29 18:36:07 +02:00
object = { { $arg } } .(* { { $txt.LocalTable.NameGo } } )
2016-08-12 08:16:06 +02:00
} else {
2016-08-24 07:07:51 +02:00
slice = * { { $arg } } .(* { { $slice } } )
2016-08-12 08:16:06 +02:00
count = len(slice)
}
2016-08-16 09:30:08 +02:00
args := make([]interface { } , count)
2016-08-12 08:16:06 +02:00
if singular {
2016-08-16 09:30:08 +02:00
args[0] = object. { { . Column | titleCase } }
2016-08-12 08:16:06 +02:00
} else {
2016-08-16 09:30:08 +02:00
for i, obj := range slice {
args[i] = obj. { { . Column | titleCase } }
}
2016-08-12 08:16:06 +02:00
}
2016-08-16 09:30:08 +02:00
{ { if . ToJoinTable - } }
query := fmt.Sprintf(
2016-08-18 08:07:39 +02:00
`select " { { id 0 } } ".*, " { { id 1 } } "." { { . JoinLocalColumn } } " from " { { . ForeignTable } } " as " { { id 0 } } " inner join " { { . JoinTable } } " as " { { id 1 } } " on " { { id 0 } } "." { { . ForeignColumn } } " = " { { id 1 } } "." { { . JoinForeignColumn } } " where " { { id 1 } } "." { { . JoinLocalColumn } } " in (%s)`,
2016-08-16 09:30:08 +02:00
strmangle.Placeholders(count, 1, 1),
)
{ { else - } }
2016-08-16 07:24:56 +02:00
query := fmt.Sprintf(
`select * from " { { . ForeignTable } } " where " { { . ForeignColumn } } " in (%s)`,
strmangle.Placeholders(count, 1, 1),
)
2016-08-16 09:30:08 +02:00
{ { end - } }
2016-08-16 07:24:56 +02:00
2016-08-17 06:08:55 +02:00
if boil.DebugMode {
fmt.Fprintf(boil.DebugWriter, "%s\n%v\n", query, args)
}
2016-08-12 08:16:06 +02:00
results, err := e.Query(query, args...)
if err != nil {
return errors.Wrap(err, "failed to eager load { { . ForeignTable } } ")
}
2016-08-16 07:24:56 +02:00
defer results.Close()
2016-08-12 08:16:06 +02:00
2016-08-29 18:36:07 +02:00
var resultSlice []* { { $txt.ForeignTable.NameGo } }
2016-08-18 08:07:39 +02:00
{ { if . ToJoinTable - } }
{ { - $foreignTable : = getTable $dot.Tables . ForeignTable - } }
{ { - $joinTable : = getTable $dot.Tables . JoinTable - } }
{ { - $localCol : = $joinTable.GetColumn . JoinLocalColumn } }
var localJoinCols [] { { $localCol.Type } }
for results.Next() {
2016-08-29 18:36:07 +02:00
one := new( { { $txt.ForeignTable.NameGo } } )
2016-08-18 08:07:39 +02:00
var localJoinCol { { $localCol.Type } }
err = results.Scan( { { $foreignTable.Columns | columnNames | stringMap $dot.StringFuncs.titleCase | prefixStringSlice "&one." | join ", " } } , &localJoinCol)
if err = results.Err(); err != nil {
return errors.Wrap(err, "failed to plebian-bind eager loaded slice { { . ForeignTable } } ")
}
resultSlice = append(resultSlice, one)
localJoinCols = append(localJoinCols, localJoinCol)
}
if err = results.Err(); err != nil {
return errors.Wrap(err, "failed to plebian-bind eager loaded slice { { . ForeignTable } } ")
}
{ { else - } }
2016-09-02 09:09:42 +02:00
if err = boil.Bind(results, &resultSlice); err != nil {
2016-08-12 08:16:06 +02:00
return errors.Wrap(err, "failed to bind eager loaded slice { { . ForeignTable } } ")
}
2016-08-18 08:07:39 +02:00
{ { end } }
2016-08-12 08:16:06 +02:00
2016-08-29 18:36:07 +02:00
{ { if not $dot.NoHooks - } }
if len( { { . ForeignTable | singular | camelCase } } AfterSelectHooks) != 0 {
for _, obj := range resultSlice {
if err := obj.doAfterSelectHooks(e); err != nil {
return err
}
}
}
{ { - end } }
2016-08-12 08:16:06 +02:00
if singular {
2016-08-27 06:40:11 +02:00
if object.R == nil {
2016-09-01 05:33:05 +02:00
object.R = & { { $varNameSingular } } R { }
2016-08-12 08:16:06 +02:00
}
2016-08-29 18:36:07 +02:00
object.R. { { $txt.Function.Name } } = resultSlice
2016-08-12 08:16:06 +02:00
return nil
}
2016-08-18 08:07:39 +02:00
{ { if . ToJoinTable - } }
for i, foreign := range resultSlice {
localJoinCol := localJoinCols[i]
for _, local := range slice {
2016-08-29 18:36:07 +02:00
if local. { { $txt.Function.LocalAssignment } } == localJoinCol {
2016-08-27 06:40:11 +02:00
if local.R == nil {
2016-09-01 05:33:05 +02:00
local.R = & { { $varNameSingular } } R { }
2016-08-18 08:07:39 +02:00
}
2016-08-29 18:36:07 +02:00
local.R. { { $txt.Function.Name } } = append(local.R. { { $txt.Function.Name } } , foreign)
2016-08-18 08:07:39 +02:00
break
}
}
}
{ { else - } }
2016-08-12 08:16:06 +02:00
for _, foreign := range resultSlice {
for _, local := range slice {
2016-08-29 18:36:07 +02:00
if local. { { $txt.Function.LocalAssignment } } == foreign. { { $txt.Function.ForeignAssignment } } {
2016-08-27 06:40:11 +02:00
if local.R == nil {
2016-09-01 05:33:05 +02:00
local.R = & { { $varNameSingular } } R { }
2016-08-12 08:16:06 +02:00
}
2016-08-29 18:36:07 +02:00
local.R. { { $txt.Function.Name } } = append(local.R. { { $txt.Function.Name } } , foreign)
2016-08-12 08:16:06 +02:00
break
}
}
}
2016-08-18 08:07:39 +02:00
{ { end } }
2016-08-12 08:16:06 +02:00
return nil
}
{ { end - } } { { / * if ForeignColumnUnique * / } }
{ { - end - } } { { / * range tomany * / } }
{ { - end - } } { { / * if isjointable * / } }