mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
173 lines
5.3 KiB
Go
173 lines
5.3 KiB
Go
// Copyright 2019-present Facebook Inc. 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 by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/examples/fs/ent/file"
|
|
)
|
|
|
|
// File is the model entity for the File schema.
|
|
type File struct {
|
|
config `json:"-"`
|
|
// ID of the ent.
|
|
ID int `json:"id,omitempty"`
|
|
// Name holds the value of the "name" field.
|
|
Name string `json:"name,omitempty"`
|
|
// Deleted holds the value of the "deleted" field.
|
|
Deleted bool `json:"deleted,omitempty"`
|
|
// ParentID holds the value of the "parent_id" field.
|
|
ParentID int `json:"parent_id,omitempty"`
|
|
// Edges holds the relations/edges for other nodes in the graph.
|
|
// The values are being populated by the FileQuery when eager-loading is set.
|
|
Edges FileEdges `json:"edges"`
|
|
}
|
|
|
|
// FileEdges holds the relations/edges for other nodes in the graph.
|
|
type FileEdges struct {
|
|
// Parent holds the value of the parent edge.
|
|
Parent *File `json:"parent,omitempty"`
|
|
// Children holds the value of the children edge.
|
|
Children []*File `json:"children,omitempty"`
|
|
// loadedTypes holds the information for reporting if a
|
|
// type was loaded (or requested) in eager-loading or not.
|
|
loadedTypes [2]bool
|
|
}
|
|
|
|
// ParentOrErr returns the Parent value or an error if the edge
|
|
// was not loaded in eager-loading, or loaded but was not found.
|
|
func (e FileEdges) ParentOrErr() (*File, error) {
|
|
if e.loadedTypes[0] {
|
|
if e.Parent == nil {
|
|
// The edge parent was loaded in eager-loading,
|
|
// but was not found.
|
|
return nil, &NotFoundError{label: file.Label}
|
|
}
|
|
return e.Parent, nil
|
|
}
|
|
return nil, &NotLoadedError{edge: "parent"}
|
|
}
|
|
|
|
// ChildrenOrErr returns the Children value or an error if the edge
|
|
// was not loaded in eager-loading.
|
|
func (e FileEdges) ChildrenOrErr() ([]*File, error) {
|
|
if e.loadedTypes[1] {
|
|
return e.Children, nil
|
|
}
|
|
return nil, &NotLoadedError{edge: "children"}
|
|
}
|
|
|
|
// scanValues returns the types for scanning values from sql.Rows.
|
|
func (*File) scanValues(columns []string) ([]interface{}, error) {
|
|
values := make([]interface{}, len(columns))
|
|
for i := range columns {
|
|
switch columns[i] {
|
|
case file.FieldDeleted:
|
|
values[i] = new(sql.NullBool)
|
|
case file.FieldID, file.FieldParentID:
|
|
values[i] = new(sql.NullInt64)
|
|
case file.FieldName:
|
|
values[i] = new(sql.NullString)
|
|
default:
|
|
return nil, fmt.Errorf("unexpected column %q for type File", columns[i])
|
|
}
|
|
}
|
|
return values, nil
|
|
}
|
|
|
|
// assignValues assigns the values that were returned from sql.Rows (after scanning)
|
|
// to the File fields.
|
|
func (f *File) assignValues(columns []string, values []interface{}) error {
|
|
if m, n := len(values), len(columns); m < n {
|
|
return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
|
|
}
|
|
for i := range columns {
|
|
switch columns[i] {
|
|
case file.FieldID:
|
|
value, ok := values[i].(*sql.NullInt64)
|
|
if !ok {
|
|
return fmt.Errorf("unexpected type %T for field id", value)
|
|
}
|
|
f.ID = int(value.Int64)
|
|
case file.FieldName:
|
|
if value, ok := values[i].(*sql.NullString); !ok {
|
|
return fmt.Errorf("unexpected type %T for field name", values[i])
|
|
} else if value.Valid {
|
|
f.Name = value.String
|
|
}
|
|
case file.FieldDeleted:
|
|
if value, ok := values[i].(*sql.NullBool); !ok {
|
|
return fmt.Errorf("unexpected type %T for field deleted", values[i])
|
|
} else if value.Valid {
|
|
f.Deleted = value.Bool
|
|
}
|
|
case file.FieldParentID:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for field parent_id", values[i])
|
|
} else if value.Valid {
|
|
f.ParentID = int(value.Int64)
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// QueryParent queries the "parent" edge of the File entity.
|
|
func (f *File) QueryParent() *FileQuery {
|
|
return (&FileClient{config: f.config}).QueryParent(f)
|
|
}
|
|
|
|
// QueryChildren queries the "children" edge of the File entity.
|
|
func (f *File) QueryChildren() *FileQuery {
|
|
return (&FileClient{config: f.config}).QueryChildren(f)
|
|
}
|
|
|
|
// Update returns a builder for updating this File.
|
|
// Note that you need to call File.Unwrap() before calling this method if this File
|
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
|
func (f *File) Update() *FileUpdateOne {
|
|
return (&FileClient{config: f.config}).UpdateOne(f)
|
|
}
|
|
|
|
// Unwrap unwraps the File entity that was returned from a transaction after it was closed,
|
|
// so that all future queries will be executed through the driver which created the transaction.
|
|
func (f *File) Unwrap() *File {
|
|
tx, ok := f.config.driver.(*txDriver)
|
|
if !ok {
|
|
panic("ent: File is not a transactional entity")
|
|
}
|
|
f.config.driver = tx.drv
|
|
return f
|
|
}
|
|
|
|
// String implements the fmt.Stringer.
|
|
func (f *File) String() string {
|
|
var builder strings.Builder
|
|
builder.WriteString("File(")
|
|
builder.WriteString(fmt.Sprintf("id=%v", f.ID))
|
|
builder.WriteString(", name=")
|
|
builder.WriteString(f.Name)
|
|
builder.WriteString(", deleted=")
|
|
builder.WriteString(fmt.Sprintf("%v", f.Deleted))
|
|
builder.WriteString(", parent_id=")
|
|
builder.WriteString(fmt.Sprintf("%v", f.ParentID))
|
|
builder.WriteByte(')')
|
|
return builder.String()
|
|
}
|
|
|
|
// Files is a parsable slice of File.
|
|
type Files []*File
|
|
|
|
func (f Files) config(cfg config) {
|
|
for _i := range f {
|
|
f[_i].config = cfg
|
|
}
|
|
}
|