Files
ent/entc/integration/ent/groupinfo.go
Ariel Mashraki 8093ec4127 entc/gen: avoid using Go keywords as variables on scan
Summary: Pull Request resolved: https://github.com/facebookincubator/ent/pull/161

Reviewed By: alexsn

Differential Revision: D18483166

fbshipit-source-id: 7273d284232c1bf515cc84326904b580fb70a0e3
2019-11-13 11:35:58 -08:00

156 lines
4.1 KiB
Go

// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Code generated (@generated) by entc, DO NOT EDIT.
package ent
import (
"fmt"
"strconv"
"strings"
"github.com/facebookincubator/ent/dialect/gremlin"
"github.com/facebookincubator/ent/dialect/sql"
)
// GroupInfo is the model entity for the GroupInfo schema.
type GroupInfo struct {
config `json:"-"`
// ID of the ent.
ID string `json:"id,omitempty"`
// Desc holds the value of the "desc" field.
Desc string `json:"desc,omitempty"`
// MaxUsers holds the value of the "max_users" field.
MaxUsers int `json:"max_users,omitempty"`
}
// FromRows scans the sql response data into GroupInfo.
func (gi *GroupInfo) FromRows(rows *sql.Rows) error {
var scangi struct {
ID int
Desc sql.NullString
MaxUsers sql.NullInt64
}
// the order here should be the same as in the `groupinfo.Columns`.
if err := rows.Scan(
&scangi.ID,
&scangi.Desc,
&scangi.MaxUsers,
); err != nil {
return err
}
gi.ID = strconv.Itoa(scangi.ID)
gi.Desc = scangi.Desc.String
gi.MaxUsers = int(scangi.MaxUsers.Int64)
return nil
}
// FromResponse scans the gremlin response data into GroupInfo.
func (gi *GroupInfo) FromResponse(res *gremlin.Response) error {
vmap, err := res.ReadValueMap()
if err != nil {
return err
}
var scangi struct {
ID string `json:"id,omitempty"`
Desc string `json:"desc,omitempty"`
MaxUsers int `json:"max_users,omitempty"`
}
if err := vmap.Decode(&scangi); err != nil {
return err
}
gi.ID = scangi.ID
gi.Desc = scangi.Desc
gi.MaxUsers = scangi.MaxUsers
return nil
}
// QueryGroups queries the groups edge of the GroupInfo.
func (gi *GroupInfo) QueryGroups() *GroupQuery {
return (&GroupInfoClient{gi.config}).QueryGroups(gi)
}
// Update returns a builder for updating this GroupInfo.
// Note that, you need to call GroupInfo.Unwrap() before calling this method, if this GroupInfo
// was returned from a transaction, and the transaction was committed or rolled back.
func (gi *GroupInfo) Update() *GroupInfoUpdateOne {
return (&GroupInfoClient{gi.config}).UpdateOne(gi)
}
// Unwrap unwraps the entity that was returned from a transaction after it was closed,
// so that all next queries will be executed through the driver which created the transaction.
func (gi *GroupInfo) Unwrap() *GroupInfo {
tx, ok := gi.config.driver.(*txDriver)
if !ok {
panic("ent: GroupInfo is not a transactional entity")
}
gi.config.driver = tx.drv
return gi
}
// String implements the fmt.Stringer.
func (gi *GroupInfo) String() string {
var builder strings.Builder
builder.WriteString("GroupInfo(")
builder.WriteString(fmt.Sprintf("id=%v", gi.ID))
builder.WriteString(", desc=")
builder.WriteString(gi.Desc)
builder.WriteString(", max_users=")
builder.WriteString(fmt.Sprintf("%v", gi.MaxUsers))
builder.WriteByte(')')
return builder.String()
}
// id returns the int representation of the ID field.
func (gi *GroupInfo) id() int {
id, _ := strconv.Atoi(gi.ID)
return id
}
// GroupInfos is a parsable slice of GroupInfo.
type GroupInfos []*GroupInfo
// FromRows scans the sql response data into GroupInfos.
func (gi *GroupInfos) FromRows(rows *sql.Rows) error {
for rows.Next() {
scangi := &GroupInfo{}
if err := scangi.FromRows(rows); err != nil {
return err
}
*gi = append(*gi, scangi)
}
return nil
}
// FromResponse scans the gremlin response data into GroupInfos.
func (gi *GroupInfos) FromResponse(res *gremlin.Response) error {
vmap, err := res.ReadValueMap()
if err != nil {
return err
}
var scangi []struct {
ID string `json:"id,omitempty"`
Desc string `json:"desc,omitempty"`
MaxUsers int `json:"max_users,omitempty"`
}
if err := vmap.Decode(&scangi); err != nil {
return err
}
for _, v := range scangi {
*gi = append(*gi, &GroupInfo{
ID: v.ID,
Desc: v.Desc,
MaxUsers: v.MaxUsers,
})
}
return nil
}
func (gi GroupInfos) config(cfg config) {
for _i := range gi {
gi[_i].config = cfg
}
}