mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Summary: Pull Request resolved: https://github.com/facebookincubator/ent/pull/58 Reviewed By: alexsn Differential Revision: D17759261 fbshipit-source-id: df7f5344b43157a483662d9ee5cf8441943b637a
129 lines
2.9 KiB
Go
129 lines
2.9 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 (
|
|
"bytes"
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/facebookincubator/ent/dialect/gremlin"
|
|
"github.com/facebookincubator/ent/dialect/sql"
|
|
)
|
|
|
|
// Item is the model entity for the Item schema.
|
|
type Item struct {
|
|
config
|
|
// ID of the ent.
|
|
ID string `json:"id,omitempty"`
|
|
}
|
|
|
|
// FromRows scans the sql response data into Item.
|
|
func (i *Item) FromRows(rows *sql.Rows) error {
|
|
var vi struct {
|
|
ID int
|
|
}
|
|
// the order here should be the same as in the `item.Columns`.
|
|
if err := rows.Scan(
|
|
&vi.ID,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
i.ID = strconv.Itoa(vi.ID)
|
|
return nil
|
|
}
|
|
|
|
// FromResponse scans the gremlin response data into Item.
|
|
func (i *Item) FromResponse(res *gremlin.Response) error {
|
|
vmap, err := res.ReadValueMap()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var vi struct {
|
|
ID string `json:"id,omitempty"`
|
|
}
|
|
if err := vmap.Decode(&vi); err != nil {
|
|
return err
|
|
}
|
|
i.ID = vi.ID
|
|
return nil
|
|
}
|
|
|
|
// Update returns a builder for updating this Item.
|
|
// Note that, you need to call Item.Unwrap() before calling this method, if this Item
|
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
|
func (i *Item) Update() *ItemUpdateOne {
|
|
return (&ItemClient{i.config}).UpdateOne(i)
|
|
}
|
|
|
|
// 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 (i *Item) Unwrap() *Item {
|
|
tx, ok := i.config.driver.(*txDriver)
|
|
if !ok {
|
|
panic("ent: Item is not a transactional entity")
|
|
}
|
|
i.config.driver = tx.drv
|
|
return i
|
|
}
|
|
|
|
// String implements the fmt.Stringer.
|
|
func (i *Item) String() string {
|
|
buf := bytes.NewBuffer(nil)
|
|
buf.WriteString("Item(")
|
|
buf.WriteString(fmt.Sprintf("id=%v", i.ID))
|
|
buf.WriteString(")")
|
|
return buf.String()
|
|
}
|
|
|
|
// id returns the int representation of the ID field.
|
|
func (i *Item) id() int {
|
|
id, _ := strconv.Atoi(i.ID)
|
|
return id
|
|
}
|
|
|
|
// Items is a parsable slice of Item.
|
|
type Items []*Item
|
|
|
|
// FromRows scans the sql response data into Items.
|
|
func (i *Items) FromRows(rows *sql.Rows) error {
|
|
for rows.Next() {
|
|
vi := &Item{}
|
|
if err := vi.FromRows(rows); err != nil {
|
|
return err
|
|
}
|
|
*i = append(*i, vi)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// FromResponse scans the gremlin response data into Items.
|
|
func (i *Items) FromResponse(res *gremlin.Response) error {
|
|
vmap, err := res.ReadValueMap()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var vi []struct {
|
|
ID string `json:"id,omitempty"`
|
|
}
|
|
if err := vmap.Decode(&vi); err != nil {
|
|
return err
|
|
}
|
|
for _, v := range vi {
|
|
*i = append(*i, &Item{
|
|
ID: v.ID,
|
|
})
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (i Items) config(cfg config) {
|
|
for _i := range i {
|
|
i[_i].config = cfg
|
|
}
|
|
}
|