Beego/pkg/orm/invocation.go

59 lines
1.4 KiB
Go
Raw Normal View History

2020-08-10 15:04:57 +00:00
// Copyright 2020 beego
2020-08-07 13:45:24 +00:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package orm
import (
2020-08-10 15:04:57 +00:00
"context"
2020-08-07 13:45:24 +00:00
"time"
)
// Invocation represents an "Orm" invocation
type Invocation struct {
Method string
// Md may be nil in some cases. It depends on method
2020-08-10 15:04:57 +00:00
Md interface{}
2020-08-07 13:45:24 +00:00
// the args are all arguments except context.Context
2020-08-10 15:04:57 +00:00
Args []interface{}
2020-08-07 13:45:24 +00:00
mi *modelInfo
// f is the Orm operation
2020-08-18 14:31:06 +00:00
f func(ctx context.Context) []interface{}
2020-08-07 13:45:24 +00:00
// insideTx indicates whether this is inside a transaction
2020-08-10 15:04:57 +00:00
InsideTx bool
2020-08-07 13:45:24 +00:00
TxStartTime time.Time
2020-08-10 15:04:57 +00:00
TxName string
2020-08-07 13:45:24 +00:00
}
func (inv *Invocation) GetTableName() string {
2020-08-10 15:04:57 +00:00
if inv.mi != nil {
2020-08-07 13:45:24 +00:00
return inv.mi.table
}
return ""
}
2020-08-18 14:31:06 +00:00
func (inv *Invocation) execute(ctx context.Context) []interface{} {
return inv.f(ctx)
2020-08-07 13:45:24 +00:00
}
// GetPkFieldName return the primary key of this table
// if not found, "" is returned
func (inv *Invocation) GetPkFieldName() string {
if inv.mi.fields.pk != nil {
return inv.mi.fields.pk.name
}
return ""
}