1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
|
// Copyright 2021-present The Atlas Authors. 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 (
"context"
"errors"
"fmt"
"sync"
"time"
"ariga.io/atlas/cmd/atlas/internal/migrate/ent/predicate"
"ariga.io/atlas/cmd/atlas/internal/migrate/ent/revision"
"ariga.io/atlas/sql/migrate"
"entgo.io/ent"
)
const (
// Operation types.
OpCreate = ent.OpCreate
OpDelete = ent.OpDelete
OpDeleteOne = ent.OpDeleteOne
OpUpdate = ent.OpUpdate
OpUpdateOne = ent.OpUpdateOne
// Node types.
TypeRevision = "Revision"
)
// RevisionMutation represents an operation that mutates the Revision nodes in the graph.
type RevisionMutation struct {
config
op Op
typ string
id *string
description *string
_type *migrate.RevisionType
add_type *migrate.RevisionType
applied *int
addapplied *int
total *int
addtotal *int
executed_at *time.Time
execution_time *time.Duration
addexecution_time *time.Duration
error *string
hash *string
partial_hashes *[]string
operator_version *string
clearedFields map[string]struct{}
done bool
oldValue func(context.Context) (*Revision, error)
predicates []predicate.Revision
}
var _ ent.Mutation = (*RevisionMutation)(nil)
// revisionOption allows management of the mutation configuration using functional options.
type revisionOption func(*RevisionMutation)
// newRevisionMutation creates new mutation for the Revision entity.
func newRevisionMutation(c config, op Op, opts ...revisionOption) *RevisionMutation {
m := &RevisionMutation{
config: c,
op: op,
typ: TypeRevision,
clearedFields: make(map[string]struct{}),
}
for _, opt := range opts {
opt(m)
}
return m
}
// withRevisionID sets the ID field of the mutation.
func withRevisionID(id string) revisionOption {
return func(m *RevisionMutation) {
var (
err error
once sync.Once
value *Revision
)
m.oldValue = func(ctx context.Context) (*Revision, error) {
once.Do(func() {
if m.done {
err = errors.New("querying old values post mutation is not allowed")
} else {
value, err = m.Client().Revision.Get(ctx, id)
}
})
return value, err
}
m.id = &id
}
}
// withRevision sets the old Revision of the mutation.
func withRevision(node *Revision) revisionOption {
return func(m *RevisionMutation) {
m.oldValue = func(context.Context) (*Revision, error) {
return node, nil
}
m.id = &node.ID
}
}
// Client returns a new `ent.Client` from the mutation. If the mutation was
// executed in a transaction (ent.Tx), a transactional client is returned.
func (m RevisionMutation) Client() *Client {
client := &Client{config: m.config}
client.init()
return client
}
// Tx returns an `ent.Tx` for mutations that were executed in transactions;
// it returns an error otherwise.
func (m RevisionMutation) Tx() (*Tx, error) {
if _, ok := m.driver.(*txDriver); !ok {
return nil, errors.New("ent: mutation is not running in a transaction")
}
tx := &Tx{config: m.config}
tx.init()
return tx, nil
}
// SetID sets the value of the id field. Note that this
// operation is only accepted on creation of Revision entities.
func (m *RevisionMutation) SetID(id string) {
m.id = &id
}
// ID returns the ID value in the mutation. Note that the ID is only available
// if it was provided to the builder or after it was returned from the database.
func (m *RevisionMutation) ID() (id string, exists bool) {
if m.id == nil {
return
}
return *m.id, true
}
// IDs queries the database and returns the entity ids that match the mutation's predicate.
// That means, if the mutation is applied within a transaction with an isolation level such
// as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
// or updated by the mutation.
func (m *RevisionMutation) IDs(ctx context.Context) ([]string, error) {
switch {
case m.op.Is(OpUpdateOne | OpDeleteOne):
id, exists := m.ID()
if exists {
return []string{id}, nil
}
fallthrough
case m.op.Is(OpUpdate | OpDelete):
return m.Client().Revision.Query().Where(m.predicates...).IDs(ctx)
default:
return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
}
}
// SetDescription sets the "description" field.
func (m *RevisionMutation) SetDescription(s string) {
m.description = &s
}
// Description returns the value of the "description" field in the mutation.
func (m *RevisionMutation) Description() (r string, exists bool) {
v := m.description
if v == nil {
return
}
return *v, true
}
// OldDescription returns the old "description" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldDescription(ctx context.Context) (v string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldDescription is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldDescription requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldDescription: %w", err)
}
return oldValue.Description, nil
}
// ResetDescription resets all changes to the "description" field.
func (m *RevisionMutation) ResetDescription() {
m.description = nil
}
// SetType sets the "type" field.
func (m *RevisionMutation) SetType(mt migrate.RevisionType) {
m._type = &mt
m.add_type = nil
}
// GetType returns the value of the "type" field in the mutation.
func (m *RevisionMutation) GetType() (r migrate.RevisionType, exists bool) {
v := m._type
if v == nil {
return
}
return *v, true
}
// OldType returns the old "type" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldType(ctx context.Context) (v migrate.RevisionType, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldType is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldType requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldType: %w", err)
}
return oldValue.Type, nil
}
// AddType adds mt to the "type" field.
func (m *RevisionMutation) AddType(mt migrate.RevisionType) {
if m.add_type != nil {
*m.add_type += mt
} else {
m.add_type = &mt
}
}
// AddedType returns the value that was added to the "type" field in this mutation.
func (m *RevisionMutation) AddedType() (r migrate.RevisionType, exists bool) {
v := m.add_type
if v == nil {
return
}
return *v, true
}
// ResetType resets all changes to the "type" field.
func (m *RevisionMutation) ResetType() {
m._type = nil
m.add_type = nil
}
// SetApplied sets the "applied" field.
func (m *RevisionMutation) SetApplied(i int) {
m.applied = &i
m.addapplied = nil
}
// Applied returns the value of the "applied" field in the mutation.
func (m *RevisionMutation) Applied() (r int, exists bool) {
v := m.applied
if v == nil {
return
}
return *v, true
}
// OldApplied returns the old "applied" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldApplied(ctx context.Context) (v int, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldApplied is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldApplied requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldApplied: %w", err)
}
return oldValue.Applied, nil
}
// AddApplied adds i to the "applied" field.
func (m *RevisionMutation) AddApplied(i int) {
if m.addapplied != nil {
*m.addapplied += i
} else {
m.addapplied = &i
}
}
// AddedApplied returns the value that was added to the "applied" field in this mutation.
func (m *RevisionMutation) AddedApplied() (r int, exists bool) {
v := m.addapplied
if v == nil {
return
}
return *v, true
}
// ResetApplied resets all changes to the "applied" field.
func (m *RevisionMutation) ResetApplied() {
m.applied = nil
m.addapplied = nil
}
// SetTotal sets the "total" field.
func (m *RevisionMutation) SetTotal(i int) {
m.total = &i
m.addtotal = nil
}
// Total returns the value of the "total" field in the mutation.
func (m *RevisionMutation) Total() (r int, exists bool) {
v := m.total
if v == nil {
return
}
return *v, true
}
// OldTotal returns the old "total" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldTotal(ctx context.Context) (v int, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldTotal is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldTotal requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldTotal: %w", err)
}
return oldValue.Total, nil
}
// AddTotal adds i to the "total" field.
func (m *RevisionMutation) AddTotal(i int) {
if m.addtotal != nil {
*m.addtotal += i
} else {
m.addtotal = &i
}
}
// AddedTotal returns the value that was added to the "total" field in this mutation.
func (m *RevisionMutation) AddedTotal() (r int, exists bool) {
v := m.addtotal
if v == nil {
return
}
return *v, true
}
// ResetTotal resets all changes to the "total" field.
func (m *RevisionMutation) ResetTotal() {
m.total = nil
m.addtotal = nil
}
// SetExecutedAt sets the "executed_at" field.
func (m *RevisionMutation) SetExecutedAt(t time.Time) {
m.executed_at = &t
}
// ExecutedAt returns the value of the "executed_at" field in the mutation.
func (m *RevisionMutation) ExecutedAt() (r time.Time, exists bool) {
v := m.executed_at
if v == nil {
return
}
return *v, true
}
// OldExecutedAt returns the old "executed_at" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldExecutedAt(ctx context.Context) (v time.Time, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldExecutedAt is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldExecutedAt requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldExecutedAt: %w", err)
}
return oldValue.ExecutedAt, nil
}
// ResetExecutedAt resets all changes to the "executed_at" field.
func (m *RevisionMutation) ResetExecutedAt() {
m.executed_at = nil
}
// SetExecutionTime sets the "execution_time" field.
func (m *RevisionMutation) SetExecutionTime(t time.Duration) {
m.execution_time = &t
m.addexecution_time = nil
}
// ExecutionTime returns the value of the "execution_time" field in the mutation.
func (m *RevisionMutation) ExecutionTime() (r time.Duration, exists bool) {
v := m.execution_time
if v == nil {
return
}
return *v, true
}
// OldExecutionTime returns the old "execution_time" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldExecutionTime(ctx context.Context) (v time.Duration, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldExecutionTime is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldExecutionTime requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldExecutionTime: %w", err)
}
return oldValue.ExecutionTime, nil
}
// AddExecutionTime adds t to the "execution_time" field.
func (m *RevisionMutation) AddExecutionTime(t time.Duration) {
if m.addexecution_time != nil {
*m.addexecution_time += t
} else {
m.addexecution_time = &t
}
}
// AddedExecutionTime returns the value that was added to the "execution_time" field in this mutation.
func (m *RevisionMutation) AddedExecutionTime() (r time.Duration, exists bool) {
v := m.addexecution_time
if v == nil {
return
}
return *v, true
}
// ResetExecutionTime resets all changes to the "execution_time" field.
func (m *RevisionMutation) ResetExecutionTime() {
m.execution_time = nil
m.addexecution_time = nil
}
// SetError sets the "error" field.
func (m *RevisionMutation) SetError(s string) {
m.error = &s
}
// Error returns the value of the "error" field in the mutation.
func (m *RevisionMutation) Error() (r string, exists bool) {
v := m.error
if v == nil {
return
}
return *v, true
}
// OldError returns the old "error" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldError(ctx context.Context) (v string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldError is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldError requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldError: %w", err)
}
return oldValue.Error, nil
}
// ClearError clears the value of the "error" field.
func (m *RevisionMutation) ClearError() {
m.error = nil
m.clearedFields[revision.FieldError] = struct{}{}
}
// ErrorCleared returns if the "error" field was cleared in this mutation.
func (m *RevisionMutation) ErrorCleared() bool {
_, ok := m.clearedFields[revision.FieldError]
return ok
}
// ResetError resets all changes to the "error" field.
func (m *RevisionMutation) ResetError() {
m.error = nil
delete(m.clearedFields, revision.FieldError)
}
// SetHash sets the "hash" field.
func (m *RevisionMutation) SetHash(s string) {
m.hash = &s
}
// Hash returns the value of the "hash" field in the mutation.
func (m *RevisionMutation) Hash() (r string, exists bool) {
v := m.hash
if v == nil {
return
}
return *v, true
}
// OldHash returns the old "hash" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldHash(ctx context.Context) (v string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldHash is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldHash requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldHash: %w", err)
}
return oldValue.Hash, nil
}
// ResetHash resets all changes to the "hash" field.
func (m *RevisionMutation) ResetHash() {
m.hash = nil
}
// SetPartialHashes sets the "partial_hashes" field.
func (m *RevisionMutation) SetPartialHashes(s []string) {
m.partial_hashes = &s
}
// PartialHashes returns the value of the "partial_hashes" field in the mutation.
func (m *RevisionMutation) PartialHashes() (r []string, exists bool) {
v := m.partial_hashes
if v == nil {
return
}
return *v, true
}
// OldPartialHashes returns the old "partial_hashes" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldPartialHashes(ctx context.Context) (v []string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldPartialHashes is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldPartialHashes requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldPartialHashes: %w", err)
}
return oldValue.PartialHashes, nil
}
// ClearPartialHashes clears the value of the "partial_hashes" field.
func (m *RevisionMutation) ClearPartialHashes() {
m.partial_hashes = nil
m.clearedFields[revision.FieldPartialHashes] = struct{}{}
}
// PartialHashesCleared returns if the "partial_hashes" field was cleared in this mutation.
func (m *RevisionMutation) PartialHashesCleared() bool {
_, ok := m.clearedFields[revision.FieldPartialHashes]
return ok
}
// ResetPartialHashes resets all changes to the "partial_hashes" field.
func (m *RevisionMutation) ResetPartialHashes() {
m.partial_hashes = nil
delete(m.clearedFields, revision.FieldPartialHashes)
}
// SetOperatorVersion sets the "operator_version" field.
func (m *RevisionMutation) SetOperatorVersion(s string) {
m.operator_version = &s
}
// OperatorVersion returns the value of the "operator_version" field in the mutation.
func (m *RevisionMutation) OperatorVersion() (r string, exists bool) {
v := m.operator_version
if v == nil {
return
}
return *v, true
}
// OldOperatorVersion returns the old "operator_version" field's value of the Revision entity.
// If the Revision object wasn't provided to the builder, the object is fetched from the database.
// An error is returned if the mutation operation is not UpdateOne, or the database query fails.
func (m *RevisionMutation) OldOperatorVersion(ctx context.Context) (v string, err error) {
if !m.op.Is(OpUpdateOne) {
return v, errors.New("OldOperatorVersion is only allowed on UpdateOne operations")
}
if m.id == nil || m.oldValue == nil {
return v, errors.New("OldOperatorVersion requires an ID field in the mutation")
}
oldValue, err := m.oldValue(ctx)
if err != nil {
return v, fmt.Errorf("querying old value for OldOperatorVersion: %w", err)
}
return oldValue.OperatorVersion, nil
}
// ResetOperatorVersion resets all changes to the "operator_version" field.
func (m *RevisionMutation) ResetOperatorVersion() {
m.operator_version = nil
}
// Where appends a list predicates to the RevisionMutation builder.
func (m *RevisionMutation) Where(ps ...predicate.Revision) {
m.predicates = append(m.predicates, ps...)
}
// Op returns the operation name.
func (m *RevisionMutation) Op() Op {
return m.op
}
// Type returns the node type of this mutation (Revision).
func (m *RevisionMutation) Type() string {
return m.typ
}
// Fields returns all fields that were changed during this mutation. Note that in
// order to get all numeric fields that were incremented/decremented, call
// AddedFields().
func (m *RevisionMutation) Fields() []string {
fields := make([]string, 0, 10)
if m.description != nil {
fields = append(fields, revision.FieldDescription)
}
if m._type != nil {
fields = append(fields, revision.FieldType)
}
if m.applied != nil {
fields = append(fields, revision.FieldApplied)
}
if m.total != nil {
fields = append(fields, revision.FieldTotal)
}
if m.executed_at != nil {
fields = append(fields, revision.FieldExecutedAt)
}
if m.execution_time != nil {
fields = append(fields, revision.FieldExecutionTime)
}
if m.error != nil {
fields = append(fields, revision.FieldError)
}
if m.hash != nil {
fields = append(fields, revision.FieldHash)
}
if m.partial_hashes != nil {
fields = append(fields, revision.FieldPartialHashes)
}
if m.operator_version != nil {
fields = append(fields, revision.FieldOperatorVersion)
}
return fields
}
// Field returns the value of a field with the given name. The second boolean
// return value indicates that this field was not set, or was not defined in the
// schema.
func (m *RevisionMutation) Field(name string) (ent.Value, bool) {
switch name {
case revision.FieldDescription:
return m.Description()
case revision.FieldType:
return m.GetType()
case revision.FieldApplied:
return m.Applied()
case revision.FieldTotal:
return m.Total()
case revision.FieldExecutedAt:
return m.ExecutedAt()
case revision.FieldExecutionTime:
return m.ExecutionTime()
case revision.FieldError:
return m.Error()
case revision.FieldHash:
return m.Hash()
case revision.FieldPartialHashes:
return m.PartialHashes()
case revision.FieldOperatorVersion:
return m.OperatorVersion()
}
return nil, false
}
// OldField returns the old value of the field from the database. An error is
// returned if the mutation operation is not UpdateOne, or the query to the
// database failed.
func (m *RevisionMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
switch name {
case revision.FieldDescription:
return m.OldDescription(ctx)
case revision.FieldType:
return m.OldType(ctx)
case revision.FieldApplied:
return m.OldApplied(ctx)
case revision.FieldTotal:
return m.OldTotal(ctx)
case revision.FieldExecutedAt:
return m.OldExecutedAt(ctx)
case revision.FieldExecutionTime:
return m.OldExecutionTime(ctx)
case revision.FieldError:
return m.OldError(ctx)
case revision.FieldHash:
return m.OldHash(ctx)
case revision.FieldPartialHashes:
return m.OldPartialHashes(ctx)
case revision.FieldOperatorVersion:
return m.OldOperatorVersion(ctx)
}
return nil, fmt.Errorf("unknown Revision field %s", name)
}
// SetField sets the value of a field with the given name. It returns an error if
// the field is not defined in the schema, or if the type mismatched the field
// type.
func (m *RevisionMutation) SetField(name string, value ent.Value) error {
switch name {
case revision.FieldDescription:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetDescription(v)
return nil
case revision.FieldType:
v, ok := value.(migrate.RevisionType)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetType(v)
return nil
case revision.FieldApplied:
v, ok := value.(int)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetApplied(v)
return nil
case revision.FieldTotal:
v, ok := value.(int)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetTotal(v)
return nil
case revision.FieldExecutedAt:
v, ok := value.(time.Time)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetExecutedAt(v)
return nil
case revision.FieldExecutionTime:
v, ok := value.(time.Duration)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetExecutionTime(v)
return nil
case revision.FieldError:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetError(v)
return nil
case revision.FieldHash:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetHash(v)
return nil
case revision.FieldPartialHashes:
v, ok := value.([]string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetPartialHashes(v)
return nil
case revision.FieldOperatorVersion:
v, ok := value.(string)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.SetOperatorVersion(v)
return nil
}
return fmt.Errorf("unknown Revision field %s", name)
}
// AddedFields returns all numeric fields that were incremented/decremented during
// this mutation.
func (m *RevisionMutation) AddedFields() []string {
var fields []string
if m.add_type != nil {
fields = append(fields, revision.FieldType)
}
if m.addapplied != nil {
fields = append(fields, revision.FieldApplied)
}
if m.addtotal != nil {
fields = append(fields, revision.FieldTotal)
}
if m.addexecution_time != nil {
fields = append(fields, revision.FieldExecutionTime)
}
return fields
}
// AddedField returns the numeric value that was incremented/decremented on a field
// with the given name. The second boolean return value indicates that this field
// was not set, or was not defined in the schema.
func (m *RevisionMutation) AddedField(name string) (ent.Value, bool) {
switch name {
case revision.FieldType:
return m.AddedType()
case revision.FieldApplied:
return m.AddedApplied()
case revision.FieldTotal:
return m.AddedTotal()
case revision.FieldExecutionTime:
return m.AddedExecutionTime()
}
return nil, false
}
// AddField adds the value to the field with the given name. It returns an error if
// the field is not defined in the schema, or if the type mismatched the field
// type.
func (m *RevisionMutation) AddField(name string, value ent.Value) error {
switch name {
case revision.FieldType:
v, ok := value.(migrate.RevisionType)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.AddType(v)
return nil
case revision.FieldApplied:
v, ok := value.(int)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.AddApplied(v)
return nil
case revision.FieldTotal:
v, ok := value.(int)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.AddTotal(v)
return nil
case revision.FieldExecutionTime:
v, ok := value.(time.Duration)
if !ok {
return fmt.Errorf("unexpected type %T for field %s", value, name)
}
m.AddExecutionTime(v)
return nil
}
return fmt.Errorf("unknown Revision numeric field %s", name)
}
// ClearedFields returns all nullable fields that were cleared during this
// mutation.
func (m *RevisionMutation) ClearedFields() []string {
var fields []string
if m.FieldCleared(revision.FieldError) {
fields = append(fields, revision.FieldError)
}
if m.FieldCleared(revision.FieldPartialHashes) {
fields = append(fields, revision.FieldPartialHashes)
}
return fields
}
// FieldCleared returns a boolean indicating if a field with the given name was
// cleared in this mutation.
func (m *RevisionMutation) FieldCleared(name string) bool {
_, ok := m.clearedFields[name]
return ok
}
// ClearField clears the value of the field with the given name. It returns an
// error if the field is not defined in the schema.
func (m *RevisionMutation) ClearField(name string) error {
switch name {
case revision.FieldError:
m.ClearError()
return nil
case revision.FieldPartialHashes:
m.ClearPartialHashes()
return nil
}
return fmt.Errorf("unknown Revision nullable field %s", name)
}
// ResetField resets all changes in the mutation for the field with the given name.
// It returns an error if the field is not defined in the schema.
func (m *RevisionMutation) ResetField(name string) error {
switch name {
case revision.FieldDescription:
m.ResetDescription()
return nil
case revision.FieldType:
m.ResetType()
return nil
case revision.FieldApplied:
m.ResetApplied()
return nil
case revision.FieldTotal:
m.ResetTotal()
return nil
case revision.FieldExecutedAt:
m.ResetExecutedAt()
return nil
case revision.FieldExecutionTime:
m.ResetExecutionTime()
return nil
case revision.FieldError:
m.ResetError()
return nil
case revision.FieldHash:
m.ResetHash()
return nil
case revision.FieldPartialHashes:
m.ResetPartialHashes()
return nil
case revision.FieldOperatorVersion:
m.ResetOperatorVersion()
return nil
}
return fmt.Errorf("unknown Revision field %s", name)
}
// AddedEdges returns all edge names that were set/added in this mutation.
func (m *RevisionMutation) AddedEdges() []string {
edges := make([]string, 0, 0)
return edges
}
// AddedIDs returns all IDs (to other nodes) that were added for the given edge
// name in this mutation.
func (m *RevisionMutation) AddedIDs(name string) []ent.Value {
return nil
}
// RemovedEdges returns all edge names that were removed in this mutation.
func (m *RevisionMutation) RemovedEdges() []string {
edges := make([]string, 0, 0)
return edges
}
// RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
// the given name in this mutation.
func (m *RevisionMutation) RemovedIDs(name string) []ent.Value {
return nil
}
// ClearedEdges returns all edge names that were cleared in this mutation.
func (m *RevisionMutation) ClearedEdges() []string {
edges := make([]string, 0, 0)
return edges
}
// EdgeCleared returns a boolean which indicates if the edge with the given name
// was cleared in this mutation.
func (m *RevisionMutation) EdgeCleared(name string) bool {
return false
}
// ClearEdge clears the value of the edge with the given name. It returns an error
// if that edge is not defined in the schema.
func (m *RevisionMutation) ClearEdge(name string) error {
return fmt.Errorf("unknown Revision unique edge %s", name)
}
// ResetEdge resets all changes to the edge with the given name in this mutation.
// It returns an error if the edge is not defined in the schema.
func (m *RevisionMutation) ResetEdge(name string) error {
return fmt.Errorf("unknown Revision edge %s", name)
}
|