689 lines
21 KiB
Go
689 lines
21 KiB
Go
|
|
// Code generated by BobGen mysql v0.42.0. DO NOT EDIT.
|
||
|
|
// This file is meant to be re-generated in place and/or deleted at any time.
|
||
|
|
|
||
|
|
package models
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"fmt"
|
||
|
|
"io"
|
||
|
|
|
||
|
|
"github.com/aarondl/opt/omit"
|
||
|
|
"github.com/stephenafamo/bob"
|
||
|
|
"github.com/stephenafamo/bob/dialect/mysql"
|
||
|
|
"github.com/stephenafamo/bob/dialect/mysql/dialect"
|
||
|
|
"github.com/stephenafamo/bob/dialect/mysql/dm"
|
||
|
|
"github.com/stephenafamo/bob/dialect/mysql/sm"
|
||
|
|
"github.com/stephenafamo/bob/dialect/mysql/um"
|
||
|
|
"github.com/stephenafamo/bob/expr"
|
||
|
|
"github.com/stephenafamo/bob/mods"
|
||
|
|
"github.com/stephenafamo/bob/orm"
|
||
|
|
)
|
||
|
|
|
||
|
|
// LocationsDuracloud is an object representing the database table.
|
||
|
|
type LocationsDuracloud struct {
|
||
|
|
ID int32 `db:"id,pk,autoincr" `
|
||
|
|
Host string `db:"host" `
|
||
|
|
User string `db:"user" `
|
||
|
|
Password string `db:"password" `
|
||
|
|
Duraspace string `db:"duraspace" `
|
||
|
|
SpaceID string `db:"space_id" `
|
||
|
|
|
||
|
|
R locationsDuracloudR `db:"-" `
|
||
|
|
}
|
||
|
|
|
||
|
|
// LocationsDuracloudSlice is an alias for a slice of pointers to LocationsDuracloud.
|
||
|
|
// This should almost always be used instead of []*LocationsDuracloud.
|
||
|
|
type LocationsDuracloudSlice []*LocationsDuracloud
|
||
|
|
|
||
|
|
// LocationsDuraclouds contains methods to work with the locations_duracloud table
|
||
|
|
var LocationsDuraclouds = mysql.NewTablex[*LocationsDuracloud, LocationsDuracloudSlice, *LocationsDuracloudSetter]("locations_duracloud", buildLocationsDuracloudColumns("locations_duracloud"), []string{"id"}, []string{"space_id"})
|
||
|
|
|
||
|
|
// LocationsDuracloudsQuery is a query on the locations_duracloud table
|
||
|
|
type LocationsDuracloudsQuery = *mysql.ViewQuery[*LocationsDuracloud, LocationsDuracloudSlice]
|
||
|
|
|
||
|
|
// locationsDuracloudR is where relationships are stored.
|
||
|
|
type locationsDuracloudR struct {
|
||
|
|
SpaceLocationsSpace *LocationsSpace // locations_duracloud_space_id_753df0f2_fk_locations_space_uuid
|
||
|
|
}
|
||
|
|
|
||
|
|
func buildLocationsDuracloudColumns(alias string) locationsDuracloudColumns {
|
||
|
|
return locationsDuracloudColumns{
|
||
|
|
ColumnsExpr: expr.NewColumnsExpr(
|
||
|
|
"id", "host", "user", "password", "duraspace", "space_id",
|
||
|
|
).WithParent("locations_duracloud"),
|
||
|
|
tableAlias: alias,
|
||
|
|
ID: mysql.Quote(alias, "id"),
|
||
|
|
Host: mysql.Quote(alias, "host"),
|
||
|
|
User: mysql.Quote(alias, "user"),
|
||
|
|
Password: mysql.Quote(alias, "password"),
|
||
|
|
Duraspace: mysql.Quote(alias, "duraspace"),
|
||
|
|
SpaceID: mysql.Quote(alias, "space_id"),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
type locationsDuracloudColumns struct {
|
||
|
|
expr.ColumnsExpr
|
||
|
|
tableAlias string
|
||
|
|
ID mysql.Expression
|
||
|
|
Host mysql.Expression
|
||
|
|
User mysql.Expression
|
||
|
|
Password mysql.Expression
|
||
|
|
Duraspace mysql.Expression
|
||
|
|
SpaceID mysql.Expression
|
||
|
|
}
|
||
|
|
|
||
|
|
func (c locationsDuracloudColumns) Alias() string {
|
||
|
|
return c.tableAlias
|
||
|
|
}
|
||
|
|
|
||
|
|
func (locationsDuracloudColumns) AliasedAs(alias string) locationsDuracloudColumns {
|
||
|
|
return buildLocationsDuracloudColumns(alias)
|
||
|
|
}
|
||
|
|
|
||
|
|
// LocationsDuracloudSetter is used for insert/upsert/update operations
|
||
|
|
// All values are optional, and do not have to be set
|
||
|
|
// Generated columns are not included
|
||
|
|
type LocationsDuracloudSetter struct {
|
||
|
|
ID omit.Val[int32] `db:"id,pk,autoincr" `
|
||
|
|
Host omit.Val[string] `db:"host" `
|
||
|
|
User omit.Val[string] `db:"user" `
|
||
|
|
Password omit.Val[string] `db:"password" `
|
||
|
|
Duraspace omit.Val[string] `db:"duraspace" `
|
||
|
|
SpaceID omit.Val[string] `db:"space_id" `
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s LocationsDuracloudSetter) SetColumns() []string {
|
||
|
|
vals := make([]string, 0, 6)
|
||
|
|
if s.ID.IsValue() {
|
||
|
|
vals = append(vals, "id")
|
||
|
|
}
|
||
|
|
if s.Host.IsValue() {
|
||
|
|
vals = append(vals, "host")
|
||
|
|
}
|
||
|
|
if s.User.IsValue() {
|
||
|
|
vals = append(vals, "user")
|
||
|
|
}
|
||
|
|
if s.Password.IsValue() {
|
||
|
|
vals = append(vals, "password")
|
||
|
|
}
|
||
|
|
if s.Duraspace.IsValue() {
|
||
|
|
vals = append(vals, "duraspace")
|
||
|
|
}
|
||
|
|
if s.SpaceID.IsValue() {
|
||
|
|
vals = append(vals, "space_id")
|
||
|
|
}
|
||
|
|
return vals
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s LocationsDuracloudSetter) Overwrite(t *LocationsDuracloud) {
|
||
|
|
if s.ID.IsValue() {
|
||
|
|
t.ID = s.ID.MustGet()
|
||
|
|
}
|
||
|
|
if s.Host.IsValue() {
|
||
|
|
t.Host = s.Host.MustGet()
|
||
|
|
}
|
||
|
|
if s.User.IsValue() {
|
||
|
|
t.User = s.User.MustGet()
|
||
|
|
}
|
||
|
|
if s.Password.IsValue() {
|
||
|
|
t.Password = s.Password.MustGet()
|
||
|
|
}
|
||
|
|
if s.Duraspace.IsValue() {
|
||
|
|
t.Duraspace = s.Duraspace.MustGet()
|
||
|
|
}
|
||
|
|
if s.SpaceID.IsValue() {
|
||
|
|
t.SpaceID = s.SpaceID.MustGet()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *LocationsDuracloudSetter) Apply(q *dialect.InsertQuery) {
|
||
|
|
q.AppendHooks(func(ctx context.Context, exec bob.Executor) (context.Context, error) {
|
||
|
|
return LocationsDuraclouds.BeforeInsertHooks.RunHooks(ctx, exec, s)
|
||
|
|
})
|
||
|
|
|
||
|
|
q.AppendValues(
|
||
|
|
bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
if !(s.ID.IsValue()) {
|
||
|
|
return mysql.Raw("DEFAULT").WriteSQL(ctx, w, d, start)
|
||
|
|
}
|
||
|
|
return mysql.Arg(s.ID.MustGet()).WriteSQL(ctx, w, d, start)
|
||
|
|
}), bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
if !(s.Host.IsValue()) {
|
||
|
|
return mysql.Raw("DEFAULT").WriteSQL(ctx, w, d, start)
|
||
|
|
}
|
||
|
|
return mysql.Arg(s.Host.MustGet()).WriteSQL(ctx, w, d, start)
|
||
|
|
}), bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
if !(s.User.IsValue()) {
|
||
|
|
return mysql.Raw("DEFAULT").WriteSQL(ctx, w, d, start)
|
||
|
|
}
|
||
|
|
return mysql.Arg(s.User.MustGet()).WriteSQL(ctx, w, d, start)
|
||
|
|
}), bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
if !(s.Password.IsValue()) {
|
||
|
|
return mysql.Raw("DEFAULT").WriteSQL(ctx, w, d, start)
|
||
|
|
}
|
||
|
|
return mysql.Arg(s.Password.MustGet()).WriteSQL(ctx, w, d, start)
|
||
|
|
}), bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
if !(s.Duraspace.IsValue()) {
|
||
|
|
return mysql.Raw("DEFAULT").WriteSQL(ctx, w, d, start)
|
||
|
|
}
|
||
|
|
return mysql.Arg(s.Duraspace.MustGet()).WriteSQL(ctx, w, d, start)
|
||
|
|
}), bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
if !(s.SpaceID.IsValue()) {
|
||
|
|
return mysql.Raw("DEFAULT").WriteSQL(ctx, w, d, start)
|
||
|
|
}
|
||
|
|
return mysql.Arg(s.SpaceID.MustGet()).WriteSQL(ctx, w, d, start)
|
||
|
|
}))
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s LocationsDuracloudSetter) UpdateMod() bob.Mod[*dialect.UpdateQuery] {
|
||
|
|
return um.Set(s.Expressions("locations_duracloud")...)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s LocationsDuracloudSetter) Expressions(prefix ...string) []bob.Expression {
|
||
|
|
exprs := make([]bob.Expression, 0, 6)
|
||
|
|
|
||
|
|
if s.ID.IsValue() {
|
||
|
|
exprs = append(exprs, expr.Join{Sep: " = ", Exprs: []bob.Expression{
|
||
|
|
mysql.Quote(append(prefix, "id")...),
|
||
|
|
mysql.Arg(s.ID),
|
||
|
|
}})
|
||
|
|
}
|
||
|
|
|
||
|
|
if s.Host.IsValue() {
|
||
|
|
exprs = append(exprs, expr.Join{Sep: " = ", Exprs: []bob.Expression{
|
||
|
|
mysql.Quote(append(prefix, "host")...),
|
||
|
|
mysql.Arg(s.Host),
|
||
|
|
}})
|
||
|
|
}
|
||
|
|
|
||
|
|
if s.User.IsValue() {
|
||
|
|
exprs = append(exprs, expr.Join{Sep: " = ", Exprs: []bob.Expression{
|
||
|
|
mysql.Quote(append(prefix, "user")...),
|
||
|
|
mysql.Arg(s.User),
|
||
|
|
}})
|
||
|
|
}
|
||
|
|
|
||
|
|
if s.Password.IsValue() {
|
||
|
|
exprs = append(exprs, expr.Join{Sep: " = ", Exprs: []bob.Expression{
|
||
|
|
mysql.Quote(append(prefix, "password")...),
|
||
|
|
mysql.Arg(s.Password),
|
||
|
|
}})
|
||
|
|
}
|
||
|
|
|
||
|
|
if s.Duraspace.IsValue() {
|
||
|
|
exprs = append(exprs, expr.Join{Sep: " = ", Exprs: []bob.Expression{
|
||
|
|
mysql.Quote(append(prefix, "duraspace")...),
|
||
|
|
mysql.Arg(s.Duraspace),
|
||
|
|
}})
|
||
|
|
}
|
||
|
|
|
||
|
|
if s.SpaceID.IsValue() {
|
||
|
|
exprs = append(exprs, expr.Join{Sep: " = ", Exprs: []bob.Expression{
|
||
|
|
mysql.Quote(append(prefix, "space_id")...),
|
||
|
|
mysql.Arg(s.SpaceID),
|
||
|
|
}})
|
||
|
|
}
|
||
|
|
|
||
|
|
return exprs
|
||
|
|
}
|
||
|
|
|
||
|
|
// FindLocationsDuracloud retrieves a single record by primary key
|
||
|
|
// If cols is empty Find will return all columns.
|
||
|
|
func FindLocationsDuracloud(ctx context.Context, exec bob.Executor, IDPK int32, cols ...string) (*LocationsDuracloud, error) {
|
||
|
|
if len(cols) == 0 {
|
||
|
|
return LocationsDuraclouds.Query(
|
||
|
|
sm.Where(LocationsDuraclouds.Columns.ID.EQ(mysql.Arg(IDPK))),
|
||
|
|
).One(ctx, exec)
|
||
|
|
}
|
||
|
|
|
||
|
|
return LocationsDuraclouds.Query(
|
||
|
|
sm.Where(LocationsDuraclouds.Columns.ID.EQ(mysql.Arg(IDPK))),
|
||
|
|
sm.Columns(LocationsDuraclouds.Columns.Only(cols...)),
|
||
|
|
).One(ctx, exec)
|
||
|
|
}
|
||
|
|
|
||
|
|
// LocationsDuracloudExists checks the presence of a single record by primary key
|
||
|
|
func LocationsDuracloudExists(ctx context.Context, exec bob.Executor, IDPK int32) (bool, error) {
|
||
|
|
return LocationsDuraclouds.Query(
|
||
|
|
sm.Where(LocationsDuraclouds.Columns.ID.EQ(mysql.Arg(IDPK))),
|
||
|
|
).Exists(ctx, exec)
|
||
|
|
}
|
||
|
|
|
||
|
|
// AfterQueryHook is called after LocationsDuracloud is retrieved from the database
|
||
|
|
func (o *LocationsDuracloud) AfterQueryHook(ctx context.Context, exec bob.Executor, queryType bob.QueryType) error {
|
||
|
|
var err error
|
||
|
|
|
||
|
|
switch queryType {
|
||
|
|
case bob.QueryTypeSelect:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterSelectHooks.RunHooks(ctx, exec, LocationsDuracloudSlice{o})
|
||
|
|
case bob.QueryTypeInsert:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterInsertHooks.RunHooks(ctx, exec, LocationsDuracloudSlice{o})
|
||
|
|
case bob.QueryTypeUpdate:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterUpdateHooks.RunHooks(ctx, exec, LocationsDuracloudSlice{o})
|
||
|
|
case bob.QueryTypeDelete:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterDeleteHooks.RunHooks(ctx, exec, LocationsDuracloudSlice{o})
|
||
|
|
}
|
||
|
|
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
// primaryKeyVals returns the primary key values of the LocationsDuracloud
|
||
|
|
func (o *LocationsDuracloud) primaryKeyVals() bob.Expression {
|
||
|
|
return mysql.Arg(o.ID)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (o *LocationsDuracloud) pkEQ() dialect.Expression {
|
||
|
|
return mysql.Quote("locations_duracloud", "id").EQ(bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
return o.primaryKeyVals().WriteSQL(ctx, w, d, start)
|
||
|
|
}))
|
||
|
|
}
|
||
|
|
|
||
|
|
// Update uses an executor to update the LocationsDuracloud
|
||
|
|
func (o *LocationsDuracloud) Update(ctx context.Context, exec bob.Executor, s *LocationsDuracloudSetter) error {
|
||
|
|
_, err := LocationsDuraclouds.Update(s.UpdateMod(), um.Where(o.pkEQ())).Exec(ctx, exec)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
s.Overwrite(o)
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// Delete deletes a single LocationsDuracloud record with an executor
|
||
|
|
func (o *LocationsDuracloud) Delete(ctx context.Context, exec bob.Executor) error {
|
||
|
|
_, err := LocationsDuraclouds.Delete(dm.Where(o.pkEQ())).Exec(ctx, exec)
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
// Reload refreshes the LocationsDuracloud using the executor
|
||
|
|
func (o *LocationsDuracloud) Reload(ctx context.Context, exec bob.Executor) error {
|
||
|
|
o2, err := LocationsDuraclouds.Query(
|
||
|
|
sm.Where(LocationsDuraclouds.Columns.ID.EQ(mysql.Arg(o.ID))),
|
||
|
|
).One(ctx, exec)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
o2.R = o.R
|
||
|
|
*o = *o2
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// AfterQueryHook is called after LocationsDuracloudSlice is retrieved from the database
|
||
|
|
func (o LocationsDuracloudSlice) AfterQueryHook(ctx context.Context, exec bob.Executor, queryType bob.QueryType) error {
|
||
|
|
var err error
|
||
|
|
|
||
|
|
switch queryType {
|
||
|
|
case bob.QueryTypeSelect:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterSelectHooks.RunHooks(ctx, exec, o)
|
||
|
|
case bob.QueryTypeInsert:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterInsertHooks.RunHooks(ctx, exec, o)
|
||
|
|
case bob.QueryTypeUpdate:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterUpdateHooks.RunHooks(ctx, exec, o)
|
||
|
|
case bob.QueryTypeDelete:
|
||
|
|
ctx, err = LocationsDuraclouds.AfterDeleteHooks.RunHooks(ctx, exec, o)
|
||
|
|
}
|
||
|
|
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
func (o LocationsDuracloudSlice) pkIN() dialect.Expression {
|
||
|
|
if len(o) == 0 {
|
||
|
|
return mysql.Raw("NULL")
|
||
|
|
}
|
||
|
|
|
||
|
|
return mysql.Quote("locations_duracloud", "id").In(bob.ExpressionFunc(func(ctx context.Context, w io.StringWriter, d bob.Dialect, start int) ([]any, error) {
|
||
|
|
pkPairs := make([]bob.Expression, len(o))
|
||
|
|
for i, row := range o {
|
||
|
|
pkPairs[i] = row.primaryKeyVals()
|
||
|
|
}
|
||
|
|
return bob.ExpressSlice(ctx, w, d, start, pkPairs, "", ", ", "")
|
||
|
|
}))
|
||
|
|
}
|
||
|
|
|
||
|
|
// copyMatchingRows finds models in the given slice that have the same primary key
|
||
|
|
// then it first copies the existing relationships from the old model to the new model
|
||
|
|
// and then replaces the old model in the slice with the new model
|
||
|
|
func (o LocationsDuracloudSlice) copyMatchingRows(from ...*LocationsDuracloud) {
|
||
|
|
for i, old := range o {
|
||
|
|
for _, new := range from {
|
||
|
|
if new.ID != old.ID {
|
||
|
|
continue
|
||
|
|
}
|
||
|
|
new.R = old.R
|
||
|
|
o[i] = new
|
||
|
|
break
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// UpdateMod modifies an update query with "WHERE primary_key IN (o...)"
|
||
|
|
func (o LocationsDuracloudSlice) UpdateMod() bob.Mod[*dialect.UpdateQuery] {
|
||
|
|
return bob.ModFunc[*dialect.UpdateQuery](func(q *dialect.UpdateQuery) {
|
||
|
|
q.AppendHooks(func(ctx context.Context, exec bob.Executor) (context.Context, error) {
|
||
|
|
return LocationsDuraclouds.BeforeUpdateHooks.RunHooks(ctx, exec, o)
|
||
|
|
})
|
||
|
|
|
||
|
|
q.AppendLoader(bob.LoaderFunc(func(ctx context.Context, exec bob.Executor, retrieved any) error {
|
||
|
|
var err error
|
||
|
|
switch retrieved := retrieved.(type) {
|
||
|
|
case *LocationsDuracloud:
|
||
|
|
o.copyMatchingRows(retrieved)
|
||
|
|
case []*LocationsDuracloud:
|
||
|
|
o.copyMatchingRows(retrieved...)
|
||
|
|
case LocationsDuracloudSlice:
|
||
|
|
o.copyMatchingRows(retrieved...)
|
||
|
|
default:
|
||
|
|
// If the retrieved value is not a LocationsDuracloud or a slice of LocationsDuracloud
|
||
|
|
// then run the AfterUpdateHooks on the slice
|
||
|
|
_, err = LocationsDuraclouds.AfterUpdateHooks.RunHooks(ctx, exec, o)
|
||
|
|
}
|
||
|
|
|
||
|
|
return err
|
||
|
|
}))
|
||
|
|
|
||
|
|
q.AppendWhere(o.pkIN())
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// DeleteMod modifies an delete query with "WHERE primary_key IN (o...)"
|
||
|
|
func (o LocationsDuracloudSlice) DeleteMod() bob.Mod[*dialect.DeleteQuery] {
|
||
|
|
return bob.ModFunc[*dialect.DeleteQuery](func(q *dialect.DeleteQuery) {
|
||
|
|
q.AppendHooks(func(ctx context.Context, exec bob.Executor) (context.Context, error) {
|
||
|
|
return LocationsDuraclouds.BeforeDeleteHooks.RunHooks(ctx, exec, o)
|
||
|
|
})
|
||
|
|
|
||
|
|
q.AppendLoader(bob.LoaderFunc(func(ctx context.Context, exec bob.Executor, retrieved any) error {
|
||
|
|
var err error
|
||
|
|
switch retrieved := retrieved.(type) {
|
||
|
|
case *LocationsDuracloud:
|
||
|
|
o.copyMatchingRows(retrieved)
|
||
|
|
case []*LocationsDuracloud:
|
||
|
|
o.copyMatchingRows(retrieved...)
|
||
|
|
case LocationsDuracloudSlice:
|
||
|
|
o.copyMatchingRows(retrieved...)
|
||
|
|
default:
|
||
|
|
// If the retrieved value is not a LocationsDuracloud or a slice of LocationsDuracloud
|
||
|
|
// then run the AfterDeleteHooks on the slice
|
||
|
|
_, err = LocationsDuraclouds.AfterDeleteHooks.RunHooks(ctx, exec, o)
|
||
|
|
}
|
||
|
|
|
||
|
|
return err
|
||
|
|
}))
|
||
|
|
|
||
|
|
q.AppendWhere(o.pkIN())
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
func (o LocationsDuracloudSlice) UpdateAll(ctx context.Context, exec bob.Executor, vals LocationsDuracloudSetter) error {
|
||
|
|
_, err := LocationsDuraclouds.Update(vals.UpdateMod(), o.UpdateMod()).Exec(ctx, exec)
|
||
|
|
|
||
|
|
for i := range o {
|
||
|
|
vals.Overwrite(o[i])
|
||
|
|
}
|
||
|
|
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
func (o LocationsDuracloudSlice) DeleteAll(ctx context.Context, exec bob.Executor) error {
|
||
|
|
if len(o) == 0 {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
_, err := LocationsDuraclouds.Delete(o.DeleteMod()).Exec(ctx, exec)
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
func (o LocationsDuracloudSlice) ReloadAll(ctx context.Context, exec bob.Executor) error {
|
||
|
|
if len(o) == 0 {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
o2, err := LocationsDuraclouds.Query(sm.Where(o.pkIN())).All(ctx, exec)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
o.copyMatchingRows(o2...)
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// SpaceLocationsSpace starts a query for related objects on locations_space
|
||
|
|
func (o *LocationsDuracloud) SpaceLocationsSpace(mods ...bob.Mod[*dialect.SelectQuery]) LocationsSpacesQuery {
|
||
|
|
return LocationsSpaces.Query(append(mods,
|
||
|
|
sm.Where(LocationsSpaces.Columns.UUID.EQ(mysql.Arg(o.SpaceID))),
|
||
|
|
)...)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (os LocationsDuracloudSlice) SpaceLocationsSpace(mods ...bob.Mod[*dialect.SelectQuery]) LocationsSpacesQuery {
|
||
|
|
PKArgSlice := make([]bob.Expression, len(os))
|
||
|
|
for i, o := range os {
|
||
|
|
PKArgSlice[i] = mysql.ArgGroup(o.SpaceID)
|
||
|
|
}
|
||
|
|
PKArgExpr := mysql.Group(PKArgSlice...)
|
||
|
|
|
||
|
|
return LocationsSpaces.Query(append(mods,
|
||
|
|
sm.Where(mysql.Group(LocationsSpaces.Columns.UUID).OP("IN", PKArgExpr)),
|
||
|
|
)...)
|
||
|
|
}
|
||
|
|
|
||
|
|
func attachLocationsDuracloudSpaceLocationsSpace0(ctx context.Context, exec bob.Executor, count int, locationsDuracloud0 *LocationsDuracloud, locationsSpace1 *LocationsSpace) (*LocationsDuracloud, error) {
|
||
|
|
setter := &LocationsDuracloudSetter{
|
||
|
|
SpaceID: omit.From(locationsSpace1.UUID),
|
||
|
|
}
|
||
|
|
|
||
|
|
err := locationsDuracloud0.Update(ctx, exec, setter)
|
||
|
|
if err != nil {
|
||
|
|
return nil, fmt.Errorf("attachLocationsDuracloudSpaceLocationsSpace0: %w", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
return locationsDuracloud0, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (locationsDuracloud0 *LocationsDuracloud) InsertSpaceLocationsSpace(ctx context.Context, exec bob.Executor, related *LocationsSpaceSetter) error {
|
||
|
|
var err error
|
||
|
|
|
||
|
|
locationsSpace1, err := LocationsSpaces.Insert(related).One(ctx, exec)
|
||
|
|
if err != nil {
|
||
|
|
return fmt.Errorf("inserting related objects: %w", err)
|
||
|
|
}
|
||
|
|
|
||
|
|
_, err = attachLocationsDuracloudSpaceLocationsSpace0(ctx, exec, 1, locationsDuracloud0, locationsSpace1)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
locationsDuracloud0.R.SpaceLocationsSpace = locationsSpace1
|
||
|
|
|
||
|
|
locationsSpace1.R.SpaceLocationsDuracloud = locationsDuracloud0
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (locationsDuracloud0 *LocationsDuracloud) AttachSpaceLocationsSpace(ctx context.Context, exec bob.Executor, locationsSpace1 *LocationsSpace) error {
|
||
|
|
var err error
|
||
|
|
|
||
|
|
_, err = attachLocationsDuracloudSpaceLocationsSpace0(ctx, exec, 1, locationsDuracloud0, locationsSpace1)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
locationsDuracloud0.R.SpaceLocationsSpace = locationsSpace1
|
||
|
|
|
||
|
|
locationsSpace1.R.SpaceLocationsDuracloud = locationsDuracloud0
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
type locationsDuracloudWhere[Q mysql.Filterable] struct {
|
||
|
|
ID mysql.WhereMod[Q, int32]
|
||
|
|
Host mysql.WhereMod[Q, string]
|
||
|
|
User mysql.WhereMod[Q, string]
|
||
|
|
Password mysql.WhereMod[Q, string]
|
||
|
|
Duraspace mysql.WhereMod[Q, string]
|
||
|
|
SpaceID mysql.WhereMod[Q, string]
|
||
|
|
}
|
||
|
|
|
||
|
|
func (locationsDuracloudWhere[Q]) AliasedAs(alias string) locationsDuracloudWhere[Q] {
|
||
|
|
return buildLocationsDuracloudWhere[Q](buildLocationsDuracloudColumns(alias))
|
||
|
|
}
|
||
|
|
|
||
|
|
func buildLocationsDuracloudWhere[Q mysql.Filterable](cols locationsDuracloudColumns) locationsDuracloudWhere[Q] {
|
||
|
|
return locationsDuracloudWhere[Q]{
|
||
|
|
ID: mysql.Where[Q, int32](cols.ID),
|
||
|
|
Host: mysql.Where[Q, string](cols.Host),
|
||
|
|
User: mysql.Where[Q, string](cols.User),
|
||
|
|
Password: mysql.Where[Q, string](cols.Password),
|
||
|
|
Duraspace: mysql.Where[Q, string](cols.Duraspace),
|
||
|
|
SpaceID: mysql.Where[Q, string](cols.SpaceID),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func (o *LocationsDuracloud) Preload(name string, retrieved any) error {
|
||
|
|
if o == nil {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
switch name {
|
||
|
|
case "SpaceLocationsSpace":
|
||
|
|
rel, ok := retrieved.(*LocationsSpace)
|
||
|
|
if !ok {
|
||
|
|
return fmt.Errorf("locationsDuracloud cannot load %T as %q", retrieved, name)
|
||
|
|
}
|
||
|
|
|
||
|
|
o.R.SpaceLocationsSpace = rel
|
||
|
|
|
||
|
|
if rel != nil {
|
||
|
|
rel.R.SpaceLocationsDuracloud = o
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
default:
|
||
|
|
return fmt.Errorf("locationsDuracloud has no relationship %q", name)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
type locationsDuracloudPreloader struct {
|
||
|
|
SpaceLocationsSpace func(...mysql.PreloadOption) mysql.Preloader
|
||
|
|
}
|
||
|
|
|
||
|
|
func buildLocationsDuracloudPreloader() locationsDuracloudPreloader {
|
||
|
|
return locationsDuracloudPreloader{
|
||
|
|
SpaceLocationsSpace: func(opts ...mysql.PreloadOption) mysql.Preloader {
|
||
|
|
return mysql.Preload[*LocationsSpace, LocationsSpaceSlice](mysql.PreloadRel{
|
||
|
|
Name: "SpaceLocationsSpace",
|
||
|
|
Sides: []mysql.PreloadSide{
|
||
|
|
{
|
||
|
|
From: LocationsDuraclouds,
|
||
|
|
To: LocationsSpaces,
|
||
|
|
FromColumns: []string{"space_id"},
|
||
|
|
ToColumns: []string{"uuid"},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}, LocationsSpaces.Columns.Names(), opts...)
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
type locationsDuracloudThenLoader[Q orm.Loadable] struct {
|
||
|
|
SpaceLocationsSpace func(...bob.Mod[*dialect.SelectQuery]) orm.Loader[Q]
|
||
|
|
}
|
||
|
|
|
||
|
|
func buildLocationsDuracloudThenLoader[Q orm.Loadable]() locationsDuracloudThenLoader[Q] {
|
||
|
|
type SpaceLocationsSpaceLoadInterface interface {
|
||
|
|
LoadSpaceLocationsSpace(context.Context, bob.Executor, ...bob.Mod[*dialect.SelectQuery]) error
|
||
|
|
}
|
||
|
|
|
||
|
|
return locationsDuracloudThenLoader[Q]{
|
||
|
|
SpaceLocationsSpace: thenLoadBuilder[Q](
|
||
|
|
"SpaceLocationsSpace",
|
||
|
|
func(ctx context.Context, exec bob.Executor, retrieved SpaceLocationsSpaceLoadInterface, mods ...bob.Mod[*dialect.SelectQuery]) error {
|
||
|
|
return retrieved.LoadSpaceLocationsSpace(ctx, exec, mods...)
|
||
|
|
},
|
||
|
|
),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// LoadSpaceLocationsSpace loads the locationsDuracloud's SpaceLocationsSpace into the .R struct
|
||
|
|
func (o *LocationsDuracloud) LoadSpaceLocationsSpace(ctx context.Context, exec bob.Executor, mods ...bob.Mod[*dialect.SelectQuery]) error {
|
||
|
|
if o == nil {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// Reset the relationship
|
||
|
|
o.R.SpaceLocationsSpace = nil
|
||
|
|
|
||
|
|
related, err := o.SpaceLocationsSpace(mods...).One(ctx, exec)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
related.R.SpaceLocationsDuracloud = o
|
||
|
|
|
||
|
|
o.R.SpaceLocationsSpace = related
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// LoadSpaceLocationsSpace loads the locationsDuracloud's SpaceLocationsSpace into the .R struct
|
||
|
|
func (os LocationsDuracloudSlice) LoadSpaceLocationsSpace(ctx context.Context, exec bob.Executor, mods ...bob.Mod[*dialect.SelectQuery]) error {
|
||
|
|
if len(os) == 0 {
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
locationsSpaces, err := os.SpaceLocationsSpace(mods...).All(ctx, exec)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
for _, o := range os {
|
||
|
|
if o == nil {
|
||
|
|
continue
|
||
|
|
}
|
||
|
|
|
||
|
|
for _, rel := range locationsSpaces {
|
||
|
|
|
||
|
|
if !(o.SpaceID == rel.UUID) {
|
||
|
|
continue
|
||
|
|
}
|
||
|
|
|
||
|
|
rel.R.SpaceLocationsDuracloud = o
|
||
|
|
|
||
|
|
o.R.SpaceLocationsSpace = rel
|
||
|
|
break
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
type locationsDuracloudJoins[Q dialect.Joinable] struct {
|
||
|
|
typ string
|
||
|
|
SpaceLocationsSpace modAs[Q, locationsSpaceColumns]
|
||
|
|
}
|
||
|
|
|
||
|
|
func (j locationsDuracloudJoins[Q]) aliasedAs(alias string) locationsDuracloudJoins[Q] {
|
||
|
|
return buildLocationsDuracloudJoins[Q](buildLocationsDuracloudColumns(alias), j.typ)
|
||
|
|
}
|
||
|
|
|
||
|
|
func buildLocationsDuracloudJoins[Q dialect.Joinable](cols locationsDuracloudColumns, typ string) locationsDuracloudJoins[Q] {
|
||
|
|
return locationsDuracloudJoins[Q]{
|
||
|
|
typ: typ,
|
||
|
|
SpaceLocationsSpace: modAs[Q, locationsSpaceColumns]{
|
||
|
|
c: LocationsSpaces.Columns,
|
||
|
|
f: func(to locationsSpaceColumns) bob.Mod[Q] {
|
||
|
|
mods := make(mods.QueryMods[Q], 0, 1)
|
||
|
|
|
||
|
|
{
|
||
|
|
mods = append(mods, dialect.Join[Q](typ, LocationsSpaces.Name().As(to.Alias())).On(
|
||
|
|
to.UUID.EQ(cols.SpaceID),
|
||
|
|
))
|
||
|
|
}
|
||
|
|
|
||
|
|
return mods
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|